diff --git a/.ddev/.gitignore b/.ddev/.gitignore
deleted file mode 100644
index 788b845..0000000
--- a/.ddev/.gitignore
+++ /dev/null
@@ -1,41 +0,0 @@
-#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
-/.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
-/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/README.txt b/.ddev/commands/db/README.txt
deleted file mode 100755
index 97e4fd6..0000000
--- a/.ddev/commands/db/README.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-Scripts in this directory will be executed inside the db
-container. A number of environment variables are supplied to the scripts, including:
-
-DDEV_APPROOT: file system location of the project on the host)
-DDEV_HOST_DB_PORT: Localhost port of the database server
-DDEV_HOST_WEBSERVER_PORT: Localhost port of the webserver
-DDEV_HOST_HTTPS_PORT: Localhost port for https on webserver
-DDEV_DOCROOT: Relative path from approot to docroot
-DDEV_HOSTNAME: Comma-separated list of FQDN hostnames
-DDEV_PHP_VERSION
-DDEV_WEBSERVER_TYPE: nginx-fpm, apache-fpm, apache-cgi
-DDEV_PROJECT_TYPE: drupal8, typo3, backdrop, wordpress, etc.
-DDEV_ROUTER_HTTP_PORT: Router port for http
-DDEV_ROUTER_HTTPS_PORT: Router port for https
-
-More environment variables may be available, see https://github.com/drud/ddev/blob/52c7915dee41d4846f9f619520b726994c0372c5/pkg/ddevapp/ddevapp.go#L1006-L1030
diff --git a/.ddev/commands/db/mysqldump.example b/.ddev/commands/db/mysqldump.example
deleted file mode 100755
index be25368..0000000
--- a/.ddev/commands/db/mysqldump.example
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-## Description: run mysqldump in web container
-## Usage: mysqldump [flags] [args]
-## Example: "ddev mysqldump db" or "ddev mysqldump otherdb" or "ddev mysqldump db | gzip >db.sql.gz"
-
-mysqldump -uroot -proot $@
diff --git a/.ddev/commands/host/README.txt b/.ddev/commands/host/README.txt
deleted file mode 100755
index 773f980..0000000
--- a/.ddev/commands/host/README.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-Scripts in this directory will be executed on the host
-but they can take easily take action on containers by using
-`ddev exec`. A number of environment variables are supplied to the scripts
-including:
-
-DDEV_APPROOT: file system location of the project on the host)
-DDEV_HOST_DB_PORT: Localhost port of the database server
-DDEV_HOST_WEBSERVER_PORT: Localhost port of the webserver
-DDEV_HOST_HTTPS_PORT: Localhost port for https on webserver
-DDEV_DOCROOT: Relative path from approot to docroot
-DDEV_HOSTNAME: Comma-separated list of FQDN hostnames
-DDEV_PHP_VERSION
-DDEV_WEBSERVER_TYPE: nginx-fpm, apache-fpm, apache-cgi
-DDEV_PROJECT_TYPE: drupal8, typo3, backdrop, wordpress, etc.
-DDEV_ROUTER_HTTP_PORT: Router port for http
-DDEV_ROUTER_HTTPS_PORT: Router port for https
-
-More environment variables may be available, see https://github.com/drud/ddev/blob/52c7915dee41d4846f9f619520b726994c0372c5/pkg/ddevapp/ddevapp.go#L1006-L1030
diff --git a/.ddev/commands/host/mysqlworkbench.example b/.ddev/commands/host/mysqlworkbench.example
deleted file mode 100755
index fe40d94..0000000
--- a/.ddev/commands/host/mysqlworkbench.example
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-## Description: Run MySQLWorkbench against current db
-## Usage: mysqlworkbench
-## Example: "ddev mysqlworkbench"
-
-# Note that this examle uses $DDEV_HOST_DB_PORT to get the port for the connection
-# Mysql Workbench can be obtained from https://dev.mysql.com/downloads/workbench/
-
-query="root:root@127.0.0.1:${DDEV_HOST_DB_PORT}"
-
-case $OSTYPE in
- linux-gnu)
- # You may need "apt-get install libproj-dev gnome-keyring" if it complains about those
- mysql-workbench --query "$query" &
- echo "Attempted to launch mysql-workbench"
- ;;
-
- "darwin"*)
- "/Applications/MySQLWorkbench.app/Contents/MacOS/MySQLWorkbench" --query "$query" &
- echo "Attempted to launch MySQLWorkbench.app"
- ;;
-
- "win*"* | "msys"*)
- # 'C:\Program Files\MySQL\MySQL Workbench 8.0 CE\mysqlworkbench.exe'
- # You may need to add it to your system %PATH% or change the path here
- # On docker toolbox you'll need to change the query to use the toolbox IP address,
- # likely 192.168.99.100
- 'C:\Program Files\MySQL\MySQL Workbench 8.0 CE\mysqlworkbench.exe' --query "$query"
- #;;
-esac
diff --git a/.ddev/commands/host/phpstorm.example b/.ddev/commands/host/phpstorm.example
deleted file mode 100755
index d4e8ffc..0000000
--- a/.ddev/commands/host/phpstorm.example
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-## Description: Open PHPStorm with the current project
-## Usage: phpstorm
-## Example: "ddev phpstorm"
-
-# Example is macOS-specific, but easy to adapt to any OS
-open -a PHPStorm.app ${DDEV_APPROOT}
diff --git a/.ddev/commands/host/solrtail.example b/.ddev/commands/host/solrtail.example
deleted file mode 100755
index 9ebba68..0000000
--- a/.ddev/commands/host/solrtail.example
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/bash
-
-## Description: Tail the main solr log
-## Usage: solrtail
-## Example: ddev solrtail
-
-# This can't work unless you have a solr service,
-# See https://ddev.readthedocs.io/en/latest/users/extend/additional-services/#apache-solr
-
-ddev exec -s solr tail -40lf /opt/solr/server/logs/solr.log
diff --git a/.ddev/commands/solr/README.txt b/.ddev/commands/solr/README.txt
deleted file mode 100755
index da5bb83..0000000
--- a/.ddev/commands/solr/README.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-Scripts in this directory will be executed inside the solr
-container (if it exists, of course). This is just an example,
-but any named service can have a directory with commands.
-
-Note that /mnt/ddev_config must be mounted into the 3rd-party service
-with a stanza like this in the docker-compose.solr.yaml:
-
- volumes:
- - type: "bind"
- source: "."
- target: "/mnt/ddev_config"
-
-
-A number of environment variables are supplied to the scripts, including:
-
-DDEV_DOCROOT: Relative path from approot to docroot
-DDEV_HOSTNAME: Comma-separated list of FQDN hostnames
-DDEV_PHP_VERSION
-DDEV_WEBSERVER_TYPE: nginx-fpm, apache-fpm, apache-cgi
-DDEV_PROJECT_TYPE: drupal8, typo3, backdrop, wordpress, etc.
-DDEV_ROUTER_HTTP_PORT: Router port for http
-DDEV_ROUTER_HTTPS_PORT: Router port for https
-
-More environment variables may be available, see https://github.com/drud/ddev/blob/52c7915dee41d4846f9f619520b726994c0372c5/pkg/ddevapp/ddevapp.go#L1006-L1030
diff --git a/.ddev/commands/solr/solrtail.example b/.ddev/commands/solr/solrtail.example
deleted file mode 100755
index 628450e..0000000
--- a/.ddev/commands/solr/solrtail.example
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-## Description: Tail the main solr log
-## Usage: solrtail
-## Example: ddev solrtail
-
-# This example runs inside the solr container.
-# Note that this requires that /mnt/ddev_config be mounted
-# into the solr container and of course that you have a container
-# named solr.
-
-tail -f /opt/solr/server/logs/solr.log
diff --git a/.ddev/commands/web/README.txt b/.ddev/commands/web/README.txt
deleted file mode 100755
index 9847dc1..0000000
--- a/.ddev/commands/web/README.txt
+++ /dev/null
@@ -1,20 +0,0 @@
-Scripts in this directory will be executed inside the web
-container. You can copy the example file or just rename it:
-`mv drush.example drush`, for example, and it will become
-a live command.
-
-A number of environment variables are supplied to the scripts, including:
-
-DDEV_APPROOT: file system location of the project on the host)
-DDEV_HOST_DB_PORT: Localhost port of the database server
-DDEV_HOST_WEBSERVER_PORT: Localhost port of the webserver
-DDEV_HOST_HTTPS_PORT: Localhost port for https on webserver
-DDEV_DOCROOT: Relative path from approot to docroot
-DDEV_HOSTNAME: Comma-separated list of FQDN hostnames
-DDEV_PHP_VERSION
-DDEV_WEBSERVER_TYPE: nginx-fpm, apache-fpm, apache-cgi
-DDEV_PROJECT_TYPE: drupal8, typo3, backdrop, wordpress, etc.
-DDEV_ROUTER_HTTP_PORT: Router port for http
-DDEV_ROUTER_HTTPS_PORT: Router port for https
-
-More environment variables may be available, see https://github.com/drud/ddev/blob/52c7915dee41d4846f9f619520b726994c0372c5/pkg/ddevapp/ddevapp.go#L1006-L1030
diff --git a/.ddev/commands/web/drush.example b/.ddev/commands/web/drush.example
deleted file mode 100755
index 359811b..0000000
--- a/.ddev/commands/web/drush.example
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/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/commands/web/reload-nginx.example b/.ddev/commands/web/reload-nginx.example
deleted file mode 100755
index b8ce035..0000000
--- a/.ddev/commands/web/reload-nginx.example
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-## Description: Reload config for nginx and php-fpm inside web container
-## Usage: restart-nginx
-## Example: "ddev restart-nginx"
-
-killall -HUP nginx php-fpm
diff --git a/.ddev/config.yaml b/.ddev/config.yaml
deleted file mode 100644
index 84637ae..0000000
--- a/.ddev/config.yaml
+++ /dev/null
@@ -1,260 +0,0 @@
-name: agaric-coop
-type: drupal9
-docroot: web
-php_version: "8.1"
-webserver_type: apache-fpm
-router_http_port: "80"
-router_https_port: "443"
-xdebug_enabled: false
-additional_hostnames: []
-additional_fqdns: []
-database:
- type: mariadb
- version: "10.5"
-nfs_mount_enabled: false
-mutagen_enabled: false
-webimage_extra_packages: [rake, sassc]
-use_dns_when_possible: true
-composer_version: "2"
-web_environment: []
-nodejs_version: "16"
-
-# Key features of ddev's config.yaml:
-
-# name: The "Languages" page allows you to add, edit, delete, and reorder languages for the site. To add more languages to your site, click the "Add language" button. Added languages will be displayed in the language list and can then be edited or deleted. To reorder the languages on your site, use the drag icons next to each language. The order shown here is the display order for language lists on the site such as in the language switcher blocks provided by the Interface Translation and Content Translation modules. When you are done with reordering the languages, click the "Save configuration" button for the changes to take effect. You can change the default language of the site by choosing one of your configured languages as default. The site will use the default language in situations where no choice is made but a language should be set, for example as the language of the displayed interface. Operations are provided for editing and deleting your languages. You can edit the name and the direction of the language. Deleted languages can be added back at a later time. Deleting a language will remove all interface translations associated with it, and content in this language will be set to be language neutral. Note that you cannot delete the default language of the site. Now that you have an overview of the "Languages" page, you can continue by:
-
-```
-The suffix of the class needs to be changed depending of the language that is going to be highlighted eg: `language-php`, `language-js` etc.
+See `web/themes/custom/agarica/README.md` and `web/themes/custom/agarica/patternlibrary/README.md`
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index c817255..0000000
--- a/Rakefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# "dev" => {
-# "host" => "vlad@simone.mayfirst.org",
-# "path" => "/var/local/drupal/findit/web",
-# "backups" => "/tmp",
-# },
-ENVIRONMENTS = {
- "test" => {
- "host" => "agaric_test@drutopia.org",
- "path" => "/home/agaric_test/site/web",
- "drush" => "/home/agaric_test/site/vendor/bin/drush",
- "backups" => "/tmp",
- },
- "live" => {
- "host" => "agaric_live@drutopia.org",
- "path" => "/home/agaric_live/site/web",
- "drush" => "/home/agaric_live/site/vendor/bin/drush",
- "backups" => "/tmp",
- },
-}
-TAGNAMES = %w(stable)
-DRUPAL = "web"
-PROFILE = "agaric"
-BUILDDIR = "/tmp/build"
diff --git a/SERVICES.md b/SERVICES.md
deleted file mode 100644
index b7db810..0000000
--- a/SERVICES.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Services
-
-Our server is elizabeth.mayfirst.org which is named after [Elizabeth "Betita" Martínez](https://en.wikipedia.org/wiki/Elizabeth_Martínez)
-
-## Drupal Planet
-
-Agaric is source ID 217 and is listed as 'Agaric Collective':
-
-https://www.drupal.org/aggregator/sources/217
-
-The feed URL they are reading is:
-
-https://agaric.coop/drupal-planet
-
-Note that this does not have 'rss' or 'feed' in the path so will not match any path alias pattern we create, but it is essential we maintain this alias because that is the URL Drupal Planet is reading.
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..c94e927 100644
--- a/composer.json
+++ b/composer.json
@@ -1,248 +1,66 @@
{
- "name": "agaric-sites/agaric_coop",
- "description": "Agaric site modified from template for composer-based Drupal 8 Drutopia projects.",
+ "name": "drutopia/drutopia_template",
+ "description": "Template for composer-based Drutopia projects.",
"type": "project",
- "license": "GPL-2.0-or-later",
+ "license": "GPL-2.0+",
"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"
+ "require": {
+ "composer/installers": "^1.0",
+ "drupal-composer/drupal-scaffold": "^2.0.0",
+ "cweagans/composer-patches": "^1.0",
+ "drutopia/drutopia": "^1.0-alpha7",
+ "drupal/core": "^8.6.0",
+ "behat/behat": "^3.4",
+ "drupal/drupal-extension": "^3.3",
+ "behat/mink": "^1.7",
+ "behat/mink-goutte-driver": "^1.2",
+ "drush/drush": "^9.0",
+ "drupal/migrate_tools": "^4.0",
+ "drupal/migrate_plus": "^4.0",
+ "drupal/webform": "^5.0@RC",
+ "drupal/wysiwyg_linebreaks": "^1.9"
},
"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",
- "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/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"
- },
- "require-dev": {
- "behat/behat": "^3.4",
- "behat/mink": "^1.7",
- "drupal/upgrade_status": "^4"
- },
- "config": {
- "sort-packages": true,
- "process-timeout": 600,
- "allow-plugins": {
- "composer/installers": true,
- "cweagans/composer-patches": true,
- "drupal/core-composer-scaffold": true,
- "drupal/core-project-message": false,
- "wikimedia/composer-merge-plugin": true
- }
- },
- "conflict": {
- "drupal/drupal": "*"
- },
- "extra": {
- "drupal-scaffold": {
- "locations": {
- "web-root": "web/"
- },
- "allowed-packages": [
- "drupal/ui_patterns"
- ]
},
- "installer-paths": {
- "web/core": ["type:drupal-core"],
- "web/libraries/{$name}": ["type:drupal-library"],
- "web/modules/contrib/{$name}": ["type:drupal-module"],
- "web/profiles/contrib/{$name}": ["type:drupal-profile"],
- "web/themes/contrib/{$name}": ["type:drupal-theme"],
- "drush/Commands/contrib/{$name}": ["type:drupal-drush"],
- "web/modules/custom/{$name}": ["type:drupal-custom-module"],
- "web/themes/custom/{$name}": ["type:drupal-custom-theme"]
- },
- "merge-plugin": {
- "include": [
- "web/modules/contrib/webform/composer.libraries.json"
- ]
- },
- "enable-patching": true,
- "patches": {
- "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/ds": {
- "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch"
- }
+ "drutopia": {
+ "type": "vcs",
+ "url": "https://github.com/drutopia/drutopia"
}
},
"scripts": {
- "nuke": "scripts/nuke.sh",
- "pull": "scripts/pull.sh",
- "pull-files": "drush -y rsync @live:%files @self:%files",
- "css": "scripts/css.sh",
- "quick-start": [
- "composer install",
- "php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
- ]
+ "post-install-cmd": [
+ "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
+ ],
+ "post-update-cmd": [
+ "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
+ ]
+ },
+ "extra": {
+ "installer-paths": {
+ "web/core": [
+ "drupal/core"
+ ],
+ "web/modules/contrib/{$name}": [
+ "type:drupal-module"
+ ],
+ "web/profiles/contrib/{$name}": [
+ "type:drupal-profile"
+ ],
+ "web/themes/contrib/{$name}": [
+ "type:drupal-theme"
+ ],
+ "drush/contrib/{$name}": [
+ "type:drupal-drush"
+ ]
+ }
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6",
+ "symfony/phpunit-bridge": "*",
+ "mikey179/vfsstream": "~1.2"
}
}
diff --git a/composer.lock b/composer.lock
index f3a3683..25c09a5 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,316 +4,40 @@
"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": "12b3bde72f33133e085321ae961e59b1",
"packages": [
{
- "name": "abraham/twitteroauth",
- "version": "7.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/abraham/twitteroauth.git",
- "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/abraham/twitteroauth/zipball/a8622680f954d0c4f54fd80bedebe00c756ed7aa",
- "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa",
- "shasum": ""
- },
- "require": {
- "composer/ca-bundle": "^1.2",
- "ext-curl": "*",
- "php": "8.*"
- },
- "require-dev": {
- "php-vcr/php-vcr": "^1",
- "php-vcr/phpunit-testlistener-vcr": "dev-php8",
- "phpmd/phpmd": "^2",
- "phpunit/phpunit": "^9",
- "rector/rector": "^0.15.7",
- "squizlabs/php_codesniffer": "^3"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Abraham\\TwitterOAuth\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Abraham Williams",
- "email": "abraham@abrah.am",
- "homepage": "https://abrah.am",
- "role": "Developer"
- }
- ],
- "description": "The most popular PHP library for use with the Twitter OAuth REST API.",
- "homepage": "https://twitteroauth.com",
- "keywords": [
- "Twitter API",
- "Twitter oAuth",
- "api",
- "oauth",
- "rest",
- "social",
- "twitter"
- ],
- "support": {
- "issues": "https://github.com/abraham/twitteroauth/issues",
- "source": "https://github.com/abraham/twitteroauth"
- },
- "time": "2024-02-11T18:58:08+00:00"
- },
- {
- "name": "agaric/oxford-comma",
+ "name": "asm89/stack-cors",
"version": "1.2.0",
- "source": {
- "type": "git",
- "url": "git@gitlab.com:agaric/php/oxford-comma.git",
- "reference": "62afcb36604999659fcfec4502c120152b39bfc6"
- },
- "dist": {
- "type": "zip",
- "url": "https://gitlab.com/api/v4/projects/agaric%2Fphp%2Foxford-comma/repository/archive.zip?sha=62afcb36604999659fcfec4502c120152b39bfc6",
- "reference": "62afcb36604999659fcfec4502c120152b39bfc6",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/OxfordComma.php"
- ],
- "psr-4": {
- "Agaric\\OxfordComma\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "AGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "benjamin melançon",
- "email": "ben@agaric.com",
- "homepage": "https://agaric.coop/mlncn",
- "role": "Developer"
- }
- ],
- "description": "A function to take a list of terms and return them in an English phrase with proper punctuation 'red, black, and white' or 'red and black'.",
- "homepage": "https://gitlab.com/agaric/php/oxford-comma",
- "keywords": [
- "Lists",
- "Oxford comma",
- "display",
- "output",
- "punctuation",
- "text"
- ],
- "time": "2020-03-26T13:04:29+00:00"
- },
- {
- "name": "agaric/php-facebook",
- "version": "dev-main",
- "source": {
- "type": "git",
- "url": "https://gitlab.com/agaric/php/php-facebook.git",
- "reference": "a0cc6954345d7d1cdf51c571e7950afa01127441"
- },
- "dist": {
- "type": "zip",
- "url": "https://gitlab.com/api/v4/projects/agaric%2Fphp%2Fphp-facebook/repository/archive.zip?sha=a0cc6954345d7d1cdf51c571e7950afa01127441",
- "reference": "a0cc6954345d7d1cdf51c571e7950afa01127441",
- "shasum": ""
- },
- "require": {
- "league/oauth2-facebook": "^2.0"
- },
- "default-branch": true,
- "type": "library",
- "autoload": {
- "psr-4": {
- "Agaric\\FacebookApi\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "AGPL-3.0-or-later"
- ],
- "authors": [
- {
- "name": "keegan rankin",
- "email": "keegan@agaric.coop",
- "homepage": "https://agaric.coop/keegan",
- "role": "Developer"
- },
- {
- "name": "benjamin melançon",
- "email": "ben@agaric.com",
- "homepage": "https://agaric.coop/mlncn",
- "role": "Developer"
- }
- ],
- "description": "Extends the Facebook OAuth 2.0 Client Provider with methods for posting to Facebook",
- "homepage": "https://gitlab.com/agaric/php/php-facebook",
- "keywords": [
- "Authentication",
- "authorization",
- "client",
- "facebook",
- "oauth",
- "oauth2",
- "post"
- ],
- "support": {
- "issues": "https://gitlab.com/agaric/php/php-facebook/-/issues",
- "source": "https://gitlab.com/agaric/php/php-facebook/-/tree/1.0.0"
- },
- "time": "2022-05-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",
- "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"
- },
- {
- "name": "asm89/stack-cors",
- "version": "v2.2.0",
"source": {
"type": "git",
"url": "https://github.com/asm89/stack-cors.git",
- "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
+ "reference": "c163e2b614550aedcf71165db2473d936abbced6"
},
"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/c163e2b614550aedcf71165db2473d936abbced6",
+ "reference": "c163e2b614550aedcf71165db2473d936abbced6",
"shasum": ""
},
"require": {
- "php": "^7.3|^8.0",
- "symfony/http-foundation": "^5.3|^6|^7",
- "symfony/http-kernel": "^5.3|^6|^7"
+ "php": ">=5.5.9",
+ "symfony/http-foundation": "~2.7|~3.0|~4.0",
+ "symfony/http-kernel": "~2.7|~3.0|~4.0"
},
"require-dev": {
- "phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3.5"
+ "phpunit/phpunit": "^5.0 || ^4.8.10",
+ "squizlabs/php_codesniffer": "^2.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.2-dev"
+ "dev-master": "1.2-dev"
}
},
"autoload": {
"psr-4": {
- "Asm89\\Stack\\": "src/"
+ "Asm89\\Stack\\": "src/Asm89/Stack/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -332,38 +56,56 @@
"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"
+ "time": "2017-12-20T14:37:45+00:00"
},
{
- "name": "barnabywalters/mf-cleaner",
- "version": "v0.1.4",
+ "name": "behat/behat",
+ "version": "v3.5.0",
"source": {
"type": "git",
- "url": "https://github.com/barnabywalters/php-mf-cleaner.git",
- "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4"
+ "url": "https://github.com/Behat/Behat.git",
+ "reference": "e4bce688be0c2029dc1700e46058d86428c63cab"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/barnabywalters/php-mf-cleaner/zipball/ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4",
- "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4",
+ "url": "https://api.github.com/repos/Behat/Behat/zipball/e4bce688be0c2029dc1700e46058d86428c63cab",
+ "reference": "e4bce688be0c2029dc1700e46058d86428c63cab",
"shasum": ""
},
+ "require": {
+ "behat/gherkin": "^4.5.1",
+ "behat/transliterator": "^1.2",
+ "container-interop/container-interop": "^1.2",
+ "ext-mbstring": "*",
+ "php": ">=5.3.3",
+ "psr/container": "^1.0",
+ "symfony/class-loader": "~2.1||~3.0",
+ "symfony/config": "~2.3||~3.0||~4.0",
+ "symfony/console": "~2.7.40||^2.8.33||~3.3.15||^3.4.3||^4.0.3",
+ "symfony/dependency-injection": "~2.1||~3.0||~4.0",
+ "symfony/event-dispatcher": "~2.1||~3.0||~4.0",
+ "symfony/translation": "~2.3||~3.0||~4.0",
+ "symfony/yaml": "~2.1||~3.0||~4.0"
+ },
"require-dev": {
- "php": ">=5.3",
- "phpunit/phpunit": "*"
- },
- "suggest": {
- "mf2/mf2": "To parse microformats2 structures from (X)HTML"
+ "herrera-io/box": "~1.6.1",
+ "phpunit/phpunit": "^4.8.36|^6.3",
+ "symfony/process": "~2.5|~3.0|~4.0"
},
+ "bin": [
+ "bin/behat"
+ ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.5.x-dev"
+ }
+ },
"autoload": {
- "files": [
- "src/BarnabyWalters/Mf2/Functions.php"
- ]
+ "psr-0": {
+ "Behat\\Behat": "src/",
+ "Behat\\Testwork": "src/"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -371,105 +113,285 @@
],
"authors": [
{
- "name": "Barnaby Walters",
- "email": "barnaby@waterpigs.co.uk"
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
}
],
- "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"
+ "description": "Scenario-oriented BDD framework for PHP 5.3",
+ "homepage": "http://behat.org/",
+ "keywords": [
+ "Agile",
+ "BDD",
+ "ScenarioBDD",
+ "Scrum",
+ "StoryBDD",
+ "User story",
+ "business",
+ "development",
+ "documentation",
+ "examples",
+ "symfony",
+ "testing"
+ ],
+ "time": "2018-08-10T18:56:51+00:00"
},
{
- "name": "caxy/php-htmldiff",
- "version": "v0.1.15",
+ "name": "behat/gherkin",
+ "version": "v4.5.1",
"source": {
"type": "git",
- "url": "https://github.com/caxy/php-htmldiff.git",
- "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd"
+ "url": "https://github.com/Behat/Gherkin.git",
+ "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/6342b02ddb86fd36093ad7e2db2efc21f01ab7cd",
- "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd",
+ "url": "https://api.github.com/repos/Behat/Gherkin/zipball/74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a",
+ "reference": "74ac03d52c5e23ad8abd5c5cce4ab0e8dc1b530a",
"shasum": ""
},
"require": {
- "ext-dom": "*",
- "ext-mbstring": "*",
- "ezyang/htmlpurifier": "^4.7",
- "php": ">=7.3"
+ "php": ">=5.3.1"
},
"require-dev": {
- "doctrine/cache": "~1.0",
- "phpunit/phpunit": "~9.0"
+ "phpunit/phpunit": "~4.5|~5",
+ "symfony/phpunit-bridge": "~2.7|~3",
+ "symfony/yaml": "~2.3|~3"
},
"suggest": {
- "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider"
+ "symfony/yaml": "If you want to parse features, represented in YAML files"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.1.x-dev"
+ "dev-master": "4.4-dev"
}
},
"autoload": {
"psr-0": {
- "Caxy\\HtmlDiff": "lib/"
+ "Behat\\Gherkin": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0"
+ "MIT"
],
"authors": [
{
- "name": "Josh Schroeder",
- "email": "jschroeder@caxy.com",
- "homepage": "http://www.caxy.com"
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
}
],
- "description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
- "homepage": "https://github.com/caxy/php-htmldiff",
+ "description": "Gherkin DSL parser for PHP 5.3",
+ "homepage": "http://behat.org/",
"keywords": [
- "diff",
- "html"
+ "BDD",
+ "Behat",
+ "Cucumber",
+ "DSL",
+ "gherkin",
+ "parser"
],
- "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": "2017-08-30T11:04:43+00:00"
},
{
- "name": "cebe/markdown",
- "version": "1.2.1",
+ "name": "behat/mink",
+ "version": "v1.7.1",
"source": {
"type": "git",
- "url": "https://github.com/cebe/markdown.git",
- "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
+ "url": "https://github.com/minkphp/Mink.git",
+ "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
- "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
+ "url": "https://api.github.com/repos/minkphp/Mink/zipball/e6930b9c74693dff7f4e58577e1b1743399f3ff9",
+ "reference": "e6930b9c74693dff7f4e58577e1b1743399f3ff9",
"shasum": ""
},
"require": {
- "lib-pcre": "*",
- "php": ">=5.4.0"
+ "php": ">=5.3.1",
+ "symfony/css-selector": "~2.1|~3.0"
},
"require-dev": {
- "cebe/indent": "*",
- "facebook/xhprof": "*@dev",
- "phpunit/phpunit": "4.1.*"
+ "symfony/phpunit-bridge": "~2.7|~3.0"
+ },
+ "suggest": {
+ "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)"
},
- "bin": [
- "bin/markdown"
- ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Behat\\Mink\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
+ }
+ ],
+ "description": "Browser controller/emulator abstraction for PHP",
+ "homepage": "http://mink.behat.org/",
+ "keywords": [
+ "browser",
+ "testing",
+ "web"
+ ],
+ "time": "2016-03-05T08:26:18+00:00"
+ },
+ {
+ "name": "behat/mink-browserkit-driver",
+ "version": "1.3.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
+ "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
+ "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
+ "shasum": ""
+ },
+ "require": {
+ "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/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": "2018-05-02T09:25:31+00:00"
+ },
+ {
+ "name": "behat/mink-extension",
+ "version": "2.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Behat/MinkExtension.git",
+ "reference": "80f7849ba53867181b7e412df9210e12fba50177"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Behat/MinkExtension/zipball/80f7849ba53867181b7e412df9210e12fba50177",
+ "reference": "80f7849ba53867181b7e412df9210e12fba50177",
+ "shasum": ""
+ },
+ "require": {
+ "behat/behat": "^3.0.5",
+ "behat/mink": "^1.5",
+ "php": ">=5.3.2",
+ "symfony/config": "^2.7|^3.0|^4.0"
+ },
+ "require-dev": {
+ "behat/mink-goutte-driver": "^1.1",
+ "phpspec/phpspec": "^2.0"
+ },
+ "type": "behat-extension",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Behat\\MinkExtension": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christophe Coevoet",
+ "email": "stof@notk.org"
+ },
+ {
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com"
+ }
+ ],
+ "description": "Mink extension for Behat",
+ "homepage": "http://extensions.behat.org/mink",
+ "keywords": [
+ "browser",
+ "gui",
+ "test",
+ "web"
+ ],
+ "time": "2018-02-06T15:36:30+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"
@@ -477,7 +399,7 @@
},
"autoload": {
"psr-4": {
- "cebe\\markdown\\": ""
+ "Behat\\Mink\\Driver\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -486,128 +408,52 @@
],
"authors": [
{
- "name": "Carsten Brandt",
- "email": "mail@cebe.cc",
- "homepage": "http://cebe.cc/",
- "role": "Creator"
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
}
],
- "description": "A super fast, highly extensible markdown parser for PHP",
- "homepage": "https://github.com/cebe/markdown#readme",
+ "description": "Goutte driver for Mink framework",
+ "homepage": "http://mink.behat.org/",
"keywords": [
- "extensible",
- "fast",
- "gfm",
- "markdown",
- "markdown-extra"
+ "browser",
+ "goutte",
+ "headless",
+ "testing"
],
- "support": {
- "issues": "https://github.com/cebe/markdown/issues",
- "source": "https://github.com/cebe/markdown"
- },
- "time": "2018-03-26T11:24:36+00:00"
+ "time": "2016-03-05T09:04:22+00:00"
},
{
- "name": "chi-teck/drupal-code-generator",
- "version": "3.3.0",
+ "name": "behat/mink-selenium2-driver",
+ "version": "v1.3.1",
"source": {
"type": "git",
- "url": "https://github.com/Chi-teck/drupal-code-generator.git",
- "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770"
+ "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
+ "reference": "473a9f3ebe0c134ee1e623ce8a9c852832020288"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770",
- "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770",
+ "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/473a9f3ebe0c134ee1e623ce8a9c852832020288",
+ "reference": "473a9f3ebe0c134ee1e623ce8a9c852832020288",
"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"
+ "behat/mink": "~1.7@dev",
+ "instaclick/php-webdriver": "~1.1",
+ "php": ">=5.3.1"
},
"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"
+ "symfony/phpunit-bridge": "~2.7"
},
- "bin": [
- "bin/dcg"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "DrupalCodeGenerator\\": "src"
+ "type": "mink-driver",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3.x-dev"
}
},
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "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"
- },
- {
- "name": "cocur/slugify",
- "version": "v3.2",
- "source": {
- "type": "git",
- "url": "https://github.com/cocur/slugify.git",
- "reference": "d41701efe58ba2df9cae029c3d21e1518cc6780e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/cocur/slugify/zipball/d41701efe58ba2df9cae029c3d21e1518cc6780e",
- "reference": "d41701efe58ba2df9cae029c3d21e1518cc6780e",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "php": ">=5.5.9"
- },
- "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": "library",
"autoload": {
"psr-4": {
- "Cocur\\Slugify\\": "src"
+ "Behat\\Mink\\Driver\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -616,50 +462,95 @@
],
"authors": [
{
- "name": "Ivo Bathke",
- "email": "ivo.bathke@gmail.com"
+ "name": "Konstantin Kudryashov",
+ "email": "ever.zet@gmail.com",
+ "homepage": "http://everzet.com"
},
{
- "name": "Florian Eckerstorfer",
- "email": "florian@eckerstorfer.co",
- "homepage": "https://florian.ec"
+ "name": "Pete Otaqui",
+ "email": "pete@otaqui.com",
+ "homepage": "https://github.com/pete-otaqui"
}
],
- "description": "Converts a string into a slug.",
+ "description": "Selenium2 (WebDriver) driver for Mink framework",
+ "homepage": "http://mink.behat.org/",
"keywords": [
- "slug",
- "slugify"
+ "ajax",
+ "browser",
+ "javascript",
+ "selenium",
+ "testing",
+ "webdriver"
],
- "support": {
- "issues": "https://github.com/cocur/slugify/issues",
- "source": "https://github.com/cocur/slugify/tree/master"
+ "time": "2016-03-05T09:10:18+00:00"
+ },
+ {
+ "name": "behat/transliterator",
+ "version": "v1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Behat/Transliterator.git",
+ "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c"
},
- "time": "2019-01-31T20:38:55+00:00"
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Behat/Transliterator/zipball/826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c",
+ "reference": "826ce7e9c2a6664c0d1f381cbb38b1fb80a7ee2c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "require-dev": {
+ "chuyskywalker/rolling-curl": "^3.1",
+ "php-yaoi/php-yaoi": "^1.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Behat\\Transliterator": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Artistic-1.0"
+ ],
+ "description": "String transliterator",
+ "keywords": [
+ "i18n",
+ "slug",
+ "transliterator"
+ ],
+ "time": "2017-04-04T11:38:05+00:00"
},
{
"name": "commerceguys/addressing",
- "version": "v1.4.2",
+ "version": "v1.0.1",
"source": {
"type": "git",
"url": "https://github.com/commerceguys/addressing.git",
- "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
+ "reference": "de46cb4a002f9014c44cfcb1dcf18df8105e8239"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
- "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
+ "url": "https://api.github.com/repos/commerceguys/addressing/zipball/de46cb4a002f9014c44cfcb1dcf18df8105e8239",
+ "reference": "de46cb4a002f9014c44cfcb1dcf18df8105e8239",
"shasum": ""
},
"require": {
- "doctrine/collections": "^1.2 || ^2.0",
- "php": ">=7.3"
+ "doctrine/collections": "~1.0",
+ "php": ">=5.5.0"
},
"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": "~4.0",
+ "squizlabs/php_codesniffer": "2.*",
+ "symfony/validator": ">=3.2"
},
"suggest": {
"symfony/validator": "to validate addresses"
@@ -694,121 +585,39 @@
"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": "2018-08-17T14:27:22+00:00"
},
{
"name": "composer/installers",
- "version": "v2.2.0",
+ "version": "v1.5.0",
"source": {
"type": "git",
"url": "https://github.com/composer/installers.git",
- "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
+ "reference": "049797d727261bf27f2690430d935067710049c2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
- "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
+ "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2",
+ "reference": "049797d727261bf27f2690430d935067710049c2",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.0 || ^2.0",
- "php": "^7.2 || ^8.0"
+ "composer-plugin-api": "^1.0"
+ },
+ "replace": {
+ "roundcube/plugin-installer": "*",
+ "shama/baton": "*"
},
"require-dev": {
- "composer/composer": "1.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.0.*@dev",
+ "phpunit/phpunit": "^4.8.36"
},
"type": "composer-plugin",
"extra": {
"class": "Composer\\Installers\\Plugin",
"branch-alias": {
- "dev-main": "2.x-dev"
- },
- "plugin-modifies-install-path": true
+ "dev-master": "1.0-dev"
+ }
},
"autoload": {
"psr-4": {
@@ -829,6 +638,7 @@
"description": "A multi-framework Composer library installer",
"homepage": "https://composer.github.io/installers/",
"keywords": [
+ "Craft",
"Dolibarr",
"Eliasis",
"Hurad",
@@ -836,7 +646,6 @@
"Kanboard",
"Lan Management System",
"MODX Evo",
- "MantisBT",
"Mautic",
"Maya",
"OXID",
@@ -844,11 +653,10 @@
"Porto",
"RadPHP",
"SMF",
- "Starbug",
"Thelia",
- "Whmcs",
"WolfCMS",
"agl",
+ "aimeos",
"annotatecms",
"attogram",
"bitrix",
@@ -867,7 +675,7 @@
"grav",
"installer",
"itop",
- "known",
+ "joomla",
"kohana",
"laravel",
"lavalite",
@@ -875,18 +683,14 @@
"magento",
"majima",
"mako",
- "matomo",
"mediawiki",
- "miaoxing",
"modulework",
"modx",
"moodle",
"osclass",
- "pantheon",
"phpbb",
"piwik",
"ppi",
- "processwire",
"puppet",
"pxcms",
"reindex",
@@ -894,58 +698,40 @@
"shopware",
"silverstripe",
"sydes",
- "sylius",
- "tastyigniter",
+ "symfony",
+ "typo3",
"wordpress",
"yawik",
"zend",
"zikula"
],
- "support": {
- "issues": "https://github.com/composer/installers/issues",
- "source": "https://github.com/composer/installers/tree/v2.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": "2017-12-29T09:13:20+00:00"
},
{
"name": "composer/semver",
- "version": "3.4.0",
+ "version": "1.4.2",
"source": {
"type": "git",
"url": "https://github.com/composer/semver.git",
- "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
+ "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
- "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
+ "url": "https://api.github.com/repos/composer/semver/zipball/c7cb9a2095a074d131b65a8a0cd294479d785573",
+ "reference": "c7cb9a2095a074d131b65a8a0cd294479d785573",
"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",
+ "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "3.x-dev"
+ "dev-master": "1.x-dev"
}
},
"autoload": {
@@ -981,59 +767,40 @@
"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": "2016-08-30T16:08:34+00:00"
},
{
"name": "consolidation/annotated-command",
- "version": "4.9.2",
+ "version": "2.8.5",
"source": {
"type": "git",
"url": "https://github.com/consolidation/annotated-command.git",
- "reference": "b5255dcbee1de95036185062a103dabc622224de"
+ "reference": "1e8ff512072422b850b44aa721b5b303e4a5ebb3"
},
"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/1e8ff512072422b850b44aa721b5b303e4a5ebb3",
+ "reference": "1e8ff512072422b850b44aa721b5b303e4a5ebb3",
"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.1.12",
+ "php": ">=5.4.0",
+ "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": "^2",
+ "phpunit/phpunit": "^6",
+ "satooshi/php-coveralls": "^2",
+ "squizlabs/php_codesniffer": "^2.7"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "4.x-dev"
+ "dev-master": "2.x-dev"
}
},
"autoload": {
@@ -1052,206 +819,45 @@
}
],
"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"
- },
- {
- "name": "consolidation/config",
- "version": "2.1.2",
- "source": {
- "type": "git",
- "url": "https://github.com/consolidation/config.git",
- "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
- "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
- "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"
- },
- "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"
- },
- "suggest": {
- "symfony/event-dispatcher": "Required to inject configuration into Command options",
- "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Consolidation\\Config\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- }
- ],
- "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"
- },
- {
- "name": "consolidation/filter-via-dot-access-data",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
- "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
- "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
- "shasum": ""
- },
- "require": {
- "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
- "php": ">=7.1.3"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
- "squizlabs/php_codesniffer": "^3",
- "yoast/phpunit-polyfills": "^0.2.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Consolidation\\Filter\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- }
- ],
- "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"
- },
- {
- "name": "consolidation/log",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/consolidation/log.git",
- "reference": "caaad9d70dae54eb49002666f000e3c607066878"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
- "reference": "caaad9d70dae54eb49002666f000e3c607066878",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0",
- "psr/log": "^3",
- "symfony/console": "^5 || ^6"
- },
- "require-dev": {
- "phpunit/phpunit": ">=7.5.20",
- "squizlabs/php_codesniffer": "^3",
- "yoast/phpunit-polyfills": "^0.2.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Consolidation\\Log\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- }
- ],
- "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": "2018-08-18T23:51:49+00:00"
},
{
"name": "consolidation/output-formatters",
- "version": "4.3.2",
+ "version": "3.2.1",
"source": {
"type": "git",
"url": "https://github.com/consolidation/output-formatters.git",
- "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
+ "reference": "d78ef59aea19d3e2e5a23f90a055155ee78a0ad5"
},
"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/d78ef59aea19d3e2e5a23f90a055155ee78a0ad5",
+ "reference": "d78ef59aea19d3e2e5a23f90a055155ee78a0ad5",
"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"
+ "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": "^2",
+ "phpunit/phpunit": "^5.7.27",
+ "satooshi/php-coveralls": "^2",
+ "squizlabs/php_codesniffer": "^2.7",
+ "symfony/console": "3.2.3",
+ "symfony/var-dumper": "^2.8|^3|^4",
+ "victorjonsson/markdowndocs": "^1.3"
},
"suggest": {
"symfony/var-dumper": "For using the var_dump formatter"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Consolidation\\OutputFormatters\\": "src"
@@ -1268,276 +874,59 @@
}
],
"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": "2018-05-25T18:02:34+00:00"
},
{
- "name": "consolidation/robo",
- "version": "4.0.6",
+ "name": "container-interop/container-interop",
+ "version": "1.2.0",
"source": {
"type": "git",
- "url": "https://github.com/consolidation/robo.git",
- "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
+ "url": "https://github.com/container-interop/container-interop.git",
+ "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
- "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
+ "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
+ "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
"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"
+ "psr/container": "^1.0"
},
- "conflict": {
- "codegyre/robo": "*"
- },
- "require-dev": {
- "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"
- },
- "suggest": {
- "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"
- },
- "bin": [
- "robo"
- ],
"type": "library",
"autoload": {
"psr-4": {
- "Robo\\": "src"
+ "Interop\\Container\\": "src/Interop/Container/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Davert",
- "email": "davert.php@resend.cc"
- }
- ],
- "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"
- },
- {
- "name": "consolidation/self-update",
- "version": "2.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/consolidation/self-update.git",
- "reference": "972a1016761c9b63314e040836a12795dff6953a"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
- "reference": "972a1016761c9b63314e040836a12795dff6953a",
- "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"
- },
- "bin": [
- "scripts/release"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "2.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "SelfUpdate\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Alexander Menk",
- "email": "menk@mestrona.net"
- },
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- }
- ],
- "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"
- },
- {
- "name": "consolidation/site-alias",
- "version": "4.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/consolidation/site-alias.git",
- "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
- "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
- "shasum": ""
- },
- "require": {
- "consolidation/config": "^1.2.1 || ^2",
- "php": ">=7.4",
- "symfony/filesystem": "^5.4 || ^6",
- "symfony/finder": "^5 || ^6"
- },
- "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"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "4.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Consolidation\\SiteAlias\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- },
- {
- "name": "Moshe Weitzman",
- "email": "weitzman@tejasa.com"
- }
- ],
- "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"
- },
- {
- "name": "consolidation/site-process",
- "version": "5.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/consolidation/site-process.git",
- "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
- "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
- "shasum": ""
- },
- "require": {
- "consolidation/config": "^2",
- "consolidation/site-alias": "^3 || ^4",
- "php": ">=8.0.14",
- "symfony/console": "^5.4 || ^6",
- "symfony/process": "^6"
- },
- "require-dev": {
- "phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "5.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Consolidation\\SiteProcess\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Greg Anderson",
- "email": "greg.1.anderson@greenknowe.org"
- },
- {
- "name": "Moshe Weitzman",
- "email": "weitzman@tejasa.com"
- }
- ],
- "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"
+ "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
+ "homepage": "https://github.com/container-interop/container-interop",
+ "time": "2017-02-14T19:40:03+00:00"
},
{
"name": "cweagans/composer-patches",
- "version": "1.7.3",
+ "version": "1.6.5",
"source": {
"type": "git",
"url": "https://github.com/cweagans/composer-patches.git",
- "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
+ "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
- "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
+ "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
+ "reference": "2ec4f00ff5fb64de584c8c4aea53bf9053ecb0b3",
"shasum": ""
},
"require": {
- "composer-plugin-api": "^1.0 || ^2.0",
+ "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,227 +949,69 @@
}
],
"description": "Provides a way to patch Composer packages.",
- "support": {
- "issues": "https://github.com/cweagans/composer-patches/issues",
- "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
- },
- "time": "2022-12-20T22:53:13+00:00"
+ "time": "2018-05-11T18:00:16+00:00"
},
{
- "name": "cypresslab/gitelephant",
- "version": "v4.5.0",
+ "name": "dnoegel/php-xdg-base-dir",
+ "version": "0.1",
"source": {
"type": "git",
- "url": "https://github.com/matteosister/GitElephant.git",
- "reference": "6f396bdb41fa0b2e5e414e16188f6eb107021947"
+ "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
+ "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/matteosister/GitElephant/zipball/6f396bdb41fa0b2e5e414e16188f6eb107021947",
- "reference": "6f396bdb41fa0b2e5e414e16188f6eb107021947",
+ "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
+ "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
"shasum": ""
},
"require": {
- "php": ">=7.2.0",
- "phpcollection/phpcollection": "~0.4|~0.5",
- "symfony/filesystem": ">=3.4",
- "symfony/finder": ">=3.4",
- "symfony/process": ">=3.4"
+ "php": ">=5.3.2"
},
"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"
- },
- {
- "name": "dflydev/dot-access-data",
- "version": "v3.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
- "reference": "f41715465d65213d644d3141a6a93081be5d3549"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
- "reference": "f41715465d65213d644d3141a6a93081be5d3549",
- "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"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.x-dev"
- }
+ "phpunit/phpunit": "@stable"
},
+ "type": "project",
"autoload": {
"psr-4": {
- "Dflydev\\DotAccessData\\": "src/"
+ "XdgBaseDir\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
- "authors": [
- {
- "name": "Dragonfly Development Inc.",
- "email": "info@dflydev.com",
- "homepage": "http://dflydev.com"
- },
- {
- "name": "Beau Simensen",
- "email": "beau@dflydev.com",
- "homepage": "http://beausimensen.com"
- },
- {
- "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.",
- "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
- "keywords": [
- "access",
- "data",
- "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"
- },
- {
- "name": "dg/twitter-php",
- "version": "v3.8",
- "source": {
- "type": "git",
- "url": "https://github.com/dg/twitter-php.git",
- "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/dg/twitter-php/zipball/d9370c9759138200a77ca86abcb0c5ddfe857c68",
- "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "php": ">=5.4.0"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "David Grudl",
- "homepage": "https://davidgrudl.com"
- }
- ],
- "description": "Small and easy Twitter library for PHP",
- "homepage": "https://github.com/dg/twitter-php",
- "keywords": [
- "oauth",
- "twitter"
- ],
- "support": {
- "source": "https://github.com/dg/twitter-php/tree/v3.8"
- },
- "time": "2019-02-08T16:20:01+00:00"
+ "description": "implementation of xdg base directory specification for php",
+ "time": "2014-10-24T07:27:01+00:00"
},
{
"name": "doctrine/annotations",
- "version": "1.14.3",
+ "version": "v1.6.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/annotations.git",
- "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
+ "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
- "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
+ "reference": "c7f2050c68a9ab0bdb0f98567ec08d80ea7d24d5",
"shasum": ""
},
"require": {
- "doctrine/lexer": "^1 || ^2",
- "ext-tokenizer": "*",
- "php": "^7.1 || ^8.0",
- "psr/cache": "^1 || ^2 || ^3"
+ "doctrine/lexer": "1.*",
+ "php": "^7.1"
},
"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"
+ "doctrine/cache": "1.*",
+ "phpunit/phpunit": "^6.4"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
@@ -1791,10 +1022,6 @@
"MIT"
],
"authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
{
"name": "Roman Borschel",
"email": "roman@code-factory.org"
@@ -1803,6 +1030,10 @@
"name": "Benjamin Eberlei",
"email": "kontakt@beberlei.de"
},
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
{
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
@@ -1813,48 +1044,53 @@
}
],
"description": "Docblock Annotations Parser",
- "homepage": "https://www.doctrine-project.org/projects/annotations.html",
+ "homepage": "http://www.doctrine-project.org",
"keywords": [
"annotations",
"docblock",
"parser"
],
- "support": {
- "issues": "https://github.com/doctrine/annotations/issues",
- "source": "https://github.com/doctrine/annotations/tree/1.14.3"
- },
- "time": "2023-02-01T09:20:38+00:00"
+ "time": "2017-12-06T07:11:42+00:00"
},
{
- "name": "doctrine/collections",
- "version": "2.1.4",
+ "name": "doctrine/cache",
+ "version": "v1.8.0",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/collections.git",
- "reference": "72328a11443a0de79967104ad36ba7b30bded134"
+ "url": "https://github.com/doctrine/cache.git",
+ "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
- "reference": "72328a11443a0de79967104ad36ba7b30bded134",
+ "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57",
+ "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57",
"shasum": ""
},
"require": {
- "doctrine/deprecations": "^1",
- "php": "^8.1"
+ "php": "~7.1"
+ },
+ "conflict": {
+ "doctrine/common": ">2.2,<2.4"
},
"require-dev": {
- "doctrine/coding-standard": "^12",
- "ext-json": "*",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-phpunit": "^1.0",
- "phpunit/phpunit": "^9.5",
- "vimeo/psalm": "^5.11"
+ "alcaeus/mongo-php-adapter": "^1.1",
+ "doctrine/coding-standard": "^4.0",
+ "mongodb/mongodb": "^1.1",
+ "phpunit/phpunit": "^7.0",
+ "predis/predis": "~1.0"
+ },
+ "suggest": {
+ "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.8.x-dev"
+ }
+ },
"autoload": {
"psr-4": {
- "Doctrine\\Common\\Collections\\": "src"
+ "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -1862,10 +1098,6 @@
"MIT"
],
"authors": [
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
{
"name": "Roman Borschel",
"email": "roman@code-factory.org"
@@ -1874,6 +1106,10 @@
"name": "Benjamin Eberlei",
"email": "kontakt@beberlei.de"
},
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
{
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
@@ -1883,110 +1119,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": "https://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": "2018-08-21T18:01:43+00:00"
},
{
- "name": "doctrine/deprecations",
- "version": "1.1.3",
+ "name": "doctrine/collections",
+ "version": "v1.5.0",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/deprecations.git",
- "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
+ "url": "https://github.com/doctrine/collections.git",
+ "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
- "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
+ "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
+ "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^7.1"
},
"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,141 +1164,76 @@
"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": "Roman Borschel",
- "email": "roman@code-factory.org"
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
},
{
"name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com"
}
],
- "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
- "homepage": "https://www.doctrine-project.org/projects/lexer.html",
+ "description": "Collections Abstraction library",
+ "homepage": "http://www.doctrine-project.org",
"keywords": [
- "annotations",
- "docblock",
- "lexer",
- "parser",
- "php"
+ "array",
+ "collections",
+ "iterator"
],
- "support": {
- "issues": "https://github.com/doctrine/lexer/issues",
- "source": "https://github.com/doctrine/lexer/tree/2.1.1"
- },
- "funding": [
- {
- "url": "https://www.doctrine-project.org/sponsorship.html",
- "type": "custom"
- },
- {
- "url": "https://www.patreon.com/phpdoctrine",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
- "type": "tidelift"
- }
- ],
- "time": "2024-02-05T11:35:39+00:00"
+ "time": "2017-07-22T10:37:32+00:00"
},
{
- "name": "dompdf/dompdf",
- "version": "v2.0.4",
+ "name": "doctrine/common",
+ "version": "v2.9.0",
"source": {
"type": "git",
- "url": "https://github.com/dompdf/dompdf.git",
- "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f"
+ "url": "https://github.com/doctrine/common.git",
+ "reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f",
- "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f",
+ "url": "https://api.github.com/repos/doctrine/common/zipball/a210246d286c77d2b89040f8691ba7b3a713d2c1",
+ "reference": "a210246d286c77d2b89040f8691ba7b3a713d2c1",
"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"
+ "doctrine/annotations": "^1.0",
+ "doctrine/cache": "^1.0",
+ "doctrine/collections": "^1.0",
+ "doctrine/event-manager": "^1.0",
+ "doctrine/inflector": "^1.0",
+ "doctrine/lexer": "^1.0",
+ "doctrine/persistence": "^1.0",
+ "doctrine/reflection": "^1.0",
+ "php": "^7.1"
},
"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"
+ "doctrine/coding-standard": "^1.0",
+ "phpunit/phpunit": "^6.3",
+ "squizlabs/php_codesniffer": "^3.0",
+ "symfony/phpunit-bridge": "^4.0.5"
},
"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"
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.9.x-dev"
}
- ],
- "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/"
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2137,55 +1242,462 @@
],
"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": [
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
{
- "url": "https://github.com/dragonmantank",
- "type": "github"
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
- "time": "2023-08-10T19:36:49+00:00"
+ "description": "Common Library for Doctrine projects",
+ "homepage": "https://www.doctrine-project.org",
+ "keywords": [
+ "annotations",
+ "collections",
+ "eventmanager",
+ "persistence",
+ "spl"
+ ],
+ "time": "2018-07-12T21:16:12+00:00"
},
{
- "name": "drupal/address",
- "version": "1.12.0",
+ "name": "doctrine/event-manager",
+ "version": "v1.0.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/address.git",
- "reference": "8.x-1.12"
+ "url": "https://github.com/doctrine/event-manager.git",
+ "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3"
},
"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://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+ "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3",
+ "shasum": ""
},
"require": {
- "commerceguys/addressing": "^1.4.2",
- "drupal/core": "^9.2 || ^10",
- "php": "^7.3 || ^8.0"
+ "php": "^7.1"
+ },
+ "conflict": {
+ "doctrine/common": "<2.9@dev"
},
"require-dev": {
- "drupal/token": "^1.0"
+ "doctrine/coding-standard": "^4.0",
+ "phpunit/phpunit": "^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ }
+ ],
+ "description": "Doctrine Event Manager component",
+ "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
+ "keywords": [
+ "event",
+ "eventdispatcher",
+ "eventmanager"
+ ],
+ "time": "2018-06-11T11:59:03+00:00"
+ },
+ {
+ "name": "doctrine/inflector",
+ "version": "v1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/inflector.git",
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a",
+ "reference": "5527a48b7313d15261292c149e55e26eae771b0a",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "Common String Manipulations with regard to casing and singular/plural rules.",
+ "homepage": "http://www.doctrine-project.org",
+ "keywords": [
+ "inflection",
+ "pluralize",
+ "singularize",
+ "string"
+ ],
+ "time": "2018-01-09T20:05:19+00:00"
+ },
+ {
+ "name": "doctrine/lexer",
+ "version": "v1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/lexer.git",
+ "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
+ "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "Doctrine\\Common\\Lexer\\": "lib/"
+ }
+ },
+ "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"
+ }
+ ],
+ "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
+ "homepage": "http://www.doctrine-project.org",
+ "keywords": [
+ "lexer",
+ "parser"
+ ],
+ "time": "2014-09-09T13:34:57+00:00"
+ },
+ {
+ "name": "doctrine/persistence",
+ "version": "v1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/persistence.git",
+ "reference": "af1ec238659a83e320f03e0e454e200f689b4b97"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/persistence/zipball/af1ec238659a83e320f03e0e454e200f689b4b97",
+ "reference": "af1ec238659a83e320f03e0e454e200f689b4b97",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/annotations": "^1.0",
+ "doctrine/cache": "^1.0",
+ "doctrine/collections": "^1.0",
+ "doctrine/event-manager": "^1.0",
+ "doctrine/reflection": "^1.0",
+ "php": "^7.1"
+ },
+ "conflict": {
+ "doctrine/common": "<2.9@dev"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^4.0",
+ "phpstan/phpstan": "^0.8",
+ "phpunit/phpunit": "^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ }
+ ],
+ "description": "Doctrine Persistence abstractions.",
+ "homepage": "https://doctrine-project.org/projects/persistence.html",
+ "keywords": [
+ "persistence"
+ ],
+ "time": "2018-07-12T12:37:50+00:00"
+ },
+ {
+ "name": "doctrine/reflection",
+ "version": "v1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/reflection.git",
+ "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6",
+ "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/annotations": "^1.0",
+ "ext-tokenizer": "*",
+ "php": "^7.1"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^4.0",
+ "doctrine/common": "^2.8",
+ "phpstan/phpstan": "^0.9.2",
+ "phpstan/phpstan-phpunit": "^0.9.4",
+ "phpunit/phpunit": "^7.0",
+ "squizlabs/php_codesniffer": "^3.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\": "lib/Doctrine/Common"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
+ }
+ ],
+ "description": "Doctrine Reflection component",
+ "homepage": "https://www.doctrine-project.org/projects/reflection.html",
+ "keywords": [
+ "reflection"
+ ],
+ "time": "2018-06-14T14:45:07+00:00"
+ },
+ {
+ "name": "drupal-composer/drupal-scaffold",
+ "version": "2.5.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/drupal-composer/drupal-scaffold.git",
+ "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
+ "reference": "fc6bf4ceecb5d47327f54d48d4d4f67b17da956d",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.0.0",
+ "composer/semver": "^1.4",
+ "php": ">=5.4.5"
+ },
+ "require-dev": {
+ "composer/composer": "dev-master",
+ "g1a/composer-test-scenarios": "^2.1.0",
+ "phpunit/phpunit": "^6",
+ "squizlabs/php_codesniffer": "^2.8"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "DrupalComposer\\DrupalScaffold\\Plugin",
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "DrupalComposer\\DrupalScaffold\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
+ "time": "2018-07-27T10:07:07+00:00"
+ },
+ {
+ "name": "drupal/address",
+ "version": "1.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/address",
+ "reference": "8.x-1.4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/address-8.x-1.4.zip",
+ "reference": "8.x-1.4",
+ "shasum": "143e426be73418c719c6bddd5fb81c610604e860"
+ },
+ "require": {
+ "commerceguys/addressing": "^1.0.0",
+ "drupal/core": "*"
+ },
+ "require-dev": {
+ "drupal/token": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.12",
- "datestamp": "1684710176",
+ "version": "8.x-1.4",
+ "datestamp": "1527081784",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -2194,7 +1706,7 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -2202,16 +1714,8 @@
"homepage": "https://www.drupal.org/user/86106"
},
{
- "name": "Centarro",
- "homepage": "https://www.drupal.org/user/3661446"
- },
- {
- "name": "dww",
- "homepage": "https://www.drupal.org/user/46549"
- },
- {
- "name": "jsacksick",
- "homepage": "https://www.drupal.org/user/972218"
+ "name": "googletorp",
+ "homepage": "https://www.drupal.org/user/386230"
},
{
"name": "rszrama",
@@ -2221,34 +1725,81 @@
"description": "Provides functionality for storing, validating and displaying international postal addresses.",
"homepage": "http://drupal.org/project/address",
"support": {
- "source": "https://git.drupalcode.org/project/address"
+ "source": "http://cgit.drupalcode.org/address"
+ }
+ },
+ {
+ "name": "drupal/admin_links_access_filter",
+ "version": "1.0.0-alpha3",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/admin_links_access_filter",
+ "reference": "8.x-1.0-alpha3"
+ },
+ "dist": {
+ "type": "zip",
+ "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": "~8.1"
+ },
+ "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": "3.4.2",
+ "version": "1.24.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/admin_toolbar.git",
- "reference": "3.4.2"
+ "url": "https://git.drupal.org/project/admin_toolbar",
+ "reference": "8.x-1.24"
},
"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_toolbar-8.x-1.24.zip",
+ "reference": "8.x-1.24",
+ "shasum": "682ffa443a1e339583022eb6adbb00c1103ea6d4"
},
"require": {
- "drupal/core": "^9.2 || ^10"
- },
- "require-dev": {
- "drupal/admin_toolbar_tools": "*"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "3.4.2",
- "datestamp": "1696006195",
+ "version": "8.x-1.24",
+ "datestamp": "1527523080",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -2257,7 +1808,7 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -2282,12 +1833,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",
@@ -2301,140 +1852,25 @@
"Toolbar"
],
"support": {
- "source": "https://git.drupalcode.org/project/admin_toolbar",
+ "source": "http://cgit.drupalcode.org/admin_toolbar",
"issues": "https://www.drupal.org/project/issues/admin_toolbar"
}
},
- {
- "name": "drupal/admin_toolbar-admin_toolbar_search",
- "version": "3.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",
- "require": {
- "drupal/admin_toolbar": "*",
- "drupal/core": "^9.2 || ^10"
- },
- "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"
- }
- ],
- "description": "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. Once the issue https://www.drupal.org/node/296693 be solved, this module will be deprecated.",
- "homepage": "https://www.drupal.org/project/admin_toolbar",
- "support": {
- "source": "https://git.drupalcode.org/project/admin_toolbar"
- }
- },
{
"name": "drupal/admin_toolbar_tools",
- "version": "3.4.2",
+ "version": "1.24.0",
"require": {
- "drupal/admin_toolbar": "*",
- "drupal/core": "^9.2 || ^10"
+ "drupal/admin_toolbar": "self.version",
+ "drupal/core": "~8.3"
},
"type": "metapackage",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "3.4.2",
- "datestamp": "1696006195",
+ "version": "8.x-1.24",
+ "datestamp": "1527523080",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -2443,20 +1879,29 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "adriancid",
- "homepage": "https://www.drupal.org/user/1962106"
+ "name": "Wilfrid Roze (eme)",
+ "homepage": "https://www.drupal.org/u/eme",
+ "role": "Maintainer"
},
{
- "name": "bolbol",
- "homepage": "https://www.drupal.org/user/3400070"
+ "name": "Romain Jarraud (romainj)",
+ "homepage": "https://www.drupal.org/u/romainj",
+ "role": "Maintainer"
},
{
- "name": "eme",
- "homepage": "https://www.drupal.org/user/542492"
+ "name": "Adrian Cid Almaguer (adriancid)",
+ "homepage": "https://www.drupal.org/u/adriancid",
+ "email": "adriancid@gmail.com",
+ "role": "Maintainer"
+ },
+ {
+ "name": "Mohamed Anis Taktak (matio89)",
+ "homepage": "https://www.drupal.org/u/matio89",
+ "role": "Maintainer"
},
{
"name": "fethi.krout",
@@ -2466,412 +1911,38 @@
"name": "matio89",
"homepage": "https://www.drupal.org/user/2320090"
},
- {
- "name": "Musa.thomas",
- "homepage": "https://www.drupal.org/user/1213824"
- },
{
"name": "romainj",
"homepage": "https://www.drupal.org/user/370706"
}
],
- "description": "Adds menu links like Flush cache, Run cron, Run updates, and Logout under Drupal icon.",
- "homepage": "https://www.drupal.org/project/admin_toolbar",
+ "description": "Adds menu links to the Admin Toolbar.",
+ "homepage": "http://drupal.org/project/admin_toolbar",
+ "keywords": [
+ "Drupal",
+ "Toolbar"
+ ],
"support": {
- "source": "https://git.drupalcode.org/project/admin_toolbar"
+ "source": "http://cgit.drupalcode.org/admin_toolbar",
+ "issues": "https://www.drupal.org/project/issues/admin_toolbar"
}
},
{
- "name": "drupal/advancedqueue",
- "version": "1.0.0-rc7",
+ "name": "drupal/better_normalizers",
+ "version": "1.0.0-beta3",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/advancedqueue.git",
- "reference": "8.x-1.0-rc7"
+ "url": "https://git.drupal.org/project/better_normalizers",
+ "reference": "8.x-1.0-beta3"
},
"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"
+ "url": "https://ftp.drupal.org/files/projects/better_normalizers-8.x-1.0-beta3.zip",
+ "reference": "8.x-1.0-beta3",
+ "shasum": "876c5f0006c3764677e1dbe6dec60a32d5a2d636"
},
"require": {
- "drupal/core": "^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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/allowed_formats.git",
- "reference": "2.0.0"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/allowed_formats-2.0.0.zip",
- "reference": "2.0.0",
- "shasum": "ac6c6d398f303608ced7e9cd9d4556a728dc41f0"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0",
- "datestamp": "1669170410",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Northern Commerce (formerly Digital Echidna)",
- "homepage": "https://www.drupal.org/northern-commerce-formerly-digital-echidna",
- "role": "Supporting organization"
- },
- {
- "name": "Jordan Thompson (nord102)",
- "homepage": "https://www.drupal.org/u/nord102",
- "role": "Maintainer"
- },
- {
- "name": "Wunder",
- "homepage": "https://www.drupal.org/wunder",
- "role": "Supporting organization"
- },
- {
- "name": "Florian Loretan (floretan)",
- "homepage": "https://www.drupal.org/u/floretan",
- "role": "Maintainer"
- }
- ],
- "description": "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"
- }
- },
- {
- "name": "drupal/antibot",
- "version": "2.0.2",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/antibot.git",
- "reference": "2.0.2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/antibot-2.0.2.zip",
- "reference": "2.0.2",
- "shasum": "e5866fbe1d8e5ff2811ff77efee754d26c313efb"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.2",
- "datestamp": "1666001671",
- "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": "gaurav.kapoor",
- "homepage": "https://www.drupal.org/user/3495331"
- },
- {
- "name": "mstef",
- "homepage": "https://www.drupal.org/user/107190"
- }
- ],
- "description": "Prevent forms from being submitted without JavaScript enabled.",
- "homepage": "https://www.drupal.org/project/antibot",
- "support": {
- "source": "https://git.drupalcode.org/project/antibot"
- }
- },
- {
- "name": "drupal/asset_injector",
- "version": "2.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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/autosave_form.git",
- "reference": "7fe6cc5dd44ce23272878204c613ae3dfd112e86"
- },
- "require": {
- "drupal/core": "^9 || ^10"
+ "drupal/core": "^8.3"
},
"type": "drupal-module",
"extra": {
@@ -2879,11 +1950,11 @@
"dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-1.4+1-dev",
- "datestamp": "1698662713",
+ "version": "8.x-1.0-beta3",
+ "datestamp": "1493796785",
"security-coverage": {
"status": "not-covered",
- "message": "Dev releases are not covered by Drupal security advisories."
+ "message": "Project has not opted into security advisory coverage!"
}
}
},
@@ -2893,277 +1964,53 @@
],
"authors": [
{
- "name": "hchonov",
- "homepage": "https://www.drupal.org/user/2901211"
+ "name": "Sam152",
+ "homepage": "https://www.drupal.org/user/1485048"
+ },
+ {
+ "name": "andypost",
+ "homepage": "https://www.drupal.org/user/118908"
+ },
+ {
+ "name": "chr.fritsch",
+ "homepage": "https://www.drupal.org/user/2103716"
+ },
+ {
+ "name": "larowlan",
+ "homepage": "https://www.drupal.org/user/395439"
}
],
- "description": "Adds autosave feature on forms.",
- "homepage": "https://www.drupal.org/project/autosave_form",
+ "description": "Improve the normalizers in core.",
+ "homepage": "https://www.drupal.org/project/better_normalizers",
"support": {
- "source": "https://git.drupalcode.org/project/autosave_form"
- }
- },
- {
- "name": "drupal/backup_migrate",
- "version": "5.0.3",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/backup_migrate.git",
- "reference": "5.0.3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip",
- "reference": "5.0.3",
- "shasum": "bc263f601f7a21248d4000a372d04a417df7e326"
- },
- "require": {
- "drupal/core": "^9.3 || ^10"
- },
- "suggest": {
- "defuse/php-encryption": "Optional encryption of saved backups."
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "5.0.3",
- "datestamp": "1671366510",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "See contributors",
- "homepage": "https://www.drupal.org/node/189065/committers",
- "role": "Developer"
- },
- {
- "name": "DamienMcKenna",
- "homepage": "https://www.drupal.org/user/108450"
- },
- {
- "name": "dgorton",
- "homepage": "https://www.drupal.org/user/19044"
- },
- {
- "name": "ikit-claw",
- "homepage": "https://www.drupal.org/user/3285813"
- },
- {
- "name": "ronan",
- "homepage": "https://www.drupal.org/user/72815"
- }
- ],
- "description": "Backup and Migrate Drupal Module",
- "homepage": "https://www.drupal.org/project/backup_migrate",
- "support": {
- "source": "https://git.drupalcode.org/project/backup_migrate",
- "issues": "https://www.drupal.org/project/issues/backup_migrate",
- "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
- }
- },
- {
- "name": "drupal/better_exposed_filters",
- "version": "6.0.3",
- "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"
- },
- "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"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "6.0.3",
- "datestamp": "1671541877",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Mike Keran",
- "homepage": "https://www.drupal.org/u/mikeker"
- },
- {
- "name": "Martin Keereman",
- "homepage": "https://www.drupal.org/u/etroid"
- },
- {
- "name": "Neslee Canil Pinto",
- "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
- },
- {
- "name": "mikeker",
- "homepage": "https://www.drupal.org/user/192273"
- },
- {
- "name": "Neslee Canil Pinto",
- "homepage": "https://www.drupal.org/user/3580850"
- },
- {
- "name": "podarok",
- "homepage": "https://www.drupal.org/user/116002"
- },
- {
- "name": "rlhawk",
- "homepage": "https://www.drupal.org/user/352283"
- }
- ],
- "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
- "homepage": "https://www.drupal.org/project/better_exposed_filters",
- "support": {
- "source": "https://git.drupalcode.org/project/better_exposed_filters",
- "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
- }
- },
- {
- "name": "drupal/block_class",
- "version": "2.0.11",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/block_class.git",
- "reference": "2.0.11"
- },
- "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"
+ "source": "http://cgit.drupalcode.org/better_normalizers"
}
},
{
"name": "drupal/block_visibility_groups",
- "version": "2.0.1",
+ "version": "1.2.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/block_visibility_groups.git",
- "reference": "2.0.1"
+ "url": "https://git.drupal.org/project/block_visibility_groups",
+ "reference": "8.x-1.2"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.1.zip",
- "reference": "2.0.1",
- "shasum": "ae268cc3a5821205832b66069dcb8f60b8f20ab9"
+ "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-8.x-1.2.zip",
+ "reference": "8.x-1.2",
+ "shasum": "b05ecd5be9b3d0c36b7c530556b2f6d66020658c"
},
"require": {
- "drupal/core": "^8 || ^9 || ^10"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "2.0.1",
- "datestamp": "1676002877",
+ "version": "8.x-1.2",
+ "datestamp": "1520278380",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -3175,798 +2022,46 @@
"GPL-2.0+"
],
"authors": [
- {
- "name": "DamienMcKenna",
- "homepage": "https://www.drupal.org/user/108450"
- },
- {
- "name": "joelpittet",
- "homepage": "https://www.drupal.org/user/160302"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
{
"name": "tedbow",
"homepage": "https://www.drupal.org/user/240860"
}
],
- "description": "Block Visibility Groups",
- "homepage": "https://www.drupal.org/project/block_visibility_groups",
+ "description": "My Awesome Module",
+ "homepage": "http://drupal.org/project/block_visibility_groups",
"keywords": [
"Drupal"
],
"support": {
- "source": "https://git.drupalcode.org/project/block_visibility_groups",
- "issues": "https://www.drupal.org/project/issues/block_visibility_groups"
- }
- },
- {
- "name": "drupal/bpmn_io",
- "version": "1.1.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"
+ "source": "http://cgit.drupalcode.org/block_visibility_groups",
+ "issues": "http://drupal.org/project/issues/block_visibility_groups"
}
},
{
"name": "drupal/bulma",
- "version": "dev-3.0.x",
+ "version": "1.0.0-alpha4",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/bulma.git",
- "reference": "1899b7afcb023655cdc8d29d1eacd12989ea1403"
+ "url": "https://git.drupal.org/project/bulma",
+ "reference": "8.x-1.0-alpha4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/bulma-8.x-1.0-alpha4.zip",
+ "reference": "8.x-1.0-alpha4",
+ "shasum": "6cf18dfdcdb7242a818b3c305acc36b7dae94ba9"
},
"require": {
- "drupal/core": "^9.2 || ^10"
+ "drupal/core": "~8.0"
},
"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",
- "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": "valic",
- "homepage": "https://www.drupal.org/user/980550"
- }
- ],
- "description": "Built to use Bulma, a modern CSS framework based on Flexbox.",
- "homepage": "http://drupal.org/project/bulma",
- "keywords": [
- "Drupal"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/bulma",
- "issues": "http://drupal.org/project/issues/bulma"
- }
- },
- {
- "name": "drupal/bulma_components",
- "version": "dev-1.0.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/bulma_components.git",
- "reference": "bee8420ca8c906fbccc1bc3172e4ae9d3ac5e15d"
- },
- "require": {
- "drupal/component_schema": "*",
- "drupal/components": "*",
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.0.x": "1.0.x-dev"
- },
- "drupal": {
- "version": "1.0.0-alpha6+21-dev",
- "datestamp": "1687490397",
- "security-coverage": {
- "status": "not-covered",
- "message": "Dev releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "drutopia",
- "homepage": "https://www.drupal.org/user/3763727"
- },
- {
- "name": "MegaKeegMan",
- "homepage": "https://www.drupal.org/user/3620027"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "wolcen",
- "homepage": "https://www.drupal.org/user/3099655"
- }
- ],
- "description": "Provides a set of components to be used when theming with the Bulma CSS framework.",
- "homepage": "https://www.drupal.org/project/bulma_components",
- "support": {
- "source": "https://git.drupalcode.org/project/bulma_components"
- }
- },
- {
- "name": "drupal/cancel_button",
- "version": "1.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"
- }
- },
- {
- "name": "drupal/captcha",
- "version": "2.0.5",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/captcha.git",
- "reference": "2.0.5"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/captcha-2.0.5.zip",
- "reference": "2.0.5",
- "shasum": "0c39d27a99b53f6517ef25ceef1ac5e333964547"
- },
- "require": {
- "drupal/core": ">=9.4 <11"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.5",
- "datestamp": "1691598525",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- },
- "branch-alias": {
- "dev-8.x-1.x": "1.x-dev"
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Anybody",
- "homepage": "https://www.drupal.org/user/291091"
- },
- {
- "name": "elachlan",
- "homepage": "https://www.drupal.org/user/1021502"
- },
- {
- "name": "Grevil",
- "homepage": "https://www.drupal.org/user/3668491"
- },
- {
- "name": "japerry",
- "homepage": "https://www.drupal.org/user/45640"
- },
- {
- "name": "naveenvalecha",
- "homepage": "https://www.drupal.org/user/2665733"
- },
- {
- "name": "podarok",
- "homepage": "https://www.drupal.org/user/116002"
- },
- {
- "name": "RobLoach",
- "homepage": "https://www.drupal.org/user/61114"
- },
- {
- "name": "thomas.frobieter",
- "homepage": "https://www.drupal.org/user/409335"
- },
- {
- "name": "wundo",
- "homepage": "https://www.drupal.org/user/25523"
- }
- ],
- "description": "The CAPTCHA module provides this feature to virtually any user facing web form on a Drupal site.",
- "homepage": "https://www.drupal.org/project/captcha",
- "support": {
- "source": "https://git.drupalcode.org/project/captcha",
- "issues": "https://www.drupal.org/project/issues/captcha"
- }
- },
- {
- "name": "drupal/checklistapi",
- "version": "2.1.5",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/checklistapi.git",
- "reference": "2.1.5"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/checklistapi-2.1.5.zip",
- "reference": "2.1.5",
- "shasum": "9d91ecdcba1fc1d4805a6ddc06a6ba5ca8a63fc9"
- },
- "require": {
- "drupal/core": "^9.3 || ^10",
- "php": ">=7.3.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.1.5",
- "datestamp": "1697644052",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- },
- "drush": {
- "services": {
- "drush.services.yml": "^10"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Travis Carden",
- "homepage": "https://www.drupal.org/user/3550392",
- "email": "travis.carden@gmail.com"
- },
- {
- "name": "Rajeshreeputra",
- "homepage": "https://www.drupal.org/user/3418561"
- },
- {
- "name": "TravisCarden",
- "homepage": "https://www.drupal.org/user/236758"
- },
- {
- "name": "VladimirAus",
- "homepage": "https://www.drupal.org/user/673120"
- }
- ],
- "description": "Provides an API for creating fillable, persistent checklists.",
- "homepage": "http://drupal.org/project/checklistapi",
- "support": {
- "source": "https://git.drupalcode.org/project/checklistapi",
- "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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/ckeditor_markdown.git",
- "reference": "8.x-1.3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/ckeditor_markdown-8.x-1.3.zip",
- "reference": "8.x-1.3",
- "shasum": "3a59518a1fcf06a1c7be80011dd68b2b809a967a"
- },
- "require": {
- "drupal/ckeditor": "*",
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.3",
- "datestamp": "1660824710",
- "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": "JeroenT",
- "homepage": "https://www.drupal.org/user/2228934"
- }
- ],
- "description": "Enables Markdown Plugin for CKEditor.",
- "homepage": "https://www.drupal.org/project/ckeditor_markdown",
- "support": {
- "source": "https://git.drupalcode.org/project/ckeditor_markdown"
- }
- },
- {
- "name": "drupal/ckeditorheight",
- "version": "1.9.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/ckeditorheight.git",
- "reference": "8.x-1.9"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/ckeditorheight-8.x-1.9.zip",
- "reference": "8.x-1.9",
- "shasum": "28119489b4a21f39e5b31e482fdb9fdf05abf6e8"
- },
- "require": {
- "drupal/ckeditor": "^1.0",
- "drupal/core": "^9.4 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.9",
- "datestamp": "1687950399",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "anruether",
- "homepage": "https://www.drupal.org/user/894458"
- },
- {
- "name": "geek-merlin",
- "homepage": "https://www.drupal.org/user/229048"
- },
- {
- "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.",
- "homepage": "https://www.drupal.org/project/ckeditorheight",
- "support": {
- "source": "https://git.drupalcode.org/project/ckeditorheight"
- }
- },
- {
- "name": "drupal/classitup",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/classitup.git",
- "reference": "8.x-1.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/classitup-8.x-1.1.zip",
- "reference": "8.x-1.1",
- "shasum": "309d2bfff59117422c41e8b81b1e8d92f6bd5781"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.1",
- "datestamp": "1668119396",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0+"
- ],
- "authors": [
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- }
- ],
- "description": "Class it up provides classes based on information Drupal knows about.",
- "homepage": "https://www.drupal.org/project/classitup",
- "keywords": [
- "CSS",
- "classes",
- "drupal",
- "styling",
- "theming"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/classitup.git",
- "issues": "https://www.drupal.org/project/issues/classitup"
- }
- },
- {
- "name": "drupal/coffee",
- "version": "dev-1.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/coffee.git",
- "reference": "a8c727dea69852f72872073ec8e515c07a37f911"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.x": "1.x-dev",
- "dev-8.x-1.x": "8.1.x-dev"
- },
- "drupal": {
- "version": "8.x-1.2+4-dev",
- "datestamp": "1671439902",
- "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": "Michael Mol",
- "homepage": "https://www.drupal.org/u/michaelmol",
- "role": "Maintainer"
- },
- {
- "name": "Marco",
- "homepage": "https://www.drupal.org/u/willzyx",
- "role": "Maintainer"
- },
- {
- "name": "Oliver Köhler",
- "homepage": "https://www.drupal.org/u/nebel54",
- "role": "Maintainer"
- },
- {
- "name": "Alli Price",
- "homepage": "https://www.drupal.org/u/heylookalive",
- "role": "Maintainer"
- },
- {
- "name": "See other contributors",
- "homepage": "https://www.drupal.org/node/1356930/committers",
- "role": "contributor"
- }
- ],
- "description": "Provides an Alfred like search box to navigate within your site.",
- "homepage": "https://drupal.org/project/coffee",
- "support": {
- "source": "https://git.drupalcode.org/project/coffee",
- "issues": "https://drupal.org/project/issues/coffee",
- "irc": "irc://irc.freenode.org/drupal-contribute"
- }
- },
- {
- "name": "drupal/comment_notify",
- "version": "1.4.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/comment_notify.git",
- "reference": "8.x-1.4"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/comment_notify-8.x-1.4.zip",
- "reference": "8.x-1.4",
- "shasum": "9f98848f25c1a0db60a8d39f6bbe1d22f47cc2a9"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10",
- "drupal/token": "^1.6"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.4",
- "datestamp": "1679409019",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Greg Knaddison (greggles)",
- "homepage": "https://www.drupal.org/u/greggles",
- "role": "Maintainer"
- },
- {
- "name": "David Valdez (gnuget)",
- "homepage": "https://www.drupal.org/u/gnuget",
- "role": "Co-maintainer"
- },
- {
- "name": "greggles",
- "homepage": "https://www.drupal.org/user/36762"
- },
- {
- "name": "stefanos.petrakis",
- "homepage": "https://www.drupal.org/user/2573064"
- }
- ],
- "description": "Comment follow-up e-mail notification for anonymous as well as registered users.",
- "homepage": "https://drupal.org/project/comment_notify",
- "support": {
- "source": "https://git.drupalcode.org/project/comment_notify",
- "issues": "https://drupal.org/project/issues/comment_notify",
- "irc": "irc://irc.freenode.org/drupal-contribute"
- }
- },
- {
- "name": "drupal/component_schema",
- "version": "1.0.0-alpha7",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/component_schema.git",
- "reference": "1.0.0-alpha7"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/component_schema-1.0.0-alpha7.zip",
- "reference": "1.0.0-alpha7",
- "shasum": "1f19ee533b8556fa6435d3bf390a76f48ce2805d"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "require-dev": {
- "drupal/ui_patterns": "*",
- "drupal/ui_patterns_settings": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "1.0.0-alpha7",
- "datestamp": "1701819925",
+ "version": "8.x-1.0-alpha4",
+ "datestamp": "1535572380",
"security-coverage": {
"status": "not-covered",
"message": "Alpha releases are not covered by Drupal security advisories."
@@ -3979,57 +2074,48 @@
],
"authors": [
{
- "name": "drutopia",
- "homepage": "https://www.drupal.org/user/3763727"
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
},
{
- "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"
+ "name": "valic",
+ "homepage": "https://www.drupal.org/user/980550"
}
],
- "description": "Provides schema support for components, including styleguide integration via the Styleguide module.",
- "homepage": "https://www.drupal.org/project/component_schema",
+ "description": "Built to use Bulma, a modern CSS framework based on Flexbox.",
+ "homepage": "https://www.drupal.org/project/bulma",
"support": {
- "source": "https://git.drupalcode.org/project/component_schema"
+ "source": "http://cgit.drupalcode.org/bulma"
}
},
{
"name": "drupal/components",
- "version": "3.0.0-beta3",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/components.git",
- "reference": "3.0.0-beta3"
+ "url": "https://git.drupal.org/project/components",
+ "reference": "8.x-1.0"
},
"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-1.0.zip",
+ "reference": "8.x-1.0",
+ "shasum": "adb1872a655466d575c2d3396f7ca2daba0a2918"
},
"require": {
- "drupal/core": "^9 || ^10"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "3.0.0-beta3",
- "datestamp": "1651759488",
+ "version": "8.x-1.0",
+ "datestamp": "1461060840",
"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"
}
}
},
@@ -4040,42 +2126,44 @@
"authors": [
{
"name": "JohnAlbin",
- "homepage": "https://www.drupal.org/user/32095",
- "email": "virtually.johnalbin@gmail.com"
+ "homepage": "https://www.drupal.org/user/32095"
},
{
"name": "RobLoach",
"homepage": "https://www.drupal.org/user/61114"
}
],
- "description": "Registers folders of components defined by your theme or module as Twig namespaces",
- "homepage": "https://drupal.org/project/components",
+ "description": "Registers “component libraries” defined in modules and themes with the Twig system",
+ "homepage": "https://www.drupal.org/project/components",
"support": {
- "source": "https://git.drupalcode.org/project/components"
+ "source": "http://cgit.drupalcode.org/components"
}
},
{
"name": "drupal/config_actions",
- "version": "1.4.0",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_actions.git",
- "reference": "8.x-1.4"
+ "url": "https://git.drupal.org/project/config_actions",
+ "reference": "8.x-1.0"
},
"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.0.zip",
+ "reference": "8.x-1.0",
+ "shasum": "58fac288293bb925ade8ff8ea199005fc49939cc"
},
"require": {
- "drupal/core": "^9.4 || ^10"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.4",
- "datestamp": "1687387836",
+ "version": "8.x-1.0",
+ "datestamp": "1535729580",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -4112,107 +2200,98 @@
"description": "Enables modules to provide actions that modify configuration.",
"homepage": "https://www.drupal.org/project/config_actions",
"support": {
- "source": "https://git.drupalcode.org/project/config_actions"
+ "source": "http://cgit.drupalcode.org/config_actions"
}
},
{
"name": "drupal/config_actions_provider",
- "version": "1.3.0",
+ "version": "1.0.0-alpha3",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_actions_provider.git",
- "reference": "8.x-1.3"
+ "url": "https://git.drupal.org/project/config_actions_provider",
+ "reference": "8.x-1.0-alpha3"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.3.zip",
- "reference": "8.x-1.3",
- "shasum": "af685e35f0d06a00c70facaee916eb2b86f8d97b"
+ "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-alpha3.zip",
+ "reference": "8.x-1.0-alpha3",
+ "shasum": "d5a1262e03b118da6c9cf299a5a4270474c7ed56"
},
"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-alpha3",
+ "datestamp": "1534452180",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
}
}
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0+"
+ "GPL-2.0-or-later"
],
"authors": [
{
"name": "bircher",
"homepage": "https://www.drupal.org/user/1344166"
},
- {
- "name": "drutopia",
- "homepage": "https://www.drupal.org/user/3763727"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
{
"name": "nedjo",
"homepage": "https://www.drupal.org/user/4481"
}
],
- "description": "Apply config actions when applying configuration updates",
- "homepage": "http://drupal.org/project/config_actions_provider",
- "keywords": [
- "Drupal"
- ],
+ "description": "Apply config actions when applying configuration updates.",
+ "homepage": "https://www.drupal.org/project/config_actions_provider",
"support": {
- "source": "http://cgit.drupalcode.org/config_actions_provider",
- "issues": "http://drupal.org/project/issues/config_actions_provider"
+ "source": "http://cgit.drupalcode.org/config_actions_provider"
}
},
{
"name": "drupal/config_distro",
- "version": "2.0.0-alpha2",
+ "version": "1.0.0-alpha2",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_distro.git",
- "reference": "2.0.0-alpha2"
+ "url": "https://git.drupal.org/project/config_distro",
+ "reference": "8.x-1.0-alpha2"
},
"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-alpha2.zip",
+ "reference": "8.x-1.0-alpha2",
+ "shasum": "ce4bf096d8c99e48095c919c61ba27d38dbe5cc7"
},
"require": {
"drupal/config_filter": "*",
- "drupal/core": "^9.3 || ^10"
- },
- "require-dev": {
- "drupal/config_distro_filter": "*",
- "drupal/config_filter": "*",
- "drush/drush": ">=11"
- },
- "suggest": {
- "drush/drush": ">=11"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "2.0.0-alpha2",
- "datestamp": "1691786887",
+ "version": "8.x-1.0-alpha2",
+ "datestamp": "1523029384",
"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",
@@ -4231,22 +2310,6 @@
"homepage": "https://www.drupal.org/u/bircher",
"email": "opensource@fabianbircher.com",
"role": "Maintainer"
- },
- {
- "name": "joegraduate",
- "homepage": "https://www.drupal.org/user/789384"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "pescetti",
- "homepage": "https://www.drupal.org/user/436244"
- },
- {
- "name": "pfrenssen",
- "homepage": "https://www.drupal.org/user/382067"
}
],
"description": "Framework for managing configuration updates from distributions.",
@@ -4257,89 +2320,34 @@
"irc": "irc://irc.freenode.org/drupal-contribute"
}
},
- {
- "name": "drupal/config_distro_filter",
- "version": "2.0.0-alpha2",
- "require": {
- "drupal/config_distro": "*",
- "drupal/config_filter": "*",
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "metapackage",
- "extra": {
- "drupal": {
- "version": "2.0.0-alpha2",
- "datestamp": "1691786887",
- "security-coverage": {
- "status": "not-covered",
- "message": "Alpha releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "ademarco",
- "homepage": "https://www.drupal.org/user/186696"
- },
- {
- "name": "bircher",
- "homepage": "https://www.drupal.org/user/1344166"
- },
- {
- "name": "joegraduate",
- "homepage": "https://www.drupal.org/user/789384"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "pescetti",
- "homepage": "https://www.drupal.org/user/436244"
- },
- {
- "name": "pfrenssen",
- "homepage": "https://www.drupal.org/user/382067"
- }
- ],
- "description": "Bridge between Config Filter and Config Distro's use of Transform API to keep backwards compatibility.",
- "homepage": "https://www.drupal.org/project/config_distro",
- "support": {
- "source": "https://git.drupalcode.org/project/config_distro"
- }
- },
{
"name": "drupal/config_filter",
- "version": "2.6.0",
+ "version": "1.2.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_filter.git",
- "reference": "8.x-2.6"
+ "url": "https://git.drupal.org/project/config_filter",
+ "reference": "8.x-1.2"
},
"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-1.2.zip",
+ "reference": "8.x-1.2",
+ "shasum": "ba3d76dc6bb1eb8644ce8997ca2890496a50ae0e"
},
"require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "conflict": {
- "drush/drush": "<10"
+ "drupal/core": "~8.0"
},
"suggest": {
"drupal/config_split": "Split site configuration for different environments."
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-2.6",
- "datestamp": "1698308577",
+ "version": "8.x-1.2",
+ "datestamp": "1522943885",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -4348,7 +2356,7 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -4376,117 +2384,39 @@
"configuration management"
],
"support": {
- "source": "https://git.drupalcode.org/project/config_filter",
+ "source": "http://cgit.drupalcode.org/config_filter",
"issues": "https://www.drupal.org/project/issues/config_filter",
- "slack": "https://drupal.slack.com/archives/C45342CDD"
+ "irc": "irc://irc.freenode.org/drupal-contribute"
}
},
{
"name": "drupal/config_merge",
- "version": "2.0.0-alpha1",
+ "version": "1.0.0-alpha2",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_merge.git",
- "reference": "2.0.0-alpha1"
+ "url": "https://git.drupal.org/project/config_merge",
+ "reference": "8.x-1.0-alpha2"
},
"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-alpha2.zip",
+ "reference": "8.x-1.0-alpha2",
+ "shasum": "6f34123f0353395c67a540e1233e0b609f0188f5"
},
"require": {
- "drupal/core": "^9.3 || ^10",
- "php": ">=8.0"
- },
- "require-dev": {
- "drupal/config_filter": "*"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "2.0.0-alpha1",
- "datestamp": "1682377160",
+ "version": "8.x-1.0-alpha2",
+ "datestamp": "1528237080",
"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!"
}
}
},
@@ -4495,22 +2425,10 @@
"GPL-2.0-or-later"
],
"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": "mlncn",
"homepage": "https://www.drupal.org/user/64383"
@@ -4518,47 +2436,42 @@
{
"name": "nedjo",
"homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "tadean",
- "homepage": "https://www.drupal.org/user/3608919"
- },
- {
- "name": "uarizona",
- "homepage": "https://www.drupal.org/user/3763238"
}
],
- "description": "Normalizes configuration for comparison.",
- "homepage": "https://www.drupal.org/project/config_normalizer",
+ "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_normalizer"
+ "source": "http://cgit.drupalcode.org/config_merge"
}
},
{
"name": "drupal/config_perms",
- "version": "2.1.0",
+ "version": "2.0.0-beta1",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_perms.git",
- "reference": "8.x-2.1"
+ "url": "https://git.drupal.org/project/config_perms",
+ "reference": "8.x-2.0-beta1"
},
"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-beta1.zip",
+ "reference": "8.x-2.0-beta1",
+ "shasum": "2bd2caca20eef9e1832f8a99265fe8b182e8cf39"
},
"require": {
- "drupal/core": "^8 || ^9 || ^10"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ },
"drupal": {
- "version": "8.x-2.1",
- "datestamp": "1685589568",
+ "version": "8.x-2.0-beta1",
+ "datestamp": "1517948688",
"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."
}
}
},
@@ -4567,30 +2480,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,423 +2513,29 @@
},
{
"name": "drupal/config_provider",
- "version": "3.0.0-alpha1",
+ "version": "2.0.0-alpha5",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/config_provider.git",
- "reference": "3.0.0-alpha1"
+ "url": "https://git.drupal.org/project/config_provider",
+ "reference": "8.x-2.0-alpha5"
},
"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-alpha5.zip",
+ "reference": "8.x-2.0-alpha5",
+ "shasum": "deb67ab55985092664ef225b03a2aa9b8ffc32fe"
},
"require": {
- "drupal/core": "^9.3 || ^10"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ },
"drupal": {
- "version": "3.0.0-alpha1",
- "datestamp": "1682387859",
- "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": "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": "gnuget",
- "homepage": "https://www.drupal.org/user/992990"
- },
- {
- "name": "joegraduate",
- "homepage": "https://www.drupal.org/user/789384"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "pfrenssen",
- "homepage": "https://www.drupal.org/user/382067"
- },
- {
- "name": "tadean",
- "homepage": "https://www.drupal.org/user/3608919"
- }
- ],
- "description": "Enables provision of configuration by extensions.",
- "homepage": "https://www.drupal.org/project/config_provider",
- "support": {
- "source": "https://git.drupalcode.org/project/config_provider"
- }
- },
- {
- "name": "drupal/config_snapshot",
- "version": "2.0.0-alpha1",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/config_snapshot.git",
- "reference": "2.0.0-alpha1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0-alpha1.zip",
- "reference": "2.0.0-alpha1",
- "shasum": "35cb1bb74f07c8973cee19eac71aa4124ea3dd0f"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-alpha1",
- "datestamp": "1682448084",
- "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": "a.dmitriiev",
- "homepage": "https://www.drupal.org/user/3235287"
- },
- {
- "name": "geek-merlin",
- "homepage": "https://www.drupal.org/user/229048"
- },
- {
- "name": "gnuget",
- "homepage": "https://www.drupal.org/user/992990"
- },
- {
- "name": "joegraduate",
- "homepage": "https://www.drupal.org/user/789384"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "tadean",
- "homepage": "https://www.drupal.org/user/3608919"
- }
- ],
- "description": "Manages snapshots of configuration as provided by modules and themes.",
- "homepage": "https://www.drupal.org/project/config_snapshot",
- "support": {
- "source": "https://git.drupalcode.org/project/config_snapshot"
- }
- },
- {
- "name": "drupal/config_sync",
- "version": "3.0.0-alpha3",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/config_sync.git",
- "reference": "3.0.0-alpha3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha3.zip",
- "reference": "3.0.0-alpha3",
- "shasum": "8664153679b63fe1c0b84702374122a149fc3846"
- },
- "require": {
- "drupal/config_distro": "^2.0.0-alpha2",
- "drupal/config_distro_filter": "*",
- "drupal/config_filter": "^1.10||^2.4",
- "drupal/config_merge": "^2.0.0-alpha1",
- "drupal/config_normalizer": "^1.0-beta1",
- "drupal/config_provider": "^3.0.0-alpha1",
- "drupal/config_snapshot": "^2.0.0-alpha1",
- "drupal/config_update": "^2.0.0-alpha2",
- "drupal/core": "^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "3.0.0-alpha3",
- "datestamp": "1692125273",
- "security-coverage": {
- "status": "not-covered",
- "message": "Alpha releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Nedjo Rogers (nedjo)",
- "homepage": "https://www.drupal.org/u/nedjo",
- "email": "nedjo@4481.no-reply.drupal.org",
- "role": "Maintainer"
- },
- {
- "name": "bircher",
- "homepage": "https://www.drupal.org/user/1344166"
- },
- {
- "name": "flocondetoile",
- "homepage": "https://www.drupal.org/user/2006064"
- },
- {
- "name": "geek-merlin",
- "homepage": "https://www.drupal.org/user/229048"
- },
- {
- "name": "joegraduate",
- "homepage": "https://www.drupal.org/user/789384"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "pfrenssen",
- "homepage": "https://www.drupal.org/user/382067"
- },
- {
- "name": "tadean",
- "homepage": "https://www.drupal.org/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"
- }
- },
- {
- "name": "drupal/config_update",
- "version": "2.0.0-alpha3",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/config_update.git",
- "reference": "2.0.0-alpha3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
- "reference": "2.0.0-alpha3",
- "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
- },
- "require": {
- "drupal/core": "^9.4 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-alpha3",
- "datestamp": "1683807608",
- "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": "codebymikey",
- "homepage": "https://www.drupal.org/user/3573206"
- },
- {
- "name": "Pasqualle",
- "homepage": "https://www.drupal.org/user/80733"
- }
- ],
- "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",
+ "version": "8.x-2.0-alpha5",
+ "datestamp": "1535576280",
"security-coverage": {
"status": "not-covered",
"message": "Project has not opted into security advisory coverage!"
@@ -5041,40 +2548,229 @@
],
"authors": [
{
- "name": "el1_1el",
- "homepage": "https://www.drupal.org/user/1795292"
+ "name": "bircher",
+ "homepage": "https://www.drupal.org/user/1344166"
},
{
- "name": "joseph.olstad",
- "homepage": "https://www.drupal.org/user/1321830"
+ "name": "gnuget",
+ "homepage": "https://www.drupal.org/user/992990"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "pfrenssen",
+ "homepage": "https://www.drupal.org/user/382067"
}
],
- "description": "Convert entity bundles from one value to another",
- "homepage": "https://www.drupal.org/project/convert_bundles",
+ "description": "Enables provision of configuration by extensions.",
+ "homepage": "https://www.drupal.org/project/config_provider",
"support": {
- "source": "https://git.drupalcode.org/project/convert_bundles"
+ "source": "http://cgit.drupalcode.org/config_provider"
+ }
+ },
+ {
+ "name": "drupal/config_snapshot",
+ "version": "1.0.0-alpha3",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/config_snapshot",
+ "reference": "8.x-1.0-alpha3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/config_snapshot-8.x-1.0-alpha3.zip",
+ "reference": "8.x-1.0-alpha3",
+ "shasum": "5ea22adc489334f819e1f0011c74bf374e80dd5c"
+ },
+ "require": {
+ "drupal/core": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha3",
+ "datestamp": "1534894980",
+ "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": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ }
+ ],
+ "description": "Manages snapshots of configuration as provided by modules and themes.",
+ "homepage": "https://www.drupal.org/project/config_snapshot",
+ "support": {
+ "source": "http://cgit.drupalcode.org/config_snapshot"
+ }
+ },
+ {
+ "name": "drupal/config_sync",
+ "version": "2.0.0-alpha10",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/config_sync",
+ "reference": "8.x-2.0-alpha10"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-alpha10.zip",
+ "reference": "8.x-2.0-alpha10",
+ "shasum": "5d2fe07d21ace51aaf740bca79db16b7b1478e5d"
+ },
+ "require": {
+ "drupal/config_distro": "*",
+ "drupal/config_filter": "*",
+ "drupal/config_merge": "*",
+ "drupal/config_provider": "^2",
+ "drupal/config_snapshot": "*",
+ "drupal/config_update": "*",
+ "drupal/core": "^8.3",
+ "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-2.0-alpha10",
+ "datestamp": "1534954380",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "Nedjo Rogers (nedjo)",
+ "homepage": "https://www.drupal.org/u/nedjo",
+ "email": "nedjo@4481.no-reply.drupal.org",
+ "role": "Maintainer"
+ },
+ {
+ "name": "flocondetoile",
+ "homepage": "https://www.drupal.org/user/2006064"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "mtift",
+ "homepage": "https://www.drupal.org/user/751908"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "pfrenssen",
+ "homepage": "https://www.drupal.org/user/382067"
+ }
+ ],
+ "description": "Synchronize your site with updated configuration provided by modules and themes.",
+ "homepage": "https://www.drupal.org/project/config_sync",
+ "support": {
+ "source": "https://cgit.drupalcode.org/config_sync",
+ "issues": "https://drupal.org/project/issues/config_sync",
+ "irc": "irc://irc.freenode.org/drupal-contribute"
+ }
+ },
+ {
+ "name": "drupal/config_update",
+ "version": "1.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/config_update",
+ "reference": "8.x-1.5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.5.zip",
+ "reference": "8.x-1.5",
+ "shasum": "2f7ae5f90b1c0ab8edf84680d2651e81fab6a126"
+ },
+ "require": {
+ "drupal/core": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.5",
+ "datestamp": "1512587912",
+ "security-coverage": {
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0-or-later"
+ ],
+ "authors": [
+ {
+ "name": "jhodgdon",
+ "homepage": "https://www.drupal.org/user/155601"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ }
+ ],
+ "description": "Provides basic revert and update functionality for other modules",
+ "homepage": "https://www.drupal.org/project/config_update",
+ "support": {
+ "source": "http://cgit.drupalcode.org/config_update"
}
},
{
"name": "drupal/core",
- "version": "10.2.3",
+ "version": "8.6.0",
"source": {
"type": "git",
"url": "https://github.com/drupal/core.git",
- "reference": "cc8c7952f7013795b735f5c15290e76937163bb7"
+ "reference": "4a2507b102fcedc74507fd372131f2ed72913429"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7",
- "reference": "cc8c7952f7013795b735f5c15290e76937163bb7",
+ "url": "https://api.github.com/repos/drupal/core/zipball/4a2507b102fcedc74507fd372131f2ed72913429",
+ "reference": "4a2507b102fcedc74507fd372131f2ed72913429",
"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.2",
+ "doctrine/common": "^2.5",
+ "easyrdf/easyrdf": "^0.9",
+ "egulias/email-validator": "^1.2",
"ext-date": "*",
"ext-dom": "*",
"ext-filter": "*",
@@ -5088,38 +2784,59 @@
"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.2.1",
+ "masterminds/html5": "^2.1",
+ "paragonie/random_compat": "^1.0|^2.0",
+ "php": "^5.5.9|>=7.0.8",
+ "stack/builder": "^1.0",
+ "symfony-cmf/routing": "^1.4",
+ "symfony/class-loader": "~3.4.0",
+ "symfony/console": "~3.4.0",
+ "symfony/dependency-injection": "~3.4.0",
+ "symfony/event-dispatcher": "~3.4.0",
+ "symfony/http-foundation": "~3.4.14",
+ "symfony/http-kernel": "~3.4.14",
+ "symfony/polyfill-iconv": "^1.0",
+ "symfony/process": "~3.4.0",
+ "symfony/psr-http-message-bridge": "^1.0",
+ "symfony/routing": "~3.4.0",
+ "symfony/serializer": "~3.4.0",
+ "symfony/translation": "~3.4.0",
+ "symfony/validator": "~3.4.0",
+ "symfony/yaml": "~3.4.5",
+ "twig/twig": "^1.35.0",
+ "zendframework/zend-diactoros": "^1.1",
+ "zendframework/zend-feed": "^2.4"
},
"conflict": {
- "drush/drush": "<12.4.3"
+ "drush/drush": "<8.1.10"
},
"replace": {
+ "drupal/action": "self.version",
+ "drupal/aggregator": "self.version",
+ "drupal/automated_cron": "self.version",
+ "drupal/ban": "self.version",
+ "drupal/bartik": "self.version",
+ "drupal/basic_auth": "self.version",
+ "drupal/big_pipe": "self.version",
+ "drupal/block": "self.version",
+ "drupal/block_content": "self.version",
+ "drupal/block_place": "self.version",
+ "drupal/book": "self.version",
+ "drupal/breakpoint": "self.version",
+ "drupal/ckeditor": "self.version",
+ "drupal/classy": "self.version",
+ "drupal/color": "self.version",
+ "drupal/comment": "self.version",
+ "drupal/config": "self.version",
+ "drupal/config_translation": "self.version",
+ "drupal/contact": "self.version",
+ "drupal/content_moderation": "self.version",
+ "drupal/content_translation": "self.version",
+ "drupal/contextual": "self.version",
"drupal/core-annotation": "self.version",
"drupal/core-assertion": "self.version",
+ "drupal/core-bridge": "self.version",
"drupal/core-class-finder": "self.version",
"drupal/core-datetime": "self.version",
"drupal/core-dependency-injection": "self.version",
@@ -5127,9 +2844,7 @@
"drupal/core-discovery": "self.version",
"drupal/core-event-dispatcher": "self.version",
"drupal/core-file-cache": "self.version",
- "drupal/core-file-security": "self.version",
"drupal/core-filesystem": "self.version",
- "drupal/core-front-matter": "self.version",
"drupal/core-gettext": "self.version",
"drupal/core-graph": "self.version",
"drupal/core-http-foundation": "self.version",
@@ -5141,70 +2856,128 @@
"drupal/core-transliteration": "self.version",
"drupal/core-utility": "self.version",
"drupal/core-uuid": "self.version",
- "drupal/core-version": "self.version"
+ "drupal/datetime": "self.version",
+ "drupal/datetime_range": "self.version",
+ "drupal/dblog": "self.version",
+ "drupal/dynamic_page_cache": "self.version",
+ "drupal/editor": "self.version",
+ "drupal/entity_reference": "self.version",
+ "drupal/field": "self.version",
+ "drupal/field_layout": "self.version",
+ "drupal/field_ui": "self.version",
+ "drupal/file": "self.version",
+ "drupal/filter": "self.version",
+ "drupal/forum": "self.version",
+ "drupal/hal": "self.version",
+ "drupal/help": "self.version",
+ "drupal/history": "self.version",
+ "drupal/image": "self.version",
+ "drupal/inline_form_errors": "self.version",
+ "drupal/language": "self.version",
+ "drupal/layout_builder": "self.version",
+ "drupal/layout_discovery": "self.version",
+ "drupal/link": "self.version",
+ "drupal/locale": "self.version",
+ "drupal/media": "self.version",
+ "drupal/media_library": "self.version",
+ "drupal/menu_link_content": "self.version",
+ "drupal/menu_ui": "self.version",
+ "drupal/migrate": "self.version",
+ "drupal/migrate_drupal": "self.version",
+ "drupal/migrate_drupal_multilingual": "self.version",
+ "drupal/migrate_drupal_ui": "self.version",
+ "drupal/minimal": "self.version",
+ "drupal/node": "self.version",
+ "drupal/options": "self.version",
+ "drupal/page_cache": "self.version",
+ "drupal/path": "self.version",
+ "drupal/quickedit": "self.version",
+ "drupal/rdf": "self.version",
+ "drupal/responsive_image": "self.version",
+ "drupal/rest": "self.version",
+ "drupal/search": "self.version",
+ "drupal/serialization": "self.version",
+ "drupal/settings_tray": "self.version",
+ "drupal/seven": "self.version",
+ "drupal/shortcut": "self.version",
+ "drupal/simpletest": "self.version",
+ "drupal/standard": "self.version",
+ "drupal/stark": "self.version",
+ "drupal/statistics": "self.version",
+ "drupal/syslog": "self.version",
+ "drupal/system": "self.version",
+ "drupal/taxonomy": "self.version",
+ "drupal/telephone": "self.version",
+ "drupal/text": "self.version",
+ "drupal/toolbar": "self.version",
+ "drupal/tour": "self.version",
+ "drupal/tracker": "self.version",
+ "drupal/update": "self.version",
+ "drupal/user": "self.version",
+ "drupal/views": "self.version",
+ "drupal/views_ui": "self.version",
+ "drupal/workflows": "self.version",
+ "drupal/workspaces": "self.version"
},
- "suggest": {
- "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
+ "require-dev": {
+ "behat/mink": "1.7.x-dev",
+ "behat/mink-goutte-driver": "^1.2",
+ "behat/mink-selenium2-driver": "1.3.x-dev",
+ "drupal/coder": "^8.2.12",
+ "jcalderonzumba/gastonjs": "^1.0.2",
+ "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
+ "mikey179/vfsstream": "^1.2",
+ "phpspec/prophecy": "^1.4",
+ "phpunit/phpunit": "^4.8.35 || ^6.5",
+ "symfony/css-selector": "^3.4.0",
+ "symfony/debug": "^3.4.0",
+ "symfony/phpunit-bridge": "^3.4.3"
},
"type": "drupal-core",
"extra": {
- "drupal-scaffold": {
- "file-mapping": {
- "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
- "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
- "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
- "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
- "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
- "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
- "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
- "[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]/robots.txt": "assets/scaffold/files/robots.txt",
- "[web-root]/update.php": "assets/scaffold/files/update.php",
- "[web-root]/web.config": "assets/scaffold/files/web.config",
- "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
- "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
- "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
- "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
- "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
- "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
- "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
- "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
- "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
- }
+ "merge-plugin": {
+ "require": [
+ "core/lib/Drupal/Component/Annotation/composer.json",
+ "core/lib/Drupal/Component/Assertion/composer.json",
+ "core/lib/Drupal/Component/Bridge/composer.json",
+ "core/lib/Drupal/Component/ClassFinder/composer.json",
+ "core/lib/Drupal/Component/Datetime/composer.json",
+ "core/lib/Drupal/Component/DependencyInjection/composer.json",
+ "core/lib/Drupal/Component/Diff/composer.json",
+ "core/lib/Drupal/Component/Discovery/composer.json",
+ "core/lib/Drupal/Component/EventDispatcher/composer.json",
+ "core/lib/Drupal/Component/FileCache/composer.json",
+ "core/lib/Drupal/Component/FileSystem/composer.json",
+ "core/lib/Drupal/Component/Gettext/composer.json",
+ "core/lib/Drupal/Component/Graph/composer.json",
+ "core/lib/Drupal/Component/HttpFoundation/composer.json",
+ "core/lib/Drupal/Component/PhpStorage/composer.json",
+ "core/lib/Drupal/Component/Plugin/composer.json",
+ "core/lib/Drupal/Component/ProxyBuilder/composer.json",
+ "core/lib/Drupal/Component/Render/composer.json",
+ "core/lib/Drupal/Component/Serialization/composer.json",
+ "core/lib/Drupal/Component/Transliteration/composer.json",
+ "core/lib/Drupal/Component/Utility/composer.json",
+ "core/lib/Drupal/Component/Uuid/composer.json"
+ ],
+ "recurse": false,
+ "replace": false,
+ "merge-extra": false
}
},
"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,286 +2986,42 @@
"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"
- },
- {
- "name": "drupal/core-composer-scaffold",
- "version": "10.2.3",
- "source": {
- "type": "git",
- "url": "https://github.com/drupal/core-composer-scaffold.git",
- "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f",
- "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f",
- "shasum": ""
- },
- "require": {
- "composer-plugin-api": "^2",
- "php": ">=7.3.0"
- },
- "conflict": {
- "drupal-composer/drupal-scaffold": "*"
- },
- "require-dev": {
- "composer/composer": "^1.8@stable"
- },
- "type": "composer-plugin",
- "extra": {
- "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Drupal\\Composer\\Plugin\\Scaffold\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "A flexible Composer project scaffold builder.",
- "homepage": "https://www.drupal.org/project/drupal",
- "keywords": [
- "drupal"
- ],
- "support": {
- "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3"
- },
- "time": "2024-01-26T14:59:30+00:00"
- },
- {
- "name": "drupal/core-recommended",
- "version": "10.2.3",
- "source": {
- "type": "git",
- "url": "https://github.com/drupal/core-recommended.git",
- "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859",
- "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859",
- "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"
- },
- "conflict": {
- "webflo/drupal-core-strict": "*"
- },
- "type": "metapackage",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
- "support": {
- "source": "https://github.com/drupal/core-recommended/tree/10.2.3"
- },
- "time": "2024-02-07T22:44:48+00:00"
- },
- {
- "name": "drupal/crop",
- "version": "2.3.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/crop.git",
- "reference": "8.x-2.3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.3.zip",
- "reference": "8.x-2.3",
- "shasum": "8e109cf60077f4c605c4d1f895cb3dc28613a23a"
- },
- "require": {
- "drupal/core": "^9.3 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-2.3",
- "datestamp": "1665437894",
- "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": "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 storage and API for image crops.",
- "homepage": "https://www.drupal.org/project/crop",
- "support": {
- "source": "https://git.drupalcode.org/project/crop",
- "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"
- }
+ "time": "2018-09-05T22:16:20+00:00"
},
{
"name": "drupal/ctools",
- "version": "3.14.0",
+ "version": "3.0.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/ctools.git",
- "reference": "8.x-3.14"
+ "url": "https://git.drupal.org/project/ctools",
+ "reference": "8.x-3.0"
},
"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.0.zip",
+ "reference": "8.x-3.0",
+ "shasum": "302e869ecd1e59fe55663673999fee2ccac5daa8"
},
"require": {
- "drupal/core": "^9.3 || ^10"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-3.x": "3.x-dev"
+ },
"drupal": {
- "version": "8.x-3.14",
- "datestamp": "1684299793",
+ "version": "8.x-3.0",
+ "datestamp": "1493401742",
"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": [
{
@@ -5548,259 +3077,39 @@
"description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
"homepage": "https://www.drupal.org/project/ctools",
"support": {
- "source": "https://git.drupalcode.org/project/ctools",
+ "source": "http://cgit.drupalcode.org/ctools",
"issues": "https://www.drupal.org/project/issues/ctools"
}
},
- {
- "name": "drupal/customerror",
- "version": "1.0.0-beta3",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/customerror.git",
- "reference": "8.x-1.0-beta3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/customerror-8.x-1.0-beta3.zip",
- "reference": "8.x-1.0-beta3",
- "shasum": "dbb6df7770620b65300a472284b980485fd97ec5"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.0-beta3",
- "datestamp": "1682597105",
- "security-coverage": {
- "status": "not-covered",
- "message": "Beta releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "gisle",
- "homepage": "https://www.drupal.org/user/409554"
- },
- {
- "name": "kbahey",
- "homepage": "https://www.drupal.org/user/4063"
- },
- {
- "name": "me-taras",
- "homepage": "https://www.drupal.org/user/2526320"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- },
- {
- "name": "wafaa",
- "homepage": "https://www.drupal.org/user/50133"
- }
- ],
- "description": "Enables the creation of custom error pages for 404 and 403 errors, as well as redirects for 404s.",
- "homepage": "https://www.drupal.org/project/customerror",
- "support": {
- "source": "https://git.drupalcode.org/project/customerror"
- }
- },
- {
- "name": "drupal/dashboards",
- "version": "2.1.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"
- }
- },
{
"name": "drupal/default_content",
- "version": "2.0.0-alpha2",
+ "version": "1.0.0-alpha7",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/default_content.git",
- "reference": "2.0.0-alpha2"
+ "url": "https://git.drupal.org/project/default_content",
+ "reference": "8.x-1.0-alpha7"
},
"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-alpha7.zip",
+ "reference": "8.x-1.0-alpha7",
+ "shasum": "4f1b49cdad6d74ef879f4700caaa11703ba85ad7"
},
"require": {
- "drupal/core": "^9.1 || ^10"
- },
- "require-dev": {
- "drupal/hal": " ^9 || ^1 || ^2",
- "drupal/paragraphs": "^1"
+ "drupal/core": "~8.3"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "2.0.0-alpha2",
- "datestamp": "1659466706",
+ "version": "8.x-1.0-alpha7",
+ "datestamp": "1508448545",
"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",
@@ -5808,6 +3117,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 +3133,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,1219 +3144,179 @@
{
"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",
"homepage": "https://www.drupal.org/project/default_content",
"support": {
- "source": "https://git.drupalcode.org/project/default_content"
+ "source": "http://cgit.drupalcode.org/default_content"
}
},
{
- "name": "drupal/diff",
- "version": "1.1.0",
+ "name": "drupal/drupal-driver",
+ "version": "v1.4.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/diff.git",
- "reference": "8.x-1.1"
+ "url": "https://github.com/jhedstrom/DrupalDriver.git",
+ "reference": "919c6a39ef6a17bdcaf81dcff97b117ecfb6061c"
},
"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://api.github.com/repos/jhedstrom/DrupalDriver/zipball/919c6a39ef6a17bdcaf81dcff97b117ecfb6061c",
+ "reference": "919c6a39ef6a17bdcaf81dcff97b117ecfb6061c",
+ "shasum": ""
},
"require": {
- "drupal/core": "^9.3 || ^10",
- "mkalkbrenner/php-htmldiff-advanced": "~0.0.8"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.1",
- "datestamp": "1665437355",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Miro Dietiker (miro_dietiker)",
- "homepage": "https://www.drupal.org/u/miro_dietiker",
- "role": "Maintainer"
- },
- {
- "name": "Juampy NR (juampynr)",
- "homepage": "https://www.drupal.org/u/juampynr",
- "role": "Maintainer"
- },
- {
- "name": "Lucian Hangea (lhangea)",
- "homepage": "https://www.drupal.org/u/lhangea",
- "role": "Maintainer"
- },
- {
- "name": "Alan D.",
- "homepage": "https://www.drupal.org/u/alan-d.",
- "role": "Maintainer"
- },
- {
- "name": "Brian Gilbert (realityloop).",
- "homepage": "https://www.drupal.org/u/realityloop",
- "role": "Maintainer"
- },
- {
- "name": "lhangea",
- "homepage": "https://www.drupal.org/user/2743803"
- },
- {
- "name": "miro_dietiker",
- "homepage": "https://www.drupal.org/user/227761"
- },
- {
- "name": "phenaproxima",
- "homepage": "https://www.drupal.org/user/205645"
- },
- {
- "name": "realityloop",
- "homepage": "https://www.drupal.org/user/139189"
- },
- {
- "name": "rötzi",
- "homepage": "https://www.drupal.org/user/73064"
- },
- {
- "name": "yhahn",
- "homepage": "https://www.drupal.org/user/264833"
- }
- ],
- "description": "Compares two entity revisions",
- "homepage": "https://www.drupal.org/project/diff",
- "support": {
- "source": "http://cgit.drupalcode.org/diff",
- "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"
+ "drupal/core-utility": "^8.4",
+ "php": ">=5.5.9",
+ "symfony/dependency-injection": "~2.6|~3.0",
+ "symfony/process": "~2.5|~3.0"
},
"require-dev": {
- "drupal/drd_pi": "*",
- "drupal/eca": "^2.0",
- "drupal/gitlab_api": "^2.1",
- "drupal/webform": "^6.2@RC"
+ "drupal/coder": "~8.2.0",
+ "drush-ops/behat-drush-endpoint": "*",
+ "jakub-onderka/php-parallel-lint": "^0.9.2",
+ "mockery/mockery": "0.9.4",
+ "phpspec/phpspec": "~2.0",
+ "phpunit/phpunit": "~4.0"
},
- "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",
+ "type": "library",
"extra": {
- "drupal": {
- "version": "4.1.0",
- "datestamp": "1702474003",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
+ "branch-alias": {
+ "dev-master": "1.2.x-dev"
}
},
- "notification-url": "https://packages.drupal.org/8/downloads",
+ "autoload": {
+ "psr-0": {
+ "Drupal\\Driver": "src/",
+ "Drupal\\Tests\\Driver": "tests/"
+ }
+ },
+ "notification-url": "https://packagist.org/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"
+ "name": "Jonathan Hedstrom",
+ "email": "jhedstrom@gmail.com"
}
],
- "description": "Dashboard to monitor and manage any number of remote Drupal 6, 7 or 8 sites",
- "homepage": "https://www.drupal.org/project/drd",
+ "description": "A collection of reusable Drupal drivers",
+ "homepage": "http://github.com/jhedstrom/DrupalDriver",
"keywords": [
- "Drupal"
+ "drupal",
+ "test",
+ "web"
],
- "support": {
- "source": "https://git.drupal.org/project/drd",
- "issues": "https://www.drupal.org/project/issues/drd"
- }
+ "time": "2018-02-09T18:02:28+00:00"
},
{
- "name": "drupal/drd_agent",
- "version": "4.1.0",
+ "name": "drupal/drupal-extension",
+ "version": "v3.4.1",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/drd_agent.git",
- "reference": "4.1.0"
+ "url": "https://github.com/jhedstrom/drupalextension.git",
+ "reference": "50ff0f413f0dc4732f49638e743f86f45e835e50"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.0.zip",
- "reference": "4.1.0",
- "shasum": "5979d4d98f76d81c1e68bbfd7b04a7de73f9e33b"
+ "url": "https://api.github.com/repos/jhedstrom/drupalextension/zipball/50ff0f413f0dc4732f49638e743f86f45e835e50",
+ "reference": "50ff0f413f0dc4732f49638e743f86f45e835e50",
+ "shasum": ""
},
"require": {
- "drupal/core": "^10 || ^11",
- "php": ">=8.1"
+ "behat/behat": "~3.2",
+ "behat/mink": "~1.5",
+ "behat/mink-extension": "~2.0",
+ "behat/mink-goutte-driver": "~1.0",
+ "behat/mink-selenium2-driver": "~1.1",
+ "drupal/drupal-driver": "~1.3",
+ "symfony/dependency-injection": "~2.7|~3.0",
+ "symfony/event-dispatcher": "~2.7|~3.0"
},
"require-dev": {
- "drupal/hacked": "^2.0@beta",
- "drupal/job_scheduler": "^4.0",
- "drupal/monitoring": "^1.13",
- "drupal/security_review": "^2.0"
+ "behat/mink-zombie-driver": "^1.2",
+ "jakub-onderka/php-parallel-lint": "^0.9.2",
+ "phpspec/phpspec": "~2.0",
+ "phpunit/phpunit": "3.7.*"
},
- "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",
+ "type": "behat-extension",
"extra": {
- "drupal": {
- "version": "4.1.0",
- "datestamp": "1701853228",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
+ "branch-alias": {
+ "dev-master": "4.0.x-dev"
}
},
- "notification-url": "https://packages.drupal.org/8/downloads",
+ "autoload": {
+ "psr-0": {
+ "Drupal\\Drupal": "src/",
+ "Drupal\\Exception": "src/",
+ "Drupal\\DrupalExtension": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
- "name": "Jürgen Haas",
- "homepage": "https://www.drupal.org/u/jurgenhaas"
+ "name": "Jonathan Hedstrom",
+ "email": "jhedstrom@gmail.com"
},
{
- "name": "jurgenhaas",
- "homepage": "https://www.drupal.org/user/168924"
+ "name": "Melissa Anderson",
+ "homepage": "https://github.com/eliza411"
+ },
+ {
+ "name": "Pieter Frenssen",
+ "homepage": "https://github.com/pfrenssen"
}
],
- "description": "Agent on remote Drupal sites for the main DRD module.",
- "homepage": "https://www.drupal.org/project/drd_agent",
+ "description": "Drupal extension for Behat",
+ "homepage": "http://drupal.org/project/drupalextension",
"keywords": [
- "Drupal"
+ "drupal",
+ "test",
+ "web"
],
- "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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/dropdown_language.git",
- "reference": "4.0.3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/dropdown_language-4.0.3.zip",
- "reference": "4.0.3",
- "shasum": "1c59a667f3215baa8bfa4ed9d77b17899377f2e7"
- },
- "require": {
- "drupal/core": "^10",
- "php": "^8.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "4.0.3",
- "datestamp": "1679314009",
- "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": "Scott Carpenter",
- "homepage": "https://www.drupal.org/user/291091",
- "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",
- "homepage": "https://www.drupal.org/project/dropdown_language",
- "support": {
- "source": "https://git.drupalcode.org/project/dropdown_language"
- }
+ "time": "2017-12-06T20:35:40+00:00"
},
{
"name": "drupal/drutopia_action",
- "version": "2.0.0-rc1",
+ "version": "1.0.0-alpha4",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/drutopia_action.git",
- "reference": "2.0.0-rc1"
+ "url": "https://git.drupal.org/project/drutopia_action",
+ "reference": "8.x-1.0-alpha4"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/drutopia_action-2.0.0-rc1.zip",
- "reference": "2.0.0-rc1",
- "shasum": "e1e9aea007a1b2174ff286b8cf54a9bc3edac75a"
+ "url": "https://ftp.drupal.org/files/projects/drutopia_action-8.x-1.0-alpha4.zip",
+ "reference": "8.x-1.0-alpha4",
+ "shasum": "35b32ccfa2fde43d70bc795594b019bc24709cdc"
},
"require": {
- "drupal/config_actions": "^1.1",
- "drupal/config_snapshot": "*",
- "drupal/core": "^9.4 || ^10",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
"drupal/drutopia_core": "*",
- "drupal/drutopia_seo": "^2",
+ "drupal/drutopia_seo": "^1.0-alpha1",
"drupal/drutopia_site": "*",
- "drupal/ds": "^3.7",
+ "drupal/ds": "^3.0-rc1",
"drupal/entity_reference_revisions": "*",
- "drupal/field_group": "^3.0",
- "drupal/focal_point": "*",
- "drupal/media_library_media_modify": "*",
- "drupal/media_responsive_thumbnail": "*",
+ "drupal/field_group": "^3.0-beta1",
"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"
- },
- "drupal": {
- "version": "2.0.x-dev",
- "datestamp": "1694686396",
- "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": "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": "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"
- },
- {
- "name": "nedjo",
- "homepage": "https://www.drupal.org/user/4481"
- },
- {
- "name": "ronaldmulero",
- "homepage": "https://www.drupal.org/user/241652"
- },
- {
- "name": "rosemarymann",
- "homepage": "https://www.drupal.org/user/837536"
- },
- {
- "name": "wolcen",
- "homepage": "https://www.drupal.org/user/3099655"
- }
- ],
- "description": "Drutopia Group provides a group content type that can be classified by a group type vocabulary and related configuration.",
- "homepage": "https://www.drupal.org/project/drutopia_group",
- "keywords": [
- "drutopia",
- "grassroots",
- "groups",
- "organizations"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/drutopia_group/-/tree/2.0.x",
- "issues": "https://www.drupal.org/project/issues/drutopia_group"
- }
- },
- {
- "name": "drupal/drutopia_landing_page",
- "version": "dev-2.0.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/drutopia_landing_page.git",
- "reference": "fa3e5874142fffdd757aca5665e5414cf07e416c"
- },
- "require": {
- "cweagans/composer-patches": "^1.5.0",
- "drupal/config_actions": "^1.1",
- "drupal/config_snapshot": "*",
- "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/exclude_node_title": "^1.0-beta1",
- "drupal/metatag": "*",
- "drupal/paragraphs": "*",
- "drupal/pathauto": "^1.8",
- "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": "1701465249",
- "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 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/paragraphs": "^1.1",
+ "drupal/pathauto": "^1.0",
"drupal/search_api": "*"
},
"type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-2.0.x": "2.0.x-dev"
+ "dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "2.0.x-dev",
- "datestamp": "1694685386",
+ "version": "8.x-1.0-alpha4",
+ "datestamp": "1531430021",
"security-coverage": {
"status": "not-covered",
"message": "Project has not opted into security advisory coverage!"
@@ -7056,751 +3329,13 @@
],
"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": "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 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,33 +3351,1200 @@
{
"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",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_action"
+ }
+ },
+ {
+ "name": "drupal/drutopia_article",
+ "version": "1.0.0-alpha5",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_article",
+ "reference": "8.x-1.0-alpha5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_article-8.x-1.0-alpha5.zip",
+ "reference": "8.x-1.0-alpha5",
+ "shasum": "abf122f72aa71e5fd58a935ade4c37a177b03385"
+ },
+ "require": {
+ "drupal/block_visibility_groups": "^1.0",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "^3.0",
+ "drupal/drutopia_comment": "*",
+ "drupal/drutopia_core": "*",
+ "drupal/drutopia_people": "*",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/drutopia_site": "*",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/facets": "^1.0",
+ "drupal/field_group": "^3.0-beta1",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0",
+ "drupal/search_api": "*",
+ "drupal/token": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha5",
+ "datestamp": "1531445624",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
},
{
- "name": "wolcen",
- "homepage": "https://www.drupal.org/user/3099655"
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia Article is a base feature providing an article content type and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_article",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_article"
+ }
+ },
+ {
+ "name": "drupal/drutopia_blog",
+ "version": "1.0.0-alpha4",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_blog",
+ "reference": "8.x-1.0-alpha4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_blog-8.x-1.0-alpha4.zip",
+ "reference": "8.x-1.0-alpha4",
+ "shasum": "679e2280f06d60ae0536dbe38bda5137bdaf90bd"
+ },
+ "require": {
+ "drupal/block_visibility_groups": "^1.0",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "^3.0",
+ "drupal/drutopia_comment": "*",
+ "drupal/drutopia_core": "*",
+ "drupal/drutopia_people": "*",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/drutopia_site": "*",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/facets": "^1.0",
+ "drupal/field_group": "^3.0-beta1",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0",
+ "drupal/search_api": "*",
+ "drupal/token": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha4",
+ "datestamp": "1531759121",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia Blog is a base feature providing a blog content type and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_blog",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_blog"
+ }
+ },
+ {
+ "name": "drupal/drutopia_campaign",
+ "version": "1.0.0-alpha4",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_campaign",
+ "reference": "8.x-1.0-alpha4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-8.x-1.0-alpha4.zip",
+ "reference": "8.x-1.0-alpha4",
+ "shasum": "69e0aa5e4f33b7e2205e5f0925cb6fa7db81ea86"
+ },
+ "require": {
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/field_group": "^3.0-beta1",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "^1.1",
+ "drupal/pathauto": "^1.0",
+ "drupal/search_api": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha4",
+ "datestamp": "1533271680",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia Campaign provides a Campaign content type, including background information as well as ability to list demands and updates, and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_campaign",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_campaign"
+ }
+ },
+ {
+ "name": "drupal/drutopia_comment",
+ "version": "1.0.0-alpha2",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_comment",
+ "reference": "8.x-1.0-alpha2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_comment-8.x-1.0-alpha2.zip",
+ "reference": "8.x-1.0-alpha2",
+ "shasum": "77c06b4892eb69e1472ef3eb83cb386008e59a20"
+ },
+ "require": {
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev",
+ "dev-8.x-1.x": "^1.0-alpha1"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha2",
+ "datestamp": "1507346344",
+ "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_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"
+ }
+ ],
+ "description": "Drutopia comment is a base feature providing comments and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_comment",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_comment"
+ }
+ },
+ {
+ "name": "drupal/drutopia_core",
+ "version": "1.0.0-alpha5",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_core",
+ "reference": "8.x-1.0-alpha5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_core-8.x-1.0-alpha5.zip",
+ "reference": "8.x-1.0-alpha5",
+ "shasum": "0cb384e615ab902d8a8dedca7ac90183ee5e56fa"
+ },
+ "require": {
+ "drupal/config_actions": "^1.0-beta4",
+ "drupal/config_perms": "^2.0-alpha1",
+ "drupal/core": "*",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "^1.2",
+ "drupal/faqfield": "^1.1",
+ "drupal/metatag": "^1.1",
+ "drupal/paragraphs": "^1.1",
+ "drupal/search_api": "^1.2",
+ "drupal/search_api_db": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha5",
+ "datestamp": "1533272284",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ },
+ "patches": {
+ "drupal/core": {
+ "Datetime Range Views integration": "https://www.drupal.org/files/issues/2786577-270.patch"
+ },
+ "drupal/entity_reference_revisions": {
+ "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch"
+ },
+ "drupal/search_api": {
+ "Notice: Undefined index: total When we enable the module in the installation step": "https://www.drupal.org/files/issues/2931562-13--undefined_total_in_task_manager_batch_finish.patch"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia core is a base feature providing core components required by other features.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_core",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_core"
+ }
+ },
+ {
+ "name": "drupal/drutopia_event",
+ "version": "1.0.0-alpha4",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_event",
+ "reference": "8.x-1.0-alpha4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_event-8.x-1.0-alpha4.zip",
+ "reference": "8.x-1.0-alpha4",
+ "shasum": "00da6bb5d0cfc341348c7688d523e3c71a694701"
+ },
+ "require": {
+ "drupal/block_visibility_groups": "^1.0",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "^3.0",
+ "drupal/drutopia_core": "*",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/facets": "^1.0",
+ "drupal/field_group": "*",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0",
+ "drupal/search_api": "*",
+ "drupal/token": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha4",
+ "datestamp": "1531759421",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia Event is a base feature providing a event content type and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_event",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_event"
+ }
+ },
+ {
+ "name": "drupal/drutopia_group",
+ "version": "1.0.0-alpha3",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_group",
+ "reference": "8.x-1.0-alpha3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_group-8.x-1.0-alpha3.zip",
+ "reference": "8.x-1.0-alpha3",
+ "shasum": "f61e49346e9a36f8df22255c9ab3a4f4e8dbb4c3"
+ },
+ "require": {
+ "drupal/address": "^1.0",
+ "drupal/config_actions": "*",
+ "drupal/config_perms": "*",
+ "drupal/core": "*",
+ "drupal/ctools": "*",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/ds": "*",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/gnode": "*",
+ "drupal/group": "~1.0-beta5",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha3",
+ "datestamp": "1517017085",
+ "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_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"
+ }
+ ],
+ "description": "Drutopia Group provides a group content type that can be classified by a group type vocabulary and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_group",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_group"
+ }
+ },
+ {
+ "name": "drupal/drutopia_landing_page",
+ "version": "1.0.0-alpha5",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_landing_page",
+ "reference": "8.x-1.0-alpha5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_landing_page-8.x-1.0-alpha5.zip",
+ "reference": "8.x-1.0-alpha5",
+ "shasum": "ea42aa0a171386a48e2afc7ced482334d2415629"
+ },
+ "require": {
+ "cweagans/composer-patches": "^1.5.0",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "^3.0",
+ "drupal/drutopia_core": "*",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/exclude_node_title": "^1.0-beta1",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0",
+ "drupal/token": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha5",
+ "datestamp": "1533273484",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia Landing Page is a base feature providing a landing page content type and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_landing_page",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_landing_page"
+ }
+ },
+ {
+ "name": "drupal/drutopia_page",
+ "version": "1.0.0-alpha4",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_page",
+ "reference": "8.x-1.0-alpha4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_page-8.x-1.0-alpha4.zip",
+ "reference": "8.x-1.0-alpha4",
+ "shasum": "c2a662658fd0b47649ce49f9d543e52df0c27f2b"
+ },
+ "require": {
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "^3.0",
+ "drupal/drutopia_core": "*",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0",
+ "drupal/token": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha4",
+ "datestamp": "1531759721",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia Page is a base feature providing a page content type and related configuration.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_page",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_page"
+ }
+ },
+ {
+ "name": "drupal/drutopia_people",
+ "version": "1.0.0-alpha3",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_people",
+ "reference": "8.x-1.0-alpha3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_people-8.x-1.0-alpha3.zip",
+ "reference": "8.x-1.0-alpha3",
+ "shasum": "b0df74f0fe77ffbaf986aff689aadfabfa592400"
+ },
+ "require": {
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "*",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/field_group": "^3.0-dev",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "^1.1",
+ "drupal/pathauto": "^1.0",
+ "drupal/search_api": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha3",
+ "datestamp": "1522954980",
+ "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_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",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_people"
+ }
+ },
+ {
+ "name": "drupal/drutopia_related_content",
+ "version": "1.0.0-alpha1",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_related_content",
+ "reference": "8.x-1.0-alpha1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-8.x-1.0-alpha1.zip",
+ "reference": "8.x-1.0-alpha1",
+ "shasum": "098a88673927275d86c51b890e4132651e2f33ce"
+ },
+ "require": {
+ "drupal/block_visibility_groups": "^1.1",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/similarterms": "^1.3"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha1",
+ "datestamp": "1522716184",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ }
+ ],
+ "description": "Provides related content on node pages generated via similar terms.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_related_content",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_related_content"
+ }
+ },
+ {
+ "name": "drupal/drutopia_resource",
+ "version": "1.0.0-alpha3",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_resource",
+ "reference": "8.x-1.0-alpha3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_resource-8.x-1.0-alpha3.zip",
+ "reference": "8.x-1.0-alpha3",
+ "shasum": "2736b13e7e56a45717596045f7ec2d615e790990"
+ },
+ "require": {
+ "drupal/block_visibility_groups": "^1.0",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/ctools": "^3.0",
+ "drupal/drutopia_core": "*",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/ds": "^3.0-rc1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/facets": "^1.0",
+ "drupal/field_group": "^3.0-beta1",
+ "drupal/metatag": "*",
+ "drupal/paragraphs": "*",
+ "drupal/pathauto": "^1.0",
+ "drupal/search_api": "*",
+ "drupal/token": "^1.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha3",
+ "datestamp": "1531760021",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Provides Resource content type and related configuration. A resource can be either a file, such as a PDF, or a link, such as a website URL.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_resource",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_resource"
+ }
+ },
+ {
+ "name": "drupal/drutopia_search",
+ "version": "1.0.0-alpha3",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_search",
+ "reference": "8.x-1.0-alpha3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_search-8.x-1.0-alpha3.zip",
+ "reference": "8.x-1.0-alpha3",
+ "shasum": "3b09ed1878cdc4d5d0069ae75e08f38bac21cd47"
+ },
+ "require": {
+ "drupal/block_visibility_groups": "^1.1",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "^1.0-alpha4",
+ "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-alpha3",
+ "datestamp": "1522880586",
+ "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_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"
+ }
+ ],
+ "description": "Drutopia Search provides a search server, index, and view.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_search",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_search"
+ }
+ },
+ {
+ "name": "drupal/drutopia_seo",
+ "version": "1.0.0-alpha1",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_seo",
+ "reference": "8.x-1.0-alpha1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_seo-8.x-1.0-alpha1.zip",
+ "reference": "8.x-1.0-alpha1",
+ "shasum": "be49bbdd9364fcad543292610e0f57339f0a5668"
+ },
+ "require": {
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "*",
+ "drupal/metatag": "^1.1"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha1",
+ "datestamp": "1507343946",
+ "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_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"
+ }
+ ],
+ "description": "Sensible Search Engine Optimization default configuration for a site.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_seo",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_seo"
+ }
+ },
+ {
+ "name": "drupal/drutopia_site",
+ "version": "1.0.0-alpha5",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_site",
+ "reference": "8.x-1.0-alpha5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_site-8.x-1.0-alpha5.zip",
+ "reference": "8.x-1.0-alpha5",
+ "shasum": "1fb502494a71b90efea12c3c0d77266bac32b386"
+ },
+ "require": {
+ "drupal/admin_links_access_filter": "^1.0-alpha3",
+ "drupal/admin_toolbar": "^1.19",
+ "drupal/admin_toolbar_tools": "*",
+ "drupal/config_actions": "^1.0-beta1",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/entity_reference_revisions": "*",
+ "drupal/paragraphs": "*"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha5",
+ "datestamp": "1533280684",
+ "security-coverage": {
+ "status": "not-covered",
+ "message": "Project has not opted into security advisory coverage!"
+ }
+ }
+ },
+ "notification-url": "https://packages.drupal.org/8/downloads",
+ "license": [
+ "GPL-2.0+"
+ ],
+ "authors": [
+ {
+ "name": "cedewey",
+ "homepage": "https://www.drupal.org/user/38694"
+ },
+ {
+ "name": "drutopia_gitlab",
+ "homepage": "https://www.drupal.org/user/3514271"
+ },
+ {
+ "name": "mlncn",
+ "homepage": "https://www.drupal.org/user/64383"
+ },
+ {
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
+ },
+ {
+ "name": "ronaldmulero",
+ "homepage": "https://www.drupal.org/user/241652"
+ },
+ {
+ "name": "rosemarymann",
+ "homepage": "https://www.drupal.org/user/837536"
+ }
+ ],
+ "description": "Drutopia site is a base feature providing site components.",
+ "homepage": "https://gitlab.com/drutopia/drutopia_site",
+ "support": {
+ "source": "http://cgit.drupalcode.org/drutopia_site"
+ }
+ },
+ {
+ "name": "drupal/drutopia_social",
+ "version": "1.0.0-alpha1",
+ "source": {
+ "type": "git",
+ "url": "https://git.drupal.org/project/drutopia_social",
+ "reference": "8.x-1.0-alpha1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_social-8.x-1.0-alpha1.zip",
+ "reference": "8.x-1.0-alpha1",
+ "shasum": "7839b29f1473b4ec2481323db8943d37fa57ee8b"
+ },
+ "require": {
+ "drupal/core": "*",
+ "drupal/social_media_links": "^2.0"
+ },
+ "type": "drupal-module",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
+ "drupal": {
+ "version": "8.x-1.0-alpha1",
+ "datestamp": "1507344247",
+ "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_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"
}
],
"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"
+ "source": "http://cgit.drupalcode.org/drutopia_social"
}
},
{
"name": "drupal/drutopia_storyline",
- "version": "dev-2.0.x",
+ "version": "1.0.0-alpha2",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/drutopia_storyline.git",
- "reference": "fb32c3b3f2c3007dcb28bf55e9a0e72299e4b77a"
+ "url": "https://git.drupal.org/project/drutopia_storyline",
+ "reference": "8.x-1.0-alpha2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_storyline-8.x-1.0-alpha2.zip",
+ "reference": "8.x-1.0-alpha2",
+ "shasum": "e316ceaabe8ad6de9b4ee549eb64ce87d2417f53"
},
"require": {
"drupal/config_actions": "*",
- "drupal/core": "^8.9 || ^9 || ^10",
- "drupal/drutopia_core": "^2",
- "drupal/drutopia_page": "^2",
+ "drupal/core": "*",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/drutopia_page": "^1.0-alpha1",
"drupal/entity_reference_revisions": "*",
- "drupal/field_group": "^3.0",
+ "drupal/field_group": "^3.0-beta1",
"drupal/paragraphs": "*"
},
"require-dev": {
@@ -7852,14 +4554,14 @@
"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-alpha2",
+ "datestamp": "1533281284",
"security-coverage": {
"status": "not-covered",
- "message": "Dev releases are not covered by Drupal security advisories."
+ "message": "Project has not opted into security advisory coverage!"
}
}
},
@@ -7869,21 +4571,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,48 +4593,43 @@
{
"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",
- "keywords": [
- "chronology",
- "content",
- "drutopia",
- "storyline",
- "timeline"
- ],
+ "homepage": "https://gitlab.com/drutopia/drutopia_storyline",
"support": {
- "source": "https://git.drupalcode.org/project/drutopia_storyline/-/tree/2.0.x",
- "issues": "https://www.drupal.org/project/issues/drutopia_storyline"
+ "source": "http://cgit.drupalcode.org/drutopia_storyline"
}
},
{
"name": "drupal/drutopia_user",
- "version": "dev-2.0.x",
+ "version": "1.0.0-alpha2",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/drutopia_user.git",
- "reference": "bba7bc4fbbc5a6e18b4bd66711e0d6735d8cb3d1"
+ "url": "https://git.drupal.org/project/drutopia_user",
+ "reference": "8.x-1.0-alpha2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/drutopia_user-8.x-1.0-alpha2.zip",
+ "reference": "8.x-1.0-alpha2",
+ "shasum": "897584d969cfb3456a4034ec94eafd7bd297c1e9"
},
"require": {
- "drupal/core": "^8.9 || ^9 || ^10"
+ "drupal/core": "*"
},
"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-alpha2",
+ "datestamp": "1512689885",
"security-coverage": {
"status": "not-covered",
- "message": "Dev releases are not covered by Drupal security advisories."
+ "message": "Project has not opted into security advisory coverage!"
}
}
},
@@ -7949,22 +4638,10 @@
"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"
@@ -7976,64 +4653,55 @@
{
"name": "ronaldmulero",
"homepage": "https://www.drupal.org/user/241652"
- },
- {
- "name": "rosemarymann",
- "homepage": "https://www.drupal.org/user/837536"
- },
- {
- "name": "wolcen",
- "homepage": "https://www.drupal.org/user/3099655"
}
],
"description": "Drutopia user is a base feature providing user-related configuration.",
- "homepage": "https://git.drupalcode.org/project/drutopia_user",
- "keywords": [
- "drutopia",
- "people",
- "roles",
- "users"
- ],
+ "homepage": "https://gitlab.com/drutopia/drutopia_user",
"support": {
- "source": "https://git.drupalcode.org/project/drutopia_user/-/tree/2.0.x",
- "issues": "https://www.drupal.org/project/issues/drutopia_user"
+ "source": "http://cgit.drupalcode.org/drutopia_user"
}
},
{
"name": "drupal/ds",
- "version": "3.19.0",
+ "version": "3.1.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/ds.git",
- "reference": "8.x-3.19"
+ "url": "https://git.drupal.org/project/ds",
+ "reference": "8.x-3.1"
},
"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.1.zip",
+ "reference": "8.x-3.1",
+ "shasum": "1f7fd1bafed43844976d69b8c78513c84362facf"
},
"require": {
- "drupal/core": "^10"
+ "drupal/core": "^8.3"
},
"require-dev": {
- "drupal/devel": "5.x-dev",
- "drupal/field_group": "3.x-dev"
+ "drupal/devel": "*",
+ "drupal/field_group": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-3.x": "3.x-dev"
+ },
"drupal": {
- "version": "8.x-3.19",
- "datestamp": "1707499881",
+ "version": "8.x-3.1",
+ "datestamp": "1495660084",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
}
+ },
+ "patches_applied": {
+ "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/parent_profile_template-2895316-3.patch"
}
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -8069,833 +4737,41 @@
"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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/entity.git",
- "reference": "8.x-1.4"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
- "reference": "8.x-1.4",
- "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
- },
- "require": {
- "drupal/core": "^9.2|^10.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.4",
- "datestamp": "1661898023",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
- },
- {
- "name": "bojanz",
- "homepage": "https://www.drupal.org/user/86106"
- },
- {
- "name": "dawehner",
- "homepage": "https://www.drupal.org/user/99340"
- },
- {
- "name": "dixon_",
- "homepage": "https://www.drupal.org/user/239911"
- },
- {
- "name": "fago",
- "homepage": "https://www.drupal.org/user/16747"
- },
- {
- "name": "mglaman",
- "homepage": "https://www.drupal.org/user/2416470"
- },
- {
- "name": "TR",
- "homepage": "https://www.drupal.org/user/202830"
- }
- ],
- "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
- "homepage": "https://www.drupal.org/project/entity",
- "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"
- }
- },
{
"name": "drupal/entity_reference_revisions",
- "version": "1.11.0",
+ "version": "1.5.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
- "reference": "8.x-1.11"
+ "url": "https://git.drupal.org/project/entity_reference_revisions",
+ "reference": "8.x-1.5"
},
"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.5.zip",
+ "reference": "8.x-1.5",
+ "shasum": "417250a105afe8febef508c7f981d02cb138752d"
},
"require": {
- "drupal/core": "^9 || ^10"
+ "drupal/core": "~8.0"
},
"require-dev": {
- "drupal/diff": "1.x-dev"
+ "drupal/diff": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.11",
- "datestamp": "1705140721",
+ "version": "8.x-1.5",
+ "datestamp": "1527241084",
"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",
@@ -8903,10 +4779,6 @@
"GPL-2.0-or-later"
],
"authors": [
- {
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
- },
{
"name": "Frans",
"homepage": "https://www.drupal.org/user/514222"
@@ -8920,282 +4792,40 @@
"homepage": "https://www.drupal.org/user/227761"
}
],
- "description": "Entity Reference Revisions",
+ "description": "Adds a Entity Reference field type with revision support.",
"homepage": "https://www.drupal.org/project/entity_reference_revisions",
"support": {
- "source": "https://git.drupalcode.org/project/entity_reference_revisions"
- }
- },
- {
- "name": "drupal/entitygroupfield",
- "version": "2.0.0-alpha1",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/entitygroupfield.git",
- "reference": "2.0.0-alpha1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/entitygroupfield-2.0.0-alpha1.zip",
- "reference": "2.0.0-alpha1",
- "shasum": "8a652543ba7cf587d023c8e4e8652592691b3565"
- },
- "require": {
- "drupal/core": "^9.2 || ^10",
- "drupal/group": "^2.0 || ^3.0"
- },
- "require-dev": {
- "drupal/variationcache": "~1.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-alpha1",
- "datestamp": "1687130173",
- "security-coverage": {
- "status": "not-covered",
- "message": "Alpha releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Derek Wright",
- "homepage": "https://www.drupal.org/u/dww",
- "role": "Maintainer"
- },
- {
- "name": "Ivan Duarte",
- "homepage": "https://www.drupal.org/u/jidrone",
- "role": "Co-Maintainer"
- }
- ],
- "description": "Defines a field to view and edit the groups associated with content.",
- "homepage": "http://drupal.org/project/entitygroupfield",
- "support": {
- "source": "https://git.drupalcode.org/project/entitygroupfield",
- "issues": "https://drupal.org/project/issues/entitygroupfield"
- }
- },
- {
- "name": "drupal/environment_indicator",
- "version": "4.0.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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git",
- "reference": "8.x-1.24"
- },
- "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"
- },
- "require": {
- "drupal/core": "^8.9 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.24",
- "datestamp": "1665158185",
- "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": "Marcin Pajdzik",
- "homepage": "https://www.drupal.org/u/marcin-pajdzik",
- "role": "Maintainer"
- },
- {
- "name": "Sven Berg Ryen",
- "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": "svenryen",
- "homepage": "https://www.drupal.org/user/667244"
- }
- ],
- "description": "This module aims at making the website compliant with the new EU cookie regulation.",
- "homepage": "https://drupal.org/project/eu_cookie_compliance",
- "keywords": [
- "Cookie",
- "CookieCompliance",
- "Drupal",
- "GDPR"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/eu-cookie-compliance",
- "docs": "https://www.drupal.org/docs/contributed-modules/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"
+ "source": "http://cgit.drupalcode.org/entity_reference_revisions"
}
},
{
"name": "drupal/exclude_node_title",
- "version": "1.4.0",
+ "version": "1.0.0-beta1",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/exclude_node_title.git",
- "reference": "8.x-1.4"
+ "url": "https://git.drupal.org/project/exclude_node_title",
+ "reference": "8.x-1.0-beta1"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.4.zip",
- "reference": "8.x-1.4",
- "shasum": "c6f6c0e06c202f3ace436867a459f8672e1494f5"
+ "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.0-beta1.zip",
+ "reference": "8.x-1.0-beta1",
+ "shasum": "04b307c90c71285f421f8727d5ba8fd84b3df066"
},
"require": {
- "drupal/core": "^8 || ^9 || ^10"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.4",
- "datestamp": "1659271679",
+ "version": "8.x-1.0-beta1",
+ "datestamp": "1452548339",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "Beta releases are not covered by Drupal security advisories."
}
}
},
@@ -9205,112 +4835,56 @@
],
"authors": [
{
- "name": "Neslee Canil Pinto",
- "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
- "role": "Maintainer"
+ "name": "fizk",
+ "homepage": "https://www.drupal.org/user/473174"
},
{
"name": "gabrielu",
"homepage": "https://www.drupal.org/user/279352"
},
{
- "name": "Neslee Canil Pinto",
- "homepage": "https://www.drupal.org/user/3580850"
+ "name": "id.tarzanych",
+ "homepage": "https://www.drupal.org/user/2776543"
+ },
+ {
+ "name": "jordanpagewhite",
+ "homepage": "https://www.drupal.org/user/3162067"
}
],
- "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.",
+ "description": "Excludes a node title from display. It provides a checkbox on node-edit pages for easier exclusion. You can also exclude title display from teaser pages.",
"homepage": "https://www.drupal.org/project/exclude_node_title",
"support": {
- "source": "https://git.drupalcode.org/project/exclude_node_title",
- "issues": "https://www.drupal.org/project/issues/exclude_node_title"
- }
- },
- {
- "name": "drupal/exif_orientation",
- "version": "1.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"
+ "source": "http://cgit.drupalcode.org/exclude_node_title"
}
},
{
"name": "drupal/facets",
- "version": "2.0.6",
+ "version": "1.1.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/facets.git",
- "reference": "2.0.6"
+ "url": "https://git.drupal.org/project/facets",
+ "reference": "8.x-1.1"
},
"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.1.zip",
+ "reference": "8.x-1.1",
+ "shasum": "d916790b16da4e42b1615bc03221d4d81905ec3f"
},
"require": {
- "drupal/core": "^9.3 || ^10.0"
- },
- "conflict": {
- "drupal/search_api": "<1.14"
+ "drupal/core": "~8.0"
},
"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": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "2.0.6",
- "datestamp": "1671207897",
+ "version": "8.x-1.1",
+ "datestamp": "1533065280",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -9326,21 +4900,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 +4917,31 @@
"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": "1.1.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/faqfield.git",
- "reference": "8.x-7.1"
+ "url": "https://git.drupal.org/project/faqfield",
+ "reference": "8.x-1.1"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-7.1.zip",
- "reference": "8.x-7.1",
- "shasum": "c602e57dc07926bc5a263f56ee36ba7afa8dd574"
+ "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-1.1.zip",
+ "reference": "8.x-1.1",
+ "shasum": "61aeccae9ebf2347567df1a891772e88e9452aa6"
},
"require": {
- "drupal/core": "^8 || ^9 || ^10",
- "drupal/jquery_ui_accordion": "^2.0"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-7.1",
- "datestamp": "1678202291",
+ "version": "8.x-1.1",
+ "datestamp": "1519216085",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -9448,10 +4962,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,55 +4976,45 @@
},
{
"name": "drupal/features",
- "version": "3.14.0",
+ "version": "3.7.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/features.git",
- "reference": "8.x-3.14"
+ "url": "https://git.drupal.org/project/features",
+ "reference": "8.x-3.7"
},
"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.7.zip",
+ "reference": "8.x-3.7",
+ "shasum": "1a832002f47f32a83eae789e42e4f06225de9e43"
},
"require": {
- "drupal/config_update": "^1.4 || ^2",
- "drupal/core": "^9.4 || ^10"
+ "drupal/config_update": "^1.4",
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-3.x": "3.x-dev"
+ },
"drupal": {
- "version": "8.x-3.14",
- "datestamp": "1702059191",
+ "version": "8.x-3.7",
+ "datestamp": "1519763284",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
}
- },
- "drush": {
- "services": {
- "drush.services.yml": "^10 || ^11"
- }
}
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
- {
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
- },
{
"name": "dawehner",
"homepage": "https://www.drupal.org/user/99340"
},
- {
- "name": "donquixote",
- "homepage": "https://www.drupal.org/user/459338"
- },
{
"name": "e2thex",
"homepage": "https://www.drupal.org/user/189123"
@@ -9523,670 +5023,54 @@
"name": "febbraro",
"homepage": "https://www.drupal.org/user/43670"
},
- {
- "name": "flocondetoile",
- "homepage": "https://www.drupal.org/user/2006064"
- },
{
"name": "jmiccolis",
"homepage": "https://www.drupal.org/user/31731"
},
- {
- "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",
"homepage": "https://www.drupal.org/project/features",
"support": {
- "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"
+ "source": "http://cgit.drupalcode.org/features"
}
},
{
"name": "drupal/field_group",
- "version": "3.4.0",
+ "version": "3.0.0-beta1",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/field_group.git",
- "reference": "8.x-3.4"
+ "url": "https://git.drupal.org/project/field_group",
+ "reference": "8.x-3.0-beta1"
},
"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.0-beta1.zip",
+ "reference": "8.x-3.0-beta1",
+ "shasum": "a5dfb66385be7a1b3db232e49779d5bc530a048e"
},
"require": {
- "drupal/core": "^9.2 || ^10"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-3.x": "3.x-dev"
+ },
"drupal": {
- "version": "8.x-3.4",
- "datestamp": "1667241979",
- "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": "Anybody",
- "homepage": "https://www.drupal.org/user/291091"
- },
- {
- "name": "Hydra",
- "homepage": "https://www.drupal.org/user/647364"
- },
- {
- "name": "jyve",
- "homepage": "https://www.drupal.org/user/591438"
- },
- {
- "name": "nils.destoop",
- "homepage": "https://www.drupal.org/user/361625"
- },
- {
- "name": "Stalski",
- "homepage": "https://www.drupal.org/user/322618"
- },
- {
- "name": "swentel",
- "homepage": "https://www.drupal.org/user/107403"
- }
- ],
- "description": "Provides the field_group module.",
- "homepage": "https://www.drupal.org/project/field_group",
- "support": {
- "source": "https://git.drupalcode.org/project/field_group",
- "issues": "https://www.drupal.org/project/issues/field_group"
- }
- },
- {
- "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",
+ "version": "8.x-3.0-beta1",
+ "datestamp": "1510352338",
"security-coverage": {
"status": "not-covered",
"message": "Beta releases are not covered by Drupal security advisories."
@@ -10194,736 +5078,55 @@
}
},
"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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/focal_point.git",
- "reference": "2.0.2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/focal_point-2.0.2.zip",
- "reference": "2.0.2",
- "shasum": "8e809795ec6a68a0bc3740b0b0a41bfa53d4d6d5"
- },
- "require": {
- "drupal/core": "^9.3 || ^10",
- "drupal/crop": "^2.3",
- "drupal/jquery_ui": "^1.6",
- "drupal/jquery_ui_draggable": "^2.0"
- },
- "require-dev": {
- "drupal/crop": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.2",
- "datestamp": "1690451892",
- "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": "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.",
- "homepage": "https://drupal.org/project/focal_point",
- "support": {
- "source": "https://cgit.drupalcode.org/focal_point",
- "issues": "https://drupal.org/project/issues/focal_point",
- "irc": "irc://irc.freenode.org/drupal-contribute"
- }
- },
- {
- "name": "drupal/footnotes",
- "version": "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": "Hydra",
+ "homepage": "https://www.drupal.org/user/647364"
},
{
- "name": "Oleksandr Dekhteruk (pifagor)",
- "homepage": "https://www.drupal.org/u/pifagor",
- "role": "Maintainer"
+ "name": "Stalski",
+ "homepage": "https://www.drupal.org/user/322618"
},
{
- "name": "Fernando Conceição (yukare)",
- "homepage": "https://www.drupal.org/u/yukare",
- "role": "Maintainer"
+ "name": "jyve",
+ "homepage": "https://www.drupal.org/user/591438"
},
{
- "name": "Henrik Ingo (hingo)",
- "homepage": "https://www.drupal.org/u/hingo",
- "role": "Maintainer"
+ "name": "swentel",
+ "homepage": "https://www.drupal.org/user/107403"
},
{
- "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"
+ "name": "zuuperman",
+ "homepage": "https://www.drupal.org/user/361625"
}
],
- "description": "Add automatically numbered footnotes to your posts.",
- "homepage": "https://drupal.org/project/footnotes",
+ "description": "Provides the field_group module.",
+ "homepage": "https://www.drupal.org/project/field_group",
"support": {
- "source": "https://cgit.drupalcode.org/footnotes",
- "issues": "https://drupal.org/project/issues/footnotes"
+ "source": "http://cgit.drupalcode.org/field_group"
}
},
- {
- "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",
- "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"
- },
- "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"
- },
- "require-dev": {
- "drupal/anonymizer": "*",
- "drupal/entity": "*",
- "drupal/entity_reference_revisions": "*",
- "drupal/gdpr_fields": "*",
- "drupal/message": "*",
- "drupal/token": "*"
- },
- "suggest": {
- "drush/drush": "GDPR Dump requires Drush ^9 || ^10",
- "ext-zip": "GDPR Tasks requires the PHP zip extension",
- "fzaninotto/faker": "Required for the anonymizer submodule (which is required by multiple submodules)."
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "3.0.0",
- "datestamp": "1681377086",
- "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": "mhavelant",
- "homepage": "https://www.drupal.org/user/1358588",
- "email": "mhavelant@brainsum.com"
- },
- {
- "name": "andrewbelcher",
- "homepage": "https://www.drupal.org/user/655282"
- },
- {
- "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"
- },
- {
- "name": "dj1999",
- "homepage": "https://www.drupal.org/user/387119"
- },
- {
- "name": "golddragon007",
- "homepage": "https://www.drupal.org/user/2723471"
- },
- {
- "name": "Kosa Ilma",
- "homepage": "https://www.drupal.org/user/3435475"
- },
- {
- "name": "lbesenyei",
- "homepage": "https://www.drupal.org/user/2626013"
- },
- {
- "name": "leymannx",
- "homepage": "https://www.drupal.org/user/2482808"
- },
- {
- "name": "mhavelant",
- "homepage": "https://www.drupal.org/user/3331139"
- },
- {
- "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"
- },
- {
- "name": "yanniboi",
- "homepage": "https://www.drupal.org/user/1837556"
- }
- ],
- "description": "Helps with making a site GDPR-compliant.",
- "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"
- }
- ]
- },
{
"name": "drupal/gnode",
- "version": "3.2.2",
+ "version": "1.0.0-rc2",
"require": {
- "drupal/core": "^9.5 || ^10",
- "drupal/group": "*"
+ "drupal/core": "*",
+ "drupal/group": "self.version"
},
"type": "metapackage",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "3.2.2",
- "datestamp": "1701886939",
+ "version": "8.x-1.0-rc2",
+ "datestamp": "1517836680",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "RC releases are not covered by Drupal security advisories."
}
}
},
@@ -10932,10 +5135,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"
@@ -10944,655 +5143,34 @@
"description": "Enables Group functionality for the Node module",
"homepage": "https://www.drupal.org/project/group",
"support": {
- "source": "https://git.drupalcode.org/project/group"
+ "source": "http://cgit.drupalcode.org/group"
}
},
{
- "name": "drupal/google_analytics",
- "version": "dev-3357831-php-8.2-compatibility",
+ "name": "drupal/group",
+ "version": "1.0.0-rc2",
"source": {
"type": "git",
- "url": "git@git.drupal.org:issue/google_analytics-3357831.git",
- "reference": "6e1250f00dd9942a91cdff4e2d44f1779019e191"
+ "url": "https://git.drupal.org/project/group",
+ "reference": "8.x-1.0-rc2"
},
- "require-dev": {
- "drupal/token": "^1.7"
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/group-8.x-1.0-rc2.zip",
+ "reference": "8.x-1.0-rc2",
+ "shasum": "b21efa2224d20a704484de900ad6f73e4e605a7d"
+ },
+ "require": {
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
"branch-alias": {
- "dev-4.x": "4.x-dev"
- }
- },
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "See contributors",
- "homepage": "https://www.drupal.org/node/49388/committers"
- }
- ],
- "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"
- },
- {
- "name": "drupal/group",
- "version": "3.2.2",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/group.git",
- "reference": "3.2.2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/group-3.2.2.zip",
- "reference": "3.2.2",
- "shasum": "d44d51828ca6554c32aa2d27e3a898e1d38b9efa"
- },
- "require": {
- "drupal/core": "^9.5 || ^10",
- "drupal/entity": "^1.2",
- "drupal/flexible_permissions": "^1.0"
- },
- "type": "drupal-module",
- "extra": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "3.2.2",
- "datestamp": "1701886939",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Kristiaan Van den Eynde",
- "homepage": "https://www.drupal.org/u/kristiaanvandeneynde",
- "role": "Maintainer"
- },
- {
- "name": "kristiaanvandeneynde",
- "homepage": "https://www.drupal.org/user/1345130"
- }
- ],
- "description": "This module allows you to group users, content and other entities",
- "homepage": "http://drupal.org/project/group",
- "support": {
- "source": "https://git.drupalcode.org/project/group",
- "issues": "https://drupal.org/project/issues/group"
- }
- },
- {
- "name": "drupal/gutenberg",
- "version": "2.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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/honeypot.git",
- "reference": "2.1.3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
- "reference": "2.1.3",
- "shasum": "101105029a10a574ef6017824182500ab9905856"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "require-dev": {
- "drupal/rules": "^3.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.1.3",
- "datestamp": "1695604754",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Jeff Geerling",
- "homepage": "https://www.drupal.org/user/389011",
- "email": "geerlingguy@mac.com"
- },
- {
- "name": "Manuel Garcia",
- "homepage": "https://www.drupal.org/user/213194"
- },
- {
- "name": "TR",
- "homepage": "https://www.drupal.org/user/202830"
- },
- {
- "name": "vijaycs85",
- "homepage": "https://www.drupal.org/user/93488"
- }
- ],
- "description": "Mitigates spam form submissions using the honeypot method.",
- "homepage": "https://www.drupal.org/project/honeypot",
- "keywords": [
- "deterrent",
- "form",
- "honeypot",
- "honeytrap",
- "php",
- "spam"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/honeypot",
- "issues": "https://www.drupal.org/project/issues/honeypot"
- }
- },
- {
- "name": "drupal/http_cache_control",
- "version": "2.1.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/http_cache_control.git",
- "reference": "8.x-2.1"
- },
- "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"
- },
- "require": {
- "drupal/core": "^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-2.1",
- "datestamp": "1666053697",
- "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": "Josh Waihi",
- "homepage": "https://www.drupal.org/user/188162"
- }
- ],
- "description": "Module for controlling HTTP Cache Control response headers.",
- "homepage": "https://www.drupal.org/project/http_cache_control",
- "support": {
- "source": "https://git.drupalcode.org/project/http_cache_control"
- }
- },
- {
- "name": "drupal/http_client_error_status",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/http_client_error_status.git",
- "reference": "3.0.0"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/http_client_error_status-3.0.0.zip",
- "reference": "3.0.0",
- "shasum": "317b20d9520cb6210851ae6b9fec36dce73c631f"
- },
- "require": {
- "drupal/core": "^8.7.7 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "3.0.0",
- "datestamp": "1655679055",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0+"
- ],
- "authors": [
- {
- "name": "Jeff Logan (jefflogan)",
- "homepage": "https://www.drupal.org/u/jefflogan",
- "role": "Maintainer"
- }
- ],
- "description": "Provide HTTP client error status context plugin",
- "homepage": "https://drupal.org/project/http_client_error_status",
- "support": {
- "source": "https://git.drupal.org/project/http_client_error_status.git",
- "issues": "https://drupal.org/project/issues/http_client_error_status",
- "irc": "irc://irc.freenode.org/drupal-contribute"
- }
- },
- {
- "name": "drupal/ief_complex_open",
- "version": "1.0.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",
- "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"
- },
- "require": {
- "drupal/core": "^9 || ^10",
- "indieauth/client": "^1.1",
- "indieweb/mention-client": "^1.2",
- "lcobucci/jwt": "4.0.*",
- "p3k/micropub": "^0.0.3",
- "p3k/websub": "^0.0.1",
- "p3k/xray": "^1.12"
- },
- "require-dev": {
- "drupal/classy": "*",
- "drupal/externalauth": "*",
- "drupal/indieweb_indieauth": "*",
- "drupal/stable": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.21",
- "datestamp": "1707057267",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- },
- "drush": {
- "services": {
- "drush.services.yml": "^9"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Kristof De Jaeger",
- "homepage": "https://realize.be",
- "email": "swentel@realize.be",
- "role": "Maintainer"
- }
- ],
- "description": "IndieWeb functionality for your site.",
- "homepage": "http://drupal.org/project/indieweb",
- "support": {
- "source": "https://git.drupalcode.org/project/indieweb"
- }
- },
- {
- "name": "drupal/inline_entity_form",
- "version": "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",
+ "version": "8.x-1.0-rc2",
+ "datestamp": "1517836680",
"security-coverage": {
"status": "not-covered",
"message": "RC releases are not covered by Drupal security advisories."
@@ -11600,1878 +5178,57 @@
}
},
"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"
+ "name": "kristiaanvandeneynde",
+ "homepage": "https://www.drupal.org/user/1345130"
}
],
- "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"
- ],
+ "description": "This module allows you to group users, content and other entities",
+ "homepage": "https://www.drupal.org/project/group",
"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"
- }
- },
- {
- "name": "drupal/jquery_ui",
- "version": "1.6.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/jquery_ui.git",
- "reference": "8.x-1.6"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
- "reference": "8.x-1.6",
- "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.6",
- "datestamp": "1668521197",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "bnjmnm",
- "homepage": "https://www.drupal.org/user/2369194"
- },
- {
- "name": "jjeff",
- "homepage": "https://www.drupal.org/user/17190"
- },
- {
- "name": "lauriii",
- "homepage": "https://www.drupal.org/user/1078742"
- },
- {
- "name": "litwol",
- "homepage": "https://www.drupal.org/user/78134"
- },
- {
- "name": "mfb",
- "homepage": "https://www.drupal.org/user/12302"
- },
- {
- "name": "mfer",
- "homepage": "https://www.drupal.org/user/25701"
- },
- {
- "name": "mikelutz",
- "homepage": "https://www.drupal.org/user/2972409"
- },
- {
- "name": "nod_",
- "homepage": "https://www.drupal.org/user/598310"
- },
- {
- "name": "phenaproxima",
- "homepage": "https://www.drupal.org/user/205645"
- },
- {
- "name": "RobLoach",
- "homepage": "https://www.drupal.org/user/61114"
- },
- {
- "name": "sun",
- "homepage": "https://www.drupal.org/user/54136"
- },
- {
- "name": "webchick",
- "homepage": "https://www.drupal.org/user/24967"
- },
- {
- "name": "Wim Leers",
- "homepage": "https://www.drupal.org/user/99777"
- },
- {
- "name": "zrpnr",
- "homepage": "https://www.drupal.org/user/1448368"
- }
- ],
- "description": "Provides jQuery UI library.",
- "homepage": "https://www.drupal.org/project/jquery_ui",
- "support": {
- "source": "https://git.drupalcode.org/project/jquery_ui"
- }
- },
- {
- "name": "drupal/jquery_ui_accordion",
- "version": "2.0.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git",
- "reference": "2.0.0"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-2.0.0.zip",
- "reference": "2.0.0",
- "shasum": "47f3983502a5be5a8c201b54aa18e20f1e595477"
- },
- "require": {
- "drupal/core": "^9.2 || ^10",
- "drupal/jquery_ui": "^1.6"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0",
- "datestamp": "1670871459",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "bnjmnm",
- "homepage": "https://www.drupal.org/user/2369194"
- },
- {
- "name": "lauriii",
- "homepage": "https://www.drupal.org/user/1078742"
- },
- {
- "name": "zrpnr",
- "homepage": "https://www.drupal.org/user/1448368"
- }
- ],
- "description": "Provides jQuery UI Accordion library.",
- "homepage": "https://www.drupal.org/project/jquery_ui_accordion",
- "support": {
- "source": "https://git.drupalcode.org/project/jquery_ui_accordion"
- }
- },
- {
- "name": "drupal/jquery_ui_autocomplete",
- "version": "2.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",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
- "reference": "1.1.0"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
- "reference": "1.1.0",
- "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10",
- "drupal/jquery_ui": "^1.0",
- "politsin/jquery-ui-touch-punch": "^1.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "1.1.0",
- "datestamp": "1662744607",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Naveen Valecha",
- "homepage": "https://drupal.org/u/naveenvalecha",
- "role": "Maintainer"
- },
- {
- "name": "naveenvalecha",
- "homepage": "https://www.drupal.org/user/2665733"
- }
- ],
- "description": "Provides jQuery UI Touch Punch library.",
- "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
- "keywords": [
- "Drupal",
- "jquery_ui_touch_punch"
- ],
- "support": {
- "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
- "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
- }
- },
- {
- "name": "drupal/key",
- "version": "1.17.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/key.git",
- "reference": "8.x-1.17"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/key-8.x-1.17.zip",
- "reference": "8.x-1.17",
- "shasum": "fa9f606d2ba0e20693e12040004e2ed31302ed03"
- },
- "require": {
- "drupal/core": ">=8.9 <11"
- },
- "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",
- "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": "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": "johnwebdev",
- "homepage": "https://www.drupal.org/user/3331569"
- },
- {
- "name": "mark_fullmer",
- "homepage": "https://www.drupal.org/user/2612816"
- }
- ],
- "description": "Linkit - Enriched linking experience",
- "homepage": "http://drupal.org/project/linkit",
- "support": {
- "source": "http://cgit.drupalcode.org/linkit",
- "issues": "http://drupal.org/project/linkit"
- }
- },
- {
- "name": "drupal/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"
- }
- },
- {
- "name": "drupal/mailchimp",
- "version": "2.2.2",
- "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"
- },
- "require": {
- "drupal/core": "^8.7.7 || ^9 || ^10",
- "thinkshout/mailchimp-api-php": "3.0.0"
- },
- "require-dev": {
- "drupal/mailchimp_events": "*",
- "drupal/mailchimp_lists": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.2.2",
- "datestamp": "1687974651",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "aprice42",
- "homepage": "https://www.drupal.org/user/369147"
- },
- {
- "name": "bdimaggio",
- "homepage": "https://www.drupal.org/user/70688"
- },
- {
- "name": "brendanthinkshout",
- "homepage": "https://www.drupal.org/user/3578399"
- },
- {
- "name": "gcb",
- "homepage": "https://www.drupal.org/user/1682976"
- },
- {
- "name": "kescoto-thinkshout",
- "homepage": "https://www.drupal.org/user/3664824"
- },
- {
- "name": "levelos",
- "homepage": "https://www.drupal.org/user/54135"
- },
- {
- "name": "mariacha1",
- "homepage": "https://www.drupal.org/user/2210776"
- },
- {
- "name": "maximumpotter",
- "homepage": "https://www.drupal.org/user/3653774"
- },
- {
- "name": "mshaver",
- "homepage": "https://www.drupal.org/user/39079"
- },
- {
- "name": "olivier.bouwman",
- "homepage": "https://www.drupal.org/user/2799483"
- },
- {
- "name": "tauno",
- "homepage": "https://www.drupal.org/user/105595"
- },
- {
- "name": "wxactly",
- "homepage": "https://www.drupal.org/user/3181097"
- },
- {
- "name": "xenophyle",
- "homepage": "https://www.drupal.org/user/664428"
- }
- ],
- "description": "Mailchimp is an integration with the Mailchimp Mass email tool.",
- "homepage": "http://drupal.org/project/mailchimp",
- "support": {
- "source": "https://git.drupalcode.org/project/mailchimp"
- }
- },
- {
- "name": "drupal/markdown",
- "version": "3.0.1",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/markdown.git",
- "reference": "3.0.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/markdown-3.0.1.zip",
- "reference": "3.0.1",
- "shasum": "ae33f2819c0f2591484ae02921781fb3ea783330"
- },
- "require": {
- "composer/semver": "^1.0 || ^2.0 || ^3.0",
- "drupal/core": "^9.1 || ^10",
- "php": ">=5.5.9"
- },
- "suggest": {
- "league/commonmark": "The PHP CommonMark parser is a robust, highly-extensible Markdown parser for PHP based on the CommonMark and Github-Flavored Markdown specifications."
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "3.0.1",
- "datestamp": "1704727858",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- },
- "drush": {
- "services": {
- "drush.services.yml": "^9 || ^10"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Mark Halliwell (markhalliwell)",
- "homepage": "https://www.drupal.org/u/markhalliwell",
- "role": "D8+ Maintainer"
- },
- {
- "name": "Gisle Hannemyr (gisle)",
- "homepage": "https://www.drupal.org/u/gisle",
- "role": "D7 Maintainer"
- },
- {
- "name": "joelpittet",
- "homepage": "https://www.drupal.org/user/160302"
- },
- {
- "name": "markdorison",
- "homepage": "https://www.drupal.org/user/346106"
- }
- ],
- "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"
- },
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.2.x": "1.2.x-dev"
- },
- "drupal": {
- "version": "1.2.1+5-dev",
- "datestamp": "1697791918",
- "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"
- }
- },
- "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"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "DrDam",
- "homepage": "https://www.drupal.org/user/1555440"
- }
- ],
- "description": "An implementation of media_contextual_crop API for media references",
- "homepage": "https://www.drupal.org/project/media_contextual_crop_field_formatter",
- "keywords": [
- "Drupal"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter"
- }
- },
- {
- "name": "drupal/media_contextual_crop_fp_adapter",
- "version": "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": "chr.fritsch",
- "homepage": "https://www.drupal.org/user/2103716"
- },
- {
- "name": "daniel.bosen",
- "homepage": "https://www.drupal.org/user/404865"
- },
- {
- "name": "volkerk",
- "homepage": "https://www.drupal.org/user/57527"
- }
- ],
- "description": "Store context specific overrides for entity reference fields.",
- "homepage": "https://www.drupal.org/project/media_library_media_modify",
- "support": {
- "source": "https://git.drupalcode.org/project/media_library_media_modify"
- }
- },
- {
- "name": "drupal/media_responsive_thumbnail",
- "version": "1.5.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/media_responsive_thumbnail.git",
- "reference": "8.x-1.5"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/media_responsive_thumbnail-8.x-1.5.zip",
- "reference": "8.x-1.5",
- "shasum": "ef96d0c4e4f2759eb19888823e9e733af67f7445"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.5",
- "datestamp": "1678903132",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "yoruvo",
- "homepage": "https://www.drupal.org/user/2989799"
- }
- ],
- "description": "Adds a field formatter for Media references which displays a responsive image.",
- "homepage": "https://www.drupal.org/project/media_responsive_thumbnail",
- "support": {
- "source": "https://git.drupalcode.org/project/media_responsive_thumbnail"
- }
- },
- {
- "name": "drupal/menu_admin_per_menu",
- "version": "1.5.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
- "reference": "8.x-1.5"
- },
- "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"
- },
- "require": {
- "drupal/core": "^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.5",
- "datestamp": "1660918821",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "anrikun",
- "homepage": "https://www.drupal.org/user/410199"
- },
- {
- "name": "JeroenT",
- "homepage": "https://www.drupal.org/user/2228934"
- },
- {
- "name": "jonas139",
- "homepage": "https://www.drupal.org/user/2873401"
- },
- {
- "name": "mkdok",
- "homepage": "https://www.drupal.org/user/3308753"
- }
- ],
- "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
- "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
- "support": {
- "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
- }
- },
- {
- "name": "drupal/menu_block",
- "version": "1.10.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/menu_block.git",
- "reference": "8.x-1.10"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.10.zip",
- "reference": "8.x-1.10",
- "shasum": "97de632d77448ae0a974e20c2ffbe42c7ddd4633"
- },
- "require": {
- "drupal/core": "^9.1 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.10",
- "datestamp": "1667434255",
- "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": "joelpittet",
- "homepage": "https://www.drupal.org/user/160302"
- },
- {
- "name": "JohnAlbin",
- "homepage": "https://www.drupal.org/user/32095"
- },
- {
- "name": "kim.pepper",
- "homepage": "https://www.drupal.org/user/370574"
- },
- {
- "name": "RenatoG",
- "homepage": "https://www.drupal.org/user/3326031"
- },
- {
- "name": "rrrob",
- "homepage": "https://www.drupal.org/user/273533"
- }
- ],
- "description": "Provides configurable blocks of menu links.",
- "homepage": "https://www.drupal.org/project/menu_block",
- "support": {
- "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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/menu_trail_by_path.git",
- "reference": "2.0.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.0.1.zip",
- "reference": "2.0.1",
- "shasum": "3c2c1b0ee669c26e6ccba8a345605b7c932be2bf"
- },
- "require": {
- "drupal/core": "^8.8 || ^9.0 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.1",
- "datestamp": "1701298206",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0"
- ],
- "authors": [
- {
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
- },
- {
- "name": "davy-r",
- "homepage": "https://www.drupal.org/user/3278771"
- },
- {
- "name": "mbovan",
- "homepage": "https://www.drupal.org/user/3149657"
- },
- {
- "name": "redndahead",
- "homepage": "https://www.drupal.org/user/160320"
- },
- {
- "name": "SeriousMatters",
- "homepage": "https://www.drupal.org/user/290439"
- }
- ],
- "description": "Expand menus and set active-trail according to the current path.",
- "homepage": "https://www.drupal.org/project/menu_trail_by_path",
- "support": {
- "source": "https://git.drupalcode.org/project/menu_trail_by_path"
- }
- },
- {
- "name": "drupal/message",
- "version": "1.4.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/message.git",
- "reference": "8.x-1.4"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/message-8.x-1.4.zip",
- "reference": "8.x-1.4",
- "shasum": "4158df35b5506fc88061358624589c4a04c414a2"
- },
- "require": {
- "drupal/core": "^9 || ^10"
- },
- "require-dev": {
- "drupal/token": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.4",
- "datestamp": "1667584508",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "amitaibu",
- "homepage": "https://www.drupal.org/user/57511"
- },
- {
- "name": "bluegeek9",
- "homepage": "https://www.drupal.org/user/1286304"
- },
- {
- "name": "Grayside",
- "homepage": "https://www.drupal.org/user/346868"
- },
- {
- "name": "jhedstrom",
- "homepage": "https://www.drupal.org/user/208732"
- },
- {
- "name": "RoySegall",
- "homepage": "https://www.drupal.org/user/1812910"
- }
- ],
- "description": "Message",
- "homepage": "https://www.drupal.org/project/message",
- "support": {
- "source": "https://git.drupalcode.org/project/message"
+ "source": "http://cgit.drupalcode.org/group"
}
},
{
"name": "drupal/metatag",
- "version": "1.26.0",
+ "version": "1.7.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/metatag.git",
- "reference": "8.x-1.26"
+ "url": "https://git.drupal.org/project/metatag",
+ "reference": "8.x-1.7"
},
"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.7.zip",
+ "reference": "8.x-1.7",
+ "shasum": "93decaefd053c524918ceae5b5ef05dd77de0857"
},
"require": {
- "drupal/core": "^9.3 || ^10",
+ "drupal/core": "*",
"drupal/token": "^1.0"
},
"require-dev": {
- "drupal/devel": "^4.0 || ^5.0",
- "drupal/hal": "^9 || ^1 || ^2",
+ "drupal/devel": "^1.0",
"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/restui": "^1.0",
+ "drupal/schema_metatag": "^1.0",
+ "drupal/schema_web_page": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.26",
- "datestamp": "1687856123",
+ "version": "8.x-1.7",
+ "datestamp": "1535726393",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -13480,7 +5237,7 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -13500,82 +5257,26 @@
"seo"
],
"support": {
- "source": "https://git.drupalcode.org/project/metatag",
- "issues": "https://www.drupal.org/project/issues/metatag",
- "docs": "https://www.drupal.org/docs/8/modules/metatag"
- }
- },
- {
- "name": "drupal/microformats",
- "version": "2.0.0-beta3",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/microformats.git",
- "reference": "2.0.0-beta3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/microformats-2.0.0-beta3.zip",
- "reference": "2.0.0-beta3",
- "shasum": "2306661c616a2a340e831ecfdd969e6b06fb351e"
- },
- "require": {
- "barnabywalters/mf-cleaner": "^0.1.4",
- "drupal/core": "^8 || ^9 || ^10",
- "mf2/mf2": "~0.3"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-beta3",
- "datestamp": "1695297696",
- "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": "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"
+ "source": "http://cgit.drupalcode.org/metatag",
+ "issues": "http://drupal.org/project/issues/metatag"
}
},
{
"name": "drupal/migrate_plus",
- "version": "6.0.2",
+ "version": "4.0.0-rc1",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/migrate_plus.git",
- "reference": "6.0.2"
+ "url": "https://git.drupal.org/project/migrate_plus",
+ "reference": "8.x-4.0-rc1"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.2.zip",
- "reference": "6.0.2",
- "shasum": "4315bc293aa75ea9247582d5d1925b075865e467"
+ "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.0-rc1.zip",
+ "reference": "8.x-4.0-rc1",
+ "shasum": "23cd08ec4bf976cd9f6bc018ada1a332a0a89cdd"
},
"require": {
- "drupal/core": ">=9.1",
- "php": ">=7.4"
+ "drupal/core": "^8.3"
},
"require-dev": {
"drupal/migrate_example_advanced_setup": "*",
@@ -13587,18 +5288,22 @@
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-4.x": "4.x-dev"
+ },
"drupal": {
- "version": "6.0.2",
- "datestamp": "1705424638",
+ "version": "8.x-4.0-rc1",
+ "datestamp": "1535381280",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "RC releases are not covered by Drupal security advisories."
}
- }
+ },
+ "patches_applied": []
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -13606,11 +5311,6 @@
"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 +5319,41 @@
"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.0.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/migrate_tools.git",
- "reference": "6.0.4"
+ "url": "https://git.drupal.org/project/migrate_tools",
+ "reference": "8.x-4.0"
},
"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.0.zip",
+ "reference": "8.x-4.0",
+ "shasum": "016dfb010df76723c5a6a447921fdccd3c885237"
},
"require": {
- "drupal/core": ">=9.1",
- "php": ">=7.4"
+ "drupal/core": "^8.3",
+ "drupal/migrate_plus": "^4"
},
"require-dev": {
- "drupal/migrate_plus": ">=5",
- "drupal/migrate_source_csv": ">=3",
- "drush/drush": ">=11"
- },
- "suggest": {
- "drupal/migrate_plus": ">=5",
- "drush/drush": ">=11"
+ "drupal/coder": "^8",
+ "drupal/migrate_source_csv": "^2.2"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-4.x": "4.x-dev"
+ },
"drupal": {
- "version": "6.0.4",
- "datestamp": "1707330330",
+ "version": "8.x-4.0",
+ "datestamp": "1535380084",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -13714,122 +5361,7 @@
},
"drush": {
"services": {
- "drush.services.yml": ">=9"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Mike Ryan",
- "homepage": "https://www.drupal.org/u/mikeryan",
- "role": "Maintainer"
- },
- {
- "name": "Lucas Hedding",
- "homepage": "https://www.drupal.org/u/heddn",
- "role": "Maintainer"
- },
- {
- "name": "mikeryan",
- "homepage": "https://www.drupal.org/user/4420"
- }
- ],
- "description": "Tools to assist in developing and running migrations.",
- "homepage": "http://drupal.org/project/migrate_tools",
- "support": {
- "source": "https://git.drupalcode.org/project/migrate_tools",
- "issues": "https://www.drupal.org/project/issues/migrate_tools",
- "slack": "#migrate"
- }
- },
- {
- "name": "drupal/migrate_upgrade",
- "version": "4.0.1",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/migrate_upgrade.git",
- "reference": "4.0.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.1.zip",
- "reference": "4.0.1",
- "shasum": "e9507affa61ae27adb1ea6e0d55f3bb32506ddfc"
- },
- "require": {
- "drupal/core": ">=9",
- "drupal/migrate_plus": ">=5",
- "drush/drush": ">=9",
- "php": ">7.3"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "4.0.1",
- "datestamp": "1672260874",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Mike Ryan",
- "homepage": "https://www.drupal.org/u/mikeryan",
- "role": "Maintainer"
- },
- {
- "name": "Lucas Hedding",
- "homepage": "https://www.drupal.org/u/heddn",
- "role": "Maintainer"
- }
- ],
- "description": "Drush support for direct upgrades from older Drupal versions.",
- "homepage": "https://www.drupal.org/project/migrate_upgrade",
- "support": {
- "source": "https://git.drupalcode.org/project/migrate_upgrade",
- "issues": "https://www.drupal.org/project/issues/migrate_upgrade",
- "slack": "#migrate"
- }
- },
- {
- "name": "drupal/minimalhtml",
- "version": "2.0.2",
- "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"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10",
- "drupal/wysiwyg_linebreaks": "2.0.x-dev@dev"
- },
- "require-dev": {
- "drupal/ckeditor": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.2",
- "datestamp": "1690397749",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "drush.services.yml": "^9"
}
}
},
@@ -13839,91 +5371,52 @@
],
"authors": [
{
- "name": "Benjamin Melançon",
- "homepage": "https://agaric.com/mlncn",
- "email": "mlncn@agaric.com",
- "role": "Maintainer"
+ "name": "heddn",
+ "homepage": "https://www.drupal.org/user/1463982"
},
{
- "name": "See contributors",
- "homepage": "https://www.drupal.org/node/2937110/committers"
+ "name": "mikeryan",
+ "homepage": "https://www.drupal.org/user/4420"
},
{
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
+ "name": "moshe weitzman",
+ "homepage": "https://www.drupal.org/user/23"
}
],
- "description": "Minimal HTML provides a WYSIWYG text format suitable for basic uses like short text fields or administrator-configured notices.",
- "homepage": "https://www.drupal.org/project/minimalhtml",
+ "description": "Tools to assist in developing and running migrations.",
+ "homepage": "http://drupal.org/project/migrate_tools",
"support": {
- "source": "https://git.drupalcode.org/project/minimalhtml",
- "issues": "https://www.drupal.org/project/issues/minimalhtml"
+ "source": "http://cgit.drupalcode.org/migrate_tools",
+ "issues": "http://drupal.org/project/migrate_tools",
+ "irc": "irc://irc.freenode.org/drupal-migrate"
}
},
{
- "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",
+ "name": "drupal/octavia",
+ "version": "1.0.0-alpha5",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/multiparagraph_flow.git",
- "reference": "3f431ae615356964ceb93f9198fe41b6c9bbff7c"
+ "url": "https://git.drupal.org/project/octavia",
+ "reference": "8.x-1.0-alpha5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://ftp.drupal.org/files/projects/octavia-8.x-1.0-alpha5.zip",
+ "reference": "8.x-1.0-alpha5",
+ "shasum": "3a9d0ba4c655c8fd3ce6b2d7e915a97f602b561d"
},
"require": {
- "drupal/core": "^9.3 || ^10",
- "drupal/paragraphs": "*",
- "drupal/paragraphs_browser": "*"
+ "drupal/bulma": "^1.0-alpha2",
+ "drupal/core": "~8.0"
},
- "type": "drupal-module",
+ "type": "drupal-theme",
"extra": {
"branch-alias": {
- "dev-1.0.x": "1.0.x-dev"
+ "dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "1.0.x-dev",
- "datestamp": "1708020867",
+ "version": "8.x-1.0-alpha5",
+ "datestamp": "1533282480",
"security-coverage": {
"status": "not-covered",
"message": "Project has not opted into security advisory coverage!"
@@ -13931,230 +5424,18 @@
}
},
"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
- p { color: red }
-
-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",
- "version": "dev-1.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/notfoundpassthrough.git",
- "reference": "0482dc146ebfbc842274ac9513d675efee8b8f6d"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.x": "1.x-dev"
- },
- "drupal": {
- "version": "1.0.0-beta4+1-dev",
- "datestamp": "1682098409",
- "security-coverage": {
- "status": "not-covered",
- "message": "Dev releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
"license": [
"GPL-2.0+"
],
"authors": [
{
- "name": "Benjamin Melançon",
- "homepage": "https://agaric.coop/mlncn",
- "email": "mlncn@agaric.coop",
- "role": "Maintainer"
- },
- {
- "name": "David Valdez",
- "homepage": "https://agaric.coop/gnuget",
- "email": "gnuget@agaric.coop",
- "role": "Maintainer"
- },
- {
- "name": "Vlad Pavlovic",
- "homepage": "https://www.drupal.org/u/vladpavlovic",
- "role": "Creator"
- },
- {
- "name": "Lucian NEAG",
- "homepage": "https://www.drupal.org/u/luxian",
- "role": "Ported to Drupal 7"
- },
- {
- "name": "See contributors",
- "homepage": "https://www.drupal.org/node/3170743/committers"
- }
- ],
- "homepage": "https://www.drupal.org/project/notfoundpassthrough",
- "support": {
- "source": "https://git.drupalcode.org/project/notfoundpassthrough",
- "issues": "https://www.drupal.org/project/issues/notfoundpassthrough"
- }
- },
- {
- "name": "drupal/octavia",
- "version": "dev-2.0.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/octavia.git",
- "reference": "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 +5444,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"
@@ -14178,119 +5455,39 @@
],
"description": "A base theme for the Drutopia distribution based on Bulma.",
"homepage": "https://gitlab.com/drutopia/octavia",
- "keywords": [
- "bulma",
- "drutopia",
- "flexbox",
- "styles",
- "templates",
- "theme"
- ],
"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"
+ "source": "http://cgit.drupalcode.org/octavia"
}
},
{
"name": "drupal/paragraphs",
- "version": "1.17.0",
+ "version": "1.3.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/paragraphs.git",
- "reference": "8.x-1.17"
+ "url": "https://git.drupal.org/project/paragraphs",
+ "reference": "8.x-1.3"
},
"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.3.zip",
+ "reference": "8.x-1.3",
+ "shasum": "24c6d2153127f9d783a03c05baf3b9beb219113f"
},
"require": {
- "drupal/core": "^9.3 || ^10",
+ "drupal/core": "~8",
"drupal/entity_reference_revisions": "~1.3"
},
"require-dev": {
- "drupal/block_field": "1.x-dev",
- "drupal/diff": "1.x-dev",
- "drupal/entity_browser": "2.x-dev",
+ "drupal/block_field": "~1.0",
+ "drupal/ctools": "3.x-dev",
+ "drupal/diff": "~1.0",
+ "drupal/entity_browser": "1.x-dev",
"drupal/entity_usage": "2.x-dev",
- "drupal/field_group": "3.x-dev",
- "drupal/inline_entity_form": "1.x-dev",
+ "drupal/field_group": "~1.0",
+ "drupal/inline_entity_form": "~1.0",
"drupal/paragraphs-paragraphs_library": "*",
- "drupal/replicate": "1.x-dev",
- "drupal/search_api": "^1",
+ "drupal/replicate": "~1.0",
+ "drupal/search_api": "~1.0",
"drupal/search_api_db": "*"
},
"suggest": {
@@ -14298,9 +5495,12 @@
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.17",
- "datestamp": "1705234146",
+ "version": "8.x-1.3",
+ "datestamp": "1527502684",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -14309,7 +5509,7 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0"
],
"authors": [
{
@@ -14320,179 +5520,53 @@
"name": "Frans",
"homepage": "https://www.drupal.org/user/514222"
},
+ {
+ "name": "Primsi",
+ "homepage": "https://www.drupal.org/user/282629"
+ },
{
"name": "jeroen.b",
"homepage": "https://www.drupal.org/user/1853532"
},
- {
- "name": "jstoller",
- "homepage": "https://www.drupal.org/user/99012"
- },
{
"name": "miro_dietiker",
"homepage": "https://www.drupal.org/user/227761"
- },
- {
- "name": "Primsi",
- "homepage": "https://www.drupal.org/user/282629"
}
],
"description": "Enables the creation of Paragraphs entities.",
"homepage": "https://www.drupal.org/project/paragraphs",
"support": {
- "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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/paragraphs_features.git",
- "reference": "2.0.0-beta4"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.0.0-beta4.zip",
- "reference": "2.0.0-beta4",
- "shasum": "c3137491ba5f73e8395d9c2178beac3a10e33f7d"
- },
- "require": {
- "drupal/core": "^9.2 || ^10",
- "drupal/paragraphs": "^1.13"
- },
- "require-dev": {
- "drupal/gin": "^3.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-beta4",
- "datestamp": "1705329204",
- "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": "Mladen Todorovic",
- "homepage": "https://www.drupal.org/user/2103716",
- "email": "mladen.todorovic@burda.com"
- },
- {
- "name": "Daniel Bosen",
- "homepage": "https://www.drupal.org/user/404865",
- "email": "daniel.bosen@burda.com"
- },
- {
- "name": "Christian Fritsch",
- "homepage": "https://www.drupal.org/user/3511180",
- "email": "christian.fritsch@burda.com"
- },
- {
- "name": "Volker Killesreiter",
- "homepage": "https://www.drupal.org/user/57527",
- "email": "volker.killesreiter@burda.com"
- },
- {
- "name": "Alex Pott",
- "email": "alex.a.pott@gmail.com"
- }
- ],
- "description": "Paragraphs features for extending paragraphs widget functionality.",
- "homepage": "https://www.drupal.org/project/paragraphs_features",
- "support": {
- "source": "https://git.drupalcode.org/project/paragraphs_features"
+ "source": "http://cgit.drupalcode.org/paragraphs"
}
},
{
"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"
+ "url": "https://git.drupal.org/project/paranoia",
+ "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 +5575,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 +5583,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,114 +5591,40 @@
"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.2.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/pathauto.git",
- "reference": "8.x-1.12"
+ "url": "https://git.drupal.org/project/pathauto",
+ "reference": "8.x-1.2"
},
"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.2.zip",
+ "reference": "8.x-1.2",
+ "shasum": "ba265dbafb27e93d4a61655d783441b653206c73"
},
"require": {
- "drupal/core": "^9.3 || ^10",
+ "drupal/core": "*",
"drupal/ctools": "*",
"drupal/token": "*"
},
- "suggest": {
- "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
- },
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.12",
- "datestamp": "1696776683",
+ "version": "8.x-1.2",
+ "datestamp": "1524421084",
"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",
@@ -14660,1326 +5652,38 @@
"description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
"homepage": "https://www.drupal.org/project/pathauto",
"support": {
- "source": "https://cgit.drupalcode.org/pathauto",
- "issues": "https://www.drupal.org/project/issues/pathauto",
- "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
- }
- },
- {
- "name": "drupal/pdf_api",
- "version": "2.4.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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/preview_link.git",
- "reference": "2.1.0-alpha2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/preview_link-2.1.0-alpha2.zip",
- "reference": "2.1.0-alpha2",
- "shasum": "9e077ecb0f43e9bf5e6d5fba2520b0b46846a5e8"
- },
- "require": {
- "drupal/core": "^9.4 || ^10",
- "drupal/dynamic_entity_reference": "^1 || ^2 || ^3 || ^4",
- "php": ">=8.0"
- },
- "require-dev": {
- "drupal/entity_reference_revisions": "*",
- "drupal/paragraphs": "^1"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.1.0-alpha2",
- "datestamp": "1698724706",
- "security-coverage": {
- "status": "not-covered",
- "message": "Alpha releases are not covered by Drupal security advisories."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0+"
- ],
- "authors": [
- {
- "name": "acbramley",
- "homepage": "https://www.drupal.org/user/1036766"
- },
- {
- "name": "benjy",
- "homepage": "https://www.drupal.org/user/1852732"
- },
- {
- "name": "dpi",
- "homepage": "https://www.drupal.org/user/81431"
- },
- {
- "name": "larowlan",
- "homepage": "https://www.drupal.org/user/395439"
- },
- {
- "name": "mstrelan",
- "homepage": "https://www.drupal.org/user/314289"
- },
- {
- "name": "Sam152",
- "homepage": "https://www.drupal.org/user/1485048"
- }
- ],
- "description": "Allows anyone to preview unpublished content with a unique link.",
- "homepage": "https://www.drupal.org/project/preview_link",
- "keywords": [
- "Drupal"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/preview_link",
- "issues": "https://www.drupal.org/project/issues/preview_link"
- }
- },
- {
- "name": "drupal/printable",
- "version": "3.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"
- }
- },
- {
- "name": "drupal/redirect",
- "version": "1.9.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/redirect.git",
- "reference": "8.x-1.9"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
- "reference": "8.x-1.9",
- "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.9",
- "datestamp": "1693393506",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
- },
- {
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
- },
- {
- "name": "Kristen Pol",
- "homepage": "https://www.drupal.org/user/8389"
- },
- {
- "name": "pifagor",
- "homepage": "https://www.drupal.org/user/2375692"
- }
- ],
- "description": "Allows users to redirect from old URLs to new URLs.",
- "homepage": "https://www.drupal.org/project/redirect",
- "support": {
- "source": "https://git.drupalcode.org/project/redirect"
- }
- },
- {
- "name": "drupal/redirect_404",
- "version": "1.9.0",
- "require": {
- "drupal/core": "^9.2 || ^10",
- "drupal/redirect": "*"
- },
- "type": "metapackage",
- "extra": {
- "drupal": {
- "version": "8.x-1.9",
- "datestamp": "1693393506",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
- },
- {
- "name": "Dave Reid",
- "homepage": "https://www.drupal.org/user/53892"
- },
- {
- "name": "Kristen Pol",
- "homepage": "https://www.drupal.org/user/8389"
- },
- {
- "name": "pifagor",
- "homepage": "https://www.drupal.org/user/2375692"
- }
- ],
- "description": "Logs 404 errors and allows users to create redirects for often requested but missing pages.",
- "homepage": "https://www.drupal.org/project/redirect",
- "support": {
- "source": "https://git.drupalcode.org/project/redirect"
- }
- },
- {
- "name": "drupal/regionincontent",
- "version": "1.1.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/regionincontent.git",
- "reference": "8.x-1.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/regionincontent-8.x-1.1.zip",
- "reference": "8.x-1.1",
- "shasum": "3323c1215c4cfc3da3580e8d382c7cc0f691a513"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.1",
- "datestamp": "1699306875",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "MegaKeegMan",
- "homepage": "https://www.drupal.org/user/3620027"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- }
- ],
- "description": "Provides the ability to print regions (the building block of Drupal site building— where blocks are placed) within content (node) templates.",
- "homepage": "https://www.drupal.org/project/regionincontent",
- "support": {
- "source": "https://git.drupalcode.org/project/regionincontent"
- }
- },
- {
- "name": "drupal/registration_role",
- "version": "2.0.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"
- }
- },
- {
- "name": "drupal/riddler",
- "version": "3.0.1",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/riddler.git",
- "reference": "3.0.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/riddler-3.0.1.zip",
- "reference": "3.0.1",
- "shasum": "dc758aece996787a3429c61aa534df87ccf770a3"
- },
- "require": {
- "drupal/captcha": "^2",
- "drupal/core": "^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "3.0.1",
- "datestamp": "1686732873",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "alex_optim",
- "homepage": "https://www.drupal.org/user/3317601"
- },
- {
- "name": "Anybody",
- "homepage": "https://www.drupal.org/user/291091"
- },
- {
- "name": "awolfey",
- "homepage": "https://www.drupal.org/user/277371"
- },
- {
- "name": "Grevil",
- "homepage": "https://www.drupal.org/user/3668491"
- },
- {
- "name": "imerlin",
- "homepage": "https://www.drupal.org/user/21895"
- },
- {
- "name": "thomas.frobieter",
- "homepage": "https://www.drupal.org/user/409335"
- }
- ],
- "description": "Provides a question and answer CAPTCHA.",
- "homepage": "https://www.drupal.org/project/riddler",
- "keywords": [
- "Drupal"
- ],
- "support": {
- "source": "http://cgit.drupalcode.org/riddler",
- "issues": "https://www.drupal.org/project/issues/riddler"
- }
- },
- {
- "name": "drupal/role_delegation",
- "version": "1.2.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/role_delegation.git",
- "reference": "8.x-1.2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip",
- "reference": "8.x-1.2",
- "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.2",
- "datestamp": "1644487627",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Jeroen Tubex",
- "homepage": "https://www.drupal.org/u/jeroent",
- "role": "Maintainer"
- },
- {
- "name": "JeroenT",
- "homepage": "https://www.drupal.org/user/2228934"
- }
- ],
- "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
- "homepage": "http://drupal.org/project/role_delegation",
- "support": {
- "source": "https://git.drupalcode.org/project/role_delegation",
- "issues": "http://drupal.org/project/role_delegation"
- }
- },
- {
- "name": "drupal/scheduler",
- "version": "1.5.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/scheduler.git",
- "reference": "8.x-1.5"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.5.zip",
- "reference": "8.x-1.5",
- "shasum": "206a9b6e348273aa2cf97ba429d437112b47469b"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "require-dev": {
- "drupal/devel_generate": "^2.0 || >=4",
- "drupal/rules": "^3",
- "drush/drush": ">=9"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.5",
- "datestamp": "1683719323",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- },
- "drush": {
- "services": {
- "drush.services.yml": "^9 || ^10"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Eric Schaefer (Eric Schaefer)",
- "homepage": "https://www.drupal.org/u/eric-schaefer",
- "role": "Maintainer"
- },
- {
- "name": "Jonathan Smith (jonathan1055)",
- "homepage": "https://www.drupal.org/u/jonathan1055",
- "role": "Maintainer"
- },
- {
- "name": "Pieter Frenssen (pfrenssen)",
- "homepage": "https://www.drupal.org/u/pfrenssen",
- "role": "Maintainer"
- },
- {
- "name": "Rick Manelius (rickmanelius)",
- "homepage": "https://www.drupal.org/u/rickmanelius",
- "role": "Maintainer"
- }
- ],
- "description": "Automatically publish and unpublish content at specified dates and times.",
- "homepage": "https://drupal.org/project/scheduler",
- "support": {
- "source": "https://git.drupalcode.org/project/scheduler",
- "issues": "https://www.drupal.org/project/issues/scheduler"
- }
- },
- {
- "name": "drupal/schema_metatag",
- "version": "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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/scn.git",
- "reference": "2.0.3"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/scn-2.0.3.zip",
- "reference": "2.0.3",
- "shasum": "f13d261528b5a61884ece9deb660c8e64c7d9ce7"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.3",
- "datestamp": "1689485714",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Andrei Ivnitskii",
- "homepage": "https://www.drupal.org/u/ivnish",
- "role": "Maintainer"
- }
- ],
- "description": "Notifies the site administrator by e-mail or telegram about new comments on the site.",
- "homepage": "https://www.drupal.org/project/scn",
- "support": {
- "source": "https://git.drupalcode.org/project/scn",
- "issues": "https://www.drupal.org/project/issues/scn"
- }
- },
- {
- "name": "drupal/search404",
- "version": "2.1.2",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/search404.git",
- "reference": "2.1.2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/search404-2.1.2.zip",
- "reference": "2.1.2",
- "shasum": "1bd271486856e33a23c394849503477b97fbe25f"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.1.2",
- "datestamp": "1677067806",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "anoopjohn",
- "homepage": "https://www.drupal.org/user/188049"
- },
- {
- "name": "Anybody",
- "homepage": "https://www.drupal.org/user/291091"
- },
- {
- "name": "binnythomas",
- "homepage": "https://www.drupal.org/user/3123091"
- },
- {
- "name": "emilymathew",
- "homepage": "https://www.drupal.org/user/2921997"
- },
- {
- "name": "Grevil",
- "homepage": "https://www.drupal.org/user/3668491"
- },
- {
- "name": "jijojoseph_zyxware",
- "homepage": "https://www.drupal.org/user/3561263"
- },
- {
- "name": "larssg",
- "homepage": "https://www.drupal.org/user/655"
- },
- {
- "name": "varunity",
- "homepage": "https://www.drupal.org/user/273530"
- },
- {
- "name": "vimaljoseph",
- "homepage": "https://www.drupal.org/user/817380"
- },
- {
- "name": "zyxware",
- "homepage": "https://www.drupal.org/user/222163"
- }
- ],
- "description": "Automatically search for the keywords in URLs that result in 404 errors and show results instead of Page-Not-Found.",
- "homepage": "https://www.drupal.org/project/search404",
- "support": {
- "source": "https://git.drupalcode.org/project/search404"
+ "source": "http://cgit.drupalcode.org/pathauto"
}
},
{
"name": "drupal/search_api",
- "version": "1.31.0",
+ "version": "1.9.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/search_api.git",
- "reference": "8.x-1.31"
+ "url": "https://git.drupal.org/project/search_api",
+ "reference": "8.x-1.9"
},
"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.9.zip",
+ "reference": "8.x-1.9",
+ "shasum": "b019b3af9e724a1804b540ae0e4a56d2ee98c603"
},
"require": {
- "drupal/core": "^10.0"
- },
- "conflict": {
- "drupal/search_api_solr": "2.* || 3.0 || 3.1"
+ "drupal/core": "^8.5"
},
"require-dev": {
- "drupal/language_fallback_fix": "@dev",
"drupal/search_api_autocomplete": "@dev",
"drupal/search_api_db": "*"
},
- "suggest": {
- "drupal/facets": "Adds the ability to create faceted searches.",
- "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
- "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
- },
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.31",
- "datestamp": "1700926323",
+ "version": "8.x-1.9",
+ "datestamp": "1531985581",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -15987,13 +5691,16 @@
},
"drush": {
"services": {
- "drush.services.yml": "^9 || ^10 || ^11"
+ "drush.services.yml": "^9"
}
+ },
+ "patches_applied": {
+ "Notice: Undefined index: total When we enable the module in the installation step": "https://www.drupal.org/files/issues/2931562-13--undefined_total_in_task_manager_batch_finish.patch"
}
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -16012,77 +5719,26 @@
"description": "Provides a generic framework for modules offering search capabilities.",
"homepage": "https://www.drupal.org/project/search_api",
"support": {
- "source": "https://git.drupalcode.org/project/search_api",
+ "source": "http://git.drupal.org/project/search_api.git",
"issues": "https://www.drupal.org/project/issues/search_api",
"irc": "irc://irc.freenode.org/drupal-search-api"
}
},
- {
- "name": "drupal/search_api_autocomplete",
- "version": "1.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.9.0",
"require": {
- "drupal/core": "^10.0",
- "drupal/search_api": "*"
+ "drupal/core": "~8.0",
+ "drupal/search_api": "self.version"
},
"type": "metapackage",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.31",
- "datestamp": "1700926323",
+ "version": "8.x-1.9",
+ "datestamp": "1531985581",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -16095,380 +5751,45 @@
],
"authors": [
{
- "name": "borisson_",
- "homepage": "https://www.drupal.org/user/2393360"
+ "name": "Nick_vh",
+ "homepage": "https://www.drupal.org/user/122682"
},
{
"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.",
"homepage": "https://www.drupal.org/project/search_api",
"support": {
- "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"
+ "source": "http://cgit.drupalcode.org/search_api"
}
},
{
"name": "drupal/similarterms",
- "version": "1.8.0",
+ "version": "1.3.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/similarterms.git",
- "reference": "8.x-1.8"
+ "url": "https://git.drupal.org/project/similarterms",
+ "reference": "8.x-1.3"
},
"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.3.zip",
+ "reference": "8.x-1.3",
+ "shasum": "46f2c36340e3bb2c40a250ff3a3de29947cdd609"
},
"require": {
- "drupal/core": "^8 || ^9 || ^10"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.8",
- "datestamp": "1699725697",
+ "version": "8.x-1.3",
+ "datestamp": "1469824139",
"security-coverage": {
"status": "covered",
"message": "Covered by Drupal's security advisory policy"
@@ -16484,10 +5805,6 @@
"name": "rmiddle",
"homepage": "https://www.drupal.org/user/192183"
},
- {
- "name": "shelane",
- "homepage": "https://www.drupal.org/user/2674989"
- },
{
"name": "takim",
"homepage": "https://www.drupal.org/user/252386"
@@ -16496,34 +5813,37 @@
"description": "Use Views to show similar content based on taxonomy terms",
"homepage": "https://www.drupal.org/project/similarterms",
"support": {
- "source": "https://git.drupalcode.org/project/similarterms"
+ "source": "http://cgit.drupalcode.org/similarterms"
}
},
{
- "name": "drupal/skins",
- "version": "2.0.0-alpha1",
+ "name": "drupal/social_media_links",
+ "version": "2.6.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/skins.git",
- "reference": "2.0.0-alpha1"
+ "url": "https://git.drupal.org/project/social_media_links",
+ "reference": "8.x-2.6"
},
"dist": {
"type": "zip",
- "url": "https://ftp.drupal.org/files/projects/skins-2.0.0-alpha1.zip",
- "reference": "2.0.0-alpha1",
- "shasum": "192b0ba615b866f0d36feebfc99d9a3ff58f86c0"
+ "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.6.zip",
+ "reference": "8.x-2.6",
+ "shasum": "53462cb307b104552ae5370b917e55ca50fba526"
},
"require": {
- "drupal/core": "^9.3 || ^10"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ },
"drupal": {
- "version": "2.0.0-alpha1",
- "datestamp": "1687484216",
+ "version": "8.x-2.6",
+ "datestamp": "1510489384",
"security-coverage": {
- "status": "not-covered",
- "message": "Alpha releases are not covered by Drupal security advisories."
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
}
}
},
@@ -16533,817 +5853,42 @@
],
"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",
- "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": "Aniebiet Udoh",
- "homepage": "https://www.drupal.org/u/almaudoh",
- "role": "Maintainer"
- },
- {
- "name": "Daniel Phin",
- "homepage": "http://danielph.in",
- "role": "Maintainer"
- },
- {
- "name": "dpi",
- "homepage": "https://www.drupal.org/user/81431"
- }
- ],
- "description": "Provides an extensible API that facilitates communication between Drupal and various SMS gateways.",
- "homepage": "http://drupal.org/project/smsframework",
- "support": {
- "source": "https://git.drupalcode.org/project/smsframework",
- "issues": "https://www.drupal.org/project/issues/smsframework"
- }
- },
- {
- "name": "drupal/smsframework",
- "version": "2.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"
- }
- },
- {
- "name": "drupal/social_media_links",
- "version": "2.9.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/social_media_links.git",
- "reference": "8.x-2.9"
- },
- "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"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-2.9",
- "datestamp": "1665768361",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Neslee Canil Pinto",
- "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
- "role": "Maintainer"
- },
- {
- "name": "Christian Beier",
- "homepage": "https://www.drupal.org/u/cbeier",
- "role": "Maintainer"
+ "name": "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.",
"homepage": "https://www.drupal.org/project/social_media_links",
"support": {
- "source": "https://git.drupalcode.org/project/social_media_links",
+ "source": "http://cgit.drupalcode.org/social_media_links",
"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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/stripe.git",
- "reference": "2.0.0-beta4"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/stripe-2.0.0-beta4.zip",
- "reference": "2.0.0-beta4",
- "shasum": "fda2de1e566690b86044832af3b105a783c13369"
- },
- "require": {
- "drupal/core": "^9 || ^10",
- "stripe/stripe-php": "^7.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-beta4",
- "datestamp": "1678224485",
- "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": "hamrant",
- "homepage": "https://www.drupal.org/user/3204205"
- },
- {
- "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"
- },
- {
- "name": "mmilano",
- "homepage": "https://www.drupal.org/user/184408"
- },
- {
- "name": "q0rban",
- "homepage": "https://www.drupal.org/user/31022"
- },
- {
- "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"
- },
- {
- "name": "torgosPizza",
- "homepage": "https://www.drupal.org/user/151333"
- },
- {
- "name": "vasike",
- "homepage": "https://www.drupal.org/user/156237"
- },
- {
- "name": "vordude",
- "homepage": "https://www.drupal.org/user/150473"
- }
- ],
- "description": "Stripe",
- "homepage": "https://www.drupal.org/project/stripe",
- "keywords": [
- "Drupal"
- ],
- "support": {
- "source": "http://cgit.drupalcode.org/stripe",
- "issues": "https://www.drupal.org/project/issues/stripe"
- }
- },
- {
- "name": "drupal/stripe_webform",
- "version": "2.0.0-beta4",
- "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"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10",
- "drupal/stripe": "^2.0.0",
- "drupal/webform": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.0.0-beta4",
- "datestamp": "1677789872",
- "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": "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"
- }
- },
{
"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"
+ "url": "https://git.drupal.org/project/subprofiles",
+ "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,373 +5897,53 @@
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0+"
+ "GPL-2.0-or-later"
],
"authors": [
{
- "name": "drutopia",
- "homepage": "https://www.drupal.org/user/3763727"
- },
- {
- "name": "lelkneralfaro",
- "homepage": "https://www.drupal.org/user/3577260"
- },
- {
- "name": "MegaKeegMan",
- "homepage": "https://www.drupal.org/user/3620027"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
+ "name": "nedjo",
+ "homepage": "https://www.drupal.org/user/4481"
},
{
"name": "robertDouglass",
"homepage": "https://www.drupal.org/user/5449"
- },
- {
- "name": "wolcen",
- "homepage": "https://www.drupal.org/user/3099655"
}
],
"description": "Provide multiple variations of a single installation profile.",
"homepage": "https://www.drupal.org/project/subprofiles",
- "keywords": [
- "Drupal"
- ],
"support": {
- "source": "https://git.drupalcode.org/project/subprofiles",
- "issues": "http://drupal.org/project/issues/subprofiles"
- }
- },
- {
- "name": "drupal/super_login",
- "version": "2.1.2",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/super_login.git",
- "reference": "2.1.2"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/super_login-2.1.2.zip",
- "reference": "2.1.2",
- "shasum": "28c0667ea9ad0bfb689a5a17e9b2a8b186426397"
- },
- "require": {
- "drupal/core": "^8.8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "2.1.2",
- "datestamp": "1691620459",
- "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"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0+"
- ],
- "authors": [
- {
- "name": "AswathyAjish",
- "homepage": "https://www.drupal.org/user/2584696"
- },
- {
- "name": "colan",
- "homepage": "https://www.drupal.org/user/58704"
- },
- {
- "name": "neethups",
- "homepage": "https://www.drupal.org/user/3516137"
- },
- {
- "name": "sajiniantony",
- "homepage": "https://www.drupal.org/user/2603884"
- },
- {
- "name": "TolstoyDotCom",
- "homepage": "https://www.drupal.org/user/103055"
- },
- {
- "name": "vuil",
- "homepage": "https://www.drupal.org/user/3568458"
- }
- ],
- "description": "A module to import taxonomy using CSV or XML file to a user defined vocabulary.",
- "homepage": "https://www.drupal.org/project/taxonomy_import",
- "keywords": [
- "Drupal",
- "taxonomy_import"
- ],
- "support": {
- "source": "http://cgit.drupalcode.org/taxonomy_import",
- "issues": "https://www.drupal.org/project/issues/taxonomy_import",
- "documentation": "https://www.drupal.org/project/taxonomy_import"
- }
- },
- {
- "name": "drupal/taxonomy_manager",
- "version": "2.0.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"
- }
- },
- {
- "name": "drupal/textarea_widget_for_text",
- "version": "1.3.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git",
- "reference": "8.x-1.3"
- },
- "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"
- },
- "require": {
- "drupal/core": "^8 || ^9 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.3",
- "datestamp": "1699891368",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "gnuget",
- "homepage": "https://www.drupal.org/user/992990"
- },
- {
- "name": "junaidpv",
- "homepage": "https://www.drupal.org/user/255728"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- }
- ],
- "description": "Allows short (non-long) text fields to use the textarea widget on content entry forms.",
- "homepage": "https://www.drupal.org/project/textarea_widget_for_text",
- "support": {
- "source": "https://git.drupalcode.org/project/textarea_widget_for_text"
+ "source": "http://cgit.drupalcode.org/subprofiles"
}
},
{
"name": "drupal/token",
- "version": "1.13.0",
+ "version": "1.3.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/token.git",
- "reference": "8.x-1.13"
+ "url": "https://git.drupal.org/project/token",
+ "reference": "8.x-1.3"
},
"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.3.zip",
+ "reference": "8.x-1.3",
+ "shasum": "360f4f16985a2005b1ab5d8a8628b73a5012c902"
},
"require": {
- "drupal/core": "^9.2 || ^10"
+ "drupal/core": "~8.0"
},
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ },
"drupal": {
- "version": "8.x-1.13",
- "datestamp": "1697885927",
+ "version": "8.x-1.3",
+ "datestamp": "1527232684",
"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",
@@ -17751,1063 +5976,60 @@
"homepage": "https://www.drupal.org/user/4420"
}
],
- "description": "Provides a user interface for the Token API, some missing core tokens.",
+ "description": "Provides a user interface for the Token API and some missing core tokens.",
"homepage": "https://www.drupal.org/project/token",
"support": {
- "source": "https://git.drupalcode.org/project/token"
- }
- },
- {
- "name": "drupal/tomselect",
- "version": "dev-1.0.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/tomselect.git",
- "reference": "745ac18bc0ff358574891e875026923dcae563b8"
- },
- "require": {
- "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-alpha1+1-dev",
- "datestamp": "1704733540",
- "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."
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0+"
- ],
- "authors": [
- {
- "name": "beunerd",
- "homepage": "https://www.drupal.org/user/1312798"
- },
- {
- "name": "leymannx",
- "homepage": "https://www.drupal.org/user/2482808"
- },
- {
- "name": "MegaKeegMan",
- "homepage": "https://www.drupal.org/user/3620027"
- },
- {
- "name": "mlncn",
- "homepage": "https://www.drupal.org/user/64383"
- }
- ],
- "description": "Provides template suggestions for things Drupal doesn't.",
- "homepage": "https://www.drupal.org/project/twigsuggest",
- "keywords": [
- "drupal",
- "styling",
- "template suggestions",
- "templates",
- "theming"
- ],
- "support": {
- "source": "https://git.drupalcode.org/project/twigsuggest.git",
- "issues": "https://www.drupal.org/project/issues/twigsuggest"
- }
- },
- {
- "name": "drupal/ui_patterns",
- "version": "1.8.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/ui_patterns.git",
- "reference": "8.x-1.8"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.8.zip",
- "reference": "8.x-1.8",
- "shasum": "120d90db34296500a1ae8094cd0cc23983e951ab"
- },
- "require": {
- "drupal/core": "^9 || ^10"
- },
- "require-dev": {
- "drupal/ds": "^3.18",
- "drupal/field_group": "^3.4"
- },
- "type": "drupal-module",
- "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": "UI Patterns.",
- "homepage": "https://www.drupal.org/project/ui_patterns",
- "support": {
- "source": "https://git.drupalcode.org/project/ui_patterns"
- }
- },
- {
- "name": "drupal/ui_patterns_ds",
- "version": "1.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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/unique_content_field_validation.git",
- "reference": "1.1.1"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/unique_content_field_validation-1.1.1.zip",
- "reference": "1.1.1",
- "shasum": "a6fdc0b33e3a022fbc8f2decc8b0488ebe79cb82"
- },
- "require": {
- "drupal/core": "^9.1 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "1.1.1",
- "datestamp": "1688169108",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Fabian Sierra",
- "homepage": "https://www.drupal.org/u/fabiansierra5191",
- "role": "Maintainer"
- }
- ],
- "description": "Validate the uniqueness of the entities fields or title.",
- "homepage": "http://drupal.org/project/unique_content_field_validation",
- "support": {
- "source": "https://cgit.drupalcode.org/unique_content_field_validation",
- "issues": "https://drupal.org/project/issues/unique_content_field_validation"
- }
- },
- {
- "name": "drupal/variationcache",
- "version": "1.5.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/variationcache.git",
- "reference": "8.x-1.5"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/variationcache-8.x-1.5.zip",
- "reference": "8.x-1.5",
- "shasum": "6165baee8c6fe5a7773f3499896e8fb464607a32"
- },
- "require": {
- "drupal/core": "^9.5 || ^10"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.5",
- "datestamp": "1705485386",
- "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": "Kristiaan Van den Eynde",
- "homepage": "https://www.drupal.org/u/kristiaanvandeneynde",
- "role": "Maintainer"
- },
- {
- "name": "Brad Jones",
- "homepage": "https://www.drupal.org/u/bradjones1",
- "role": "Maintainer"
- }
- ],
- "description": "This project provides VariationCache, a redirect-aware caching implementation.",
- "homepage": "http://drupal.org/project/variationcache",
- "support": {
- "source": "https://git.drupalcode.org/project/variationcache",
- "issues": "https://drupal.org/project/issues/variationcache"
- }
- },
- {
- "name": "drupal/video_embed_field",
- "version": "2.5.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/video_embed_field.git",
- "reference": "8.x-2.5"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
- "reference": "8.x-2.5",
- "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
- },
- "require": {
- "drupal/core": "^9.2 || ^10"
- },
- "require-dev": {
- "drupal/ckeditor": "^1",
- "drupal/colorbox": "^2",
- "drupal/video_embed_media": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-2.5",
- "datestamp": "1671413311",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "abhinesh",
- "homepage": "https://www.drupal.org/user/3645979"
- },
- {
- "name": "jec006",
- "homepage": "https://www.drupal.org/user/855980"
- },
- {
- "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.",
- "homepage": "https://www.drupal.org/project/video_embed_field",
- "support": {
- "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",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/viewsreference.git",
- "reference": "2ee107cd681a00f26ffe5382660d2298283ec978"
- },
- "require": {
- "drupal/core": "^9.3 || ^10",
- "php": "^7.0|^8.0"
- },
- "conflict": {
- "drupal/viewsreferennce": "*"
- },
- "require-dev": {
- "composer/installers": "^1.2",
- "drupal/coder": "^8.2",
- "drupal/core-composer-scaffold": "*",
- "webflo/drupal-core-require-dev": "~8.5"
- },
- "type": "drupal-module",
- "extra": {
- "branch-alias": {
- "dev-1.x": "1.x-dev"
- },
- "drupal": {
- "version": "8.x-1.8+2-dev",
- "datestamp": "1691455445",
- "security-coverage": {
- "status": "not-covered",
- "message": "Dev releases are not covered by Drupal security advisories."
- }
- },
- "installer-paths": {
- "../build/core": [
- "type:drupal-core"
- ],
- "../build/modules/contrib/{$name}": [
- "type:drupal-module"
- ],
- "../build/themes/contrib/{$name}": [
- "type:drupal-theme"
- ]
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0+"
- ],
- "authors": [
- {
- "name": "joekers",
- "homepage": "https://www.drupal.org/user/2229066"
- },
- {
- "name": "NewZeal",
- "homepage": "https://www.drupal.org/user/93571"
- },
- {
- "name": "seanB",
- "homepage": "https://www.drupal.org/user/545912"
- }
- ],
- "description": "Views Reference",
- "homepage": "http://drupal.org/project/viewsreference",
- "keywords": [
- "Drupal"
- ],
- "support": {
- "source": "http://cgit.drupalcode.org/viewsreference",
- "issues": "http://drupal.org/project/issues/viewsreference"
+ "source": "http://cgit.drupalcode.org/token"
}
},
{
"name": "drupal/webform",
- "version": "6.2.2",
+ "version": "5.0.0-rc19",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/webform.git",
- "reference": "6.2.2"
+ "url": "https://git.drupal.org/project/webform",
+ "reference": "8.x-5.0-rc19"
},
"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-8.x-5.0-rc19.zip",
+ "reference": "8.x-5.0-rc19",
+ "shasum": "43fe62f145c393bb5c8ceae0278434cb91ac4859"
},
"require": {
- "drupal/core": "^9.4 || ^10",
- "php": ">=8.1"
+ "drupal/core": "*"
},
"require-dev": {
- "drupal/address": "1.x-dev",
- "drupal/bootstrap": "3.x-dev",
- "drupal/captcha": "^1 || ^2",
- "drupal/chosen": "3.0.x-dev",
- "drupal/ckeditor": "1.0.x-dev",
- "drupal/clientside_validation": "^3 || ^4",
- "drupal/clientside_validation_jquery": "*",
- "drupal/devel": "5.x-dev",
- "drupal/entity": "1.x-dev",
- "drupal/entity_print": "2.x-dev",
- "drupal/group": "1.x-dev",
- "drupal/hal": "1 - 2",
- "drupal/jquery_ui": "1.x-dev",
- "drupal/jquery_ui_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/address": "~1.4",
+ "drupal/devel": "*",
+ "drupal/token": "~1.3",
"drupal/webform_access": "*",
- "drupal/webform_attachment": "*",
- "drupal/webform_clientside_validation": "*",
- "drupal/webform_devel": "*",
- "drupal/webform_entity_print": "*",
"drupal/webform_node": "*",
- "drupal/webform_options_limit": "*",
"drupal/webform_scheduled_email": "*",
- "drupal/webform_share": "*",
"drupal/webform_ui": "*"
},
- "suggest": {
- "drupal/jquery_ui_checkboxradio": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
- "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
- },
"type": "drupal-module",
"extra": {
+ "branch-alias": {
+ "dev-5.x": "5.x-dev"
+ },
"drupal": {
- "version": "6.2.2",
- "datestamp": "1701948363",
+ "version": "8.x-5.0-rc19",
+ "datestamp": "1536257580",
"security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
+ "status": "not-covered",
+ "message": "RC releases are not covered by Drupal security advisories."
}
},
"drush": {
"services": {
- "drush.services.yml": ">=9"
+ "drush.services.yml": "^9"
}
}
},
"notification-url": "https://packages.drupal.org/8/downloads",
"license": [
- "GPL-2.0-or-later"
+ "GPL-2.0+"
],
"authors": [
{
@@ -18816,18 +6038,38 @@
"role": "Maintainer"
},
{
- "name": "Contributors",
- "homepage": "https://www.drupal.org/node/7404/committers",
- "role": "Contributor"
+ "name": "Alexander Trotsenko (bucefal91)",
+ "homepage": "https://www.drupal.org/u/bucefal91",
+ "role": "Co-maintainer"
},
{
- "name": "Liam Morland",
- "homepage": "https://www.drupal.org/user/493050"
+ "name": "bucefal91",
+ "homepage": "https://www.drupal.org/user/504128"
+ },
+ {
+ "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"
@@ -18836,164 +6078,28 @@
"description": "Enables the creation of webforms and questionnaires.",
"homepage": "https://drupal.org/project/webform",
"support": {
- "source": "https://git.drupalcode.org/project/webform",
+ "source": "http://cgit.drupalcode.org/webform",
"issues": "https://www.drupal.org/project/issues/webform?version=8.x",
"docs": "https://www.drupal.org/docs/8/modules/webform",
"forum": "https://drupal.stackexchange.com/questions/tagged/webform"
}
},
{
- "name": "drupal/webform_mailchimp",
- "version": "5.10.0",
+ "name": "drupal/wysiwyg_linebreaks",
+ "version": "1.9.0",
"source": {
"type": "git",
- "url": "https://git.drupalcode.org/project/webform_mailchimp.git",
- "reference": "8.x-5.10"
+ "url": "https://git.drupal.org/project/wysiwyg_linebreaks",
+ "reference": "8.x-1.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/wysiwyg_linebreaks-8.x-1.9.zip",
+ "reference": "8.x-1.9",
+ "shasum": "0b6491f0e37bb1d8a3cc94a391a3fda8c9e3ddbe"
},
"require": {
- "drupal/core": "^8 || ^9 || ^10",
- "drupal/mailchimp": "*",
- "drupal/webform": "*"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-5.10",
- "datestamp": "1684354891",
- "security-coverage": {
- "status": "covered",
- "message": "Covered by Drupal's security advisory policy"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Berdir",
- "homepage": "https://www.drupal.org/user/214652"
- },
- {
- "name": "blackdog",
- "homepage": "https://www.drupal.org/user/110169"
- },
- {
- "name": "das-peter",
- "homepage": "https://www.drupal.org/user/762870"
- },
- {
- "name": "grisendo",
- "homepage": "https://www.drupal.org/user/848238"
- },
- {
- "name": "hanoii",
- "homepage": "https://www.drupal.org/user/23157"
- },
- {
- "name": "levelos",
- "homepage": "https://www.drupal.org/user/54135"
- },
- {
- "name": "mbovan",
- "homepage": "https://www.drupal.org/user/3149657"
- },
- {
- "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.",
- "homepage": "https://www.drupal.org/project/webform_mailchimp",
- "support": {
- "source": "https://git.drupalcode.org/project/webform_mailchimp"
- }
- },
- {
- "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",
- "version": "dev-1.x",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/workflow_buttons.git",
- "reference": "96e0a4db7345088817d80463bf6d944b5408d3b0"
- },
- "require": {
- "drupal/core": "^9 || ^10"
+ "drupal/core": "*"
},
"type": "drupal-module",
"extra": {
@@ -19001,112 +6107,11 @@
"dev-1.x": "1.x-dev"
},
"drupal": {
- "version": "8.x-1.0-beta5+6-dev",
- "datestamp": "1702437628",
+ "version": "8.x-1.9",
+ "datestamp": "1485147489",
"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."
+ "status": "covered",
+ "message": "Covered by Drupal's security advisory policy"
}
}
},
@@ -19118,165 +6123,71 @@
{
"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"
- }
- },
- {
- "name": "drupal/yaml_content",
- "version": "1.0.0-alpha9",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/yaml_content.git",
- "reference": "8.x-1.0-alpha9"
- },
- "dist": {
- "type": "zip",
- "url": "https://ftp.drupal.org/files/projects/yaml_content-8.x-1.0-alpha9.zip",
- "reference": "8.x-1.0-alpha9",
- "shasum": "21854b567ef6b9a17883da061c03850f136cc9d1"
- },
- "require": {
- "drupal/core": "^9 || ^10"
- },
- "require-dev": {
- "mikey179/vfsstream": "^1.0"
- },
- "type": "drupal-module",
- "extra": {
- "drupal": {
- "version": "8.x-1.0-alpha9",
- "datestamp": "1690397386",
- "security-coverage": {
- "status": "not-covered",
- "message": "Project has not opted into security advisory coverage!"
- }
- },
- "drush": {
- "services": {
- "drush.services.yml": "^9"
- }
- }
- },
- "notification-url": "https://packages.drupal.org/8/downloads",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "DamienMcKenna",
- "homepage": "https://www.drupal.org/user/108450"
- },
- {
- "name": "shrop",
- "homepage": "https://www.drupal.org/user/14767"
- },
- {
- "name": "slucero",
- "homepage": "https://www.drupal.org/user/1612534"
- }
- ],
- "description": "Demo content generator using yaml content templates.",
- "homepage": "https://www.drupal.org/project/yaml_content",
- "support": {
- "source": "https://git.drupalcode.org/project/yaml_content"
+ "source": "http://cgit.drupalcode.org/wysiwyg_linebreaks"
}
},
{
"name": "drush/drush",
- "version": "12.4.3",
+ "version": "8.1.17",
"source": {
"type": "git",
"url": "https://github.com/drush-ops/drush.git",
- "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971"
+ "reference": "7ea681dc7e639f6ddab906e78611d3558f88d9b0"
},
"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/7ea681dc7e639f6ddab906e78611d3558f88d9b0",
+ "reference": "7ea681dc7e639f6ddab906e78611d3558f88d9b0",
"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",
- "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"
+ "consolidation/annotated-command": "^2.8.1",
+ "consolidation/output-formatters": "~3",
+ "pear/console_table": "~1.3.1",
+ "php": ">=5.4.5",
+ "psr/log": "~1.0",
+ "psy/psysh": "~0.6",
+ "symfony/console": "~2.7|^3",
+ "symfony/event-dispatcher": "~2.7|^3",
+ "symfony/finder": "~2.7|^3",
+ "symfony/var-dumper": "~2.7|^3",
+ "symfony/yaml": "~2.3|^3",
+ "webmozart/path-util": "~2"
},
"require-dev": {
- "composer/installers": "^2",
- "cweagans/composer-patches": "~1.0",
- "drupal/core-recommended": "^10",
- "drupal/semver_example": "2.3.0",
- "phpunit/phpunit": "^9",
- "rector/rector": "^0.12",
- "squizlabs/php_codesniffer": "^3.7"
+ "phpunit/phpunit": "4.*",
+ "symfony/console": "~2.7",
+ "symfony/event-dispatcher": "~2.7",
+ "symfony/finder": "~2.7",
+ "symfony/process": "2.7.*",
+ "symfony/var-dumper": "~2.7",
+ "symfony/yaml": "~2.3"
+ },
+ "suggest": {
+ "drush/config-extra": "Provides configuration workflow commands, such as config-merge.",
+ "ext-pcntl": "*"
},
"bin": [
- "drush"
+ "drush",
+ "drush.launcher",
+ "drush.php",
+ "drush.complete.sh"
],
"type": "library",
"extra": {
- "installer-paths": {
- "sut/core": [
- "type:drupal-core"
- ],
- "sut/libraries/{$name}": [
- "type:drupal-library"
- ],
- "sut/modules/unish/{$name}": [
- "drupal/devel"
- ],
- "sut/themes/unish/{$name}": [
- "drupal/empty_theme"
- ],
- "sut/modules/contrib/{$name}": [
- "type:drupal-module"
- ],
- "sut/profiles/contrib/{$name}": [
- "type:drupal-profile"
- ],
- "sut/themes/contrib/{$name}": [
- "type:drupal-theme"
- ],
- "sut/drush/contrib/{$name}": [
- "type:drupal-drush"
- ]
+ "branch-alias": {
+ "dev-master": "8.0.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Drush\\": "src/"
+ "psr-0": {
+ "Drush": "lib/",
+ "Consolidation": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -19292,6 +6203,14 @@
"name": "Owen Barton",
"email": "drupal@owenbarton.com"
},
+ {
+ "name": "Mark Sonnabaum",
+ "email": "marksonnabaum@gmail.com"
+ },
+ {
+ "name": "Antoine Beaupré",
+ "email": "anarcat@koumbit.org"
+ },
{
"name": "Greg Anderson",
"email": "greg.1.anderson@greenknowe.org"
@@ -19319,150 +6238,136 @@
],
"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": "2018-05-23T16:58:54+00:00"
},
{
"name": "drutopia/drutopia",
- "version": "2.0.x-dev",
+ "version": "1.0-alpha8",
"source": {
"type": "git",
- "url": "git@gitlab.com:drutopia/drutopia.git",
- "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b"
+ "url": "https://github.com/drutopia/drutopia.git",
+ "reference": "b7d969f1e3079318dc99b0cf5ccfb5d487edc347"
},
"dist": {
"type": "zip",
- "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=04f95b36c8fb2a227fd4bf4526566feacb1dd81b",
- "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b",
+ "url": "https://api.github.com/repos/drutopia/drutopia/zipball/b7d969f1e3079318dc99b0cf5ccfb5d487edc347",
+ "reference": "b7d969f1e3079318dc99b0cf5ccfb5d487edc347",
"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",
- "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/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/yaml_content": "^1.0-alpha7",
- "geeks4change/composer-pin": "*"
+ "composer/installers": "^1.0",
+ "cweagans/composer-patches": "^1.5.0",
+ "drupal-composer/drupal-scaffold": "^2.0.0",
+ "drupal/better_normalizers": "^1.0-beta3",
+ "drupal/block_visibility_groups": "^1.1",
+ "drupal/bulma": "^1.0-alpha2",
+ "drupal/components": "^1.0",
+ "drupal/config_actions_provider": "^1.0-alpha3",
+ "drupal/config_sync": "^2.0-alpha9",
+ "drupal/config_update": "^1.3",
+ "drupal/core": "^8.5",
+ "drupal/default_content": "^1.0-alpha6",
+ "drupal/drutopia_action": "^1.0-alpha1",
+ "drupal/drutopia_article": "^1.0-alpha1",
+ "drupal/drutopia_blog": "^1.0-alpha1",
+ "drupal/drutopia_campaign": "^1.0-alpha3",
+ "drupal/drutopia_comment": "^1.0-alpha1",
+ "drupal/drutopia_core": "^1.0-alpha1",
+ "drupal/drutopia_event": "^1.0-alpha1",
+ "drupal/drutopia_group": "^1.0-alpha1",
+ "drupal/drutopia_landing_page": "^1.0-alpha1",
+ "drupal/drutopia_page": "^1.0-alpha1",
+ "drupal/drutopia_people": "^1.0-alpha1",
+ "drupal/drutopia_related_content": "^1.0-alpha1",
+ "drupal/drutopia_resource": "^1.0-alpha1",
+ "drupal/drutopia_search": "^1.0-alpha1",
+ "drupal/drutopia_seo": "^1.0-alpha1",
+ "drupal/drutopia_site": "^1.0-alpha2",
+ "drupal/drutopia_social": "^1.0-alpha1",
+ "drupal/drutopia_storyline": "^1.0-alpha1",
+ "drupal/drutopia_user": "^1.0-alpha1",
+ "drupal/features": "^3.5",
+ "drupal/octavia": "^1.0-alpha1",
+ "drupal/paranoia": "^1.0-alpha1",
+ "drupal/subprofiles": "^1.0-alpha1"
},
"require-dev": {
- "drupal/devel": "^5",
- "drupal/drupal-extension": "^5",
- "drush/drush": "^12",
+ "behat/behat": "^3.0",
+ "behat/mink": "~1.7",
+ "behat/mink-goutte-driver": "~1.2",
+ "drupal-composer/drupal-scaffold": "^2.0.0",
+ "drupal/devel": "^1.0",
+ "drupal/drupal-extension": "^3.2",
+ "drush/drush": "^9.0",
"jcalderonzumba/gastonjs": "~1.0.2",
"mikey179/vfsstream": "~1.2",
+ "phing/phing": "^2.14",
+ "phpunit/phpunit": "~4.8",
"se/selenium-server-standalone": "^2.53",
"squizlabs/php_codesniffer": "2.*",
"symfony/css-selector": "~2.8"
},
"type": "drupal-profile",
"extra": {
- "drupal-scaffold": {
- "locations": {
- "web-root": "web/"
- }
- },
- "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/parent_profile_template-2895316-3.patch"
}
}
},
- "notification-url": "https://packagist.org/downloads/",
+ "scripts": {
+ "drupal-scaffold": [
+ "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
+ ],
+ "post-install-cmd": [
+ "@composer drupal-scaffold",
+ "./bin/phing push"
+ ],
+ "post-update-cmd": [
+ "./bin/phing push"
+ ]
+ },
"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"
+ "support": {
+ "source": "https://github.com/drutopia/drutopia/tree/8.x-1.0-alpha8",
+ "issues": "https://github.com/drutopia/drutopia/issues"
+ },
+ "time": "2018-08-17T21:07:01+00:00"
},
{
"name": "easyrdf/easyrdf",
- "version": "1.1.1",
+ "version": "0.9.1",
"source": {
"type": "git",
- "url": "https://github.com/easyrdf/easyrdf.git",
- "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64"
+ "url": "https://github.com/njh/easyrdf.git",
+ "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64",
- "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64",
+ "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
+ "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
"shasum": ""
},
"require": {
- "ext-dom": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
- "ext-xmlreader": "*",
- "lib-libxml": "*",
- "php": ">=7.1.0"
+ "php": ">=5.2.8"
},
"require-dev": {
- "code-lts/doctum": "^5",
- "ml/json-ld": "~1.0",
- "phpunit/phpunit": "^7",
- "semsol/arc2": "^2.4",
- "squizlabs/php_codesniffer": "3.*",
- "zendframework/zend-http": "~2.3"
+ "phpunit/phpunit": "~3.5",
+ "sami/sami": "~1.4",
+ "squizlabs/php_codesniffer": "~1.4.3"
},
"suggest": {
- "ml/json-ld": "~1.0",
- "semsol/arc2": "~2.2"
+ "ml/json-ld": "~1.0"
},
"type": "library",
"autoload": {
- "psr-4": {
- "EasyRdf\\": "lib"
+ "psr-0": {
+ "EasyRdf_": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -19479,7 +6384,6 @@
{
"name": "Alexey Zakhlestin",
"email": "indeyets@gmail.com",
- "homepage": "http://indeyets.ru/",
"role": "Developer"
}
],
@@ -19493,48 +6397,38 @@
"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": "1.2.14",
"source": {
"type": "git",
"url": "https://github.com/egulias/EmailValidator.git",
- "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
+ "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
- "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/5642614492f0ca2064c01d60cc33284cc2f731a9",
+ "reference": "5642614492f0ca2064c01d60cc33284cc2f731a9",
"shasum": ""
},
"require": {
- "doctrine/lexer": "^2.0 || ^3.0",
- "php": ">=8.1",
- "symfony/polyfill-intl-idn": "^1.26"
+ "doctrine/lexer": "^1.0.1",
+ "php": ">= 5.3.3"
},
"require-dev": {
- "phpunit/phpunit": "^10.2",
- "vimeo/psalm": "^5.12"
- },
- "suggest": {
- "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+ "phpunit/phpunit": "^4.8.24"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Egulias\\EmailValidator\\": "src"
+ "psr-0": {
+ "Egulias\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -19546,7 +6440,7 @@
"name": "Eduardo Gulias Davis"
}
],
- "description": "A library for validating emails against several RFCs",
+ "description": "A library for validating emails",
"homepage": "https://github.com/egulias/EmailValidator",
"keywords": [
"email",
@@ -19555,333 +6449,94 @@
"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": "2017-02-03T22:48:59+00:00"
},
{
- "name": "ezyang/htmlpurifier",
- "version": "v4.17.0",
+ "name": "fabpot/goutte",
+ "version": "v3.2.3",
"source": {
"type": "git",
- "url": "https://github.com/ezyang/htmlpurifier.git",
- "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
+ "url": "https://github.com/FriendsOfPHP/Goutte.git",
+ "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
- "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
+ "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
+ "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
"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"
+ "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"
},
"require-dev": {
- "cerdic/css-tidy": "^1.7 || ^2.0",
- "simpletest/simpletest": "dev-master"
+ "symfony/phpunit-bridge": "^3.3 || ^4"
},
- "suggest": {
- "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
- "ext-bcmath": "Used for unit conversion and imagecrash protection",
- "ext-iconv": "Converts text to and from non-UTF-8 encodings",
- "ext-tidy": "Used for pretty-printing HTML"
+ "type": "application",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.2-dev"
+ }
},
- "type": "library",
"autoload": {
- "files": [
- "library/HTMLPurifier.composer.php"
- ],
- "psr-0": {
- "HTMLPurifier": "library/"
+ "psr-4": {
+ "Goutte\\": "Goutte"
},
"exclude-from-classmap": [
- "/library/HTMLPurifier/Language/"
+ "Goutte/Tests"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "LGPL-2.1-or-later"
+ "MIT"
],
"authors": [
{
- "name": "Edward Z. Yang",
- "email": "admin@htmlpurifier.org",
- "homepage": "http://ezyang.com"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
}
],
- "description": "Standards compliant HTML filter written in PHP",
- "homepage": "http://htmlpurifier.org/",
+ "description": "A simple PHP Web Scraper",
+ "homepage": "https://github.com/FriendsOfPHP/Goutte",
"keywords": [
- "html"
+ "scraper"
],
- "support": {
- "issues": "https://github.com/ezyang/htmlpurifier/issues",
- "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
- },
- "time": "2023-11-17T15:01:25+00:00"
- },
- {
- "name": "geeks4change/composer-pin",
- "version": "dev-master",
- "source": {
- "type": "git",
- "url": "https://gitlab.com/geeks4change/packages/composer-pin.git",
- "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8"
- },
- "dist": {
- "type": "zip",
- "url": "https://gitlab.com/api/v4/projects/geeks4change%2Fpackages%2Fcomposer-pin/repository/archive.zip?sha=e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8",
- "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8",
- "shasum": ""
- },
- "default-branch": true,
- "bin": [
- "composer-pin-apply"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Merlin",
- "email": "merlin@geeks4change.net"
- }
- ],
- "description": "Provides helper commands to do project level version/hash pinning.",
- "support": {
- "issues": "https://gitlab.com/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",
- "source": {
- "type": "git",
- "url": "https://github.com/grasmash/expander.git",
- "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
- "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
- "shasum": ""
- },
- "require": {
- "dflydev/dot-access-data": "^3.0.0",
- "php": ">=8.0",
- "psr/log": "^2 | ^3"
- },
- "require-dev": {
- "greg-1-anderson/composer-test-scenarios": "^1",
- "php-coveralls/php-coveralls": "^2.5",
- "phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3.3"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Grasmash\\Expander\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Matthew Grasmick"
- }
- ],
- "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"
- },
- {
- "name": "grasmash/yaml-cli",
- "version": "3.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/grasmash/yaml-cli.git",
- "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0",
- "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0",
- "shasum": ""
- },
- "require": {
- "dflydev/dot-access-data": "^3",
- "php": ">=8.0",
- "symfony/console": "^6",
- "symfony/filesystem": "^6",
- "symfony/yaml": "^6"
- },
- "require-dev": {
- "php-coveralls/php-coveralls": "^2",
- "phpunit/phpunit": "^9",
- "squizlabs/php_codesniffer": "^3.0"
- },
- "bin": [
- "bin/yaml-cli"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Grasmash\\YamlCli\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "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"
+ "time": "2018-06-29T15:13:57+00:00"
},
{
"name": "guzzlehttp/guzzle",
- "version": "7.8.1",
+ "version": "6.3.3",
"source": {
"type": "git",
"url": "https://github.com/guzzle/guzzle.git",
- "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
+ "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
- "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba",
+ "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba",
"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.4",
+ "php": ">=5.5"
},
"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.0"
},
"suggest": {
- "ext-curl": "Required for CURL handler support",
- "ext-intl": "Required for Internationalized Domain Name (IDN) support",
"psr/log": "Required for using the Log middleware"
},
"type": "library",
"extra": {
- "bamarni-bin": {
- "bin-links": true,
- "forward-command": false
+ "branch-alias": {
+ "dev-master": "6.3-dev"
}
},
"autoload": {
@@ -19897,300 +6552,172 @@
"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": "2018-04-22T15:46:56+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.4.2",
"source": {
"type": "git",
"url": "https://github.com/guzzle/psr7.git",
- "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
+ "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
- "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
+ "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c",
"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"
},
"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"
- },
- "suggest": {
- "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+ "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\\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",
"keywords": [
"http",
"message",
- "psr-7",
"request",
"response",
"stream",
"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": "2017-03-20T17:10:46+00:00"
},
{
- "name": "indieauth/client",
- "version": "1.1.6",
+ "name": "instaclick/php-webdriver",
+ "version": "1.4.5",
"source": {
"type": "git",
- "url": "https://github.com/indieweb/indieauth-client-php.git",
- "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d"
+ "url": "https://github.com/instaclick/php-webdriver.git",
+ "reference": "6fa959452e774dcaed543faad3a9d1a37d803327"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/9f3f9cc71a752c371b44d40a979504ffd7026c7d",
- "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d",
+ "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/6fa959452e774dcaed543faad3a9d1a37d803327",
+ "reference": "6fa959452e774dcaed543faad3a9d1a37d803327",
"shasum": ""
},
"require": {
- "indieweb/representative-h-card": "^0.1.2",
- "mf2/mf2": "^0.5",
- "p3k/http": "^0.1",
- "php": ">5.6.0"
+ "ext-curl": "*",
+ "php": ">=5.3.2"
},
"require-dev": {
- "yoast/phpunit-polyfills": "^1.0"
+ "phpunit/phpunit": "^4.8",
+ "satooshi/php-coveralls": "^1.0||^2.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.4.x-dev"
+ }
+ },
"autoload": {
- "psr-4": {
- "IndieAuth\\": "src/IndieAuth/"
+ "psr-0": {
+ "WebDriver": "lib/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -20199,193 +6726,98 @@
],
"authors": [
{
- "name": "Aaron Parecki",
- "homepage": "https://aaronparecki.com"
- }
- ],
- "description": "IndieAuth Client Library",
- "support": {
- "issues": "https://github.com/indieweb/indieauth-client-php/issues",
- "source": "https://github.com/indieweb/indieauth-client-php/tree/1.1.6"
- },
- "funding": [
+ "name": "Justin Bishop",
+ "email": "jubishop@gmail.com",
+ "role": "Developer"
+ },
{
- "url": "https://opencollective.com/indieweb",
- "type": "opencollective"
+ "name": "Anthon Pang",
+ "email": "apang@softwaredevelopment.ca",
+ "role": "Fork Maintainer"
}
],
- "time": "2022-11-08T21:37:04+00:00"
+ "description": "PHP WebDriver for Selenium 2",
+ "homepage": "http://instaclick.com/",
+ "keywords": [
+ "browser",
+ "selenium",
+ "webdriver",
+ "webtest"
+ ],
+ "time": "2017-06-30T04:02:48+00:00"
},
{
- "name": "indieweb/link-rel-parser",
- "version": "0.1.3",
+ "name": "jakub-onderka/php-console-color",
+ "version": "0.1",
"source": {
"type": "git",
- "url": "https://github.com/indieweb/link-rel-parser-php.git",
- "reference": "295420e4f16d9a9d262a3c25a7a583794428f055"
+ "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
+ "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/indieweb/link-rel-parser-php/zipball/295420e4f16d9a9d262a3c25a7a583794428f055",
- "reference": "295420e4f16d9a9d262a3c25a7a583794428f055",
+ "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1",
+ "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1",
"shasum": ""
},
"require": {
+ "php": ">=5.3.2"
+ },
+ "require-dev": {
+ "jakub-onderka/php-code-style": "1.0",
+ "jakub-onderka/php-parallel-lint": "0.*",
+ "jakub-onderka/php-var-dump-check": "0.*",
+ "phpunit/phpunit": "3.7.*",
+ "squizlabs/php_codesniffer": "1.*"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "JakubOnderka\\PhpConsoleColor": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Jakub Onderka",
+ "email": "jakub.onderka@gmail.com",
+ "homepage": "http://www.acci.cz"
+ }
+ ],
+ "time": "2014-04-08T15:00:19+00:00"
+ },
+ {
+ "name": "jakub-onderka/php-console-highlighter",
+ "version": "v0.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
+ "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5",
+ "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5",
+ "shasum": ""
+ },
+ "require": {
+ "jakub-onderka/php-console-color": "~0.1",
"php": ">=5.3.0"
},
- "type": "library",
- "autoload": {
- "files": [
- "src/IndieWeb/link_rel_parser.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "http://aaronparecki.com"
- },
- {
- "name": "Tantek Çelik",
- "homepage": "http://tantek.com"
- }
- ],
- "description": "Parse rel values from HTTP headers",
- "homepage": "https://github.com/indieweb/link-rel-parser-php",
- "keywords": [
- "http",
- "indieweb",
- "microformats2"
- ],
- "support": {
- "issues": "https://github.com/indieweb/link-rel-parser-php/issues",
- "source": "https://github.com/indieweb/link-rel-parser-php/tree/master"
- },
- "time": "2017-01-11T17:14:49+00:00"
- },
- {
- "name": "indieweb/mention-client",
- "version": "1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/indieweb/mention-client-php.git",
- "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/6807f4b1b96df7f47ea425eebfc7c032768652cf",
- "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf",
- "shasum": ""
- },
- "require": {
- "mf2/mf2": ">=0.2",
- "php": ">=5.6"
- },
"require-dev": {
- "phpunit/phpunit": "^6"
+ "jakub-onderka/php-code-style": "~1.0",
+ "jakub-onderka/php-parallel-lint": "~0.5",
+ "jakub-onderka/php-var-dump-check": "~0.1",
+ "phpunit/phpunit": "~4.0",
+ "squizlabs/php_codesniffer": "~1.5"
},
"type": "library",
"autoload": {
"psr-0": {
- "IndieWeb": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "email": "aaron@parecki.com",
- "homepage": "http://aaronparecki.com/"
- }
- ],
- "description": "Client library for sending webmention and pingback notifications",
- "homepage": "https://github.com/indieweb/mention-client-php",
- "support": {
- "issues": "https://github.com/indieweb/mention-client-php/issues",
- "source": "https://github.com/indieweb/mention-client-php/tree/1.2.1"
- },
- "time": "2021-02-02T13:13:07+00:00"
- },
- {
- "name": "indieweb/representative-h-card",
- "version": "0.1.3",
- "source": {
- "type": "git",
- "url": "https://github.com/indieweb/representative-h-card-php.git",
- "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/indieweb/representative-h-card-php/zipball/97731c6ccc0838418c775b867bf826aeaa91cd95",
- "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4"
- },
- "require-dev": {
- "mf2/mf2": "0.2.*",
- "phpunit/phpunit": "*"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/mf2/representative-h-card.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "http://aaronparecki.com"
- }
- ],
- "keywords": [
- "h-card",
- "indieweb",
- "mf2",
- "microformats"
- ],
- "support": {
- "issues": "https://github.com/indieweb/representative-h-card-php/issues",
- "source": "https://github.com/indieweb/representative-h-card-php/tree/0.1.3"
- },
- "time": "2023-05-24T15:33:06+00:00"
- },
- {
- "name": "johngrogg/ics-parser",
- "version": "v3.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/u01jmg3/ics-parser.git",
- "reference": "eeb51c4c0c06e6df3266f85ea774ca314536aba4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/u01jmg3/ics-parser/zipball/eeb51c4c0c06e6df3266f85ea774ca314536aba4",
- "reference": "eeb51c4c0c06e6df3266f85ea774ca314536aba4",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "php": ">=5.6.40"
- },
- "require-dev": {
- "phpunit/phpunit": "^5|^9|^10"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "ICal": "src/"
+ "JakubOnderka\\PhpConsoleHighlighter": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -20394,906 +6826,40 @@
],
"authors": [
{
- "name": "Jonathan Goode",
- "role": "Developer/Owner"
- },
- {
- "name": "John Grogg",
- "email": "john.grogg@gmail.com",
- "role": "Developer/Prior Owner"
+ "name": "Jakub Onderka",
+ "email": "acci@acci.cz",
+ "homepage": "http://www.acci.cz/"
}
],
- "description": "ICS Parser",
- "homepage": "https://github.com/u01jmg3/ics-parser",
- "keywords": [
- "iCalendar",
- "ical",
- "ical-parser",
- "ics",
- "ics-parser",
- "ifb"
- ],
- "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"
- },
- {
- "name": "kwn/number-to-words",
- "version": "1.13.0",
- "source": {
- "type": "git",
- "url": "https://github.com/kwn/number-to-words.git",
- "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/kwn/number-to-words/zipball/df61dc0f2fffe49f87319c9bcf1f7f44669152c7",
- "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6|>=7.1"
- },
- "require-dev": {
- "phpunit/phpunit": "^5.7.9",
- "squizlabs/php_codesniffer": "^3.3.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "NumberToWords\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "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.",
- "keywords": [
- "currency",
- "money",
- "number",
- "numbers",
- "string",
- "to",
- "words"
- ],
- "support": {
- "issues": "https://github.com/kwn/number-to-words/issues",
- "source": "https://github.com/kwn/number-to-words/tree/1.13.0"
- },
- "time": "2021-06-23T20:47:44+00:00"
- },
- {
- "name": "laminas/laminas-escaper",
- "version": "2.13.0",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-escaper.git",
- "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
- "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
- "shasum": ""
- },
- "require": {
- "ext-ctype": "*",
- "ext-mbstring": "*",
- "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "conflict": {
- "zendframework/zend-escaper": "*"
- },
- "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"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Laminas\\Escaper\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
- "homepage": "https://laminas.dev",
- "keywords": [
- "escaper",
- "laminas"
- ],
- "support": {
- "chat": "https://laminas.dev/chat",
- "docs": "https://docs.laminas.dev/laminas-escaper/",
- "forum": "https://discourse.laminas.dev",
- "issues": "https://github.com/laminas/laminas-escaper/issues",
- "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
- "source": "https://github.com/laminas/laminas-escaper"
- },
- "funding": [
- {
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
- }
- ],
- "time": "2023-10-10T08:35:13+00:00"
- },
- {
- "name": "laminas/laminas-feed",
- "version": "2.22.0",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-feed.git",
- "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141",
- "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141",
- "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"
- },
- "conflict": {
- "laminas/laminas-servicemanager": "<3.3",
- "zendframework/zend-feed": "*"
- },
- "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"
- },
- "suggest": {
- "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
- "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
- "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
- "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
- "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
- "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Laminas\\Feed\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "provides functionality for creating and consuming RSS and Atom feeds",
- "homepage": "https://laminas.dev",
- "keywords": [
- "atom",
- "feed",
- "laminas",
- "rss"
- ],
- "support": {
- "chat": "https://laminas.dev/chat",
- "docs": "https://docs.laminas.dev/laminas-feed/",
- "forum": "https://discourse.laminas.dev",
- "issues": "https://github.com/laminas/laminas-feed/issues",
- "rss": "https://github.com/laminas/laminas-feed/releases.atom",
- "source": "https://github.com/laminas/laminas-feed"
- },
- "funding": [
- {
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
- }
- ],
- "time": "2023-10-11T20:16:37+00:00"
- },
- {
- "name": "laminas/laminas-stdlib",
- "version": "3.19.0",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-stdlib.git",
- "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
- "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
- "shasum": ""
- },
- "require": {
- "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "conflict": {
- "zendframework/zend-stdlib": "*"
- },
- "require-dev": {
- "laminas/laminas-coding-standard": "^2.5",
- "phpbench/phpbench": "^1.2.15",
- "phpunit/phpunit": "^10.5.8",
- "psalm/plugin-phpunit": "^0.18.4",
- "vimeo/psalm": "^5.20.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Laminas\\Stdlib\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "SPL extensions, array utilities, error handlers, and more",
- "homepage": "https://laminas.dev",
- "keywords": [
- "laminas",
- "stdlib"
- ],
- "support": {
- "chat": "https://laminas.dev/chat",
- "docs": "https://docs.laminas.dev/laminas-stdlib/",
- "forum": "https://discourse.laminas.dev",
- "issues": "https://github.com/laminas/laminas-stdlib/issues",
- "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
- "source": "https://github.com/laminas/laminas-stdlib"
- },
- "funding": [
- {
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
- }
- ],
- "time": "2024-01-19T12:39:49+00:00"
- },
- {
- "name": "laminas/laminas-xml",
- "version": "1.6.0",
- "source": {
- "type": "git",
- "url": "https://github.com/laminas/laminas-xml.git",
- "reference": "c35aab57d1d0a970b53965046d535b88c3dc8bea"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/c35aab57d1d0a970b53965046d535b88c3dc8bea",
- "reference": "c35aab57d1d0a970b53965046d535b88c3dc8bea",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-simplexml": "*",
- "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
- },
- "conflict": {
- "zendframework/zendxml": "*"
- },
- "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"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Laminas\\Xml\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "description": "Utility library for XML usage, best practices, and security in PHP",
- "homepage": "https://laminas.dev",
- "keywords": [
- "laminas",
- "security",
- "xml"
- ],
- "support": {
- "chat": "https://laminas.dev/chat",
- "forum": "https://discourse.laminas.dev",
- "issues": "https://github.com/laminas/laminas-xml/issues",
- "rss": "https://github.com/laminas/laminas-xml/releases.atom",
- "source": "https://github.com/laminas/laminas-xml"
- },
- "funding": [
- {
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
- }
- ],
- "time": "2023-11-23T10:03:52+00:00"
- },
- {
- "name": "lcobucci/clock",
- "version": "2.3.0",
- "source": {
- "type": "git",
- "url": "https://github.com/lcobucci/clock.git",
- "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
- "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
- "shasum": ""
- },
- "require": {
- "php": "~8.1.0 || ~8.2.0",
- "stella-maris/clock": "^0.1.7"
- },
- "provide": {
- "psr/clock-implementation": "1.0"
- },
- "require-dev": {
- "infection/infection": "^0.26",
- "lcobucci/coding-standard": "^9.0",
- "phpstan/extension-installer": "^1.2",
- "phpstan/phpstan": "^1.9.4",
- "phpstan/phpstan-deprecation-rules": "^1.1.1",
- "phpstan/phpstan-phpunit": "^1.3.2",
- "phpstan/phpstan-strict-rules": "^1.4.4",
- "phpunit/phpunit": "^9.5.27"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Lcobucci\\Clock\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Luís Cobucci",
- "email": "lcobucci@gmail.com"
- }
- ],
- "description": "Yet another clock abstraction",
- "support": {
- "issues": "https://github.com/lcobucci/clock/issues",
- "source": "https://github.com/lcobucci/clock/tree/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"
- },
- {
- "name": "lcobucci/jwt",
- "version": "4.0.4",
- "source": {
- "type": "git",
- "url": "https://github.com/lcobucci/jwt.git",
- "reference": "55564265fddf810504110bd68ca311932324b0e9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
- "reference": "55564265fddf810504110bd68ca311932324b0e9",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "ext-openssl": "*",
- "lcobucci/clock": "^2.0",
- "php": "^7.4 || ^8.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"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "4.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Lcobucci\\JWT\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Luís Cobucci",
- "email": "lcobucci@gmail.com",
- "role": "Developer"
- }
- ],
- "description": "A simple library to work with JSON Web Token and JSON Web Signature",
- "keywords": [
- "JWS",
- "jwt"
- ],
- "support": {
- "issues": "https://github.com/lcobucci/jwt/issues",
- "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
- },
- "funding": [
- {
- "url": "https://github.com/lcobucci",
- "type": "github"
- },
- {
- "url": "https://www.patreon.com/lcobucci",
- "type": "patreon"
- }
- ],
- "time": "2021-09-28T19:18:28+00:00"
- },
- {
- "name": "league/commonmark",
- "version": "1.6.7",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/commonmark.git",
- "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
- "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "php": "^7.1 || ^8.0"
- },
- "conflict": {
- "scrutinizer/ocular": "1.7.*"
- },
- "require-dev": {
- "cebe/markdown": "~1.0",
- "commonmark/commonmark.js": "0.29.2",
- "erusev/parsedown": "~1.0",
- "ext-json": "*",
- "github/gfm": "0.29.0",
- "michelf/php-markdown": "~1.4",
- "mikehaertl/php-shellcommand": "^1.4",
- "phpstan/phpstan": "^0.12.90",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
- "scrutinizer/ocular": "^1.5",
- "symfony/finder": "^4.2"
- },
- "bin": [
- "bin/commonmark"
- ],
- "type": "library",
- "autoload": {
- "psr-4": {
- "League\\CommonMark\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Colin O'Dell",
- "email": "colinodell@gmail.com",
- "homepage": "https://www.colinodell.com",
- "role": "Lead Developer"
- }
- ],
- "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
- "homepage": "https://commonmark.thephpleague.com",
- "keywords": [
- "commonmark",
- "flavored",
- "gfm",
- "github",
- "github-flavored",
- "markdown",
- "md",
- "parser"
- ],
- "support": {
- "docs": "https://commonmark.thephpleague.com/",
- "issues": "https://github.com/thephpleague/commonmark/issues",
- "rss": "https://github.com/thephpleague/commonmark/releases.atom",
- "source": "https://github.com/thephpleague/commonmark"
- },
- "funding": [
- {
- "url": "https://www.colinodell.com/sponsor",
- "type": "custom"
- },
- {
- "url": "https://www.paypal.me/colinpodell/10.00",
- "type": "custom"
- },
- {
- "url": "https://github.com/colinodell",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
- "type": "tidelift"
- }
- ],
- "time": "2022-01-13T17:18:13+00:00"
- },
- {
- "name": "league/container",
- "version": "4.2.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thephpleague/container.git",
- "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
- "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0",
- "psr/container": "^1.1 || ^2.0"
- },
- "provide": {
- "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"
- },
- "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"
- }
- },
- "autoload": {
- "psr-4": {
- "League\\Container\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Phil Bennett",
- "email": "mail@philbennett.co.uk",
- "role": "Developer"
- }
- ],
- "description": "A fast and intuitive dependency injection container.",
- "homepage": "https://github.com/thephpleague/container",
- "keywords": [
- "container",
- "dependency",
- "di",
- "injection",
- "league",
- "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": "2015-04-20T18:58:01+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 +6876,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,668 +6896,20 @@
"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"
- },
- {
- "name": "mck89/peast",
- "version": "v1.15.4",
- "source": {
- "type": "git",
- "url": "https://github.com/mck89/peast.git",
- "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
- "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
- "shasum": ""
- },
- "require": {
- "ext-mbstring": "*",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.15.4-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Peast\\": "lib/Peast/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Marco Marchiò",
- "email": "marco.mm89@gmail.com"
- }
- ],
- "description": "Peast is PHP library that generates AST for JavaScript code",
- "support": {
- "issues": "https://github.com/mck89/peast/issues",
- "source": "https://github.com/mck89/peast/tree/v1.15.4"
- },
- "time": "2023-08-12T08:29:29+00:00"
- },
- {
- "name": "mf2/mf2",
- "version": "v0.5.0",
- "source": {
- "type": "git",
- "url": "https://github.com/microformats/php-mf2.git",
- "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/microformats/php-mf2/zipball/ddc56de6be62ed4a21f569de9b80e17af678ca50",
- "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6.0"
- },
- "require-dev": {
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
- "mf2/tests": "dev-master#e9e2b905821ba0a5b59dab1a8eaf40634ce9cd49",
- "phpcompatibility/php-compatibility": "^9.3",
- "phpunit/phpunit": "^5.7",
- "squizlabs/php_codesniffer": "^3.6.2"
- },
- "suggest": {
- "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you",
- "masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support."
- },
- "bin": [
- "bin/fetch-mf2",
- "bin/parse-mf2"
- ],
- "type": "library",
- "autoload": {
- "files": [
- "Mf2/Parser.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "CC0-1.0"
- ],
- "authors": [
- {
- "name": "Barnaby Walters",
- "homepage": "http://waterpigs.co.uk"
- }
- ],
- "description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API",
- "keywords": [
- "html",
- "microformats",
- "microformats 2",
- "parser",
- "semantic"
- ],
- "support": {
- "issues": "https://github.com/microformats/php-mf2/issues",
- "source": "https://github.com/microformats/php-mf2/tree/v0.5.0"
- },
- "time": "2022-02-10T01:05:27+00:00"
- },
- {
- "name": "mikehaertl/php-shellcommand",
- "version": "1.7.0",
- "source": {
- "type": "git",
- "url": "https://github.com/mikehaertl/php-shellcommand.git",
- "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/e79ea528be155ffdec6f3bf1a4a46307bb49e545",
- "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545",
- "shasum": ""
- },
- "require": {
- "php": ">= 5.3.0"
- },
- "require-dev": {
- "phpunit/phpunit": ">4.0 <=9.4"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "mikehaertl\\shellcommand\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Michael Härtl",
- "email": "haertl.mike@gmail.com"
- }
- ],
- "description": "An object oriented interface to shell commands",
- "keywords": [
- "shell"
- ],
- "support": {
- "issues": "https://github.com/mikehaertl/php-shellcommand/issues",
- "source": "https://github.com/mikehaertl/php-shellcommand/tree/1.7.0"
- },
- "time": "2023-04-19T08:25:22+00:00"
- },
- {
- "name": "mikehaertl/php-tmpfile",
- "version": "1.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": [
- {
- "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": [
- {
- "name": "Michael Haertl",
- "email": "haertl.mike@gmail.com"
- }
- ],
- "description": "A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interface",
- "homepage": "http://mikehaertl.github.com/phpwkhtmltopdf/",
- "keywords": [
- "pdf",
- "wkhtmltoimage",
- "wkhtmltopdf"
- ],
- "support": {
- "issues": "https://github.com/mikehaertl/phpwkhtmltopdf/issues",
- "source": "https://github.com/mikehaertl/phpwkhtmltopdf/tree/2.5.0"
- },
- "time": "2021-03-01T19:41:06+00:00"
- },
- {
- "name": "mkalkbrenner/php-htmldiff-advanced",
- "version": "0.0.8",
- "source": {
- "type": "git",
- "url": "https://github.com/mkalkbrenner/php-htmldiff.git",
- "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9",
- "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9",
- "shasum": ""
- },
- "require": {
- "caxy/php-htmldiff": ">=0.0.6",
- "php": ">=5.5.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/HtmlDiffAdvancedInterface.php",
- "src/HtmlDiffAdvanced.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GNU General Public License V2"
- ],
- "description": "An add-on for the php-htmldiff library for comparing two HTML files/snippets and highlighting the differences using simple HTML.",
- "homepage": "https://github.com/mkalkbrenner/php-htmldiff",
- "keywords": [
- "diff",
- "html"
- ],
- "support": {
- "issues": "https://github.com/mkalkbrenner/php-htmldiff/issues",
- "source": "https://github.com/mkalkbrenner/php-htmldiff/tree/master"
- },
- "time": "2016-07-25T17:07:32+00:00"
- },
- {
- "name": "mpdf/mpdf",
- "version": "v8.2.2",
- "source": {
- "type": "git",
- "url": "https://github.com/mpdf/mpdf.git",
- "reference": "596a87b876d7793be7be060a8ac13424de120dd5"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mpdf/mpdf/zipball/596a87b876d7793be7be060a8ac13424de120dd5",
- "reference": "596a87b876d7793be7be060a8ac13424de120dd5",
- "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"
- },
- "require-dev": {
- "mockery/mockery": "^1.3.0",
- "mpdf/qrcode": "^1.1.0",
- "squizlabs/php_codesniffer": "^3.5.0",
- "tracy/tracy": "~2.5",
- "yoast/phpunit-polyfills": "^1.0"
- },
- "suggest": {
- "ext-bcmath": "Needed for generation of some types of barcodes",
- "ext-xml": "Needed mainly for SVG manipulation",
- "ext-zlib": "Needed for compression of embedded resources, such as fonts"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/functions.php"
- ],
- "psr-4": {
- "Mpdf\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-only"
- ],
- "authors": [
- {
- "name": "Matěj Humpál",
- "role": "Developer, maintainer"
- },
- {
- "name": "Ian Back",
- "role": "Developer (retired)"
- }
- ],
- "description": "PHP library generating PDF files from UTF-8 encoded HTML",
- "homepage": "https://mpdf.github.io",
- "keywords": [
- "pdf",
- "php",
- "utf-8"
- ],
- "support": {
- "docs": "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"
- }
- },
- "autoload": {
- "files": [
- "src/JmesPath.php"
- ],
- "psr-4": {
- "JmesPath\\": "src/"
- }
- },
- "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"
- }
- ],
- "description": "Declaratively specify how to extract elements from a JSON document",
- "keywords": [
- "json",
- "jsonpath"
- ],
- "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"
- },
- {
- "name": "mtownsend/xml-to-array",
- "version": "2.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/mtownsend5512/xml-to-array.git",
- "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/mtownsend5512/xml-to-array/zipball/0734720a8462dba36d90fb8b2723bf46af0091f4",
- "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4",
- "shasum": ""
- },
- "require": {
- "php": "~7.0|~8.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.4"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/helpers.php"
- ],
- "psr-4": {
- "Mtownsend\\XmlToArray\\": "src"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Mark Townsend",
- "email": "mtownsend5512@gmail.com",
- "role": "Developer"
- }
- ],
- "description": "Easily convert valid xml to a php array.",
- "keywords": [
- "array",
- "convert",
- "laravel",
- "xml"
- ],
- "support": {
- "issues": "https://github.com/mtownsend5512/xml-to-array/issues",
- "source": "https://github.com/mtownsend5512/xml-to-array/tree/2.0.0"
- },
- "time": "2021-02-27T22:39:18+00:00"
- },
- {
- "name": "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": "2017-09-04T12:26:28+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v4.18.0",
+ "version": "v4.0.3",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
+ "reference": "bd088dc940a418f09cda079a9b5c7c478890fb8d"
},
"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/bd088dc940a418f09cda079a9b5c7c478890fb8d",
+ "reference": "bd088dc940a418f09cda079a9b5c7c478890fb8d",
"shasum": ""
},
"require": {
@@ -21999,8 +6917,7 @@
"php": ">=7.0"
},
"require-dev": {
- "ircmaxell/php-yacc": "^0.0.7",
- "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
+ "phpunit/phpunit": "^6.5 || ^7.0"
},
"bin": [
"bin/php-parse"
@@ -22008,7 +6925,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.9-dev"
+ "dev-master": "4.0-dev"
}
},
"autoload": {
@@ -22030,456 +6947,37 @@
"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"
- },
- {
- "name": "p3k/http",
- "version": "0.1.12",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/p3k-http.git",
- "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b",
- "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b",
- "shasum": ""
- },
- "require": {
- "indieweb/link-rel-parser": "0.1.*",
- "mf2/mf2": ">=0.3.2"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "p3k\\": "src/p3k"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "https://aaronparecki.com"
- }
- ],
- "description": "A simple wrapper API around the PHP curl functions",
- "homepage": "https://github.com/aaronpk/p3k-http",
- "support": {
- "issues": "https://github.com/aaronpk/p3k-http/issues",
- "source": "https://github.com/aaronpk/p3k-http/tree/0.1.12"
- },
- "time": "2021-10-12T14:12:29+00:00"
- },
- {
- "name": "p3k/micropub",
- "version": "0.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/p3k-micropub.git",
- "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/p3k-micropub/zipball/9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d",
- "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d",
- "shasum": ""
- },
- "require": {
- "php": ">=5.6.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^5"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "p3k": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "https://aaronparecki.com"
- }
- ],
- "description": "Utilities to help handle Micropub requests when building servers and clients",
- "keywords": [
- "indieweb",
- "micropub",
- "p3k"
- ],
- "support": {
- "issues": "https://github.com/aaronpk/p3k-micropub/issues",
- "source": "https://github.com/aaronpk/p3k-micropub/tree/master"
- },
- "time": "2018-04-16T14:05:38+00:00"
- },
- {
- "name": "p3k/picofeed",
- "version": "v0.1.40",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/picofeed.git",
- "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/picofeed/zipball/356fd66d48779193b10ac28532cb4a4e11bb801c",
- "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c",
- "shasum": ""
- },
- "require": {
- "ext-dom": "*",
- "ext-iconv": "*",
- "ext-libxml": "*",
- "ext-simplexml": "*",
- "ext-xml": "*",
- "laminas/laminas-xml": "^1.2",
- "php": ">=5.3.0"
- },
- "replace": {
- "miniflux/picofeed": "0.1.35"
- },
- "require-dev": {
- "phpdocumentor/reflection-docblock": "2.0.4",
- "phpunit/phpunit": "4.8.26",
- "symfony/yaml": "2.8.7"
- },
- "suggest": {
- "ext-curl": "PicoFeed will use cURL if present"
- },
- "bin": [
- "picofeed"
- ],
- "type": "library",
- "autoload": {
- "psr-0": {
- "PicoFeed": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Frédéric Guillot"
- }
- ],
- "description": "Modern library to handle RSS/Atom feeds",
- "homepage": "https://github.com/aaronpk/picoFeed",
- "support": {
- "issues": "https://github.com/aaronpk/picofeed/issues",
- "source": "https://github.com/aaronpk/picofeed/tree/v0.1.40"
- },
- "time": "2020-04-25T17:48:36+00:00"
- },
- {
- "name": "p3k/timezone",
- "version": "0.1.0",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/p3k-timezone.git",
- "reference": "68d3490d896f98cf0727dc937f0bb6b045050c83"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/p3k-timezone/zipball/68d3490d896f98cf0727dc937f0bb6b045050c83",
- "reference": "68d3490d896f98cf0727dc937f0bb6b045050c83",
- "shasum": ""
- },
- "require": {
- "php": ">=5.4.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/p3k/Timezone.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Apache-2.0"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "https://aaronparecki.com"
- }
- ],
- "description": "Find the timezone of a given location",
- "homepage": "https://github.com/aaronpk/p3k-timezone",
- "keywords": [
- "date",
- "p3k",
- "timezone"
- ],
- "support": {
- "issues": "https://github.com/aaronpk/p3k-timezone/issues",
- "source": "https://github.com/aaronpk/p3k-timezone/tree/0.1.0"
- },
- "time": "2017-01-12T17:30:08+00:00"
- },
- {
- "name": "p3k/utils",
- "version": "1.2.1",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/p3k-utils.git",
- "reference": "8436f02ec02d916177a23250ae32b34ae5316942"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/8436f02ec02d916177a23250ae32b34ae5316942",
- "reference": "8436f02ec02d916177a23250ae32b34ae5316942",
- "shasum": ""
- },
- "require": {
- "php": ">=5.5"
- },
- "require-dev": {
- "phpunit/phpunit": "^4.8.13",
- "predis/predis": "1.1.*"
- },
- "type": "library",
- "autoload": {
- "files": [
- "src/global.php",
- "src/url.php",
- "src/utils.php",
- "src/date.php",
- "src/cache.php",
- "src/geo.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "https://aaronparecki.com"
- }
- ],
- "description": "Some helpful functions used by https://p3k.io projects",
- "homepage": "https://github.com/aaronpk/p3k-utils",
- "support": {
- "issues": "https://github.com/aaronpk/p3k-utils/issues",
- "source": "https://github.com/aaronpk/p3k-utils/tree/1.2.1"
- },
- "time": "2021-11-16T21:44:23+00:00"
- },
- {
- "name": "p3k/websub",
- "version": "0.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/p3k-websub.git",
- "reference": "3e37fbb3e8865f159b8adaaab9569e5984bc8890"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/p3k-websub/zipball/3e37fbb3e8865f159b8adaaab9569e5984bc8890",
- "reference": "3e37fbb3e8865f159b8adaaab9569e5984bc8890",
- "shasum": ""
- },
- "require": {
- "indieweb/link-rel-parser": "0.1.*",
- "p3k/http": "0.1.*",
- "p3k/utils": "1.*"
- },
- "require-dev": {
- "predis/predis": "1.*"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "p3k\\WebSub\\": "src/p3k/WebSub"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Aaron Parecki",
- "homepage": "https://aaronparecki.com"
- }
- ],
- "description": "A library for subscribing to and publishing WebSub feeds",
- "homepage": "https://github.com/aaronpk/p3k-websub",
- "keywords": [
- "feed",
- "indieweb",
- "p3k",
- "pubsub",
- "pubsubhubbub",
- "websub"
- ],
- "support": {
- "issues": "https://github.com/aaronpk/p3k-websub/issues",
- "source": "https://github.com/aaronpk/p3k-websub/tree/0.0.1"
- },
- "time": "2017-05-08T15:26:11+00:00"
- },
- {
- "name": "p3k/xray",
- "version": "v1.13.0",
- "source": {
- "type": "git",
- "url": "https://github.com/aaronpk/XRay.git",
- "reference": "ea1f054bdc1e1008fc064d7cb3d44352992eb03b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/aaronpk/XRay/zipball/ea1f054bdc1e1008fc064d7cb3d44352992eb03b",
- "reference": "ea1f054bdc1e1008fc064d7cb3d44352992eb03b",
- "shasum": ""
- },
- "require": {
- "cebe/markdown": "^1.1.0",
- "dg/twitter-php": "^3.0.0",
- "ezyang/htmlpurifier": "^4.10",
- "indieweb/link-rel-parser": "^0.1.0",
- "masterminds/html5": "^2.3",
- "mf2/mf2": "^0.4||^0.5",
- "p3k/http": "^0.1.0",
- "p3k/picofeed": "^0.1.0",
- "p3k/timezone": "^0.1.0"
- },
- "require-dev": {
- "league/plates": "^3.0",
- "league/route": "^1.0",
- "phpunit/phpunit": "^8.0.0|^9.0.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "lib/helpers.php",
- "lib/XRay.php"
- ],
- "psr-4": {
- "p3k\\XRay\\": "lib/XRay"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "description": "X-Ray returns structured data from any URL",
- "homepage": "https://github.com/aaronpk/XRay",
- "support": {
- "issues": "https://github.com/aaronpk/XRay/issues",
- "source": "https://github.com/aaronpk/XRay/tree/v1.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": "2018-07-15T17:25:16+00:00"
},
{
"name": "paragonie/random_compat",
- "version": "v9.99.100",
+ "version": "v2.0.17",
"source": {
"type": "git",
"url": "https://github.com/paragonie/random_compat.git",
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
+ "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d"
},
"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/29af24f25bab834fcbb38ad2a69fa93b867e070d",
+ "reference": "29af24f25bab834fcbb38ad2a69fa93b867e070d",
"shasum": ""
},
"require": {
- "php": ">= 7"
+ "php": ">=5.2.0"
},
"require-dev": {
- "phpunit/phpunit": "4.*|5.*",
- "vimeo/psalm": "^1"
+ "phpunit/phpunit": "4.*|5.*"
},
"suggest": {
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
},
"type": "library",
+ "autoload": {
+ "files": [
+ "lib/random.php"
+ ]
+ },
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
@@ -22498,881 +6996,79 @@
"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-04T16:31:37+00:00"
},
{
- "name": "pear/archive_tar",
- "version": "1.4.14",
+ "name": "pear/console_table",
+ "version": "v1.3.1",
"source": {
"type": "git",
- "url": "https://github.com/pear/Archive_Tar.git",
- "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
+ "url": "https://github.com/pear/Console_Table.git",
+ "reference": "1930c11897ca61fd24b95f2f785e99e0f36dcdea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
- "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
+ "url": "https://api.github.com/repos/pear/Console_Table/zipball/1930c11897ca61fd24b95f2f785e99e0f36dcdea",
+ "reference": "1930c11897ca61fd24b95f2f785e99e0f36dcdea",
"shasum": ""
},
"require": {
- "pear/pear-core-minimal": "^1.10.0alpha2",
"php": ">=5.2.0"
},
- "require-dev": {
- "phpunit/phpunit": "*"
- },
"suggest": {
- "ext-bz2": "Bz2 compression support.",
- "ext-xz": "Lzma2 compression support.",
- "ext-zlib": "Gzip compression support."
+ "pear/Console_Color2": ">=0.1.2"
},
"type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Archive_Tar": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "include-path": [
- "./"
- ],
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Vincent Blavet",
- "email": "vincent@phpconcept.net"
- },
- {
- "name": "Greg Beaver",
- "email": "greg@chiaraquartet.net"
- },
- {
- "name": "Michiel Rook",
- "email": "mrook@php.net"
- }
- ],
- "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
- "homepage": "https://github.com/pear/Archive_Tar",
- "keywords": [
- "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"
- },
- {
- "name": "pear/console_getopt",
- "version": "v1.4.3",
- "source": {
- "type": "git",
- "url": "https://github.com/pear/Console_Getopt.git",
- "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
- "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
- "shasum": ""
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "Console": "./"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "include-path": [
- "./"
- ],
- "license": [
- "BSD-2-Clause"
- ],
- "authors": [
- {
- "name": "Andrei Zmievski",
- "email": "andrei@php.net",
- "role": "Lead"
- },
- {
- "name": "Stig Bakken",
- "email": "stig@php.net",
- "role": "Developer"
- },
- {
- "name": "Greg Beaver",
- "email": "cellog@php.net",
- "role": "Helper"
- }
- ],
- "description": "More info available on: http://pear.php.net/package/Console_Getopt",
- "support": {
- "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
- "source": "https://github.com/pear/Console_Getopt"
- },
- "time": "2019-11-20T18:27:48+00:00"
- },
- {
- "name": "pear/pear-core-minimal",
- "version": "v1.10.14",
- "source": {
- "type": "git",
- "url": "https://github.com/pear/pear-core-minimal.git",
- "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32",
- "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32",
- "shasum": ""
- },
- "require": {
- "pear/console_getopt": "~1.4",
- "pear/pear_exception": "~1.0",
- "php": ">=5.4"
- },
- "replace": {
- "rsky/pear-core-min": "self.version"
- },
- "type": "library",
- "autoload": {
- "psr-0": {
- "": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "include-path": [
- "src/"
- ],
- "license": [
- "BSD-3-Clause"
- ],
- "authors": [
- {
- "name": "Christian Weiske",
- "email": "cweiske@php.net",
- "role": "Lead"
- }
- ],
- "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"
- },
- {
- "name": "pear/pear_exception",
- "version": "v1.0.2",
- "source": {
- "type": "git",
- "url": "https://github.com/pear/PEAR_Exception.git",
- "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
- "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
- "shasum": ""
- },
- "require": {
- "php": ">=5.2.0"
- },
- "require-dev": {
- "phpunit/phpunit": "<9"
- },
- "type": "class",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
"autoload": {
"classmap": [
- "PEAR/"
+ "Table.php"
]
},
"notification-url": "https://packagist.org/downloads/",
- "include-path": [
- "."
- ],
"license": [
"BSD-2-Clause"
],
"authors": [
{
- "name": "Helgi Thormar",
- "email": "dufuz@php.net"
+ "name": "Jan Schneider",
+ "homepage": "http://pear.php.net/user/yunosh"
},
{
- "name": "Greg Beaver",
- "email": "cellog@php.net"
+ "name": "Tal Peer",
+ "homepage": "http://pear.php.net/user/tal"
+ },
+ {
+ "name": "Xavier Noguer",
+ "homepage": "http://pear.php.net/user/xnoguer"
+ },
+ {
+ "name": "Richard Heyes",
+ "homepage": "http://pear.php.net/user/richard"
}
],
- "description": "The PEAR Exception base class.",
- "homepage": "https://github.com/pear/PEAR_Exception",
+ "description": "Library that makes it easy to build console style tables.",
+ "homepage": "http://pear.php.net/package/Console_Table/",
"keywords": [
- "exception"
+ "console"
],
- "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": "2018-01-25T20:47:17+00:00"
},
{
- "name": "phenx/php-font-lib",
- "version": "0.5.6",
+ "name": "psr/container",
+ "version": "1.0.0",
"source": {
"type": "git",
- "url": "https://github.com/dompdf/php-font-lib.git",
- "reference": "a1681e9793040740a405ac5b189275059e2a9863"
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
- "reference": "a1681e9793040740a405ac5b189275059e2a9863",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
+ "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
"shasum": ""
},
"require": {
- "ext-mbstring": "*"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "FontLib\\": "src/FontLib"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL-2.1-or-later"
- ],
- "authors": [
- {
- "name": "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"
- }
- },
- "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/"
- }
- },
- "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"
- },
- "funding": [
- {
- "url": "https://github.com/terrafrost",
- "type": "github"
- },
- {
- "url": "https://www.patreon.com/phpseclib",
- "type": "patreon"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
- "type": "tidelift"
- }
- ],
- "time": "2023-12-29T01:59:53+00:00"
- },
- {
- "name": "platformsh/client",
- "version": "2.5.1",
- "source": {
- "type": "git",
- "url": "https://github.com/platformsh/platformsh-client-php.git",
- "reference": "a8744d8a4dedff4a22c47d714045885005c32624"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/platformsh/platformsh-client-php/zipball/a8744d8a4dedff4a22c47d714045885005c32624",
- "reference": "a8744d8a4dedff4a22c47d714045885005c32624",
- "shasum": ""
- },
- "require": {
- "cocur/slugify": "^3.0",
- "ext-json": "*",
- "guzzlehttp/guzzle": "^6.3 || ^7.0",
- "php": ">=7.1.0",
- "platformsh/oauth2": ">=0.0.3 <2"
- },
- "require-dev": {
- "phpunit/phpunit": "^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Platformsh\\Client\\": "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"
- },
- {
- "name": "platformsh/oauth2",
- "version": "0.0.3",
- "source": {
- "type": "git",
- "url": "https://github.com/platformsh/platformsh-oauth2-php.git",
- "reference": "5daa2274b4cbc95658e5b32ebe4f05b5090e4549"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/platformsh/platformsh-oauth2-php/zipball/5daa2274b4cbc95658e5b32ebe4f05b5090e4549",
- "reference": "5daa2274b4cbc95658e5b32ebe4f05b5090e4549",
- "shasum": ""
- },
- "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": ""
- },
- "type": "drupal-library",
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Dave Furfero",
- "email": "furf@furf.com"
- }
- ],
- "description": "Extension to jQuery UI for mobile touch event support.",
- "homepage": "http://touchpunch.furf.com/",
- "keywords": [
- "gestures",
- "mobile",
- "touch"
- ],
- "support": {
- "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
- "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
- },
- "time": "2020-12-15T10:26:18+00:00"
- },
- {
- "name": "psr/cache",
- "version": "3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/php-fig/cache.git",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.0.0"
+ "php": ">=5.3.0"
},
"type": "library",
"extra": {
@@ -23380,103 +7076,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 +7088,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 +7100,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 +7127,7 @@
},
"autoload": {
"psr-4": {
- "Psr\\EventDispatcher\\": "src/"
+ "Psr\\Http\\Message\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -23545,163 +7140,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 +7150,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.0.2",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
},
"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/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
+ "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
"shasum": ""
},
"require": {
- "php": ">=8.0.0"
+ "php": ">=5.3.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
- "Psr\\Log\\": "src"
+ "Psr\\Log\\": "Psr/Log/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -23752,7 +7187,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 +7197,43 @@
"psr",
"psr-3"
],
- "support": {
- "source": "https://github.com/php-fig/log/tree/3.0.0"
- },
- "time": "2021-07-14T16:46:02+00:00"
+ "time": "2016-10-10T12:19:37+00:00"
},
{
"name": "psy/psysh",
- "version": "v0.12.0",
+ "version": "v0.9.8",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
+ "reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
- "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
+ "reference": "ed3c32c4304e1a678a6e0f9dc11dd2d927d89555",
"shasum": ""
},
"require": {
+ "dnoegel/php-xdg-base-dir": "0.1",
"ext-json": "*",
"ext-tokenizer": "*",
- "nikic/php-parser": "^5.0 || ^4.0",
- "php": "^8.0 || ^7.4",
- "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
- "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
- },
- "conflict": {
- "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
+ "jakub-onderka/php-console-highlighter": "0.3.*",
+ "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
+ "php": ">=5.4.0",
+ "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
+ "symfony/var-dumper": "~2.7|~3.0|~4.0"
},
"require-dev": {
- "bamarni/composer-bin-plugin": "^1.2"
+ "bamarni/composer-bin-plugin": "^1.2",
+ "hoa/console": "~2.15|~3.16",
+ "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
},
"suggest": {
"ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
"ext-pdo-sqlite": "The doc command requires SQLite to work.",
- "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
+ "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
+ "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
},
"bin": [
"bin/psysh"
@@ -23806,11 +7241,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "0.12.x-dev"
- },
- "bamarni-bin": {
- "bin-links": false,
- "forward-command": false
+ "dev-develop": "0.9.x-dev"
}
},
"autoload": {
@@ -23840,38 +7271,40 @@
"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": "2018-09-05T11:40:09+00:00"
},
{
- "name": "ralouphie/getallheaders",
- "version": "3.0.3",
+ "name": "stack/builder",
+ "version": "v1.0.5",
"source": {
"type": "git",
- "url": "https://github.com/ralouphie/getallheaders.git",
- "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ "url": "https://github.com/stackphp/builder.git",
+ "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
- "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
+ "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
"shasum": ""
},
"require": {
- "php": ">=5.6"
+ "php": ">=5.3.0",
+ "symfony/http-foundation": "~2.1|~3.0|~4.0",
+ "symfony/http-kernel": "~2.1|~3.0|~4.0"
},
"require-dev": {
- "php-coveralls/php-coveralls": "^2.1",
- "phpunit/phpunit": "^5 || ^6.5"
+ "silex/silex": "~1.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
"autoload": {
- "files": [
- "src/getallheaders.php"
- ]
+ "psr-0": {
+ "Stack": "src"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -23879,50 +7312,55 @@
],
"authors": [
{
- "name": "Ralph Khattar",
- "email": "ralph.khattar@gmail.com"
+ "name": "Igor Wiedler",
+ "email": "igor@wiedler.ch"
}
],
- "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"
+ "description": "Builder for stack middlewares based on HttpKernelInterface.",
+ "keywords": [
+ "stack"
+ ],
+ "time": "2017-11-18T14:57:29+00:00"
},
{
- "name": "sabberworm/php-css-parser",
- "version": "v8.5.1",
+ "name": "symfony-cmf/routing",
+ "version": "1.4.1",
"source": {
"type": "git",
- "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
- "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152"
+ "url": "https://github.com/symfony-cmf/routing.git",
+ "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
- "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152",
+ "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
+ "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
"shasum": ""
},
"require": {
- "ext-iconv": "*",
- "php": ">=5.6.20"
+ "php": "^5.3.9|^7.0",
+ "psr/log": "1.*",
+ "symfony/http-kernel": "^2.2|3.*",
+ "symfony/routing": "^2.2|3.*"
},
"require-dev": {
- "phpunit/phpunit": "^5.7.27"
+ "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": {
- "ext-mbstring": "for parsing UTF-8 CSS"
+ "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "9.0.x-dev"
+ "dev-master": "1.4-dev"
}
},
"autoload": {
"psr-4": {
- "Sabberworm\\CSS\\": "src/"
+ "Symfony\\Cmf\\Component\\Routing\\": ""
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -23931,200 +7369,175 @@
],
"authors": [
{
- "name": "Raphael Schweikert"
- },
- {
- "name": "Oliver Klee",
- "email": "github@oliverklee.de"
- },
- {
- "name": "Jake Hotson",
- "email": "jake.github@qzdesign.co.uk"
+ "name": "Symfony CMF Community",
+ "homepage": "https://github.com/symfony-cmf/Routing/contributors"
}
],
- "description": "Parser for CSS Files written in PHP",
- "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
+ "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
+ "homepage": "http://cmf.symfony.com",
"keywords": [
- "css",
- "parser",
- "stylesheet"
+ "database",
+ "routing"
],
- "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"
+ "time": "2017-05-09T08:10:41+00:00"
},
{
- "name": "sebastian/diff",
- "version": "4.0.5",
+ "name": "symfony/browser-kit",
+ "version": "v4.1.4",
"source": {
"type": "git",
- "url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
+ "url": "https://github.com/symfony/browser-kit.git",
+ "reference": "c55fe9257003b2d95c0211b3f6941e8dfd26dffd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
- "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
+ "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c55fe9257003b2d95c0211b3f6941e8dfd26dffd",
+ "reference": "c55fe9257003b2d95c0211b3f6941e8dfd26dffd",
"shasum": ""
},
"require": {
- "php": ">=7.3"
+ "php": "^7.1.3",
+ "symfony/dom-crawler": "~3.4|~4.0"
},
"require-dev": {
- "phpunit/phpunit": "^9.3",
- "symfony/process": "^4.2 || ^5"
+ "symfony/css-selector": "~3.4|~4.0",
+ "symfony/process": "~3.4|~4.0"
+ },
+ "suggest": {
+ "symfony/process": ""
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "4.0-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
- "classmap": [
- "src/"
+ "psr-4": {
+ "Symfony\\Component\\BrowserKit\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD-3-Clause"
+ "MIT"
],
"authors": [
{
- "name": "Sebastian Bergmann",
- "email": "sebastian@phpunit.de"
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Kore Nordmann",
- "email": "mail@kore-nordmann.de"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "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"
+ "description": "Symfony BrowserKit Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-07-26T09:10:45+00:00"
},
{
- "name": "setasign/fpdi",
- "version": "v2.6.0",
+ "name": "symfony/class-loader",
+ "version": "v3.4.15",
"source": {
"type": "git",
- "url": "https://github.com/Setasign/FPDI.git",
- "reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad"
+ "url": "https://github.com/symfony/class-loader.git",
+ "reference": "31db283fc86d3143e7ff87e922177b457d909c30"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Setasign/FPDI/zipball/a6db878129ec6c7e141316ee71872923e7f1b7ad",
- "reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad",
+ "url": "https://api.github.com/repos/symfony/class-loader/zipball/31db283fc86d3143e7ff87e922177b457d909c30",
+ "reference": "31db283fc86d3143e7ff87e922177b457d909c30",
"shasum": ""
},
"require": {
- "ext-zlib": "*",
- "php": "^5.6 || ^7.0 || ^8.0"
+ "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": "2018-07-26T11:19:56+00:00"
+ },
+ {
+ "name": "symfony/config",
+ "version": "v4.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/config.git",
+ "reference": "76015a3cc372b14d00040ff58e18e29f69eba717"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/config/zipball/76015a3cc372b14d00040ff58e18e29f69eba717",
+ "reference": "76015a3cc372b14d00040ff58e18e29f69eba717",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1.3",
+ "symfony/filesystem": "~3.4|~4.0",
+ "symfony/polyfill-ctype": "~1.8"
},
"conflict": {
- "setasign/tfpdf": "<1.31"
+ "symfony/finder": "<3.4"
},
"require-dev": {
- "phpunit/phpunit": "~5.7",
- "setasign/fpdf": "~1.8.6",
- "setasign/tfpdf": "~1.33",
- "squizlabs/php_codesniffer": "^3.5",
- "tecnickcom/tcpdf": "~6.2"
+ "symfony/dependency-injection": "~3.4|~4.0",
+ "symfony/event-dispatcher": "~3.4|~4.0",
+ "symfony/finder": "~3.4|~4.0",
+ "symfony/yaml": "~3.4|~4.0"
},
"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"
+ "symfony/yaml": "To use the yaml reference dumper"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "0.x-dev"
+ "dev-master": "4.1-dev"
}
},
"autoload": {
"psr-4": {
- "Recurr\\": "src/Recurr/"
- }
+ "Symfony\\Component\\Config\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -24132,246 +7545,61 @@
],
"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": "Fabien Potencier",
+ "email": "fabien@symfony.com"
},
{
- "name": "Sascha Greuel",
- "email": "hello@1-2.dev",
- "homepage": "https://1-2.dev",
- "role": "Developer"
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
}
],
- "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"
- },
- {
- "name": "stripe/stripe-php",
- "version": "v7.128.0",
- "source": {
- "type": "git",
- "url": "https://github.com/stripe/stripe-php.git",
- "reference": "c704949c49b72985c76cc61063aa26fefbd2724e"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e",
- "reference": "c704949c49b72985c76cc61063aa26fefbd2724e",
- "shasum": ""
- },
- "require": {
- "ext-curl": "*",
- "ext-json": "*",
- "ext-mbstring": "*",
- "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"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Stripe\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Stripe and contributors",
- "homepage": "https://github.com/stripe/stripe-php/contributors"
- }
- ],
- "description": "Stripe PHP Library",
- "homepage": "https://stripe.com/",
- "keywords": [
- "api",
- "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"
+ "description": "Symfony Config Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-08-08T06:37:38+00:00"
},
{
"name": "symfony/console",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e"
+ "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
- "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e",
+ "url": "https://api.github.com/repos/symfony/console/zipball/6b217594552b9323bcdcfc14f8a0ce126e84cd73",
+ "reference": "6b217594552b9323bcdcfc14f8a0ce126e84cd73",
"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"
+ "php": "^5.5.9|>=7.0.8",
+ "symfony/debug": "~2.8|~3.0|~4.0",
+ "symfony/polyfill-mbstring": "~1.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"
+ "symfony/dependency-injection": "<3.4",
+ "symfony/process": "<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"
+ "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-implementation": "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,51 +7622,33 @@
"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": "2018-07-26T11:19:56+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229"
+ "reference": "edda5a6155000ff8c3a3f85ee5c421af93cca416"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229",
- "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/edda5a6155000ff8c3a3f85ee5c421af93cca416",
+ "reference": "edda5a6155000ff8c3a3f85ee5c421af93cca416",
"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\\CssSelector\\": ""
@@ -24451,79 +7661,125 @@
"license": [
"MIT"
],
+ "authors": [
+ {
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony CssSelector Component",
+ "homepage": "https://symfony.com",
+ "time": "2018-07-26T09:06:28+00:00"
+ },
+ {
+ "name": "symfony/debug",
+ "version": "v4.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/debug.git",
+ "reference": "47ead688f1f2877f3f14219670f52e4722ee7052"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/47ead688f1f2877f3f14219670f52e4722ee7052",
+ "reference": "47ead688f1f2877f3f14219670f52e4722ee7052",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1.3",
+ "psr/log": "~1.0"
+ },
+ "conflict": {
+ "symfony/http-kernel": "<3.4"
+ },
+ "require-dev": {
+ "symfony/http-kernel": "~3.4|~4.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.1-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Debug\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
- {
- "name": "Jean-François Simon",
- "email": "jeanfrancois.simon@sensiolabs.com"
- },
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Converts CSS selectors to XPath expressions",
+ "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": "2018-08-03T11:13:38+00:00"
},
{
"name": "symfony/dependency-injection",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/dependency-injection.git",
- "reference": "6871811c5a5c5e180244ddb689746446db02c05b"
+ "reference": "09d7df7bf06c1393b6afc85875993cbdbdf897a0"
},
"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/09d7df7bf06c1393b6afc85875993cbdbdf897a0",
+ "reference": "09d7df7bf06c1393b6afc85875993cbdbdf897a0",
"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,118 +7802,41 @@
"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"
- },
- {
- "name": "symfony/deprecation-contracts",
- "version": "v3.4.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
- "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-main": "3.4-dev"
- },
- "thanks": {
- "name": "symfony/contracts",
- "url": "https://github.com/symfony/contracts"
- }
- },
- "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"
+ "time": "2018-08-08T11:42:34+00:00"
},
{
"name": "symfony/dom-crawler",
- "version": "v6.4.3",
+ "version": "v4.1.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
- "reference": "6db31849011fefe091e94d0bb10cba26f7919894"
+ "reference": "1c4519d257e652404c3aa550207ccd8ada66b38e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6db31849011fefe091e94d0bb10cba26f7919894",
- "reference": "6db31849011fefe091e94d0bb10cba26f7919894",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/1c4519d257e652404c3aa550207ccd8ada66b38e",
+ "reference": "1c4519d257e652404c3aa550207ccd8ada66b38e",
"shasum": ""
},
"require": {
- "masterminds/html5": "^2.6",
- "php": ">=8.1",
+ "php": "^7.1.3",
"symfony/polyfill-ctype": "~1.8",
"symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
- "symfony/css-selector": "^5.4|^6.0|^7.0"
+ "symfony/css-selector": "~3.4|~4.0"
+ },
+ "suggest": {
+ "symfony/css-selector": ""
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.1-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Symfony\\Component\\DomCrawler\\": ""
@@ -24680,139 +7859,47 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Eases DOM navigation for HTML and XML documents",
+ "description": "Symfony DomCrawler Component",
"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"
+ "time": "2018-07-26T11:00:49+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef"
+ "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
- "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
+ "reference": "b2e1f19280c09a42dc64c0b72b80fe44dd6e88fb",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/event-dispatcher-contracts": "^2.5|^3"
+ "php": "^5.5.9|>=7.0.8"
},
"conflict": {
- "symfony/dependency-injection": "<5.4",
- "symfony/service-contracts": "<2.5"
- },
- "provide": {
- "psr/event-dispatcher-implementation": "1.0",
- "symfony/event-dispatcher-implementation": "2.0|3.0"
+ "symfony/dependency-injection": "<3.3"
},
"require-dev": {
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/error-handler": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/http-foundation": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/stopwatch": "^5.4|^6.0|^7.0"
+ "psr/log": "~1.0",
+ "symfony/config": "~2.8|~3.0|~4.0",
+ "symfony/dependency-injection": "~3.3|~4.0",
+ "symfony/expression-language": "~2.8|~3.0|~4.0",
+ "symfony/stopwatch": "~2.8|~3.0|~4.0"
+ },
+ "suggest": {
+ "symfony/dependency-injection": "",
+ "symfony/http-kernel": ""
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Symfony\\Component\\EventDispatcher\\": ""
@@ -24835,123 +7922,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": "2018-07-26T09:06:28+00:00"
},
{
- "name": "symfony/event-dispatcher-contracts",
- "version": "v3.4.0",
+ "name": "symfony/filesystem",
+ "version": "v4.1.4",
"source": {
"type": "git",
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
- "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "c0f5f62db218fa72195b8b8700e4b9b9cf52eb5e"
},
"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/c0f5f62db218fa72195b8b8700e4b9b9cf52eb5e",
+ "reference": "c0f5f62db218fa72195b8b8700e4b9b9cf52eb5e",
"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.1-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,48 +7972,33 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides basic utilities for the filesystem",
+ "description": "Symfony Filesystem Component",
"homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/filesystem/tree/v6.4.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": "2018-08-18T16:52:46+00:00"
},
{
"name": "symfony/finder",
- "version": "v6.4.0",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "11d736e97f116ac375a81f96e662911a34cd50ce"
+ "reference": "8a84fcb207451df0013b2c74cbbf1b62d47b999a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce",
- "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/8a84fcb207451df0013b2c74cbbf1b62d47b999a",
+ "reference": "8a84fcb207451df0013b2c74cbbf1b62d47b999a",
"shasum": ""
},
"require": {
- "php": ">=8.1"
- },
- "require-dev": {
- "symfony/filesystem": "^6.0|^7.0"
+ "php": "^5.5.9|>=7.0.8"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Symfony\\Component\\Finder\\": ""
@@ -25038,61 +8021,38 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Finds files and directories via an intuitive fluent interface",
+ "description": "Symfony Finder Component",
"homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/finder/tree/v6.4.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-10-31T17:30:12+00:00"
+ "time": "2018-07-26T11:19:56+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9"
+ "reference": "2fb33cb6eefe6e790e4023f7c534a9e4214252fc"
},
"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/2fb33cb6eefe6e790e4023f7c534a9e4214252fc",
+ "reference": "2fb33cb6eefe6e790e4023f7c534a9e4214252fc",
"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 +8075,73 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Defines an object-oriented layer for the HTTP specification",
+ "description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/http-foundation/tree/v6.4.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": "2018-08-27T17:45:33+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2"
+ "reference": "2819693b25f480966cbfa13b651abccfed4871ca"
},
"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/2819693b25f480966cbfa13b651abccfed4871ca",
+ "reference": "2819693b25f480966cbfa13b651abccfed4871ca",
"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": "~2.8|~3.0|~4.0",
+ "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
+ "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
+ "symfony/polyfill-ctype": "~1.8"
},
"conflict": {
- "symfony/browser-kit": "<5.4",
- "symfony/cache": "<5.4",
- "symfony/config": "<6.1",
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<6.4",
- "symfony/doctrine-bridge": "<5.4",
- "symfony/form": "<5.4",
- "symfony/http-client": "<5.4",
- "symfony/http-client-contracts": "<2.5",
- "symfony/mailer": "<5.4",
- "symfony/messenger": "<5.4",
- "symfony/translation": "<5.4",
- "symfony/translation-contracts": "<2.5",
- "symfony/twig-bridge": "<5.4",
- "symfony/validator": "<6.4",
- "symfony/var-dumper": "<6.3",
- "twig/twig": "<2.13"
+ "symfony/config": "<2.8",
+ "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
+ "symfony/var-dumper": "<3.3",
+ "twig/twig": "<1.34|<2.4,>=2"
},
"provide": {
- "psr/log-implementation": "1.0|2.0|3.0"
+ "psr/log-implementation": "1.0"
},
"require-dev": {
- "psr/cache": "^1.0|^2.0|^3.0",
- "symfony/browser-kit": "^5.4|^6.0|^7.0",
- "symfony/clock": "^6.2|^7.0",
- "symfony/config": "^6.1|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/css-selector": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^6.4|^7.0",
- "symfony/dom-crawler": "^5.4|^6.0|^7.0",
- "symfony/expression-language": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/http-client-contracts": "^2.5|^3",
- "symfony/process": "^5.4|^6.0|^7.0",
- "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/serializer": "^6.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,210 +8164,26 @@
"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",
- "type": "custom"
- },
- {
- "url": "https://github.com/fabpot",
- "type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
- "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": "2018-08-28T06:06:12+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.28.0",
+ "version": "v1.9.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
+ "reference": "e3d826245268269cd66f8326bd8bc066687b4a19"
},
"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/e3d826245268269cd66f8326bd8bc066687b4a19",
+ "reference": "e3d826245268269cd66f8326bd8bc066687b4a19",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-ctype": "*"
+ "php": ">=5.3.3"
},
"suggest": {
"ext-ctype": "For best performance"
@@ -25439,33 +8191,29 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
"Symfony\\Polyfill\\Ctype\\": ""
- }
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
- {
- "name": "Gert de Pagter",
- "email": "BackEndTea@gmail.com"
- },
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
+ },
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
}
],
"description": "Symfony polyfill for ctype functions",
@@ -25476,44 +8224,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": "2018-08-06T14:22:27+00:00"
},
{
"name": "symfony/polyfill-iconv",
- "version": "v1.28.0",
+ "version": "v1.9.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-iconv.git",
- "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
+ "reference": "bcc0cd69185b8a5d8b4a5400c489ed3333bf9bb2"
},
"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/bcc0cd69185b8a5d8b4a5400c489ed3333bf9bb2",
+ "reference": "bcc0cd69185b8a5d8b4a5400c489ed3333bf9bb2",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-iconv": "*"
+ "php": ">=5.3.3"
},
"suggest": {
"ext-iconv": "For best performance"
@@ -25521,20 +8249,16 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
"Symfony\\Polyfill\\Iconv\\": ""
- }
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -25559,296 +8283,24 @@
"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"
- },
- {
- "name": "symfony/polyfill-intl-idn",
- "version": "v1.28.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-intl-idn.git",
- "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
- "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
- "shasum": ""
- },
- "require": {
- "php": ">=7.1",
- "symfony/polyfill-intl-normalizer": "^1.10",
- "symfony/polyfill-php72": "^1.10"
- },
- "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\\Idn\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Laurent Bassin",
- "email": "laurent@bassin.info"
- },
- {
- "name": "Trevor Rowbotham",
- "email": "trevor.rowbotham@pm.me"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "idn",
- "intl",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.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": "2018-08-06T14:22:27+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.28.0",
+ "version": "v1.9.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "42292d99c55abe617799667f454222c54c60e229"
+ "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
},
"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/d0cd638f4634c16d8df4508e847f14e9e43168b8",
+ "reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
"shasum": ""
},
"require": {
- "php": ">=7.1"
- },
- "provide": {
- "ext-mbstring": "*"
+ "php": ">=5.3.3"
},
"suggest": {
"ext-mbstring": "For best performance"
@@ -25856,20 +8308,16 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-main": "1.28-dev"
- },
- "thanks": {
- "name": "symfony/polyfill",
- "url": "https://github.com/symfony/polyfill"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
- "files": [
- "bootstrap.php"
- ],
"psr-4": {
"Symfony\\Polyfill\\Mbstring\\": ""
- }
+ },
+ "files": [
+ "bootstrap.php"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -25894,289 +8342,39 @@
"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": "2018-08-06T14:22:27+00:00"
},
{
- "name": "symfony/polyfill-php72",
- "version": "v1.29.0",
+ "name": "symfony/polyfill-php70",
+ "version": "v1.9.0",
"source": {
"type": "git",
- "url": "https://github.com/symfony/polyfill-php72.git",
- "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
+ "url": "https://github.com/symfony/polyfill-php70.git",
+ "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
- "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
+ "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
+ "reference": "1e24b0c4a56d55aaf368763a06c6d1c7d3194934",
"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\\Php72\\": ""
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php72/tree/v1.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-php80",
- "version": "v1.29.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php80.git",
- "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
- "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
- "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\\Php80\\": ""
- },
- "classmap": [
- "Resources/stubs"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Ion Bazan",
- "email": "ion.bazan@gmail.com"
- },
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
- "homepage": "https://symfony.com",
- "keywords": [
- "compatibility",
- "polyfill",
- "portable",
- "shim"
- ],
- "support": {
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.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-php81",
- "version": "v1.29.0",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/polyfill-php81.git",
- "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
- "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
- "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"
+ "paragonie/random_compat": "~1.0|~2.0|~9.99",
+ "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.9-dev"
}
},
"autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Php70\\": ""
+ },
"files": [
"bootstrap.php"
],
- "psr-4": {
- "Symfony\\Polyfill\\Php83\\": ""
- },
"classmap": [
"Resources/stubs"
]
@@ -26195,7 +8393,7 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+ "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
"homepage": "https://symfony.com",
"keywords": [
"compatibility",
@@ -26203,43 +8401,31 @@
"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": "2018-08-06T14:22:27+00:00"
},
{
"name": "symfony/process",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "31642b0818bfcff85930344ef93193f8c607e0a3"
+ "reference": "4d6b125d5293cbceedc2aa10f2c71617e76262e7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3",
- "reference": "31642b0818bfcff85930344ef93193f8c607e0a3",
+ "url": "https://api.github.com/repos/symfony/process/zipball/4d6b125d5293cbceedc2aa10f2c71617e76262e7",
+ "reference": "4d6b125d5293cbceedc2aa10f2c71617e76262e7",
"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,68 +8448,47 @@
"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": "2018-08-03T10:42:44+00:00"
},
{
"name": "symfony/psr-http-message-bridge",
- "version": "v6.4.3",
+ "version": "v1.1.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/psr-http-message-bridge.git",
- "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47"
+ "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196"
},
"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/53c15a6a7918e6c2ab16ae370ea607fb40cab196",
+ "reference": "53c15a6a7918e6c2ab16ae370ea607fb40cab196",
"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": {
+ "psr/http-factory-implementation": "To use the PSR-17 factory",
+ "psr/http-message-implementation": "To use the HttpFoundation factory",
+ "zendframework/zend-diactoros": "To use the Zend Diactoros factory"
},
"type": "symfony-bridge",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Symfony\\Bridge\\PsrHttpMessage\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
@@ -26331,75 +8496,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": "2018-08-30T16:28:28+00:00"
},
{
"name": "symfony/routing",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842"
+ "reference": "e20f4bb79502c3c0db86d572f7683a30d4143911"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842",
- "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/e20f4bb79502c3c0db86d572f7683a30d4143911",
+ "reference": "e20f4bb79502c3c0db86d572f7683a30d4143911",
"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/dependency-injection": "For loading routes from a service",
+ "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 +8580,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 +8588,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": "2018-07-26T11:19:56+00:00"
},
{
"name": "symfony/serializer",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/serializer.git",
- "reference": "51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d"
+ "reference": "40031683816470610af87c2d03ea86d1cf0f0104"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/serializer/zipball/51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d",
- "reference": "51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d",
+ "url": "https://api.github.com/repos/symfony/serializer/zipball/40031683816470610af87c2d03ea86d1cf0f0104",
+ "reference": "40031683816470610af87c2d03ea86d1cf0f0104",
"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.1|~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": "To use 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 +8665,55 @@
"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": "2018-07-26T11:58:24+00:00"
},
{
- "name": "symfony/service-contracts",
- "version": "v3.4.1",
+ "name": "symfony/translation",
+ "version": "v3.4.15",
"source": {
"type": "git",
- "url": "https://github.com/symfony/service-contracts.git",
- "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "9749930bfc825139aadd2d28461ddbaed6577862"
},
"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/9749930bfc825139aadd2d28461ddbaed6577862",
+ "reference": "9749930bfc825139aadd2d28461ddbaed6577862",
"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/intl": "^2.8.18|^3.2.5|~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 +8725,77 @@
],
"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": "2018-07-26T11:19:56+00:00"
},
{
- "name": "symfony/translation-contracts",
- "version": "v3.4.1",
+ "name": "symfony/validator",
+ "version": "v3.4.15",
"source": {
"type": "git",
- "url": "https://github.com/symfony/translation-contracts.git",
- "reference": "06450585bf65e978026bda220cdebca3f867fde7"
+ "url": "https://github.com/symfony/validator.git",
+ "reference": "5a9ca502663e32aed3302b00121f978d70a09ab9"
},
"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/5a9ca502663e32aed3302b00121f978d70a09ab9",
+ "reference": "5a9ca502663e32aed3302b00121f978d70a09ab9",
"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": {
+ "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.0",
+ "doctrine/cache": "~1.0",
+ "egulias/email-validator": "^1.2.8|~2.0",
+ "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 +8818,46 @@
"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": "2018-08-07T09:33:53+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "0435a08f69125535336177c29d56af3abc1f69da"
+ "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3"
},
"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/f62a394bd3de96f2f5e8f4c7d685035897fb3cb3",
+ "reference": "f62a394bd3de96f2f5e8f4c7d685035897fb3cb3",
"shasum": ""
},
"require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
+ "php": "^5.5.9|>=7.0.8",
"symfony/polyfill-mbstring": "~1.0"
},
"conflict": {
- "symfony/console": "<5.4"
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
},
"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"
+ "twig/twig": "~1.34|~2.4"
+ },
+ "suggest": {
+ "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
+ "ext-intl": "To show region name in time zone dump",
+ "ext-symfony_debug": ""
},
- "bin": [
- "Resources/bin/var-dump-server"
- ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.4-dev"
+ }
+ },
"autoload": {
"files": [
"Resources/functions/dump.php"
@@ -26949,135 +8883,47 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+ "description": "Symfony mechanism for exploring and dumping PHP variables",
"homepage": "https://symfony.com",
"keywords": [
"debug",
"dump"
],
- "support": {
- "source": "https://github.com/symfony/var-dumper/tree/v6.4.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: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": "2018-07-26T11:19:56+00:00"
},
{
"name": "symfony/yaml",
- "version": "v6.4.3",
+ "version": "v3.4.15",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "d75715985f0f94f978e3a8fa42533e10db921b90"
+ "reference": "c2f4812ead9f847cb69e90917ca7502e6892d6b8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90",
- "reference": "d75715985f0f94f978e3a8fa42533e10db921b90",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/c2f4812ead9f847cb69e90917ca7502e6892d6b8",
+ "reference": "c2f4812ead9f847cb69e90917ca7502e6892d6b8",
"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,169 +8946,43 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Loads and dumps YAML files",
+ "description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/yaml/tree/v6.4.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"
- },
- {
- "name": "thinkshout/mailchimp-api-php",
- "version": "v3.0.0",
- "source": {
- "type": "git",
- "url": "https://github.com/thinkshout/mailchimp-api-php.git",
- "reference": "2fcd4b550f8c9b78b872bc922fafbcf6f6d39085"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/2fcd4b550f8c9b78b872bc922fafbcf6f6d39085",
- "reference": "2fcd4b550f8c9b78b872bc922fafbcf6f6d39085",
- "shasum": ""
- },
- "require": {
- "guzzlehttp/guzzle": "^6.5.8|^7.4.5",
- "php": ">=5.4.0"
- },
- "require-dev": {
- "phpunit/phpunit": "^6.2.2|^7.0|^8.0|^9.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Mailchimp\\": "src/",
- "Mailchimp\\http\\": "src/http/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "description": "PHP library for v3 of the MailChimp API",
- "homepage": "https://github.com/thinkshout/mailchimp-api-php",
- "keywords": [
- "mail",
- "mailchimp"
- ],
- "support": {
- "issues": "https://github.com/thinkshout/mailchimp-api-php/issues",
- "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v3.0.0"
- },
- "time": "2023-05-26T21:57:04+00:00"
+ "time": "2018-08-10T07:34:36+00:00"
},
{
"name": "twig/twig",
- "version": "v3.8.0",
+ "version": "v1.35.4",
"source": {
"type": "git",
"url": "https://github.com/twigphp/Twig.git",
- "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
+ "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
- "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
+ "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
+ "reference": "7e081e98378a1e78c29cc9eba4aefa5d78a05d2a",
"shasum": ""
},
"require": {
- "php": ">=7.2.5",
- "symfony/polyfill-ctype": "^1.8",
- "symfony/polyfill-mbstring": "^1.3",
- "symfony/polyfill-php80": "^1.22"
+ "php": ">=5.3.3",
+ "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/debug": "^2.7",
+ "symfony/phpunit-bridge": "^3.3"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.35-dev"
+ }
+ },
"autoload": {
+ "psr-0": {
+ "Twig_": "lib/"
+ },
"psr-4": {
"Twig\\": "src/"
}
@@ -27278,14 +8998,15 @@
"homepage": "http://fabien.potencier.org",
"role": "Lead Developer"
},
- {
- "name": "Twig Team",
- "role": "Contributors"
- },
{
"name": "Armin Ronacher",
"email": "armin.ronacher@active-4.com",
"role": "Project Founder"
+ },
+ {
+ "name": "Twig Team",
+ "homepage": "https://twig.symfony.com/contributors",
+ "role": "Contributors"
}
],
"description": "Twig, the flexible, fast, and secure template language for PHP",
@@ -27293,245 +9014,33 @@
"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"
- },
- {
- "name": "vlucas/phpdotenv",
- "version": "v5.6.0",
- "source": {
- "type": "git",
- "url": "https://github.com/vlucas/phpdotenv.git",
- "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
- "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
- "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"
- },
- "require-dev": {
- "bamarni/composer-bin-plugin": "^1.8.2",
- "ext-filter": "*",
- "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
- },
- "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"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "3.0-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Wa72\\HtmlPageDom\\": "src/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Christoph Singer",
- "email": "singer@webagentur72.de",
- "homepage": "http://www.webagentur72.de"
- }
- ],
- "description": "jQuery-inspired DOM manipulation extension for Symfony's Crawler",
- "homepage": "http://github.com/wasinger/htmlpagedom",
- "keywords": [
- "crawler",
- "dom",
- "html"
- ],
- "support": {
- "issues": "https://github.com/wasinger/htmlpagedom/issues",
- "source": "https://github.com/wasinger/htmlpagedom/tree/v3.0.0"
- },
- "time": "2022-04-13T15:28:55+00:00"
- },
- {
- "name": "webflo/drupal-finder",
- "version": "1.2.2",
- "source": {
- "type": "git",
- "url": "https://github.com/webflo/drupal-finder.git",
- "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
- "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
- "shasum": ""
- },
- "require": {
- "ext-json": "*"
- },
- "require-dev": {
- "mikey179/vfsstream": "^1.6",
- "phpunit/phpunit": "^4.8"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "src/DrupalFinder.php"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "GPL-2.0-or-later"
- ],
- "authors": [
- {
- "name": "Florian Weber",
- "email": "florian@webflo.org"
- }
- ],
- "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": "2018-07-13T07:12:17+00:00"
},
{
"name": "webmozart/assert",
- "version": "1.11.0",
+ "version": "1.3.0",
"source": {
"type": "git",
- "url": "https://github.com/webmozarts/assert.git",
- "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
+ "url": "https://github.com/webmozart/assert.git",
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
- "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a",
+ "reference": "0df1908962e7a3071564e857d86874dad1ef204a",
"shasum": ""
},
"require": {
- "ext-ctype": "*",
- "php": "^7.2 || ^8.0"
- },
- "conflict": {
- "phpstan/phpstan": "<0.12.20",
- "vimeo/psalm": "<4.6.1 || 4.6.2"
+ "php": "^5.3.3 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "^8.5.13"
+ "phpunit/phpunit": "^4.6",
+ "sebastian/version": "^1.0.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.10-dev"
+ "dev-master": "1.3-dev"
}
},
"autoload": {
@@ -27555,66 +9064,39 @@
"check",
"validate"
],
- "support": {
- "issues": "https://github.com/webmozarts/assert/issues",
- "source": "https://github.com/webmozarts/assert/tree/1.11.0"
- },
- "time": "2022-06-03T18:03:27+00:00"
- }
- ],
- "packages-dev": [
+ "time": "2018-01-29T19:49:41+00:00"
+ },
{
- "name": "behat/behat",
- "version": "v3.14.0",
+ "name": "webmozart/path-util",
+ "version": "2.3.0",
"source": {
"type": "git",
- "url": "https://github.com/Behat/Behat.git",
- "reference": "2a3832d9cb853a794af3a576f9e524ae460f3340"
+ "url": "https://github.com/webmozart/path-util.git",
+ "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Behat/Behat/zipball/2a3832d9cb853a794af3a576f9e524ae460f3340",
- "reference": "2a3832d9cb853a794af3a576f9e524ae460f3340",
+ "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
+ "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
"shasum": ""
},
"require": {
- "behat/gherkin": "^4.9.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",
+ "webmozart/assert": "~1.0"
},
"require-dev": {
- "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.6",
+ "sebastian/version": "^1.0.1"
},
- "suggest": {
- "ext-dom": "Needed to output test results in JUnit format."
- },
- "bin": [
- "bin/behat"
- ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.x-dev"
+ "dev-master": "2.3-dev"
}
},
"autoload": {
"psr-4": {
- "Behat\\Hook\\": "src/Behat/Hook/",
- "Behat\\Step\\": "src/Behat/Step/",
- "Behat\\Behat\\": "src/Behat/Behat/",
- "Behat\\Testwork\\": "src/Behat/Testwork/"
+ "Webmozart\\PathUtil\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -27623,57 +9105,559 @@
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
}
],
- "description": "Scenario-oriented BDD framework for PHP",
- "homepage": "http://behat.org/",
- "keywords": [
- "Agile",
- "BDD",
- "ScenarioBDD",
- "Scrum",
- "StoryBDD",
- "User story",
- "business",
- "development",
- "documentation",
- "examples",
- "symfony",
- "testing"
- ],
- "support": {
- "issues": "https://github.com/Behat/Behat/issues",
- "source": "https://github.com/Behat/Behat/tree/v3.14.0"
- },
- "time": "2023-12-09T13:55:02+00:00"
+ "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
+ "time": "2015-12-17T08:42:14+00:00"
},
{
- "name": "behat/gherkin",
- "version": "v4.9.0",
+ "name": "zendframework/zend-diactoros",
+ "version": "1.8.6",
"source": {
"type": "git",
- "url": "https://github.com/Behat/Gherkin.git",
- "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
+ "url": "https://github.com/zendframework/zend-diactoros.git",
+ "reference": "20da13beba0dde8fb648be3cc19765732790f46e"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
- "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
+ "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/20da13beba0dde8fb648be3cc19765732790f46e",
+ "reference": "20da13beba0dde8fb648be3cc19765732790f46e",
"shasum": ""
},
"require": {
- "php": "~7.2|~8.0"
+ "php": "^5.6 || ^7.0",
+ "psr/http-message": "^1.0"
+ },
+ "provide": {
+ "psr/http-message-implementation": "1.0"
},
"require-dev": {
- "cucumber/cucumber": "dev-gherkin-22.0.0",
- "phpunit/phpunit": "~8|~9",
- "symfony/yaml": "~3|~4|~5"
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php-http/psr7-integration-tests": "dev-master",
+ "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
+ "zendframework/zend-coding-standard": "~1.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.8.x-dev",
+ "dev-develop": "1.9.x-dev",
+ "dev-release-2.0": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions/create_uploaded_file.php",
+ "src/functions/marshal_headers_from_sapi.php",
+ "src/functions/marshal_method_from_sapi.php",
+ "src/functions/marshal_protocol_version_from_sapi.php",
+ "src/functions/marshal_uri_from_sapi.php",
+ "src/functions/normalize_server.php",
+ "src/functions/normalize_uploaded_files.php",
+ "src/functions/parse_cookie_header.php"
+ ],
+ "psr-4": {
+ "Zend\\Diactoros\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-2-Clause"
+ ],
+ "description": "PSR HTTP Message implementations",
+ "homepage": "https://github.com/zendframework/zend-diactoros",
+ "keywords": [
+ "http",
+ "psr",
+ "psr-7"
+ ],
+ "time": "2018-09-05T19:29:37+00:00"
+ },
+ {
+ "name": "zendframework/zend-escaper",
+ "version": "2.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/zendframework/zend-escaper.git",
+ "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074",
+ "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.6 || ^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
+ "zendframework/zend-coding-standard": "~1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.6.x-dev",
+ "dev-develop": "2.7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Zend\\Escaper\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
+ "keywords": [
+ "ZendFramework",
+ "escaper",
+ "zf"
+ ],
+ "time": "2018-04-25T15:48:53+00:00"
+ },
+ {
+ "name": "zendframework/zend-feed",
+ "version": "2.10.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/zendframework/zend-feed.git",
+ "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/6641f4cf3f4586c63f83fd70b6d19966025c8888",
+ "reference": "6641f4cf3f4586c63f83fd70b6d19966025c8888",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.6 || ^7.0",
+ "zendframework/zend-escaper": "^2.5.2",
+ "zendframework/zend-stdlib": "^2.7.7 || ^3.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^5.7.23 || ^6.4.3",
+ "psr/http-message": "^1.0.1",
+ "zendframework/zend-cache": "^2.7.2",
+ "zendframework/zend-coding-standard": "~1.0.0",
+ "zendframework/zend-db": "^2.8.2",
+ "zendframework/zend-http": "^2.7",
+ "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
+ "zendframework/zend-validator": "^2.10.1"
},
"suggest": {
- "symfony/yaml": "If you want to parse features, represented in YAML files"
+ "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
+ "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
+ "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
+ "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
+ "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
+ "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.10.x-dev",
+ "dev-develop": "2.11.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Zend\\Feed\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "provides functionality for consuming RSS and Atom feeds",
+ "keywords": [
+ "ZendFramework",
+ "feed",
+ "zf"
+ ],
+ "time": "2018-08-01T13:53:20+00:00"
+ },
+ {
+ "name": "zendframework/zend-stdlib",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/zendframework/zend-stdlib.git",
+ "reference": "66536006722aff9e62d1b331025089b7ec71c065"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
+ "reference": "66536006722aff9e62d1b331025089b7ec71c065",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.6 || ^7.0"
+ },
+ "require-dev": {
+ "phpbench/phpbench": "^0.13",
+ "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
+ "zendframework/zend-coding-standard": "~1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.2.x-dev",
+ "dev-develop": "3.3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Zend\\Stdlib\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "SPL extensions, array utilities, error handlers, and more",
+ "keywords": [
+ "ZendFramework",
+ "stdlib",
+ "zf"
+ ],
+ "time": "2018-08-28T21:34:05+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "doctrine/instantiator",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/instantiator.git",
+ "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
+ "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1"
+ },
+ "require-dev": {
+ "athletic/athletic": "~0.1.8",
+ "ext-pdo": "*",
+ "ext-phar": "*",
+ "phpunit/phpunit": "^6.2.3",
+ "squizlabs/php_codesniffer": "^3.0.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com",
+ "homepage": "http://ocramius.github.com/"
+ }
+ ],
+ "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
+ "homepage": "https://github.com/doctrine/instantiator",
+ "keywords": [
+ "constructor",
+ "instantiate"
+ ],
+ "time": "2017-07-22T11:58:36+00:00"
+ },
+ {
+ "name": "mikey179/vfsStream",
+ "version": "v1.6.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mikey179/vfsStream.git",
+ "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mikey179/vfsStream/zipball/d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
+ "reference": "d5fec95f541d4d71c4823bb5e30cf9b9e5b96145",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.6.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-0": {
+ "org\\bovigo\\vfs\\": "src/main/php"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Frank Kleine",
+ "homepage": "http://frankkleine.de/",
+ "role": "Developer"
+ }
+ ],
+ "description": "Virtual file system to mock the real file system in unit tests.",
+ "homepage": "http://vfs.bovigo.org/",
+ "time": "2017-08-01T08:02:14+00:00"
+ },
+ {
+ "name": "myclabs/deep-copy",
+ "version": "1.8.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
+ "reference": "3e01bdad3e18354c3dce54466b7fbe33a9f9f7f8",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1"
+ },
+ "replace": {
+ "myclabs/deep-copy": "self.version"
+ },
+ "require-dev": {
+ "doctrine/collections": "^1.0",
+ "doctrine/common": "^2.6",
+ "phpunit/phpunit": "^7.1"
+ },
+ "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"
+ ],
+ "time": "2018-06-11T23:09:50+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
+ "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-phar": "*",
+ "phar-io/version": "^1.0.1",
+ "php": "^5.6 || ^7.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": "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": "2017-03-05T18:14:27+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
+ "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
+ "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": "2017-03-05T17:38:23+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-common",
+ "version": "1.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+ "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.5"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.6"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": [
+ "src"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "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": "2017-09-11T18:02:19+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-docblock",
+ "version": "4.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
+ "reference": "94fd0001232e47129dd3504189fa1c7225010d08"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08",
+ "reference": "94fd0001232e47129dd3504189fa1c7225010d08",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0",
+ "phpdocumentor/reflection-common": "^1.0.0",
+ "phpdocumentor/type-resolver": "^0.4.0",
+ "webmozart/assert": "^1.0"
+ },
+ "require-dev": {
+ "doctrine/instantiator": "~1.0.5",
+ "mockery/mockery": "^1.0",
+ "phpunit/phpunit": "^6.4"
},
"type": "library",
"extra": {
@@ -27681,9 +9665,107 @@
"dev-master": "4.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": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "time": "2017-11-30T07:14:17+00:00"
+ },
+ {
+ "name": "phpdocumentor/type-resolver",
+ "version": "0.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7",
+ "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.5 || ^7.0",
+ "phpdocumentor/reflection-common": "^1.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^0.9.4",
+ "phpunit/phpunit": "^5.2||^4.8.24"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.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"
+ }
+ ],
+ "time": "2017-07-14T14:27:02+00:00"
+ },
+ {
+ "name": "phpspec/prophecy",
+ "version": "1.8.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpspec/prophecy.git",
+ "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
+ "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/instantiator": "^1.0.2",
+ "php": "^5.3|^7.0",
+ "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0",
+ "sebastian/comparator": "^1.1|^2.0|^3.0",
+ "sebastian/recursion-context": "^1.0|^2.0|^3.0"
+ },
+ "require-dev": {
+ "phpspec/phpspec": "^2.5|^3.2",
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.8.x-dev"
+ }
+ },
"autoload": {
"psr-0": {
- "Behat\\Gherkin": "src/"
+ "Prophecy\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -27695,757 +9777,1018 @@
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
+ },
+ {
+ "name": "Marcello Duarte",
+ "email": "marcello.duarte@gmail.com"
}
],
- "description": "Gherkin DSL parser for PHP",
- "homepage": "http://behat.org/",
+ "description": "Highly opinionated mocking framework for PHP 5.3+",
+ "homepage": "https://github.com/phpspec/prophecy",
"keywords": [
- "BDD",
- "Behat",
- "Cucumber",
- "DSL",
- "gherkin",
- "parser"
+ "Double",
+ "Dummy",
+ "fake",
+ "mock",
+ "spy",
+ "stub"
],
- "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": "2018-08-05T17:53:17+00:00"
},
{
- "name": "behat/mink",
- "version": "v1.11.0",
+ "name": "phpunit/php-code-coverage",
+ "version": "5.3.2",
"source": {
"type": "git",
- "url": "https://github.com/minkphp/Mink.git",
- "reference": "d8527fdf8785aad38455fb426af457ab9937aece"
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/minkphp/Mink/zipball/d8527fdf8785aad38455fb426af457ab9937aece",
- "reference": "d8527fdf8785aad38455fb426af457ab9937aece",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
+ "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
"shasum": ""
},
"require": {
- "php": ">=7.2",
- "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0"
+ "ext-dom": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.0",
+ "phpunit/php-file-iterator": "^1.4.2",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-token-stream": "^2.0.1",
+ "sebastian/code-unit-reverse-lookup": "^1.0.1",
+ "sebastian/environment": "^3.0",
+ "sebastian/version": "^2.0.1",
+ "theseer/tokenizer": "^1.1"
},
"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": "^6.0"
},
"suggest": {
- "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation",
- "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
- "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
- "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
+ "ext-xdebug": "^2.5.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-master": "5.3.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Behat\\Mink\\": "src/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Konstantin Kudryashov",
- "email": "ever.zet@gmail.com",
- "homepage": "http://everzet.com"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Browser controller/emulator abstraction for PHP",
- "homepage": "https://mink.behat.org/",
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
"keywords": [
- "browser",
+ "coverage",
"testing",
- "web"
+ "xunit"
],
- "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": "2018-04-06T15:36:58+00:00"
},
{
- "name": "behat/transliterator",
- "version": "v1.5.0",
+ "name": "phpunit/php-file-iterator",
+ "version": "1.4.5",
"source": {
"type": "git",
- "url": "https://github.com/Behat/Transliterator.git",
- "reference": "baac5873bac3749887d28ab68e2f74db3a4408af"
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af",
- "reference": "baac5873bac3749887d28ab68e2f74db3a4408af",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
"shasum": ""
},
"require": {
- "php": ">=7.2"
- },
- "require-dev": {
- "chuyskywalker/rolling-curl": "^3.1",
- "php-yaoi/php-yaoi": "^1.0",
- "phpunit/phpunit": "^8.5.25 || ^9.5.19"
+ "php": ">=5.3.3"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.x-dev"
+ "dev-master": "1.4.x-dev"
}
},
"autoload": {
- "psr-4": {
- "Behat\\Transliterator\\": "src/Behat/Transliterator"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "Artistic-1.0"
- ],
- "description": "String transliterator",
- "keywords": [
- "i18n",
- "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"
- },
- {
- "name": "drupal/upgrade_status",
- "version": "4.0.0",
- "source": {
- "type": "git",
- "url": "https://git.drupalcode.org/project/upgrade_status.git",
- "reference": "4.0.0"
- },
- "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",
- "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"
- },
- "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/"
- }
+ "classmap": [
+ "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": [
+ "authors": [
{
- "url": "https://funding.communitybridge.org/projects/laminas-project",
- "type": "community_bridge"
+ "name": "Sebastian Bergmann",
+ "email": "sb@sebastian-bergmann.de",
+ "role": "lead"
}
],
- "time": "2022-07-18T21:18:56+00:00"
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
+ "time": "2017-11-27T13:52:08+00:00"
},
{
- "name": "laminas/laminas-text",
- "version": "2.9.0",
+ "name": "phpunit/php-text-template",
+ "version": "1.2.1",
"source": {
"type": "git",
- "url": "https://github.com/laminas/laminas-text.git",
- "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7"
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laminas/laminas-text/zipball/8879e75d03e09b0d6787e6680cfa255afd4645a7",
- "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
+ "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
"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"
+ "php": ">=5.3.3"
},
"type": "library",
"autoload": {
- "psr-4": {
- "Laminas\\Text\\": "src/"
- }
+ "classmap": [
+ "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"
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
}
],
- "description": "Display arrays in terminal",
- "homepage": "https://github.com/viossat/arraytotexttable",
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
"keywords": [
- "array",
- "ascii",
- "table",
- "terminal",
- "text",
- "unicode"
+ "template"
],
- "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"
+ "time": "2015-06-21T13:50:34+00:00"
},
{
- "name": "mglaman/phpstan-drupal",
- "version": "1.2.7",
+ "name": "phpunit/php-timer",
+ "version": "1.0.9",
"source": {
"type": "git",
- "url": "https://github.com/mglaman/phpstan-drupal.git",
- "reference": "32f79fcf48c74532014248687ae3850581a22416"
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/32f79fcf48c74532014248687ae3850581a22416",
- "reference": "32f79fcf48c74532014248687ae3850581a22416",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
"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"
+ "php": "^5.3.3 || ^7.0"
},
"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"
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.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",
+ "type": "library",
"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.0-dev"
}
},
"autoload": {
- "psr-4": {
- "mglaman\\PHPStanDrupal\\": "src/"
- }
+ "classmap": [
+ "src/"
+ ]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Matt Glaman",
- "email": "nmd.matt@gmail.com"
+ "name": "Sebastian Bergmann",
+ "email": "sb@sebastian-bergmann.de",
+ "role": "lead"
}
],
- "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"
- },
- "funding": [
- {
- "url": "https://github.com/mglaman",
- "type": "github"
- },
- {
- "url": "https://opencollective.com/phpstan-drupal",
- "type": "open_collective"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
- "type": "tidelift"
- }
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
],
- "time": "2024-02-14T04:38:08+00:00"
+ "time": "2017-02-26T11:10:40+00:00"
},
{
- "name": "phpstan/phpstan",
- "version": "1.10.58",
+ "name": "phpunit/php-token-stream",
+ "version": "2.0.2",
"source": {
"type": "git",
- "url": "https://github.com/phpstan/phpstan.git",
- "reference": "a23518379ec4defd9e47cbf81019526861623ec2"
+ "url": "https://github.com/sebastianbergmann/php-token-stream.git",
+ "reference": "791198a2c6254db10131eecfe8c06670700904db"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a23518379ec4defd9e47cbf81019526861623ec2",
- "reference": "a23518379ec4defd9e47cbf81019526861623ec2",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
+ "reference": "791198a2c6254db10131eecfe8c06670700904db",
"shasum": ""
},
"require": {
- "php": "^7.2|^8.0"
+ "ext-tokenizer": "*",
+ "php": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.2.4"
+ },
+ "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": "Wrapper around PHP's tokenizer extension.",
+ "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
+ "keywords": [
+ "tokenizer"
+ ],
+ "time": "2017-11-27T05:48:46+00:00"
+ },
+ {
+ "name": "phpunit/phpunit",
+ "version": "6.5.12",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "24da433d7384824d65ea93fbb462e2f31bbb494e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/24da433d7384824d65ea93fbb462e2f31bbb494e",
+ "reference": "24da433d7384824d65ea93fbb462e2f31bbb494e",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "myclabs/deep-copy": "^1.6.1",
+ "phar-io/manifest": "^1.0.1",
+ "phar-io/version": "^1.0",
+ "php": "^7.0",
+ "phpspec/prophecy": "^1.7",
+ "phpunit/php-code-coverage": "^5.3",
+ "phpunit/php-file-iterator": "^1.4.3",
+ "phpunit/php-text-template": "^1.2.1",
+ "phpunit/php-timer": "^1.0.9",
+ "phpunit/phpunit-mock-objects": "^5.0.9",
+ "sebastian/comparator": "^2.1",
+ "sebastian/diff": "^2.0",
+ "sebastian/environment": "^3.1",
+ "sebastian/exporter": "^3.1",
+ "sebastian/global-state": "^2.0",
+ "sebastian/object-enumerator": "^3.0.3",
+ "sebastian/resource-operations": "^1.0",
+ "sebastian/version": "^2.0.1"
},
"conflict": {
- "phpstan/phpstan-shim": "*"
+ "phpdocumentor/reflection-docblock": "3.0.2",
+ "phpunit/dbunit": "<3.0"
+ },
+ "require-dev": {
+ "ext-pdo": "*"
+ },
+ "suggest": {
+ "ext-xdebug": "*",
+ "phpunit/php-invoker": "^1.1"
},
"bin": [
- "phpstan",
- "phpstan.phar"
+ "phpunit"
],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.5.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": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
+ "time": "2018-08-22T06:32:48+00:00"
+ },
+ {
+ "name": "phpunit/phpunit-mock-objects",
+ "version": "5.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
+ "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
+ "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/instantiator": "^1.0.5",
+ "php": "^7.0",
+ "phpunit/php-text-template": "^1.2.1",
+ "sebastian/exporter": "^3.1"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.5.11"
+ },
+ "suggest": {
+ "ext-soap": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.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": "Mock Object library for PHPUnit",
+ "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
+ "keywords": [
+ "mock",
+ "xunit"
+ ],
+ "time": "2018-08-09T05:50:03+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": "2.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
+ "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0",
+ "sebastian/diff": "^2.0 || ^3.0",
+ "sebastian/exporter": "^3.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.4"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1.x-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-02-01T13:46:46+00:00"
+ },
+ {
+ "name": "sebastian/diff",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
+ "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.2"
+ },
+ "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": "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"
+ ],
+ "time": "2017-08-03T08:09:46+00:00"
+ },
+ {
+ "name": "sebastian/environment",
+ "version": "3.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
+ "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^6.1"
+ },
+ "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"
+ }
+ ],
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "http://www.github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
+ "time": "2017-07-01T08:51:00+00:00"
+ },
+ {
+ "name": "sebastian/exporter",
+ "version": "3.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "234199f4528de6d12aaa58b612e98f7d36adb937"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937",
+ "reference": "234199f4528de6d12aaa58b612e98f7d36adb937",
+ "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": "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"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "http://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "time": "2017-04-03T13:19:02+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": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/resource-operations.git",
+ "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
+ "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.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": "Provides a list of PHP built-in functions that operate on resources",
+ "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
+ "time": "2015-07-28T20:34:47+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/phpunit-bridge",
+ "version": "v4.1.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/phpunit-bridge.git",
+ "reference": "d5f433034543bbe3b0dfa2f34e6cc85bf839846f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/d5f433034543bbe3b0dfa2f34e6cc85bf839846f",
+ "reference": "d5f433034543bbe3b0dfa2f34e6cc85bf839846f",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
+ },
+ "suggest": {
+ "ext-zip": "Zip support is required when using bin/simple-phpunit",
+ "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
+ },
+ "bin": [
+ "bin/simple-phpunit"
+ ],
+ "type": "symfony-bridge",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.1-dev"
+ },
+ "thanks": {
+ "name": "phpunit/phpunit",
+ "url": "https://github.com/sebastianbergmann/phpunit"
+ }
+ },
"autoload": {
"files": [
"bootstrap.php"
- ]
- },
- "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": [
- {
- "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"
- }
- ],
- "time": "2024-02-12T20:02:57+00:00"
- },
- {
- "name": "phpstan/phpstan-deprecation-rules",
- "version": "1.1.4",
- "source": {
- "type": "git",
- "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
- "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa",
- "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa",
- "shasum": ""
- },
- "require": {
- "php": "^7.2 || ^8.0",
- "phpstan/phpstan": "^1.10.3"
- },
- "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"
- },
- "type": "phpstan-extension",
- "extra": {
- "phpstan": {
- "includes": [
- "rules.neon"
- ]
- }
- },
- "autoload": {
- "psr-4": {
- "PHPStan\\": "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"
- },
- {
- "name": "symfony/config",
- "version": "v6.4.3",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/config.git",
- "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/config/zipball/206482ff3ed450495b1d5b7bad1bc3a852def96f",
- "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/filesystem": "^5.4|^6.0|^7.0",
- "symfony/polyfill-ctype": "~1.8"
- },
- "conflict": {
- "symfony/finder": "<5.4",
- "symfony/service-contracts": "<2.5"
- },
- "require-dev": {
- "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/messenger": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "psr-4": {
- "Symfony\\Component\\Config\\": ""
- },
- "exclude-from-classmap": [
- "/Tests/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
- "homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/config/tree/v6.4.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-29T13:26:27+00:00"
- },
- {
- "name": "symfony/translation",
- "version": "v6.4.3",
- "source": {
- "type": "git",
- "url": "https://github.com/symfony/translation.git",
- "reference": "637c51191b6b184184bbf98937702bcf554f7d04"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04",
- "reference": "637c51191b6b184184bbf98937702bcf554f7d04",
- "shasum": ""
- },
- "require": {
- "php": ">=8.1",
- "symfony/deprecation-contracts": "^2.5|^3",
- "symfony/polyfill-mbstring": "~1.0",
- "symfony/translation-contracts": "^2.5|^3.0"
- },
- "conflict": {
- "symfony/config": "<5.4",
- "symfony/console": "<5.4",
- "symfony/dependency-injection": "<5.4",
- "symfony/http-client-contracts": "<2.5",
- "symfony/http-kernel": "<5.4",
- "symfony/service-contracts": "<2.5",
- "symfony/twig-bundle": "<5.4",
- "symfony/yaml": "<5.4"
- },
- "provide": {
- "symfony/translation-implementation": "2.3|3.0"
- },
- "require-dev": {
- "nikic/php-parser": "^4.18|^5.0",
- "psr/log": "^1|^2|^3",
- "symfony/config": "^5.4|^6.0|^7.0",
- "symfony/console": "^5.4|^6.0|^7.0",
- "symfony/dependency-injection": "^5.4|^6.0|^7.0",
- "symfony/finder": "^5.4|^6.0|^7.0",
- "symfony/http-client-contracts": "^2.5|^3.0",
- "symfony/http-kernel": "^5.4|^6.0|^7.0",
- "symfony/intl": "^5.4|^6.0|^7.0",
- "symfony/polyfill-intl-icu": "^1.21",
- "symfony/routing": "^5.4|^6.0|^7.0",
- "symfony/service-contracts": "^2.5|^3",
- "symfony/yaml": "^5.4|^6.0|^7.0"
- },
- "type": "library",
- "autoload": {
- "files": [
- "Resources/functions.php"
],
"psr-4": {
- "Symfony\\Component\\Translation\\": ""
+ "Symfony\\Bridge\\PhpUnit\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -28457,67 +10800,66 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Provides tools to internationalize your application",
+ "description": "Symfony PHPUnit Bridge",
"homepage": "https://symfony.com",
- "support": {
- "source": "https://github.com/symfony/translation/tree/v6.4.3"
+ "time": "2018-08-27T17:47:02+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b"
},
- "funding": [
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+ "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.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",
+ "time": "2017-04-07T12:08:54+00:00"
}
],
"aliases": [],
"minimum-stability": "dev",
"stability-flags": {
- "drupal/auto_entitylabel": 10,
- "drupal/coffee": 20,
- "drupal/drutopia_collection": 20,
- "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,
- "drutopia/drutopia": 20
+ "drupal/webform": 5
},
"prefer-stable": true,
"prefer-lowest": false,
"platform": [],
- "platform-dev": [],
- "plugin-api-version": "2.6.0"
+ "platform-dev": []
}
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/autosave_form.messages.yml b/config/autosave_form.messages.yml
deleted file mode 100644
index 4b81262..0000000
--- a/config/autosave_form.messages.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
- default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg
-entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.'
diff --git a/config/autosave_form.settings.yml b/config/autosave_form.settings.yml
deleted file mode 100644
index 1e4768f..0000000
--- a/config/autosave_form.settings.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-_core:
- default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0
-interval: 60000
-only_on_form_change: false
-active_on:
- content_entity_forms: true
- config_entity_forms: false
-notification:
- active: true
- message: 'Saving draft...'
- delay: 1000
-allowed_content_entity_types: { }
-allowed_new: true
diff --git a/config/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.agarica_home_page_custom_1.yml b/config/block.block.agarica_home_page_custom_1.yml
deleted file mode 100644
index 9f66713..0000000
--- a/config/block.block.agarica_home_page_custom_1.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 7201dbba-0cc0-46c5-a175-3b1be47aa5e3
-langcode: en
-status: false
-dependencies:
- content:
- - 'block_content:slide:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d'
- module:
- - block_content
- - block_visibility_groups
- theme:
- - agarica
-_core:
- default_config_hash: Ek5XM_EH35AD3Efjo15F1f5LaMJbgdTx_plu8K_9vok
-id: agarica_home_page_custom_1
-theme: agarica
-region: content_bottom
-weight: -11
-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
- 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.agarica_home_page_custom_2.yml b/config/block.block.agarica_home_page_custom_2.yml
deleted file mode 100644
index d81358c..0000000
--- a/config/block.block.agarica_home_page_custom_2.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: 9d41ad55-46a7-43b8-877b-5219eeb54bac
-langcode: en
-status: false
-dependencies:
- content:
- - 'block_content:slide:8f30e41d-3693-43bc-a281-9b11e29df3b8'
- module:
- - block_content
- - block_visibility_groups
- theme:
- - agarica
-_core:
- default_config_hash: adph6pOIE75AsoO7sgVHgzVJxz9l12gXYWp4VRpoMiA
-id: agarica_home_page_custom_2
-theme: agarica
-region: content_bottom
-weight: -10
-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
- 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.agarica_home_page_custom_3.yml b/config/block.block.agarica_home_page_custom_3.yml
deleted file mode 100644
index aacd0b7..0000000
--- a/config/block.block.agarica_home_page_custom_3.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: d8665d59-0f09-4004-b54b-91be96de670d
-langcode: en
-status: false
-dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- content:
- - 'block_content:slide:086d20ee-9e48-4ee3-81ae-263f7dc279ba'
- module:
- - block_content
- - block_visibility_groups
- theme:
- - agarica
-_core:
- default_config_hash: 0yPCPcBUHpioxWsX_hl1NEw4yz9ypWGort601TUljoY
-id: agarica_home_page_custom_3
-theme: agarica
-region: content_bottom
-weight: -8
-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
- status: true
- info: ''
- view_mode: columnar
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: home_page
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.exposedformsearchpage_1.yml b/config/block.block.exposedformsearchpage_1.yml
deleted file mode 100644
index 456e45e..0000000
--- a/config/block.block.exposedformsearchpage_1.yml
+++ /dev/null
@@ -1,29 +0,0 @@
-uuid: 22c9a786-73a7-4ea2-bec8-d47a26b454f7
-langcode: en
-status: true
-dependencies:
- config:
- - views.view.search
- module:
- - block_visibility_groups
- - views
- theme:
- - agarica
-id: exposedformsearchpage_1
-theme: agarica
-region: primary_menu
-weight: -8
-provider: null
-plugin: 'views_exposed_filter_block:search-page_1'
-settings:
- id: 'views_exposed_filter_block:search-page_1'
- label: ''
- label_display: '0'
- provider: views
- views_label: ''
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
diff --git a/config/block.block.exposedformsearchpage_1_2.yml b/config/block.block.exposedformsearchpage_1_2.yml
deleted file mode 100644
index 12ba201..0000000
--- a/config/block.block.exposedformsearchpage_1_2.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-uuid: 5a4e2d89-ac8b-4692-ba63-5ec690cf1a59
-langcode: en
-status: true
-dependencies:
- config:
- - views.view.search
- module:
- - block_visibility_groups
- - system
- - views
- theme:
- - agarica
-id: exposedformsearchpage_1_2
-theme: agarica
-region: header_search
-weight: 0
-provider: null
-plugin: 'views_exposed_filter_block:search-page_1'
-settings:
- id: 'views_exposed_filter_block:search-page_1'
- label: ''
- label_display: visible
- provider: views
- views_label: ''
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
- request_path:
- id: request_path
- negate: false
- context_mapping: { }
- pages: |
- /search
- /search/*
diff --git a/config/block.block.footer_about_us.yml b/config/block.block.footer_about_us.yml
deleted file mode 100644
index 43fd62f..0000000
--- a/config/block.block.footer_about_us.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-uuid: a9f2c8b6-96c6-418c-8d5e-463d251739b0
-langcode: en
-status: true
-dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - menu_block
- theme:
- - octavia
-_core:
- default_config_hash: eJrCgI_sSLwD4b-lgt-hLYWyH5R6m_ou6ZSzZZbv3Hg
-id: footer_about_us
-theme: octavia
-region: footer_menus
-weight: -20
-provider: null
-plugin: 'menu_block:main'
-settings:
- id: 'menu_block:main'
- label: 'About Us'
- label_display: visible
- provider: menu_block
- follow: false
- follow_parent: child
- label_link: false
- label_type: block
- level: 1
- depth: 0
- expand_all_items: false
- 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: ''
diff --git a/config/block.block.footer_get_involved.yml b/config/block.block.footer_get_involved.yml
deleted file mode 100644
index 52c12ae..0000000
--- a/config/block.block.footer_get_involved.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-uuid: a57e43df-eacf-4a80-8cce-ebc8fcd93a7d
-langcode: en
-status: true
-dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - menu_block
- theme:
- - octavia
-_core:
- default_config_hash: y7D1_-5WE5uR9bFhOPE7wnF-ZHNeK8JhVe8-PBa03e8
-id: footer_get_involved
-theme: octavia
-region: footer_menus
-weight: -18
-provider: null
-plugin: 'menu_block:main'
-settings:
- id: 'menu_block:main'
- label: 'Get Involved'
- label_display: visible
- provider: menu_block
- follow: false
- follow_parent: child
- label_link: false
- label_type: block
- level: 1
- depth: 0
- expand_all_items: false
- 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: ''
diff --git a/config/block.block.footer_our_work.yml b/config/block.block.footer_our_work.yml
deleted file mode 100644
index f075147..0000000
--- a/config/block.block.footer_our_work.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-uuid: ea6024cb-e5ef-47d2-9f89-d3e5f05087c1
-langcode: en
-status: true
-dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - menu_block
- theme:
- - octavia
-_core:
- default_config_hash: Uvp7dFZ5RwRIOWf2HBXzYRqoV5UI-6nx5zqh6CmhikI
-id: footer_our_work
-theme: octavia
-region: footer_menus
-weight: -19
-provider: null
-plugin: 'menu_block:main'
-settings:
- id: 'menu_block:main'
- label: 'Our Work'
- label_display: visible
- provider: menu_block
- follow: false
- follow_parent: child
- label_link: false
- label_type: block
- level: 1
- depth: 0
- expand_all_items: false
- 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: ''
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.hireagaric.yml b/config/block.block.hireagaric.yml
deleted file mode 100644
index e5529eb..0000000
--- a/config/block.block.hireagaric.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-uuid: 111507ad-206f-4d2f-864e-24b12ebac1dd
-langcode: en
-status: false
-dependencies:
- content:
- - 'block_content:basic:134165a3-b38a-41c1-92aa-984e3e6d3435'
- module:
- - block_content
- - block_visibility_groups
- - ctools
- - node
- theme:
- - agarica
-id: hireagaric
-theme: agarica
-region: content_bottom
-weight: -9
-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
- status: true
- info: ''
- view_mode: full
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
- 'entity_bundle:node':
- id: 'entity_bundle:node'
- negate: false
- context_mapping:
- node: '@node.node_route_context:node'
- bundles:
- blog: blog
diff --git a/config/block.block.home_page_custom_2.yml b/config/block.block.home_page_custom_2.yml
deleted file mode 100644
index 238fa81..0000000
--- a/config/block.block.home_page_custom_2.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-uuid: 218d7a62-1e87-41c4-a0d9-d1be728bf9a5
-langcode: en
-status: true
-dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- module:
- - block_visibility_groups
- theme:
- - octavia
-_core:
- default_config_hash: adph6pOIE75AsoO7sgVHgzVJxz9l12gXYWp4VRpoMiA
-id: home_page_custom_2
-theme: octavia
-region: content_bottom
-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
- status: true
- info: ''
- view_mode: columnar
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: home_page
diff --git a/config/block.block.home_page_custom_3.yml b/config/block.block.home_page_custom_3.yml
deleted file mode 100644
index 443e406..0000000
--- a/config/block.block.home_page_custom_3.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-uuid: df2750bb-efa7-4d95-8bea-7478f6b5cede
-langcode: en
-status: true
-dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- module:
- - block_visibility_groups
- theme:
- - octavia
-_core:
- default_config_hash: 0yPCPcBUHpioxWsX_hl1NEw4yz9ypWGort601TUljoY
-id: home_page_custom_3
-theme: octavia
-region: content_bottom
-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
- status: true
- info: ''
- view_mode: columnar
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: home_page
diff --git a/config/block.block.languageswitcher.yml b/config/block.block.languageswitcher.yml
deleted file mode 100644
index 30d6989..0000000
--- a/config/block.block.languageswitcher.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: cddd6272-7a22-4110-862c-338686afc1c1
-langcode: en
-status: true
-dependencies:
- module:
- - block_visibility_groups
- - dropdown_language
- theme:
- - agarica
-id: languageswitcher
-theme: agarica
-region: footer
-weight: 0
-provider: null
-plugin: 'dropdown_language:language_interface'
-settings:
- id: 'dropdown_language:language_interface'
- label: 'Language:'
- label_display: visible
- provider: dropdown_language
- labels: { }
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
diff --git a/config/block.block.mainnavigation.yml b/config/block.block.mainnavigation.yml
deleted file mode 100644
index 161a376..0000000
--- a/config/block.block.mainnavigation.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: add6196e-3612-4143-a31f-3ad79d359c0d
-langcode: en
-status: true
-dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - system
- theme:
- - agarica
-id: mainnavigation
-theme: agarica
-region: secondary_menu
-weight: 0
-provider: null
-plugin: 'system_menu_block:main'
-settings:
- id: 'system_menu_block:main'
- label: 'Second-level main navigation'
- label_display: '0'
- provider: system
- level: 2
- depth: 1
- expand_all_items: false
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
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.block.userlogin.yml b/config/block.block.userlogin.yml
deleted file mode 100644
index 75a2f09..0000000
--- a/config/block.block.userlogin.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-uuid: bace00b3-a26c-4ee1-9aea-8e59f77b6a86
-langcode: en
-status: false
-dependencies:
- module:
- - block_visibility_groups
- - http_client_error_status
- - user
- theme:
- - agarica
-id: userlogin
-theme: agarica
-region: bottom
-weight: -11
-provider: null
-plugin: user_login_block
-settings:
- id: user_login_block
- label: 'User login'
- label_display: visible
- provider: user
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
- http_client_error_status:
- id: http_client_error_status
- negate: false
- context_mapping: { }
- request_401: false
- request_403: true
- request_404: false
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/coffee.configuration.yml b/config/coffee.configuration.yml
deleted file mode 100644
index 545da1d..0000000
--- a/config/coffee.configuration.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-_core:
- default_config_hash: cOqVnz_7pbb_0R31nQwih4Gh8XkmIbyFagFp6uUPaOc
-coffee_menus:
- admin: admin
- footer: footer
- main: main
- tools: tools
- account: account
-max_results: 12
-keycodes:
- - 206
- - 75
- - 71
- - 103
diff --git a/config/comment_notify.settings.yml b/config/comment_notify.settings.yml
deleted file mode 100644
index bca1d3b..0000000
--- a/config/comment_notify.settings.yml
+++ /dev/null
@@ -1,59 +0,0 @@
-_core:
- default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik
-bundle_types:
- - node--blog--comment
-available_alerts:
- 1: true
- 2: false
-enable_default:
- watcher: '1'
- entity_author: true
-mail_templates:
- watcher:
- node:
- subject: '[site:name] :: new comment on [node:title]'
- body: |
- Hi [comment-subscribed:author],
-
- [comment:author] has commented on: "[node:title]"
-
- ----
- [comment:title]
- [comment:body]
- ----
-
- You can view the comment at the following url
- [comment:url]
-
- You can stop receiving emails when someone replies to this post,
- by going to [comment-subscribed:unsubscribe-url]
-
- You can set up auto-following feature for all future posts
- by creating your own user with a few clicks here [site:login-url]
-
- -- [site:name] team
- [site:url]
- entity_author:
- node:
- subject: '[site:name] :: new comment for your post'
- body: |
- Hi [node:author],
-
- You have received a comment on: "[node:title]"
-
- ----
- [comment:title]
- [comment:body]
- ----
-
- You can view the comment at the following url
- [comment:url]
-
- You will receive emails like this for all replies to your posts. You can
- disable this by logging in and changing the settings on your user account at
- [node:author:edit-url].
-
- -- [site:name] team
- [site:url]
-node_types:
- - blog
diff --git a/config/config_perms.custom_perms_entity.edit_contact_form.yml b/config/config_perms.custom_perms_entity.edit_contact_form.yml
deleted file mode 100644
index cec3b04..0000000
--- a/config/config_perms.custom_perms_entity.edit_contact_form.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7af9d194-e680-430f-8fef-6c0d44081a23
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: eJWhGhpRfmEhpk2aZAe8424DHGi6A4onjpxfouE4eWk
-id: edit_contact_form
-label: 'Edit contact form'
-route: |
- entity.contact_form.collection
- entity.contact_form.edit_form
diff --git a/config/config_snapshot.snapshot.config_sync.module.address.yml b/config/config_snapshot.snapshot.config_sync.module.address.yml
deleted file mode 100644
index 02e7db8..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.address.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: f2d3b10a-3d9d-4110-80ff-709dc584607d
-langcode: en
-status: true
-dependencies:
- module:
- - address
-id: config_sync.module.address
-snapshotSet: config_sync
-extensionType: module
-extensionName: address
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml b/config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml
deleted file mode 100644
index e5ca04e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c60c1135-36ad-4172-b131-6d466198112d
-langcode: en
-status: true
-dependencies:
- module:
- - admin_toolbar
-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
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.allowed_formats.yml b/config/config_snapshot.snapshot.config_sync.module.allowed_formats.yml
deleted file mode 100644
index fae8cfb..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.allowed_formats.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 4792cbf4-4703-4c85-9f8d-db6f4e0d2b99
-langcode: en
-status: true
-dependencies:
- module:
- - allowed_formats
-id: config_sync.module.allowed_formats
-snapshotSet: config_sync
-extensionType: module
-extensionName: allowed_formats
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.autosave_form.yml b/config/config_snapshot.snapshot.config_sync.module.autosave_form.yml
deleted file mode 100644
index 8758179..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.autosave_form.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-uuid: ff423420-cdba-4fc4-93d5-a4ca0402f287
-langcode: en
-status: true
-dependencies:
- module:
- - autosave_form
-id: config_sync.module.autosave_form
-snapshotSet: config_sync
-extensionType: module
-extensionName: autosave_form
-items:
- -
- collection: ''
- name: autosave_form.messages
- data:
- entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.'
- _core:
- default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg
- -
- collection: ''
- name: autosave_form.settings
- data:
- interval: 60000
- active_on:
- content_entity_forms: true
- config_entity_forms: false
- notification:
- active: true
- message: 'Saving draft...'
- delay: 1000
- allowed_content_entity_types: { }
- _core:
- default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0
diff --git a/config/config_snapshot.snapshot.config_sync.module.block.yml b/config/config_snapshot.snapshot.config_sync.module.block.yml
deleted file mode 100644
index c2c52cf..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.block.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 638eac71-d7fa-44c6-85a0-27039ee251cc
-langcode: en
-status: true
-dependencies:
- module:
- - block
-id: config_sync.module.block
-snapshotSet: config_sync
-extensionType: module
-extensionName: block
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.block_content.yml b/config/config_snapshot.snapshot.config_sync.module.block_content.yml
deleted file mode 100644
index c905fdb..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.block_content.yml
+++ /dev/null
@@ -1,585 +0,0 @@
-uuid: 226336e1-9074-444b-9a7f-8cd72a53fd34
-langcode: en
-status: true
-dependencies:
- module:
- - block_content
-id: config_sync.module.block_content
-snapshotSet: config_sync
-extensionType: module
-extensionName: block_content
-items:
- -
- collection: ''
- name: core.entity_view_mode.block_content.full
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - block_content
- id: block_content.full
- label: Full
- targetEntityType: block_content
- cache: true
- -
- collection: ''
- name: field.storage.block_content.body
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - block_content
- - text
- id: block_content.body
- field_name: body
- entity_type: block_content
- type: text_with_summary
- settings: { }
- module: text
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: true
- custom_storage: false
- -
- collection: ''
- name: views.view.block_content
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - block_content
- - user
- id: block_content
- label: 'Custom block library'
- module: views
- description: 'Find and manage custom blocks.'
- tag: default
- base_table: block_content_field_data
- base_field: id
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'administer blocks'
- cache:
- type: tag
- options: { }
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: mini
- options:
- items_per_page: 50
- offset: 0
- id: 0
- total_pages: null
- tags:
- previous: '‹ Previous'
- next: 'Next ›'
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- style:
- type: table
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- override: true
- sticky: false
- caption: ''
- summary: ''
- description: ''
- columns:
- info: info
- type: type
- changed: changed
- operations: operations
- info:
- info:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- type:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- changed:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- operations:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- default: changed
- empty_table: true
- row:
- type: fields
- fields:
- info:
- id: info
- table: block_content_field_data
- field: info
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Block description'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: string
- settings:
- link_to_entity: true
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: null
- entity_field: info
- plugin_id: field
- type:
- id: type
- table: block_content_field_data
- field: type
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Block type'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: target_id
- type: entity_reference_label
- settings:
- link: false
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: block_content
- entity_field: type
- plugin_id: field
- changed:
- id: changed
- table: block_content_field_data
- field: changed
- relationship: none
- group_type: group
- admin_label: ''
- label: Updated
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- entity_type: block_content
- entity_field: changed
- type: timestamp
- settings:
- date_format: short
- custom_date_format: ''
- timezone: ''
- plugin_id: field
- operations:
- id: operations
- table: block_content
- field: operations
- relationship: none
- group_type: group
- admin_label: ''
- label: Operations
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- destination: true
- entity_type: block_content
- plugin_id: entity_operations
- filters:
- info:
- id: info
- table: block_content_field_data
- field: info
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: info_op
- label: 'Block description'
- description: ''
- use_operator: false
- operator: info_op
- identifier: info
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: block_content
- entity_field: info
- plugin_id: string
- type:
- id: type
- table: block_content_field_data
- field: type
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: type_op
- label: 'Block type'
- description: ''
- use_operator: false
- operator: type_op
- identifier: type
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: block_content
- entity_field: type
- plugin_id: bundle
- reusable:
- id: reusable
- table: block_content_field_data
- field: reusable
- 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
- 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: block_content
- entity_field: reusable
- plugin_id: boolean
- sorts: { }
- title: 'Custom block library'
- header: { }
- footer: { }
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- relationship: none
- group_type: group
- admin_label: ''
- empty: true
- tokenize: false
- content: 'There are no custom blocks available.'
- plugin_id: text_custom
- block_content_listing_empty:
- admin_label: ''
- empty: true
- field: block_content_listing_empty
- group_type: group
- id: block_content_listing_empty
- label: ''
- relationship: none
- table: block_content
- plugin_id: block_content_listing_empty
- entity_type: block_content
- relationships: { }
- arguments: { }
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- max-age: 0
- tags: { }
- page_1:
- display_plugin: page
- id: page_1
- display_title: Page
- position: 1
- display_options:
- display_extenders: { }
- path: admin/structure/block/block-content
- menu:
- type: tab
- title: 'Custom block library'
- description: ''
- parent: block.admin_display
- weight: 0
- context: '0'
- menu_name: admin
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- max-age: 0
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml b/config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml
deleted file mode 100644
index bc8a47a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 5dcb93b7-e298-456c-b5e4-acc4d6aaab35
-langcode: en
-status: true
-dependencies:
- module:
- - block_visibility_groups
-id: config_sync.module.block_visibility_groups
-snapshotSet: config_sync
-extensionType: module
-extensionName: block_visibility_groups
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.breakpoint.yml b/config/config_snapshot.snapshot.config_sync.module.breakpoint.yml
deleted file mode 100644
index 3820b03..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.breakpoint.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ab3993b6-4522-47d8-a076-4c3cbbf9bba0
-langcode: en
-status: true
-dependencies:
- module:
- - breakpoint
-id: config_sync.module.breakpoint
-snapshotSet: config_sync
-extensionType: module
-extensionName: breakpoint
-items: { }
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.ckeditor.yml b/config/config_snapshot.snapshot.config_sync.module.ckeditor.yml
deleted file mode 100644
index 6b33df1..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ckeditor.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 75b55c24-ec40-4588-814b-80d0aa1c2b5d
-langcode: en
-status: true
-dependencies:
- module:
- - ckeditor
-id: config_sync.module.ckeditor
-snapshotSet: config_sync
-extensionType: module
-extensionName: ckeditor
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml b/config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml
deleted file mode 100644
index 9b24822..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 14d470d1-757c-4c60-943b-0710ed82e973
-langcode: en
-status: true
-dependencies:
- module:
- - ckeditor_markdown
-id: config_sync.module.ckeditor_markdown
-snapshotSet: config_sync
-extensionType: module
-extensionName: ckeditor_markdown
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.coffee.yml b/config/config_snapshot.snapshot.config_sync.module.coffee.yml
deleted file mode 100644
index ad5cf1b..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.coffee.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: 7d404822-856c-4ab8-bf8c-2923efa15a5a
-langcode: en
-status: true
-dependencies:
- module:
- - coffee
-id: config_sync.module.coffee
-snapshotSet: config_sync
-extensionType: module
-extensionName: coffee
-items:
- -
- collection: ''
- name: coffee.configuration
- data:
- coffee_menus:
- admin: admin
- max_results: 7
- keycodes:
- - 68
- - 100
- - 75
- - 71
- - 103
diff --git a/config/config_snapshot.snapshot.config_sync.module.comment.yml b/config/config_snapshot.snapshot.config_sync.module.comment.yml
deleted file mode 100644
index c4665cb..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.comment.yml
+++ /dev/null
@@ -1,1949 +0,0 @@
-uuid: 24e02552-5b51-4ead-9c72-b4de0f311d27
-langcode: en
-status: true
-dependencies:
- module:
- - comment
-id: config_sync.module.comment
-snapshotSet: config_sync
-extensionType: module
-extensionName: comment
-items:
- -
- collection: ''
- name: core.entity_view_mode.comment.full
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - comment
- id: comment.full
- label: 'Full comment'
- targetEntityType: comment
- cache: true
- -
- collection: ''
- name: field.storage.comment.comment_body
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- - text
- id: comment.comment_body
- field_name: comment_body
- entity_type: comment
- type: text_long
- settings: { }
- module: text
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: true
- custom_storage: false
- -
- collection: ''
- name: system.action.comment_delete_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- id: comment_delete_action
- label: 'Delete comment'
- type: comment
- plugin: 'entity:delete_action:comment'
- configuration: { }
- -
- collection: ''
- name: system.action.comment_publish_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- id: comment_publish_action
- label: 'Publish comment'
- type: comment
- plugin: 'entity:publish_action:comment'
- configuration: { }
- -
- collection: ''
- name: system.action.comment_save_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- id: comment_save_action
- label: 'Save comment'
- type: comment
- plugin: 'entity:save_action:comment'
- configuration: { }
- -
- collection: ''
- name: system.action.comment_unpublish_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- id: comment_unpublish_action
- label: 'Unpublish comment'
- type: comment
- plugin: 'entity:unpublish_action:comment'
- configuration: { }
- -
- collection: ''
- name: views.view.comment
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- - user
- id: comment
- label: Comments
- module: comment
- description: 'Find and manage comments.'
- tag: default
- base_table: comment_field_data
- base_field: cid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'administer comments'
- cache:
- type: tag
- options: { }
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: full
- options:
- items_per_page: 50
- offset: 0
- id: 0
- total_pages: null
- tags:
- previous: '‹ previous'
- next: 'next ›'
- first: '« first'
- last: 'last »'
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- quantity: 9
- style:
- type: table
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- override: true
- sticky: true
- caption: ''
- summary: ''
- description: ''
- columns:
- comment_bulk_form: comment_bulk_form
- subject: subject
- uid: uid
- entity_id: entity_id
- changed: changed
- operations: operations
- info:
- comment_bulk_form:
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- subject:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- uid:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- entity_id:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- changed:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- operations:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- default: changed
- empty_table: true
- row:
- type: fields
- fields:
- comment_bulk_form:
- id: comment_bulk_form
- table: comment
- field: comment_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: include
- selected_actions:
- - comment_delete_action
- - comment_unpublish_action
- plugin_id: comment_bulk_form
- entity_type: comment
- subject:
- id: subject
- table: comment_field_data
- field: subject
- relationship: none
- group_type: group
- admin_label: ''
- label: Subject
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: comment_permalink
- settings:
- link_to_entity: true
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: subject
- plugin_id: field
- uid:
- id: uid
- table: comment_field_data
- field: uid
- 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: target_id
- type: entity_reference_label
- settings:
- link: true
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: uid
- plugin_id: field
- name:
- id: name
- table: comment_field_data
- field: name
- relationship: none
- group_type: group
- admin_label: ''
- label: Author
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: '{{ uid }}'
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: comment_username
- settings: { }
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: name
- plugin_id: field
- entity_id:
- id: entity_id
- table: comment_field_data
- field: entity_id
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Posted in'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: target_id
- type: entity_reference_label
- settings:
- link: true
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: entity_id
- plugin_id: commented_entity
- changed:
- id: changed
- table: comment_field_data
- field: changed
- relationship: none
- group_type: group
- admin_label: ''
- label: Updated
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: timestamp
- settings:
- date_format: short
- custom_date_format: ''
- timezone: ''
- 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: comment
- entity_field: changed
- plugin_id: field
- operations:
- id: operations
- table: comment
- field: operations
- relationship: none
- group_type: group
- admin_label: ''
- label: Operations
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- destination: true
- entity_type: comment
- plugin_id: entity_operations
- name_1:
- id: name_1
- table: users_field_data
- field: name
- relationship: uid
- 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: user_name
- settings:
- link_to_entity: true
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: user
- entity_field: name
- plugin_id: field
- filters:
- status:
- id: status
- table: comment_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
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: comment
- entity_field: status
- plugin_id: boolean
- subject:
- id: subject
- table: comment_field_data
- field: subject
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: subject_op
- label: Subject
- description: ''
- use_operator: false
- operator: subject_op
- identifier: subject
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: comment
- entity_field: subject
- plugin_id: string
- combine:
- id: combine
- table: views
- field: combine
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: combine_op
- label: 'Author name'
- description: ''
- use_operator: false
- operator: combine_op
- identifier: author_name
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- fields:
- name: name
- name_1: name_1
- plugin_id: combine
- langcode:
- id: langcode
- table: comment_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: langcode_op
- label: Language
- description: ''
- use_operator: false
- operator: langcode_op
- identifier: langcode
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: comment
- entity_field: langcode
- plugin_id: language
- sorts:
- changed:
- id: changed
- table: comment_field_data
- field: changed
- relationship: none
- group_type: group
- admin_label: ''
- order: DESC
- exposed: false
- expose:
- label: ''
- granularity: second
- entity_type: comment
- entity_field: changed
- plugin_id: date
- title: Comments
- header: { }
- footer: { }
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- relationship: none
- group_type: group
- admin_label: ''
- empty: true
- tokenize: false
- content: 'No comments available.'
- plugin_id: text_custom
- arguments: { }
- display_extenders: { }
- use_more: false
- use_more_always: true
- use_more_text: more
- use_ajax: false
- hide_attachment_summary: false
- show_admin_links: true
- group_by: false
- css_class: ''
- relationships:
- uid:
- id: uid
- table: comment_field_data
- field: uid
- relationship: none
- group_type: group
- admin_label: author
- required: false
- entity_type: comment
- entity_field: uid
- plugin_id: standard
- filter_groups:
- operator: AND
- groups:
- 1: AND
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- cacheable: false
- max-age: 0
- tags: { }
- page_published:
- display_plugin: page
- id: page_published
- display_title: 'Published comments'
- position: 1
- display_options:
- path: admin/content/comment
- menu:
- type: tab
- title: Comments
- description: 'Comments published'
- parent: ''
- weight: 0
- context: '0'
- menu_name: admin
- display_description: 'The approved comments listing.'
- display_extenders: { }
- exposed_block: false
- display_comment: ''
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- cacheable: false
- max-age: 0
- tags: { }
- page_unapproved:
- display_plugin: page
- id: page_unapproved
- display_title: 'Unapproved comments'
- position: 2
- display_options:
- path: admin/content/comment/approval
- menu:
- type: tab
- title: 'Unapproved comments'
- description: 'Comments unapproved'
- parent: ''
- weight: 1
- context: '0'
- menu_name: admin
- display_description: 'The unapproved comments listing.'
- filters:
- status:
- id: status
- table: comment_field_data
- field: status
- relationship: none
- group_type: group
- admin_label: ''
- operator: '='
- value: '0'
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: comment
- entity_field: status
- plugin_id: boolean
- subject:
- id: subject
- table: comment_field_data
- field: subject
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: subject_op
- label: Subject
- description: ''
- use_operator: false
- operator: subject_op
- identifier: subject
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: comment
- entity_field: subject
- plugin_id: string
- combine:
- id: combine
- table: views
- field: combine
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: combine_op
- label: 'Author Name'
- description: ''
- use_operator: false
- operator: combine_op
- identifier: author_name
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- fields:
- name: name
- name_1: name_1
- plugin_id: combine
- langcode:
- id: langcode
- table: comment_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: langcode_op
- label: Language
- description: ''
- use_operator: false
- operator: langcode_op
- identifier: langcode
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: comment
- entity_field: langcode
- plugin_id: language
- defaults:
- filters: false
- filter_groups: false
- fields: false
- display_extenders: { }
- fields:
- comment_bulk_form:
- id: comment_bulk_form
- table: comment
- field: comment_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: include
- selected_actions:
- - comment_delete_action
- - comment_publish_action
- plugin_id: comment_bulk_form
- entity_type: comment
- subject:
- id: subject
- table: comment_field_data
- field: subject
- relationship: none
- group_type: group
- admin_label: ''
- label: Subject
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: comment_permalink
- settings:
- link_to_entity: true
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: subject
- plugin_id: field
- uid:
- id: uid
- table: comment_field_data
- field: uid
- 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: target_id
- type: entity_reference_label
- settings:
- link: true
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: uid
- plugin_id: field
- name:
- id: name
- table: comment_field_data
- field: name
- relationship: none
- group_type: group
- admin_label: ''
- label: Author
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: '{{ uid }}'
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: comment_username
- settings: { }
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: name
- plugin_id: field
- entity_id:
- id: entity_id
- table: comment_field_data
- field: entity_id
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Posted in'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: target_id
- type: entity_reference_label
- settings:
- link: true
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: comment
- entity_field: entity_id
- plugin_id: commented_entity
- changed:
- id: changed
- table: comment_field_data
- field: changed
- relationship: none
- group_type: group
- admin_label: ''
- label: Updated
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: timestamp
- settings:
- date_format: short
- custom_date_format: ''
- timezone: ''
- 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: comment
- entity_field: changed
- plugin_id: field
- operations:
- id: operations
- table: comment
- field: operations
- relationship: none
- group_type: group
- admin_label: ''
- label: Operations
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- destination: true
- entity_type: comment
- plugin_id: entity_operations
- name_1:
- id: name_1
- table: users_field_data
- field: name
- relationship: uid
- 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: user_name
- 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: user
- entity_field: name
- plugin_id: field
- filter_groups:
- operator: AND
- groups:
- 1: AND
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- cacheable: false
- max-age: 0
- tags: { }
- -
- collection: ''
- name: views.view.comments_recent
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - comment
- - node
- - user
- id: comments_recent
- label: 'Recent comments'
- module: views
- description: 'Recent comments.'
- tag: default
- base_table: comment_field_data
- base_field: cid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'access comments'
- cache:
- type: tag
- query:
- type: views_query
- exposed_form:
- type: basic
- pager:
- type: some
- options:
- items_per_page: 10
- offset: 0
- style:
- type: html_list
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- type: ul
- wrapper_class: item-list
- class: ''
- row:
- type: fields
- options:
- default_field_elements: true
- hide_empty: false
- relationships:
- node:
- field: node
- id: node
- table: comment_field_data
- required: true
- plugin_id: standard
- fields:
- subject:
- id: subject
- table: comment_field_data
- field: subject
- relationship: none
- type: string
- settings:
- link_to_entity: true
- plugin_id: field
- group_type: group
- admin_label: ''
- 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: false
- ellipsis: false
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: false
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- entity_type: comment
- entity_field: subject
- changed:
- id: changed
- table: comment_field_data
- field: changed
- relationship: none
- plugin_id: field
- group_type: group
- admin_label: ''
- 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
- type: timestamp_ago
- settings:
- future_format: '@interval hence'
- past_format: '@interval ago'
- granularity: 2
- entity_type: comment
- entity_field: changed
- filters:
- status:
- value: '1'
- table: comment_field_data
- field: status
- id: status
- plugin_id: boolean
- expose:
- operator: ''
- group: 1
- entity_type: comment
- entity_field: status
- status_node:
- value: '1'
- table: node_field_data
- field: status
- relationship: node
- id: status_node
- plugin_id: boolean
- expose:
- operator: ''
- group: 1
- entity_type: node
- entity_field: status
- sorts:
- created:
- id: created
- table: comment_field_data
- field: created
- relationship: none
- group_type: group
- admin_label: ''
- order: DESC
- exposed: false
- expose:
- label: ''
- plugin_id: date
- entity_type: comment
- entity_field: created
- cid:
- id: cid
- table: comment_field_data
- field: cid
- relationship: none
- group_type: group
- admin_label: ''
- order: DESC
- exposed: false
- plugin_id: field
- entity_type: comment
- entity_field: cid
- title: 'Recent comments'
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- relationship: none
- group_type: group
- admin_label: ''
- label: ''
- empty: true
- content: 'No comments available.'
- tokenize: false
- plugin_id: text_custom
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user.permissions
- max-age: -1
- tags: { }
- block_1:
- display_plugin: block
- id: block_1
- display_title: Block
- position: 1
- display_options:
- block_description: 'Recent comments'
- block_category: 'Lists (Views)'
- allow:
- items_per_page: true
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user.permissions
- max-age: -1
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml
deleted file mode 100644
index 45c4679..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml
+++ /dev/null
@@ -1,68 +0,0 @@
-uuid: 49585043-4c03-4f31-a704-0cc843abf295
-langcode: en
-status: true
-dependencies:
- module:
- - comment_notify
-id: config_sync.module.comment_notify
-snapshotSet: config_sync
-extensionType: module
-extensionName: comment_notify
-items:
- -
- collection: ''
- name: comment_notify.settings
- data:
- node_types:
- - article
- available_alerts:
- 1: true
- 2: true
- enable_default:
- watcher: none
- entity_author: false
- mail_templates:
- watcher:
- 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/config_snapshot.snapshot.config_sync.module.components.yml
deleted file mode 100644
index da6396a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.components.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 2ff9ff01-8c4f-44e5-877f-2ce5d8fb4b14
-langcode: en
-status: true
-dependencies:
- module:
- - components
-id: config_sync.module.components
-snapshotSet: config_sync
-extensionType: module
-extensionName: components
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config.yml b/config/config_snapshot.snapshot.config_sync.module.config.yml
deleted file mode 100644
index d2958ee..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 207115dc-0704-49cf-8323-cf940c2d66f0
-langcode: en
-status: true
-dependencies:
- module:
- - config
-id: config_sync.module.config
-snapshotSet: config_sync
-extensionType: module
-extensionName: config
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_actions.yml b/config/config_snapshot.snapshot.config_sync.module.config_actions.yml
deleted file mode 100644
index 18b8e3b..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_actions.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: db70d72b-2e45-417f-b0dc-5c7993b5dd41
-langcode: en
-status: true
-dependencies:
- module:
- - config_actions
-id: config_sync.module.config_actions
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_actions
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml b/config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml
deleted file mode 100644
index 7a5f1bc..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: d494a9b0-664f-4a10-a207-f53bf487b356
-langcode: en
-status: true
-dependencies:
- module:
- - config_actions_provider
-id: config_sync.module.config_actions_provider
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_actions_provider
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_distro.yml b/config/config_snapshot.snapshot.config_sync.module.config_distro.yml
deleted file mode 100644
index 78141be..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_distro.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 01083f6e-7832-4556-8637-813c4f9af4b3
-langcode: en
-status: true
-dependencies:
- module:
- - config_distro
-id: config_sync.module.config_distro
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_distro
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_filter.yml b/config/config_snapshot.snapshot.config_sync.module.config_filter.yml
deleted file mode 100644
index 7f8fe79..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_filter.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 0792bac9-a05f-455f-8e0a-221afa3ad8ad
-langcode: en
-status: true
-dependencies:
- module:
- - config_filter
-id: config_sync.module.config_filter
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_filter
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_merge.yml b/config/config_snapshot.snapshot.config_sync.module.config_merge.yml
deleted file mode 100644
index 4a8da7c..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_merge.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: ab015901-6e37-4544-bd6f-7aa713246498
-langcode: en
-status: true
-dependencies:
- module:
- - config_merge
-id: config_sync.module.config_merge
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_merge
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml b/config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml
deleted file mode 100644
index d0ea90e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 68ffb490-df62-4c5d-b83c-b0ee14273e5d
-langcode: en
-status: true
-dependencies:
- module:
- - config_normalizer
-id: config_sync.module.config_normalizer
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_normalizer
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_provider.yml b/config/config_snapshot.snapshot.config_sync.module.config_provider.yml
deleted file mode 100644
index 9adac44..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_provider.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 33256af8-640d-4f12-bc79-bbf237043e4e
-langcode: en
-status: true
-dependencies:
- module:
- - config_provider
-id: config_sync.module.config_provider
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_provider
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml b/config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml
deleted file mode 100644
index dfd807a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: b1d14cb3-8e11-46e2-aa9a-cc802940147f
-langcode: en
-status: true
-dependencies: { }
-id: config_sync.module.config_snapshot
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_snapshot
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_sync.yml b/config/config_snapshot.snapshot.config_sync.module.config_sync.yml
deleted file mode 100644
index f6a6e0c..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_sync.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 40063b49-3a67-4379-b955-16bc1d5d40b4
-langcode: en
-status: true
-dependencies:
- module:
- - config_sync
-id: config_sync.module.config_sync
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_sync
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_translation.yml b/config/config_snapshot.snapshot.config_sync.module.config_translation.yml
deleted file mode 100644
index 9cf1688..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_translation.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 078b8e1c-6b7a-49d0-b298-e170939ca3f2
-langcode: en
-status: true
-dependencies:
- module:
- - config_translation
-id: config_sync.module.config_translation
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_translation
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.config_update.yml b/config/config_snapshot.snapshot.config_sync.module.config_update.yml
deleted file mode 100644
index 3d4d278..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.config_update.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: b95dbdea-0adb-46c1-bdf4-c4423c56ad87
-langcode: en
-status: true
-dependencies:
- module:
- - config_update
-id: config_sync.module.config_update
-snapshotSet: config_sync
-extensionType: module
-extensionName: config_update
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.content_translation.yml b/config/config_snapshot.snapshot.config_sync.module.content_translation.yml
deleted file mode 100644
index b0e1ec0..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.content_translation.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: a716cb81-aca5-4eac-9549-4e83b7780767
-langcode: en
-status: true
-dependencies:
- module:
- - content_translation
-id: config_sync.module.content_translation
-snapshotSet: config_sync
-extensionType: module
-extensionName: content_translation
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.contextual.yml b/config/config_snapshot.snapshot.config_sync.module.contextual.yml
deleted file mode 100644
index 260cf69..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.contextual.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 9b71b822-22f3-400c-b620-56c1175e2777
-langcode: en
-status: true
-dependencies:
- module:
- - contextual
-id: config_sync.module.contextual
-snapshotSet: config_sync
-extensionType: module
-extensionName: contextual
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.crop.yml b/config/config_snapshot.snapshot.config_sync.module.crop.yml
deleted file mode 100644
index c5aff16..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.crop.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: cf5f4889-9e96-4862-b88e-f7f56dc97134
-langcode: en
-status: true
-dependencies:
- module:
- - crop
-id: config_sync.module.crop
-snapshotSet: config_sync
-extensionType: module
-extensionName: crop
-items:
- -
- collection: ''
- name: crop.settings
- data:
- flush_derivative_images: true
diff --git a/config/config_snapshot.snapshot.config_sync.module.ctools.yml b/config/config_snapshot.snapshot.config_sync.module.ctools.yml
deleted file mode 100644
index 77b782a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ctools.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 4862bdfd-42c9-4774-81db-e5e66e9800d1
-langcode: en
-status: true
-dependencies:
- module:
- - ctools
-id: config_sync.module.ctools
-snapshotSet: config_sync
-extensionType: module
-extensionName: ctools
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.customerror.yml b/config/config_snapshot.snapshot.config_sync.module.customerror.yml
deleted file mode 100644
index 5498748..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.customerror.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: eb64c481-abe8-4cb0-8e47-39474c26e36e
-langcode: en
-status: true
-dependencies:
- module:
- - customerror
-id: config_sync.module.customerror
-snapshotSet: config_sync
-extensionType: module
-extensionName: customerror
-items:
- -
- collection: ''
- name: customerror.settings
- data:
- 403:
- title: 'Access denied'
- body: 'Access denied.'
- theme: ''
- 404:
- title: 'Requested page not found'
- body: 'Requested page not found.'
- theme: ''
- redirect: ''
diff --git a/config/config_snapshot.snapshot.config_sync.module.datetime.yml b/config/config_snapshot.snapshot.config_sync.module.datetime.yml
deleted file mode 100644
index 94f5503..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.datetime.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 014fff81-927e-4deb-b4e7-dee2e5e1a03b
-langcode: en
-status: true
-dependencies:
- module:
- - datetime
-id: config_sync.module.datetime
-snapshotSet: config_sync
-extensionType: module
-extensionName: datetime
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.datetime_range.yml b/config/config_snapshot.snapshot.config_sync.module.datetime_range.yml
deleted file mode 100644
index 405b78e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.datetime_range.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 5a83fb09-473c-41d3-bb72-eefa9fa2a109
-langcode: en
-status: true
-dependencies:
- module:
- - datetime_range
-id: config_sync.module.datetime_range
-snapshotSet: config_sync
-extensionType: module
-extensionName: datetime_range
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.diff.yml b/config/config_snapshot.snapshot.config_sync.module.diff.yml
deleted file mode 100644
index dfd946a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.diff.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-uuid: 6ae661c4-1aeb-4d9b-bd13-14f7ed744351
-langcode: en
-status: true
-dependencies:
- module:
- - diff
-id: config_sync.module.diff
-snapshotSet: config_sync
-extensionType: module
-extensionName: diff
-items:
- -
- collection: ''
- name: core.entity_view_mode.node.diff
- data:
- langcode: en
- id: node.diff
- label: 'Revision comparison'
- status: false
- cache: true
- targetEntityType: node
- dependencies:
- module:
- - node
- enforced:
- module:
- - node
- - diff
- -
- collection: ''
- name: diff.settings
- data:
- general_settings:
- radio_behavior: simple
- context_lines_leading: 1
- context_lines_trailing: 1
- revision_pager_limit: 50
- layout_plugins:
- visual_inline:
- enabled: false
- weight: 0
- split_fields:
- enabled: true
- weight: 1
- unified_fields:
- enabled: true
- weight: 2
- visual_inline_theme: default
diff --git a/config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml b/config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml
deleted file mode 100644
index 47f9bb1..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: 1a7bd96c-ab4a-4a86-a541-b9610491c292
-langcode: en
-status: true
-dependencies:
- module:
- - dropdown_language
-id: config_sync.module.dropdown_language
-snapshotSet: config_sync
-extensionType: module
-extensionName: dropdown_language
-items:
- -
- collection: ''
- name: dropdown_language.setting
- data:
- wrapper: true
- display_language_id: 0
- filter_untranslated: 0
- always_show_block: 0
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia.yml
deleted file mode 100644
index 5ea3363..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia.yml
+++ /dev/null
@@ -1,1171 +0,0 @@
-uuid: b6218c7d-ac5f-402d-b5e7-2e97e0f363e2
-langcode: en
-status: true
-dependencies:
- module:
- - drutopia
-id: config_sync.module.drutopia
-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
- data:
- interval: 10800
- -
- collection: ''
- name: block.block.article_topics_facet
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.article_listing
- - facets.facet.article_topics
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: article_topics_facet
- theme: octavia
- region: sidebar_first
- weight: 2
- provider: null
- plugin: 'facet_block:article_topics'
- settings:
- id: 'facet_block:article_topics'
- label: Topics
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: article_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.article_type_facet
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.article_listing
- - facets.facet.article_type
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: article_type_facet
- theme: octavia
- region: sidebar_first
- weight: 4
- provider: null
- plugin: 'facet_block:article_type'
- settings:
- id: 'facet_block:article_type'
- label: Type
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: article_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.blog_topics_facet
- data:
- uuid: 392eb691-4753-4737-af52-c4d417d12522
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.blog_listing
- - facets.facet.blog_topics
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: blog_topics_facet
- theme: octavia
- region: sidebar_first
- weight: 0
- provider: null
- plugin: 'facet_block:blog_topics'
- settings:
- id: 'facet_block:blog_topics'
- label: Topics
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: blog_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.content_search_form_global
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - views.view.search
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: content_search_form_global
- theme: octavia
- region: header_search
- weight: 0
- provider: null
- plugin: 'views_exposed_filter_block:search-page_1'
- settings:
- id: 'views_exposed_filter_block:search-page_1'
- label: ''
- provider: views
- label_display: '0'
- views_label: ''
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: ''
- context_mapping: { }
- -
- collection: ''
- name: block.block.content_search_form_search
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.search
- - views.view.search
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: content_search_form_search
- theme: octavia
- region: sidebar_first
- weight: 0
- provider: null
- plugin: 'views_exposed_filter_block:search-page_1'
- settings:
- id: 'views_exposed_filter_block:search-page_1'
- label: ''
- provider: views
- label_display: '0'
- views_label: ''
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: search
- context_mapping: { }
- -
- collection: ''
- name: block.block.event_topics_facet
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.event_listing
- - facets.facet.event_topics
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: event_topics_facet
- theme: octavia
- region: sidebar_first
- weight: 0
- provider: null
- plugin: 'facet_block:event_topics'
- settings:
- id: 'facet_block:event_topics'
- label: Topics
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: event_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.event_type_facet
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.event_listing
- - facets.facet.event_type
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: event_type_facet
- theme: octavia
- region: sidebar_first
- weight: 2
- provider: null
- plugin: 'facet_block:event_type'
- settings:
- id: 'facet_block:event_type'
- label: Type
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: event_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.footer_about_us
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - menu_block
- theme:
- - octavia
- id: footer_about_us
- theme: octavia
- region: footer_menus
- weight: -20
- provider: null
- plugin: 'menu_block:main'
- settings:
- id: 'menu_block:main'
- label: 'About Us'
- provider: menu_block
- label_display: visible
- level: 1
- depth: 0
- expand: 0
- parent: 'main:menu_link_content:33435872-bdbe-4833-9477-c057c2c33359'
- suggestion: main
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: ''
- context_mapping: { }
- -
- collection: ''
- name: block.block.footer_get_involved
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - menu_block
- theme:
- - octavia
- id: footer_get_involved
- theme: octavia
- region: footer_menus
- weight: -18
- provider: null
- plugin: 'menu_block:main'
- settings:
- id: 'menu_block:main'
- label: 'Get Involved'
- provider: menu_block
- label_display: visible
- level: 1
- depth: 0
- expand: 0
- parent: 'main:menu_link_content:f1eaa438-620d-418b-acd3-ad00dab9c635'
- suggestion: main
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: ''
- context_mapping: { }
- -
- collection: ''
- name: block.block.footer_our_work
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - system.menu.main
- module:
- - block_visibility_groups
- - menu_block
- theme:
- - octavia
- id: footer_our_work
- theme: octavia
- region: footer_menus
- weight: -19
- provider: null
- plugin: 'menu_block:main'
- settings:
- id: 'menu_block:main'
- label: 'Our Work'
- provider: menu_block
- label_display: visible
- level: 1
- depth: 0
- expand: 0
- parent: 'main:menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd'
- suggestion: main
- visibility:
- condition_group:
- id: condition_group
- 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
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - block_visibility_groups
- - ctools
- - group
- theme:
- - octavia
- 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'
- -
- collection: ''
- name: block.block.octavia_footer_menu
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - system.menu.footer
- module:
- - system
- theme:
- - octavia
- id: octavia_footer_menu
- theme: octavia
- region: footer
- weight: 0
- provider: null
- plugin: 'system_menu_block:footer'
- settings:
- id: 'system_menu_block:footer'
- label: 'Footer menu'
- provider: system
- label_display: '0'
- level: 1
- depth: 0
- visibility: { }
- -
- collection: ''
- name: block.block.octavia_local_actions
- data:
- langcode: en
- status: true
- dependencies:
- theme:
- - octavia
- id: octavia_local_actions
- theme: octavia
- region: content
- weight: -20
- provider: null
- plugin: local_actions_block
- settings:
- id: local_actions_block
- label: 'Primary admin actions'
- provider: core
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.octavia_powered_by_drutopia
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - drutopia
- theme:
- - octavia
- id: octavia_powered_by_drutopia
- theme: octavia
- region: footer
- weight: -7
- provider: null
- plugin: drutopia_powered_by_block
- settings:
- id: drutopia_powered_by_block
- label: 'Powered by Drutopia'
- provider: drutopia
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.resource_topics_facet
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.resource_listing
- - facets.facet.resource_topics
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: resource_topics_facet
- theme: octavia
- region: sidebar_first
- weight: 2
- provider: null
- plugin: 'facet_block:resource_topics'
- settings:
- id: 'facet_block:resource_topics'
- label: Topics
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: resource_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.resource_type_facet
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.resource_listing
- - facets.facet.resource_type
- module:
- - block_visibility_groups
- - facets
- theme:
- - octavia
- id: resource_type_facet
- theme: octavia
- region: sidebar_first
- weight: 4
- provider: null
- plugin: 'facet_block:resource_type'
- settings:
- id: 'facet_block:resource_type'
- label: Type
- provider: facets
- label_display: visible
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: resource_listing
- context_mapping: { }
- -
- collection: ''
- name: block.block.seven_breadcrumbs
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - system
- theme:
- - seven
- id: seven_breadcrumbs
- theme: seven
- region: breadcrumb
- weight: 0
- provider: null
- plugin: system_breadcrumb_block
- settings:
- id: system_breadcrumb_block
- label: Breadcrumbs
- provider: system
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.seven_content
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - system
- theme:
- - seven
- id: seven_content
- theme: seven
- region: content
- weight: 0
- provider: null
- plugin: system_main_block
- settings:
- id: system_main_block
- label: 'Main page content'
- provider: system
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.seven_help
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - help
- theme:
- - seven
- id: seven_help
- theme: seven
- region: help
- weight: 0
- provider: null
- plugin: help_block
- settings:
- id: help_block
- label: Help
- provider: help
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.seven_local_actions
- data:
- langcode: en
- status: true
- dependencies:
- theme:
- - seven
- id: seven_local_actions
- theme: seven
- region: content
- weight: -10
- provider: null
- plugin: local_actions_block
- settings:
- id: local_actions_block
- label: 'Primary admin actions'
- provider: core
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.seven_login
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- theme:
- - seven
- id: seven_login
- theme: seven
- region: content
- weight: 10
- provider: null
- plugin: user_login_block
- settings:
- id: user_login_block
- label: 'User login'
- provider: user
- label_display: visible
- visibility: { }
- -
- collection: ''
- name: block.block.seven_messages
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - system
- theme:
- - seven
- id: seven_messages
- theme: seven
- region: highlighted
- weight: 0
- provider: null
- plugin: system_messages_block
- settings:
- id: system_messages_block
- label: 'Status messages'
- provider: system
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.seven_page_title
- data:
- langcode: en
- status: true
- dependencies:
- theme:
- - seven
- id: seven_page_title
- theme: seven
- region: header
- weight: -30
- provider: null
- plugin: page_title_block
- settings:
- id: page_title_block
- label: 'Page title'
- provider: core
- label_display: '0'
- visibility: { }
- -
- collection: ''
- name: block.block.seven_primary_local_tasks
- data:
- langcode: en
- status: true
- dependencies:
- theme:
- - seven
- id: seven_primary_local_tasks
- theme: seven
- region: header
- weight: 0
- provider: null
- plugin: local_tasks_block
- settings:
- id: local_tasks_block
- label: 'Primary tabs'
- provider: core
- label_display: '0'
- primary: true
- secondary: false
- visibility: { }
- -
- collection: ''
- name: block.block.seven_secondary_local_tasks
- data:
- langcode: en
- status: true
- dependencies:
- theme:
- - seven
- id: seven_secondary_local_tasks
- theme: seven
- region: pre_content
- weight: 0
- provider: null
- plugin: local_tasks_block
- settings:
- id: local_tasks_block
- label: 'Secondary tabs'
- provider: core
- label_display: '0'
- primary: false
- secondary: true
- visibility: { }
- -
- collection: ''
- name: block.block.socialmedialinks
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - social_media_links
- theme:
- - octavia
- id: socialmedialinks
- theme: octavia
- region: footer
- weight: 0
- provider: null
- plugin: social_media_links_block
- settings:
- id: social_media_links_block
- label: 'Social Media Links'
- provider: social_media_links
- label_display: '0'
- platforms:
- behance:
- value: ''
- description: ''
- weight: '-10'
- bitbucket:
- value: ''
- description: ''
- weight: '-9'
- contact:
- value: ''
- description: ''
- weight: '-8'
- drupal:
- value: ''
- description: ''
- weight: '-7'
- email:
- value: ''
- description: ''
- weight: '-6'
- facebook:
- value: ''
- description: ''
- weight: '-5'
- github:
- value: ''
- description: ''
- weight: '-4'
- googleplus:
- value: ''
- description: ''
- weight: '-3'
- instagram:
- value: ''
- description: ''
- weight: '-2'
- linkedin:
- value: ''
- description: ''
- weight: '-1'
- pinterest:
- value: ''
- description: ''
- weight: '0'
- rss:
- value: ''
- description: ''
- weight: '1'
- slideshare:
- value: ''
- description: ''
- weight: '2'
- tumblr:
- value: ''
- description: ''
- weight: '3'
- twitter:
- value: ''
- description: ''
- weight: '4'
- vimeo:
- value: ''
- description: ''
- weight: '5'
- youtube:
- value: ''
- description: ''
- weight: '6'
- youtube_channel:
- value: ''
- description: ''
- weight: '7'
- appearance:
- orientation: h
- show_name: 0
- link_attributes:
- target: ''
- - '
'
- - '
'
- - '
'
- - '
'
- - '
'
- - '
'
- - '
'
- - '
'
- image_upload:
- status: true
- scheme: public
- directory: inline-images
- max_size: ''
- max_dimensions:
- width: 0
- height: 0
- _core:
- default_config_hash: lZlUTSJqWaN3iU0I0fhvQVgqf4ps9fxPPC-g_9aWIRc
- -
- collection: ''
- name: gin.settings
- data:
- 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: teal
- 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
- _core:
- default_config_hash: gXhtSEXk8gJnBxwC5Fq_RTrf9qbP8Zj_L3tAd0H_ma4
- -
- collection: ''
- name: node.settings
- data:
- _core:
- default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U
- use_admin_theme: true
- -
- collection: ''
- name: seven.settings
- data:
- third_party_settings:
- shortcut:
- module_link: true
- -
- collection: ''
- name: system.cron
- data:
- threshold:
- requirements_warning: 172800
- requirements_error: 1209600
- -
- collection: ''
- name: system.theme
- data:
- admin: seven
- default: octavia
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml
deleted file mode 100644
index 66dd56a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml
+++ /dev/null
@@ -1,2104 +0,0 @@
-uuid: 7d13aa6c-6bac-4674-875b-3ad75ddd91e8
-langcode: en
-status: true
-dependencies:
- module:
- - drutopia_case_study
-id: config_sync.module.drutopia_case_study
-snapshotSet: config_sync
-extensionType: module
-extensionName: drutopia_case_study
-items:
- -
- collection: ''
- name: core.entity_form_display.node.case_study.default
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - image.style.thumbnail
- - node.type.case_study
- module:
- - image
- - metatag
- - paragraphs
- - path
- - text
- id: node.case_study.default
- targetEntityType: node
- bundle: case_study
- mode: default
- content:
- created:
- type: datetime_timestamp
- weight: 12
- region: content
- settings: { }
- third_party_settings: { }
- field_body_paragraph:
- weight: 4
- settings:
- title: Paragraph
- title_plural: Paragraphs
- edit_mode: open
- add_mode: dropdown
- form_display_mode: default
- default_paragraph_type: ''
- third_party_settings: { }
- type: entity_reference_paragraphs
- region: content
- field_case_study_client:
- weight: 5
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: text_textfield
- region: content
- field_case_study_partners:
- weight: 11
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: text_textfield
- region: content
- field_case_study_status:
- weight: 7
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: string_textfield
- region: content
- field_case_study_subtitle:
- weight: 1
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: string_textfield
- region: content
- field_case_study_team:
- weight: 10
- settings:
- match_operator: CONTAINS
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: entity_reference_autocomplete
- region: content
- field_case_study_year:
- weight: 6
- settings:
- placeholder: ''
- third_party_settings: { }
- type: number
- region: content
- field_image:
- weight: 2
- settings:
- progress_indicator: throbber
- preview_image_style: thumbnail
- third_party_settings: { }
- type: image_image
- region: content
- field_license:
- weight: 18
- settings:
- match_operator: CONTAINS
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: entity_reference_autocomplete
- region: content
- field_meta_tags:
- weight: 17
- settings: { }
- third_party_settings: { }
- type: metatag_firehose
- region: content
- field_services:
- weight: 8
- settings:
- match_operator: CONTAINS
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: entity_reference_autocomplete
- region: content
- field_summary:
- weight: 3
- settings:
- rows: 5
- placeholder: ''
- third_party_settings: { }
- type: text_textarea
- region: content
- field_technologies:
- weight: 9
- settings:
- match_operator: CONTAINS
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: entity_reference_autocomplete
- region: content
- path:
- type: path
- weight: 15
- region: content
- settings: { }
- third_party_settings: { }
- promote:
- type: boolean_checkbox
- settings:
- display_label: true
- weight: 13
- region: content
- third_party_settings: { }
- status:
- type: boolean_checkbox
- settings:
- display_label: true
- weight: 16
- region: content
- third_party_settings: { }
- sticky:
- type: boolean_checkbox
- settings:
- display_label: true
- weight: 14
- region: content
- third_party_settings: { }
- title:
- type: string_textfield
- weight: 0
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- hidden:
- body: true
- uid: true
- -
- collection: ''
- name: core.entity_view_display.node.case_study.card
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - core.entity_view_mode.node.card
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - node.type.case_study
- - responsive_image.styles.wide
- module:
- - ds
- - field_group
- - responsive_image
- - user
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - field_image
- - group_card_content
- - node_title
- - field_case_study_subtitle
- fields:
- node_title:
- plugin_id: node_title
- weight: 2
- label: hidden
- formatter: default
- settings:
- link: true
- wrapper: h2
- class: title
- exclude_node_title: '1'
- field_group:
- group_card_content:
- children:
- - node_title
- - field_case_study_subtitle
- parent_name: ''
- weight: 1
- format_type: html_element
- format_settings:
- id: ''
- classes: ''
- element: div
- show_label: false
- label_element: h3
- attributes: ''
- effect: none
- speed: fast
- label: 'Card Content'
- region: content
- id: node.case_study.card
- targetEntityType: node
- bundle: case_study
- mode: card
- content:
- field_case_study_subtitle:
- type: string
- weight: 3
- region: content
- label: hidden
- settings:
- link_to_entity: false
- third_party_settings: { }
- field_image:
- type: responsive_image
- weight: 0
- region: content
- label: hidden
- settings:
- responsive_image_style: wide
- image_link: content
- third_party_settings: { }
- hidden:
- body: true
- field_body_paragraph: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_team: true
- field_case_study_year: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- links: true
- -
- collection: ''
- name: core.entity_view_display.node.case_study.default
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- module:
- - ds
- - text
- - user
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions: { }
- id: node.case_study.default
- targetEntityType: node
- bundle: case_study
- mode: default
- content:
- field_license:
- weight: 1
- label: above
- settings:
- link: true
- third_party_settings: { }
- type: entity_reference_label
- region: content
- field_summary:
- weight: 2
- label: above
- settings: { }
- third_party_settings: { }
- type: text_default
- region: content
- field_technologies:
- weight: 3
- label: above
- settings:
- link: true
- third_party_settings: { }
- type: entity_reference_label
- region: content
- hidden:
- body: true
- field_body_paragraph: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_subtitle: true
- field_case_study_team: true
- field_case_study_year: true
- field_image: true
- field_meta_tags: true
- field_services: true
- links: true
- -
- collection: ''
- name: core.entity_view_display.node.case_study.full
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - core.entity_view_mode.node.full
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - node.type.case_study
- - responsive_image.styles.wide
- module:
- - ds
- - paragraphs
- - responsive_image
- - text
- - user
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - field_image
- - node_title
- - field_case_study_subtitle
- - field_body_paragraph
- - field_case_study_client
- - field_case_study_year
- - field_case_study_status
- - field_case_study_technologies
- - field_services
- - field_case_study_team
- - field_case_study_partners
- - field_license
- fields:
- node_title:
- plugin_id: node_title
- weight: 1
- label: hidden
- formatter: default
- id: node.case_study.full
- targetEntityType: node
- bundle: case_study
- mode: full
- content:
- field_body_paragraph:
- type: paragraph_summary
- weight: 3
- region: content
- label: visually_hidden
- settings: { }
- third_party_settings: { }
- field_case_study_client:
- type: text_default
- weight: 4
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_case_study_partners:
- type: text_default
- weight: 10
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_case_study_status:
- type: string
- weight: 6
- region: content
- label: above
- settings:
- link_to_entity: false
- third_party_settings: { }
- field_case_study_subtitle:
- type: string
- weight: 2
- region: content
- label: visually_hidden
- settings:
- link_to_entity: false
- third_party_settings: { }
- field_case_study_team:
- type: entity_reference_entity_view
- weight: 9
- region: content
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings: { }
- field_case_study_year:
- type: number_integer
- weight: 5
- region: content
- label: above
- settings:
- thousand_separator: ''
- prefix_suffix: true
- third_party_settings: { }
- field_image:
- type: responsive_image
- weight: 0
- region: content
- label: visually_hidden
- settings:
- responsive_image_style: wide
- image_link: ''
- third_party_settings:
- ds:
- ft:
- id: default
- settings:
- lb: ''
- lb-col: false
- classes: { }
- field_license:
- type: entity_reference_entity_view
- weight: 11
- region: content
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings:
- ds:
- ft:
- id: default
- settings:
- lb: ''
- lb-col: false
- classes: { }
- field_services:
- type: entity_reference_entity_view
- weight: 8
- region: content
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings: { }
- hidden:
- body: true
- field_meta_tags: true
- field_summary: true
- links: true
- -
- collection: ''
- name: core.entity_view_display.node.case_study.search_index
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - core.entity_view_mode.node.search_index
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - node.type.case_study
- module:
- - ds
- - user
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions: { }
- id: node.case_study.search_index
- targetEntityType: node
- bundle: case_study
- mode: search_index
- content: { }
- hidden:
- body: true
- field_body_paragraph: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_subtitle: true
- field_case_study_team: true
- field_case_study_year: true
- field_image: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- links: true
- -
- collection: ''
- name: core.entity_view_display.node.case_study.small_card
- data:
- langcode: en
- status: false
- dependencies:
- config:
- - core.entity_view_mode.node.small_card
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - node.type.case_study
- module:
- - ds
- - metatag
- - paragraphs
- - responsive_image
- - text
- - user
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - body
- - field_services
- - field_body_paragraph
- - field_meta_tags
- - field_image
- - field_case_study_year
- - field_case_study_technologies
- - field_case_study_team
- - field_case_study_subtitle
- - field_case_study_status
- - field_case_study_partners
- - field_case_study_client
- id: node.case_study.small_card
- targetEntityType: node
- bundle: case_study
- mode: small_card
- content:
- body:
- type: text_default
- weight: 0
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_body_paragraph:
- type: paragraph_summary
- weight: 0
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_case_study_client:
- type: text_default
- weight: 0
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_case_study_partners:
- type: text_default
- weight: 0
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_case_study_status:
- type: string
- weight: 0
- region: content
- label: above
- settings:
- link_to_entity: false
- third_party_settings: { }
- field_case_study_subtitle:
- type: string
- weight: 0
- region: content
- label: above
- settings:
- link_to_entity: false
- third_party_settings: { }
- field_case_study_team:
- type: entity_reference_entity_view
- weight: 0
- region: content
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings: { }
- field_case_study_year:
- type: number_integer
- weight: 0
- region: content
- label: above
- settings:
- thousand_separator: ''
- prefix_suffix: true
- third_party_settings: { }
- field_image:
- type: responsive_image
- weight: 0
- region: content
- label: above
- settings:
- responsive_image_style: ''
- image_link: ''
- third_party_settings: { }
- field_meta_tags:
- type: metatag_empty_formatter
- weight: 0
- region: content
- label: above
- settings: { }
- third_party_settings: { }
- field_services:
- type: entity_reference_entity_view
- weight: 0
- region: content
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings: { }
- hidden:
- field_license: true
- field_summary: true
- links: true
- -
- collection: ''
- name: core.entity_view_display.node.case_study.teaser
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - core.entity_view_mode.node.teaser
- - field.field.node.case_study.body
- - node.type.case_study
- module:
- - text
- - user
- id: node.case_study.teaser
- targetEntityType: node
- bundle: case_study
- mode: teaser
- content:
- body:
- label: hidden
- type: text_summary_or_trimmed
- weight: 101
- settings:
- trim_length: 600
- third_party_settings: { }
- region: content
- links:
- weight: 100
- region: content
- hidden: { }
- -
- collection: ''
- name: core.entity_view_display.node.case_study.tile
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - core.entity_view_mode.node.tile
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - node.type.case_study
- - responsive_image.styles.wide
- module:
- - ds
- - responsive_image
- - user
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - field_image
- - node_title
- - field_case_study_subtitle
- fields:
- node_title:
- plugin_id: node_title
- weight: 1
- label: hidden
- formatter: default
- settings:
- link: true
- wrapper: h2
- class: title
- exclude_node_title: '1'
- id: node.case_study.tile
- targetEntityType: node
- bundle: case_study
- mode: tile
- content:
- field_case_study_subtitle:
- type: string
- weight: 2
- region: content
- label: hidden
- settings:
- link_to_entity: false
- third_party_settings:
- ds:
- ft:
- id: default
- settings:
- lb: ''
- classes:
- - subtitle
- lb-col: false
- field_image:
- type: responsive_image
- weight: 0
- region: content
- label: hidden
- settings:
- responsive_image_style: wide
- image_link: content
- third_party_settings:
- ds:
- ft:
- id: default
- settings:
- lb: ''
- classes:
- - card-image
- lb-col: false
- hidden:
- body: true
- field_body_paragraph: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_team: true
- field_case_study_year: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- links: true
- -
- collection: ''
- name: field.field.node.case_study.body
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.body
- - node.type.case_study
- module:
- - text
- id: node.case_study.body
- field_name: body
- entity_type: node
- bundle: case_study
- label: Body
- description: ''
- required: false
- translatable: true
- default_value: { }
- default_value_callback: ''
- settings:
- display_summary: true
- field_type: text_with_summary
- -
- collection: ''
- name: field.field.node.case_study.field_body_paragraph
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_body_paragraph
- - node.type.case_study
- - paragraphs.paragraphs_type.file
- - paragraphs.paragraphs_type.image
- - paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- - paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.update
- module:
- - entity_reference_revisions
- id: node.case_study.field_body_paragraph
- field_name: field_body_paragraph
- entity_type: node
- bundle: case_study
- label: 'Body paragraph'
- description: ''
- required: true
- translatable: true
- default_value: { }
- default_value_callback: ''
- settings:
- handler: 'default:paragraph'
- handler_settings:
- negate: 0
- target_bundles:
- file: file
- image: image
- slide: slide
- storyline_header: storyline_header
- storyline_item: storyline_item
- text: text
- update: update
- target_bundles_drag_drop:
- faq:
- weight: 9
- enabled: false
- file:
- enabled: true
- weight: 10
- image:
- enabled: true
- weight: 11
- slide:
- enabled: true
- weight: 12
- storyline_header:
- enabled: true
- weight: 13
- storyline_item:
- enabled: true
- weight: 14
- text:
- enabled: true
- weight: 15
- update:
- enabled: true
- weight: 16
- field_type: entity_reference_revisions
- -
- collection: ''
- name: field.field.node.case_study.field_case_study_client
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_client
- - node.type.case_study
- module:
- - text
- id: node.case_study.field_case_study_client
- field_name: field_case_study_client
- entity_type: node
- bundle: case_study
- label: Client
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: text
- -
- collection: ''
- name: field.field.node.case_study.field_case_study_partners
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_partners
- - node.type.case_study
- module:
- - text
- id: node.case_study.field_case_study_partners
- field_name: field_case_study_partners
- entity_type: node
- bundle: case_study
- label: Partners
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: text
- -
- collection: ''
- name: field.field.node.case_study.field_case_study_status
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_status
- - node.type.case_study
- id: node.case_study.field_case_study_status
- field_name: field_case_study_status
- entity_type: node
- bundle: case_study
- label: Status
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: string
- -
- collection: ''
- name: field.field.node.case_study.field_case_study_subtitle
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_subtitle
- - node.type.case_study
- id: node.case_study.field_case_study_subtitle
- field_name: field_case_study_subtitle
- entity_type: node
- bundle: case_study
- label: Subtitle
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: string
- -
- collection: ''
- name: field.field.node.case_study.field_case_study_team
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_team
- - node.type.case_study
- - node.type.people
- id: node.case_study.field_case_study_team
- field_name: field_case_study_team
- entity_type: node
- bundle: case_study
- label: Team
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings:
- handler: 'default:node'
- handler_settings:
- target_bundles:
- people: people
- sort:
- field: _none
- auto_create: true
- auto_create_bundle: ''
- field_type: entity_reference
- -
- collection: ''
- name: field.field.node.case_study.field_case_study_year
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_year
- - node.type.case_study
- id: node.case_study.field_case_study_year
- field_name: field_case_study_year
- entity_type: node
- bundle: case_study
- label: Year
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings:
- min: null
- max: null
- prefix: ''
- suffix: ''
- field_type: integer
- -
- collection: ''
- name: field.field.node.case_study.field_image
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_image
- - node.type.case_study
- module:
- - image
- id: node.case_study.field_image
- field_name: field_image
- entity_type: node
- bundle: case_study
- label: Image
- description: ''
- required: false
- translatable: true
- default_value: { }
- default_value_callback: ''
- settings:
- file_directory: '[date:custom:Y]-[date:custom:m]'
- file_extensions: 'png gif jpg jpeg'
- max_filesize: ''
- max_resolution: ''
- min_resolution: ''
- alt_field: true
- alt_field_required: true
- title_field: false
- title_field_required: false
- default_image:
- uuid: ''
- alt: ''
- title: ''
- width: null
- height: null
- handler: 'default:file'
- handler_settings: { }
- field_type: image
- -
- collection: ''
- name: field.field.node.case_study.field_license
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_license
- - node.type.case_study
- - taxonomy.vocabulary.license
- content:
- - 'taxonomy_term:license:61745acc-d11c-4e65-bd9e-518d223fedab'
- id: node.case_study.field_license
- field_name: field_license
- entity_type: node
- bundle: case_study
- label: License
- description: ''
- required: false
- translatable: false
- default_value:
- -
- target_uuid: 61745acc-d11c-4e65-bd9e-518d223fedab
- default_value_callback: ''
- settings:
- handler: 'default:taxonomy_term'
- handler_settings:
- target_bundles:
- license: license
- sort:
- field: name
- direction: asc
- auto_create: false
- auto_create_bundle: ''
- field_type: entity_reference
- -
- collection: ''
- name: field.field.node.case_study.field_meta_tags
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_meta_tags
- - node.type.case_study
- module:
- - metatag
- id: node.case_study.field_meta_tags
- field_name: field_meta_tags
- entity_type: node
- bundle: case_study
- label: 'Meta tags'
- description: ''
- required: false
- translatable: true
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: metatag
- -
- collection: ''
- name: field.field.node.case_study.field_services
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_services
- - node.type.case_study
- - taxonomy.vocabulary.services
- id: node.case_study.field_services
- field_name: field_services
- entity_type: node
- bundle: case_study
- label: Services
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings:
- handler: 'default:taxonomy_term'
- handler_settings:
- target_bundles:
- services: services
- sort:
- field: name
- direction: asc
- auto_create: true
- auto_create_bundle: ''
- field_type: entity_reference
- -
- collection: ''
- name: field.field.node.case_study.field_summary
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_summary
- - node.type.case_study
- module:
- - text
- id: node.case_study.field_summary
- field_name: field_summary
- entity_type: node
- bundle: case_study
- label: Summary
- description: ''
- required: true
- translatable: true
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: text_long
- -
- collection: ''
- name: field.field.node.case_study.field_technologies
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_technologies
- - node.type.case_study
- - taxonomy.vocabulary.technologies
- id: node.case_study.field_technologies
- field_name: field_technologies
- entity_type: node
- bundle: case_study
- label: Technologies
- description: 'Add new technology term'
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings:
- handler: 'default:taxonomy_term'
- handler_settings:
- target_bundles:
- technologies: technologies
- sort:
- field: name
- direction: asc
- auto_create: false
- auto_create_bundle: ''
- field_type: entity_reference
- -
- collection: ''
- name: field.storage.node.field_case_study_client
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - text
- id: node.field_case_study_client
- field_name: field_case_study_client
- entity_type: node
- type: text
- settings:
- max_length: 255
- module: text
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_case_study_partners
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - text
- id: node.field_case_study_partners
- field_name: field_case_study_partners
- entity_type: node
- type: text
- settings:
- max_length: 255
- module: text
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_case_study_status
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node.field_case_study_status
- field_name: field_case_study_status
- entity_type: node
- type: string
- settings:
- max_length: 255
- is_ascii: false
- case_sensitive: false
- module: core
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_case_study_subtitle
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node.field_case_study_subtitle
- field_name: field_case_study_subtitle
- entity_type: node
- type: string
- settings:
- max_length: 255
- is_ascii: false
- case_sensitive: false
- module: core
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_case_study_team
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node.field_case_study_team
- field_name: field_case_study_team
- entity_type: node
- type: entity_reference
- settings:
- target_type: node
- module: core
- locked: false
- cardinality: -1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_case_study_year
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node.field_case_study_year
- field_name: field_case_study_year
- entity_type: node
- type: integer
- settings:
- unsigned: false
- size: normal
- module: core
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_services
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - taxonomy
- id: node.field_services
- field_name: field_services
- entity_type: node
- type: entity_reference
- settings:
- target_type: taxonomy_term
- module: core
- locked: false
- cardinality: -1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_technologies
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - taxonomy
- id: node.field_technologies
- field_name: field_technologies
- entity_type: node
- type: entity_reference
- settings:
- target_type: taxonomy_term
- module: core
- locked: false
- cardinality: -1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: node.type.case_study
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - menu_ui
- third_party_settings:
- menu_ui:
- available_menus:
- - main
- parent: 'main:'
- name: 'Case Study'
- type: case_study
- description: ''
- help: ''
- new_revision: true
- preview_mode: 0
- display_submitted: false
- -
- collection: ''
- name: pathauto.pattern.case_study
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: case_study
- label: 'Case Study'
- type: 'canonical_entities:node'
- pattern: 'work/[node:title]'
- selection_criteria:
- 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1:
- id: node_type
- bundles:
- case_study: case_study
- negate: false
- context_mapping:
- node: node
- uuid: 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1
- selection_logic: and
- weight: -5
- relationships: { }
- -
- collection: ''
- name: search_api.index.case_study
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_case_study_client
- - field.storage.node.field_case_study_partners
- - field.storage.node.field_case_study_status
- - field.storage.node.field_case_study_subtitle
- - field.storage.node.field_case_study_team
- - field.storage.node.field_case_study_year
- - field.storage.node.field_services
- - field.storage.node.field_summary
- - search_api.server.database
- module:
- - user
- - search_api
- - node
- id: case_study
- name: 'Case Study'
- description: 'An index for the case study content type.'
- read_only: false
- field_settings:
- changed:
- label: Changed
- datasource_id: 'entity:node'
- property_path: changed
- type: date
- created:
- label: 'Authored on'
- datasource_id: 'entity:node'
- property_path: created
- type: date
- field_case_study_client:
- label: Client
- datasource_id: 'entity:node'
- property_path: field_case_study_client
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_client
- field_case_study_partners:
- label: Partners
- datasource_id: 'entity:node'
- property_path: field_case_study_partners
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_partners
- field_case_study_status:
- label: Status
- datasource_id: 'entity:node'
- property_path: field_case_study_status
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_status
- field_case_study_subtitle:
- label: Subtitle
- datasource_id: 'entity:node'
- property_path: field_case_study_subtitle
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_subtitle
- field_case_study_team:
- label: Team
- datasource_id: 'entity:node'
- property_path: field_case_study_team
- type: integer
- dependencies:
- config:
- - field.storage.node.field_case_study_team
- field_case_study_year:
- label: Year
- datasource_id: 'entity:node'
- property_path: field_case_study_year
- type: integer
- dependencies:
- config:
- - field.storage.node.field_case_study_year
- field_services:
- label: Services
- datasource_id: 'entity:node'
- property_path: field_services
- type: integer
- dependencies:
- config:
- - field.storage.node.field_services
- field_summary:
- label: Summary
- datasource_id: 'entity:node'
- property_path: field_summary
- type: text
- dependencies:
- config:
- - field.storage.node.field_summary
- name:
- label: 'Authored by » User » Name'
- datasource_id: 'entity:node'
- property_path: 'uid:entity:name'
- type: string
- dependencies:
- module:
- - user
- node_grants:
- label: 'Node access information'
- property_path: search_api_node_grants
- type: string
- indexed_locked: true
- type_locked: true
- hidden: true
- promote:
- label: 'Promoted to front page'
- datasource_id: 'entity:node'
- property_path: promote
- type: boolean
- rendered_item:
- label: 'Rendered HTML output'
- property_path: rendered_item
- type: text
- configuration:
- roles:
- anonymous: anonymous
- view_mode:
- 'entity:node':
- action: ''
- article: ''
- blog: ''
- campaign: ''
- event: ''
- landing_page: ''
- page: ''
- people: ''
- resource: ''
- status:
- label: Published
- datasource_id: 'entity:node'
- property_path: status
- type: boolean
- indexed_locked: true
- type_locked: true
- sticky:
- label: 'Sticky at top of lists'
- datasource_id: 'entity:node'
- property_path: sticky
- type: boolean
- title:
- label: Title
- datasource_id: 'entity:node'
- property_path: title
- type: text
- boost: 8.0
- uid:
- label: 'Authored by'
- datasource_id: 'entity:node'
- property_path: uid
- type: integer
- indexed_locked: true
- type_locked: true
- datasource_settings:
- 'entity:node':
- bundles:
- default: false
- selected:
- - case_study
- languages:
- default: true
- selected: { }
- processor_settings:
- add_url: { }
- aggregated_field: { }
- content_access:
- weights:
- preprocess_query: -45
- entity_status: { }
- html_filter:
- all_fields: false
- fields:
- - field_summary
- - rendered_item
- title: true
- alt: true
- tags:
- b: 2
- h1: 5
- h2: 3
- h3: 2
- strong: 2
- weights:
- preprocess_index: -46
- preprocess_query: -47
- ignorecase:
- all_fields: false
- fields:
- - field_summary
- - name
- - rendered_item
- - title
- weights:
- preprocess_index: -49
- preprocess_query: -49
- rendered_item: { }
- stopwords:
- all_fields: false
- fields:
- - field_summary
- - rendered_item
- - title
- stopwords:
- - a
- - an
- - and
- - are
- - as
- - at
- - be
- - but
- - by
- - for
- - if
- - in
- - into
- - is
- - it
- - 'no'
- - not
- - of
- - 'on'
- - or
- - s
- - such
- - t
- - that
- - the
- - their
- - then
- - there
- - these
- - they
- - this
- - to
- - was
- - will
- - with
- weights:
- preprocess_index: -48
- preprocess_query: -50
- tokenizer:
- all_fields: false
- fields:
- - field_summary
- - rendered_item
- - title
- spaces: ''
- overlap_cjk: 1
- minimum_word_size: '3'
- weights:
- preprocess_index: -44
- preprocess_query: -46
- transliteration:
- all_fields: false
- fields:
- - field_summary
- - name
- - rendered_item
- - title
- weights:
- preprocess_index: -47
- preprocess_query: -48
- tracker_settings:
- default:
- indexing_order: fifo
- options:
- index_directly: true
- cron_limit: 50
- server: database
- -
- collection: ''
- name: taxonomy.vocabulary.services
- data:
- langcode: en
- status: true
- dependencies: { }
- name: Services
- vid: services
- description: ''
- hierarchy: 0
- weight: 0
- -
- collection: ''
- name: taxonomy.vocabulary.technologies
- data:
- langcode: en
- status: true
- dependencies: { }
- name: Technologies
- vid: technologies
- description: ''
- hierarchy: 0
- weight: 0
- -
- collection: ''
- name: views.view.case_study
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - search_api.index.case_study
- - system.menu.main
- module:
- - search_api
- id: case_study
- label: 'Case Study'
- module: views
- description: ''
- tag: ''
- base_table: search_api_index_case_study
- base_field: search_api_id
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: none
- options: { }
- cache:
- type: none
- options: { }
- query:
- type: views_query
- options:
- bypass_access: false
- skip_access: false
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: some
- options:
- items_per_page: 10
- offset: 0
- style:
- type: default
- options:
- row_class: ''
- default_row_class: false
- uses_fields: false
- row:
- type: search_api
- options:
- view_modes:
- 'entity:node':
- case_study: tile
- fields:
- changed:
- table: search_api_index_case_study
- field: changed
- id: changed
- entity_type: null
- entity_field: null
- plugin_id: search_api_field
- relationship: none
- group_type: group
- admin_label: ''
- label: ''
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: value
- type: timestamp
- settings: { }
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- field_rendering: true
- fallback_handler: search_api_date
- fallback_options:
- date_format: small
- custom_date_format: ''
- timezone: ''
- link_to_item: false
- use_highlighting: false
- multi_type: separator
- multi_separator: ', '
- filters: { }
- sorts:
- sticky:
- id: sticky
- table: search_api_index_case_study
- field: sticky
- relationship: none
- group_type: group
- admin_label: ''
- order: ASC
- exposed: false
- expose:
- label: ''
- plugin_id: search_api
- created:
- id: created
- table: search_api_index_case_study
- field: created
- relationship: none
- group_type: group
- admin_label: ''
- order: ASC
- exposed: false
- expose:
- label: ''
- plugin_id: search_api
- title: 'Case Study'
- header: { }
- footer: { }
- empty: { }
- relationships: { }
- arguments: { }
- display_extenders: { }
- cache_metadata:
- max-age: -1
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- tags: { }
- block_promoted:
- display_plugin: block
- id: block_promoted
- display_title: 'Block Promoted'
- position: 2
- display_options:
- display_extenders: { }
- title: Work
- defaults:
- title: false
- pager: false
- use_more: false
- use_more_always: false
- use_more_text: false
- pager:
- type: full
- options:
- items_per_page: 6
- offset: 0
- id: 0
- total_pages: null
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- tags:
- previous: '‹ Previous'
- next: 'Next ›'
- first: '« First'
- last: 'Last »'
- quantity: 9
- display_description: ''
- use_more: true
- use_more_always: true
- use_more_text: more
- cache_metadata:
- max-age: -1
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url.query_args
- tags: { }
- page_listing:
- display_plugin: page
- id: page_listing
- display_title: Page
- position: 1
- display_options:
- display_extenders: { }
- path: work
- menu:
- type: normal
- title: Work
- description: "See some of what we've built."
- expanded: false
- parent: ''
- weight: 0
- context: '0'
- menu_name: main
- pager:
- type: none
- options:
- offset: 0
- defaults:
- pager: false
- cache_metadata:
- max-age: -1
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml
deleted file mode 100644
index 98c34ba..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml
+++ /dev/null
@@ -1,301 +0,0 @@
-uuid: 809ea8fa-065b-4a9f-a552-e983bb7bc08f
-langcode: en
-status: true
-dependencies:
- module:
- - drutopia_creative_license
-id: config_sync.module.drutopia_creative_license
-snapshotSet: config_sync
-extensionType: module
-extensionName: drutopia_creative_license
-items:
- -
- collection: ''
- name: config_snapshot.snapshot.config_sync.module.drutopia_creative_license
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - drutopia_creative_license
- id: config_sync.module.drutopia_creative_license
- snapshotSet: config_sync
- extensionType: module
- extensionName: drutopia_creative_license
- items:
- -
- collection: ''
- name: core.entity_view_display.taxonomy_term.license.default
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - ds
- - text
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - description
- id: taxonomy_term.license.default
- targetEntityType: taxonomy_term
- bundle: license
- mode: default
- content:
- description:
- label: hidden
- type: text_default
- weight: 0
- region: content
- settings: { }
- third_party_settings: { }
- hidden: { }
- -
- collection: ''
- name: field.storage.node.field_license
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - taxonomy
- id: node.field_license
- field_name: field_license
- entity_type: node
- type: entity_reference
- settings:
- target_type: taxonomy_term
- module: core
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: taxonomy.vocabulary.license
- data:
- langcode: en
- status: true
- dependencies: { }
- name: License
- vid: license
- description: ''
- hierarchy: 0
- weight: 0
- -
- collection: ''
- name: core.base_field_override.taxonomy_term.license.changed
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- id: taxonomy_term.license.changed
- field_name: changed
- entity_type: taxonomy_term
- bundle: license
- label: Changed
- description: 'The time that the term was last edited.'
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: changed
- -
- collection: ''
- name: core.base_field_override.taxonomy_term.license.description
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - text
- id: taxonomy_term.license.description
- field_name: description
- entity_type: taxonomy_term
- bundle: license
- label: Description
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: text_long
- -
- collection: ''
- name: core.base_field_override.taxonomy_term.license.metatag
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- id: taxonomy_term.license.metatag
- field_name: metatag
- entity_type: taxonomy_term
- bundle: license
- label: Metatags
- description: 'The meta tags for the entity.'
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: map
- -
- collection: ''
- name: core.base_field_override.taxonomy_term.license.name
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- id: taxonomy_term.license.name
- field_name: name
- entity_type: taxonomy_term
- bundle: license
- label: Name
- description: ''
- required: true
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: string
- -
- collection: ''
- name: core.base_field_override.taxonomy_term.license.path
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - path
- id: taxonomy_term.license.path
- field_name: path
- entity_type: taxonomy_term
- bundle: license
- label: 'URL alias'
- description: ''
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings: { }
- field_type: path
- -
- collection: ''
- name: core.base_field_override.taxonomy_term.license.status
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- id: taxonomy_term.license.status
- field_name: status
- entity_type: taxonomy_term
- bundle: license
- label: Published
- description: ''
- required: false
- translatable: false
- default_value:
- -
- value: 1
- default_value_callback: ''
- settings:
- on_label: 'On'
- off_label: 'Off'
- field_type: boolean
- -
- collection: ''
- name: core.entity_view_display.taxonomy_term.license.default
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - ds
- - text
- third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - description
- id: taxonomy_term.license.default
- targetEntityType: taxonomy_term
- bundle: license
- mode: default
- content:
- description:
- label: hidden
- type: text_default
- weight: 0
- region: content
- settings: { }
- third_party_settings: { }
- hidden: { }
- -
- collection: ''
- name: field.storage.node.field_license
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - taxonomy
- id: node.field_license
- field_name: field_license
- entity_type: node
- type: entity_reference
- settings:
- target_type: taxonomy_term
- module: core
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
- -
- collection: ''
- name: taxonomy.vocabulary.license
- data:
- langcode: en
- status: true
- dependencies: { }
- name: License
- vid: license
- description: ''
- hierarchy: 0
- weight: 0
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml
deleted file mode 100644
index 793465a..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml
+++ /dev/null
@@ -1,372 +0,0 @@
-uuid: 2638c667-dc2b-4965-b741-c7fc3aaa5919
-langcode: en
-status: true
-dependencies:
- module:
- - drutopia_home_page
-id: config_sync.module.drutopia_home_page
-snapshotSet: config_sync
-extensionType: module
-extensionName: drutopia_home_page
-items:
- -
- collection: ''
- name: block.block.home_page_custom_1
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- module:
- - block_visibility_groups
- theme:
- - octavia
- id: home_page_custom_1
- theme: octavia
- region: content_bottom
- 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'
- provider: block_content
- label_display: '0'
- status: true
- info: ''
- view_mode: columnar
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.home_page_custom_2
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- module:
- - block_visibility_groups
- theme:
- - octavia
- id: home_page_custom_2
- theme: octavia
- region: content_bottom
- 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'
- provider: block_content
- label_display: '0'
- status: true
- info: ''
- view_mode: columnar
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.home_page_custom_3
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- module:
- - block_visibility_groups
- theme:
- - octavia
- id: home_page_custom_3
- theme: octavia
- region: content_bottom
- 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'
- provider: block_content
- label_display: '0'
- status: true
- info: ''
- view_mode: columnar
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.home_page_feature
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- enforced:
- module:
- - block_content
- module:
- - block_visibility_groups
- theme:
- - octavia
- id: home_page_feature
- theme: octavia
- region: content
- weight: 4
- provider: null
- plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
- settings:
- id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
- label: 'Home page feature'
- provider: block_content
- label_display: '0'
- status: true
- info: ''
- view_mode: full
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.home_page_hero
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- enforced:
- module:
- - block_content
- module:
- - block_visibility_groups
- theme:
- - octavia
- id: home_page_hero
- theme: octavia
- region: highlighted
- weight: 0
- provider: null
- plugin: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
- settings:
- id: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
- label: 'Home page hero'
- provider: block_content
- label_display: '0'
- status: true
- info: ''
- view_mode: full
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.views_block__action_block_promoted
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- - views.view.action
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: views_block__action_block_promoted
- theme: octavia
- region: content
- weight: 2
- provider: null
- plugin: 'views_block:action-block_promoted'
- settings:
- id: 'views_block:action-block_promoted'
- label: ''
- provider: views
- label_display: visible
- views_label: ''
- items_per_page: none
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.views_block__article_block_promoted
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- - views.view.article
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: views_block__article_block_promoted
- theme: octavia
- region: content
- weight: 0
- provider: null
- plugin: 'views_block:article-block_promoted'
- settings:
- id: 'views_block:article-block_promoted'
- label: ''
- provider: views
- label_display: visible
- views_label: ''
- items_per_page: none
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.views_block__blog_block_promoted
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- - views.view.blog
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: views_block__blog_block_promoted
- theme: octavia
- region: content
- weight: 6
- provider: null
- plugin: 'views_block:blog-block_promoted'
- settings:
- id: 'views_block:blog-block_promoted'
- label: ''
- provider: views
- label_display: visible
- views_label: ''
- items_per_page: none
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.views_block__campaign_block_promoted
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- - views.view.campaign
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: views_block__campaign_block_promoted
- theme: octavia
- region: content
- weight: 8
- provider: null
- plugin: 'views_block:campaign-block_promoted'
- settings:
- id: 'views_block:campaign-block_promoted'
- label: ''
- provider: views
- label_display: visible
- views_label: ''
- items_per_page: none
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block.block.views_block__resource_block_promoted
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - block_visibility_groups.block_visibility_group.home_page
- - views.view.resource
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: views_block__resource_block_promoted
- theme: octavia
- region: content
- weight: 5
- provider: null
- plugin: 'views_block:resource-block_promoted'
- settings:
- id: 'views_block:resource-block_promoted'
- label: ''
- provider: views
- label_display: visible
- views_label: ''
- items_per_page: none
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: home_page
- context_mapping: { }
- -
- collection: ''
- name: block_visibility_groups.block_visibility_group.home_page
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - system
- id: home_page
- label: 'Home page'
- logic: and
- conditions:
- c14822f9-38fa-4397-a5b6-ba9a6f94138e:
- id: request_path
- pages: '
This page provides the ability to add common languages to your site.
If the desired language is not available, you can add a custom language.
' - weight: 1 - language-add-choose: - id: language-add-choose - plugin: text - label: 'Select language' - body: 'Choose a language from the list, or choose "Custom language..." at the end of the list.
Click the "Add language" button when you are done choosing your language.
When adding a custom language, you will get an additional form where you can provide the name, code, and direction of the language.
' - weight: 2 - attributes: - data-id: edit-predefined-langcode - language-add-continue: - id: language-add-continue - plugin: text - label: 'Continuing on' - body: 'Now that you have an overview of the "Add languages" feature, you can continue by:
This page provides the ability to edit a language on your site, including custom languages.
' - weight: 1 - language-edit-langcode: - id: language-edit-langcode - plugin: text - label: 'Language code' - body: 'You cannot change the code of a language on the site, since it is used by the system to keep track of the language.
' - weight: 2 - attributes: - data-id: edit-langcode-view - language-edit-label: - id: language-edit-label - plugin: text - label: 'Language name' - body: 'The language name is used throughout the site for all users and is written in English. Names of built-in languages can be translated using the Interface Translation module, and names of both built-in and custom languages can be translated using the Configuration Translation module.
' - weight: 3 - attributes: - data-id: edit-label - language-edit-direction: - id: language-edit-direction - plugin: text - label: 'Language direction' - body: 'Choose if the language is a "Left to right" or "Right to left" language.
Note that not all themes support "Right to left" layouts, so test your theme if you are using "Right to left".
' - weight: 4 - attributes: - data-id: edit-direction--wrapper--description - language-edit-continue: - id: language-edit-continue - plugin: text - label: 'Continuing on' - body: 'Now that you have an overview of the "Edit language" feature, you can continue by:
-
-
- '
- filter_html_help: true
- filter_html_nofollow: false
- filter_url:
- id: filter_url
- provider: filter
- status: true
- weight: 0
- settings:
- filter_url_length: 72
- filter_autop:
- id: filter_autop
- provider: filter
- status: true
- weight: 0
- settings: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml b/config/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml
deleted file mode 100644
index c0b65b4..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml
+++ /dev/null
@@ -1,94 +0,0 @@
-uuid: 73074836-2a11-46cd-a08a-50f45cfa9187
-langcode: en
-status: true
-dependencies:
- module:
- - minimalhtmltitle
-id: config_sync.module.minimalhtmltitle
-snapshotSet: config_sync
-extensionType: module
-extensionName: minimalhtmltitle
-items:
- -
- collection: ''
- name: editor.editor.minimalhtmltitle
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - filter.format.minimalhtmltitle
- module:
- - ckeditor
- format: minimalhtmltitle
- editor: ckeditor
- settings:
- toolbar:
- rows:
- -
- -
- name: Formatting
- items:
- - Bold
- - Italic
- -
- name: Tools
- items:
- - Source
- plugins:
- language:
- language_list: un
- stylescombo:
- styles: ''
- indentblock:
- enable: 0
- colorbutton:
- colors: ''
- linebreaks:
- method: force
- image_upload:
- status: false
- scheme: public
- directory: inline-images
- max_size: ''
- max_dimensions:
- width: null
- height: null
- -
- collection: ''
- name: filter.format.minimalhtmltitle
- data:
- langcode: en
- status: true
- name: 'Title HTML'
- format: minimalhtmltitle
- weight: 0
- filters:
- filter_htmlcorrector:
- id: filter_htmlcorrector
- provider: filter
- status: true
- weight: -10
- settings: { }
- filter_url:
- id: filter_url
- provider: filter
- status: true
- weight: -20
- settings:
- filter_url_length: 72
- filter_autop:
- id: filter_autop
- provider: filter
- status: true
- weight: -40
- settings: { }
- filter_html:
- id: filter_html
- provider: filter
- status: true
- weight: -30
- settings:
- allowed_html: '
'
- filter_html_help: false
- filter_html_nofollow: false
diff --git a/config/config_snapshot.snapshot.config_sync.module.node.yml b/config/config_snapshot.snapshot.config_sync.module.node.yml
deleted file mode 100644
index 74adea7..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.node.yml
+++ /dev/null
@@ -1,2153 +0,0 @@
-uuid: 778417dc-e4fc-4fb1-9d0c-7480990b4a4d
-langcode: en
-status: true
-dependencies:
- module:
- - node
-id: config_sync.module.node
-snapshotSet: config_sync
-extensionType: module
-extensionName: node
-items:
- -
- collection: ''
- name: core.entity_view_mode.node.full
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - node
- id: node.full
- label: 'Full content'
- targetEntityType: node
- cache: true
- -
- collection: ''
- name: core.entity_view_mode.node.rss
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - node
- id: node.rss
- label: RSS
- targetEntityType: node
- cache: true
- -
- collection: ''
- name: core.entity_view_mode.node.search_index
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - node
- id: node.search_index
- label: 'Search index'
- targetEntityType: node
- cache: true
- -
- collection: ''
- name: core.entity_view_mode.node.search_result
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - node
- id: node.search_result
- label: 'Search result highlighting input'
- targetEntityType: node
- cache: true
- -
- collection: ''
- name: core.entity_view_mode.node.teaser
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node.teaser
- label: Teaser
- targetEntityType: node
- cache: true
- -
- collection: ''
- name: field.storage.node.body
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - text
- id: node.body
- field_name: body
- entity_type: node
- type: text_with_summary
- settings: { }
- module: text
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: true
- custom_storage: false
- -
- collection: ''
- name: node.settings
- data:
- use_admin_theme: false
- -
- collection: ''
- name: system.action.node_delete_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_delete_action
- label: 'Delete content'
- type: node
- plugin: 'entity:delete_action:node'
- configuration: { }
- -
- collection: ''
- name: system.action.node_make_sticky_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_make_sticky_action
- label: 'Make content sticky'
- type: node
- plugin: node_make_sticky_action
- configuration: { }
- -
- collection: ''
- name: system.action.node_make_unsticky_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_make_unsticky_action
- label: 'Make content unsticky'
- type: node
- plugin: node_make_unsticky_action
- configuration: { }
- -
- collection: ''
- name: system.action.node_promote_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_promote_action
- label: 'Promote content to front page'
- type: node
- plugin: node_promote_action
- configuration: { }
- -
- collection: ''
- name: system.action.node_publish_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_publish_action
- label: 'Publish content'
- type: node
- plugin: 'entity:publish_action:node'
- configuration: { }
- -
- collection: ''
- name: system.action.node_save_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_save_action
- label: 'Save content'
- type: node
- plugin: 'entity:save_action:node'
- configuration: { }
- -
- collection: ''
- name: system.action.node_unpromote_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_unpromote_action
- label: 'Remove content from front page'
- type: node
- plugin: node_unpromote_action
- configuration: { }
- -
- collection: ''
- name: system.action.node_unpublish_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- id: node_unpublish_action
- label: 'Unpublish content'
- type: node
- plugin: 'entity:unpublish_action:node'
- configuration: { }
- -
- collection: ''
- name: views.view.archive
- data:
- langcode: en
- status: false
- dependencies:
- config:
- - core.entity_view_mode.node.teaser
- module:
- - node
- - user
- id: archive
- label: Archive
- module: node
- description: 'All content, by month.'
- tag: default
- base_table: node_field_data
- base_field: nid
- core: '8'
- display:
- default:
- id: default
- display_title: Master
- display_plugin: default
- position: 0
- display_options:
- query:
- type: views_query
- options:
- query_comment: ''
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_tags: { }
- title: 'Monthly archive'
- access:
- type: perm
- options:
- perm: 'access content'
- cache:
- type: tag
- options: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: mini
- options:
- items_per_page: 10
- offset: 0
- id: 0
- total_pages: 0
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- tags:
- previous: ‹‹
- next: ››
- sorts:
- created:
- id: created
- table: node_field_data
- field: created
- order: DESC
- plugin_id: date
- relationship: none
- group_type: group
- admin_label: ''
- exposed: false
- expose:
- label: ''
- granularity: second
- entity_type: node
- entity_field: created
- arguments:
- created_year_month:
- id: created_year_month
- table: node_field_data
- field: created_year_month
- default_action: summary
- exception:
- title_enable: true
- title_enable: true
- title: '{{ arguments.created_year_month }}'
- default_argument_type: fixed
- summary:
- sort_order: desc
- format: default_summary
- summary_options:
- override: true
- items_per_page: 30
- specify_validation: true
- plugin_id: date_year_month
- entity_type: node
- filters:
- status:
- id: status
- table: node_field_data
- field: status
- value: '1'
- group: 0
- expose:
- operator: '0'
- plugin_id: boolean
- entity_type: node
- entity_field: status
- langcode:
- id: langcode
- table: node_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value:
- '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: language
- entity_type: node
- entity_field: langcode
- style:
- type: default
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- uses_fields: false
- row:
- type: 'entity:node'
- options:
- view_mode: teaser
- header: { }
- footer: { }
- empty: { }
- relationships: { }
- fields: { }
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_interface'
- - url
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- block_1:
- id: block_1
- display_title: Block
- display_plugin: block
- position: 1
- display_options:
- query:
- type: views_query
- options: { }
- defaults:
- arguments: false
- arguments:
- created_year_month:
- id: created_year_month
- table: node_field_data
- field: created_year_month
- default_action: summary
- exception:
- title_enable: true
- title_enable: true
- title: '{{ arguments.created_year_month }}'
- default_argument_type: fixed
- summary:
- format: default_summary
- summary_options:
- items_per_page: 30
- specify_validation: true
- plugin_id: date_year_month
- entity_type: node
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_interface'
- - url
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- page_1:
- id: page_1
- display_title: Page
- display_plugin: page
- position: 2
- display_options:
- query:
- type: views_query
- options: { }
- path: archive
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_interface'
- - url
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- -
- collection: ''
- name: views.view.content
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - user
- id: content
- label: Content
- module: node
- description: 'Find and manage content.'
- tag: default
- base_table: node_field_data
- base_field: nid
- core: 8.x
- display:
- default:
- display_options:
- access:
- type: perm
- options:
- perm: 'access content overview'
- cache:
- type: tag
- query:
- type: views_query
- exposed_form:
- type: basic
- options:
- submit_button: Filter
- reset_button: true
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: full
- options:
- items_per_page: 50
- tags:
- previous: '‹ Previous'
- next: 'Next ›'
- first: '« First'
- last: 'Last »'
- style:
- type: table
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- override: true
- sticky: true
- caption: ''
- summary: ''
- description: ''
- columns:
- node_bulk_form: node_bulk_form
- title: title
- type: type
- name: name
- status: status
- changed: changed
- edit_node: edit_node
- delete_node: delete_node
- dropbutton: dropbutton
- timestamp: title
- info:
- node_bulk_form:
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- title:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- type:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- name:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- status:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- changed:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- edit_node:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- delete_node:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- dropbutton:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- timestamp:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- default: changed
- empty_table: true
- row:
- type: fields
- fields:
- node_bulk_form:
- id: node_bulk_form
- table: node
- field: node_bulk_form
- label: ''
- exclude: false
- alter:
- alter_text: false
- element_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: node_bulk_form
- entity_type: node
- title:
- id: title
- table: node_field_data
- field: title
- label: Title
- exclude: false
- alter:
- alter_text: false
- element_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- entity_type: node
- entity_field: title
- type: string
- settings:
- link_to_entity: true
- plugin_id: field
- type:
- id: type
- table: node_field_data
- field: type
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Content type'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: target_id
- type: entity_reference_label
- settings:
- link: false
- group_column: target_id
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: node
- entity_field: type
- plugin_id: field
- name:
- id: name
- table: users_field_data
- field: name
- relationship: uid
- label: Author
- exclude: false
- alter:
- alter_text: false
- element_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: field
- type: user_name
- entity_type: user
- entity_field: name
- status:
- id: status
- table: node_field_data
- field: status
- label: Status
- exclude: false
- alter:
- alter_text: false
- element_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- type: boolean
- settings:
- format: custom
- format_custom_true: Published
- format_custom_false: Unpublished
- plugin_id: field
- entity_type: node
- entity_field: status
- changed:
- id: changed
- table: node_field_data
- field: changed
- label: Updated
- exclude: false
- alter:
- alter_text: false
- element_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- type: timestamp
- settings:
- date_format: short
- custom_date_format: ''
- timezone: ''
- plugin_id: field
- entity_type: node
- entity_field: changed
- operations:
- id: operations
- table: node
- field: operations
- relationship: none
- group_type: group
- admin_label: ''
- label: Operations
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- destination: true
- plugin_id: entity_operations
- filters:
- title:
- id: title
- table: node_field_data
- field: title
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: title_op
- label: Title
- description: ''
- use_operator: false
- operator: title_op
- identifier: title
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: string
- entity_type: node
- entity_field: title
- type:
- id: type
- table: node_field_data
- field: type
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: type_op
- label: 'Content type'
- description: ''
- use_operator: false
- operator: type_op
- identifier: type
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: bundle
- entity_type: node
- entity_field: type
- status:
- id: status
- table: node_field_data
- field: status
- relationship: none
- group_type: group
- admin_label: ''
- operator: '='
- value: '1'
- group: 1
- exposed: true
- expose:
- operator_id: ''
- label: Status
- description: ''
- use_operator: false
- operator: status_op
- identifier: status
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- is_grouped: true
- group_info:
- label: 'Published status'
- 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: node
- entity_field: status
- langcode:
- id: langcode
- table: node_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: langcode_op
- label: Language
- description: ''
- use_operator: false
- operator: langcode_op
- identifier: langcode
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: language
- entity_type: node
- entity_field: langcode
- status_extra:
- id: status_extra
- table: node_field_data
- field: status_extra
- operator: '='
- value: false
- plugin_id: node_status
- group: 1
- entity_type: node
- sorts: { }
- title: Content
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- empty: true
- content: 'No content available.'
- plugin_id: text_custom
- arguments: { }
- relationships:
- uid:
- id: uid
- table: node_field_data
- field: uid
- admin_label: author
- required: true
- plugin_id: standard
- show_admin_links: false
- filter_groups:
- operator: AND
- groups:
- 1: AND
- display_extenders: { }
- display_plugin: default
- display_title: Master
- id: default
- position: 0
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user
- - 'user.node_grants:view'
- - user.permissions
- max-age: 0
- tags: { }
- page_1:
- display_options:
- path: admin/content/node
- menu:
- type: 'default tab'
- title: Content
- description: ''
- menu_name: admin
- weight: -10
- context: ''
- tab_options:
- type: normal
- title: Content
- description: 'Find and manage content'
- menu_name: admin
- weight: -10
- display_extenders: { }
- display_plugin: page
- display_title: Page
- id: page_1
- position: 1
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user
- - 'user.node_grants:view'
- - user.permissions
- max-age: 0
- tags: { }
- -
- collection: ''
- name: views.view.content_recent
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - user
- id: content_recent
- label: 'Recent content'
- module: node
- description: 'Recent content.'
- tag: default
- base_table: node_field_data
- base_field: nid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'access content'
- cache:
- type: tag
- options: { }
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: some
- options:
- items_per_page: 10
- offset: 0
- style:
- type: html_list
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- type: ul
- wrapper_class: item-list
- class: ''
- row:
- type: fields
- fields:
- title:
- id: title
- table: node_field_data
- field: title
- entity_type: node
- entity_field: title
- label: ''
- exclude: false
- alter:
- alter_text: false
- make_link: false
- absolute: false
- trim: false
- word_boundary: false
- ellipsis: false
- strip_tags: false
- html: false
- hide_empty: false
- empty_zero: false
- relationship: none
- group_type: group
- admin_label: ''
- 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_alter_empty: true
- type: string
- settings:
- link_to_entity: true
- plugin_id: field
- changed:
- id: changed
- table: node_field_data
- field: changed
- 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
- click_sort_column: value
- type: timestamp_ago
- settings: { }
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- entity_type: node
- entity_field: changed
- plugin_id: field
- filters:
- status_extra:
- id: status_extra
- table: node_field_data
- field: status_extra
- relationship: none
- group_type: group
- admin_label: ''
- operator: '='
- value: false
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: node
- plugin_id: node_status
- langcode:
- id: langcode
- table: node_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value:
- '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: node
- entity_field: langcode
- plugin_id: language
- sorts:
- changed:
- id: changed
- table: node_field_data
- field: changed
- relationship: none
- group_type: group
- admin_label: ''
- order: DESC
- exposed: false
- expose:
- label: ''
- granularity: second
- entity_type: node
- entity_field: changed
- plugin_id: date
- title: 'Recent content'
- 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 content available.'
- plugin_id: text_custom
- relationships:
- uid:
- id: uid
- table: node_field_data
- field: uid
- relationship: none
- group_type: group
- admin_label: author
- required: true
- entity_type: node
- entity_field: uid
- plugin_id: standard
- arguments: { }
- display_extenders: { }
- use_more: false
- use_more_always: false
- use_more_text: More
- link_url: ''
- link_display: '0'
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- block_1:
- display_plugin: block
- id: block_1
- display_title: Block
- position: 1
- display_options:
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- -
- collection: ''
- name: views.view.frontpage
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - core.entity_view_mode.node.rss
- - core.entity_view_mode.node.teaser
- module:
- - node
- - user
- id: frontpage
- label: Frontpage
- module: node
- description: 'All content promoted to the front page.'
- tag: default
- base_table: node_field_data
- base_field: nid
- core: 8.x
- display:
- default:
- display_options:
- access:
- type: perm
- options:
- perm: 'access content'
- cache:
- type: tag
- options: { }
- empty:
- area_text_custom:
- admin_label: ''
- content: 'No front page content has been created yet.
Follow the User Guide to start building your site.'
- empty: true
- field: area_text_custom
- group_type: group
- id: area_text_custom
- label: ''
- relationship: none
- table: views
- tokenize: false
- plugin_id: text_custom
- node_listing_empty:
- admin_label: ''
- empty: true
- field: node_listing_empty
- group_type: group
- id: node_listing_empty
- label: ''
- relationship: none
- table: node
- plugin_id: node_listing_empty
- entity_type: node
- title:
- id: title
- table: views
- field: title
- relationship: none
- group_type: group
- admin_label: ''
- label: ''
- empty: true
- title: 'Welcome to [site:name]'
- plugin_id: title
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- filters:
- promote:
- admin_label: ''
- expose:
- description: ''
- identifier: ''
- label: ''
- multiple: false
- operator: ''
- operator_id: ''
- remember: false
- remember_roles:
- authenticated: authenticated
- required: false
- use_operator: false
- exposed: false
- field: promote
- group: 1
- group_info:
- default_group: All
- default_group_multiple: { }
- description: ''
- group_items: { }
- identifier: ''
- label: ''
- multiple: false
- optional: true
- remember: false
- widget: select
- group_type: group
- id: promote
- is_grouped: false
- operator: '='
- relationship: none
- table: node_field_data
- value: '1'
- plugin_id: boolean
- entity_type: node
- entity_field: promote
- status:
- expose:
- operator: ''
- field: status
- group: 1
- id: status
- table: node_field_data
- value: '1'
- plugin_id: boolean
- entity_type: node
- entity_field: status
- langcode:
- id: langcode
- table: node_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value:
- '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: language
- entity_type: node
- entity_field: langcode
- pager:
- type: full
- options:
- items_per_page: 10
- offset: 0
- id: 0
- total_pages: 0
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- tags:
- previous: '‹ Previous'
- next: 'Next ›'
- first: '« First'
- last: 'Last »'
- quantity: 9
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- row:
- type: 'entity:node'
- options:
- view_mode: teaser
- sorts:
- sticky:
- admin_label: ''
- expose:
- label: ''
- exposed: false
- field: sticky
- group_type: group
- id: sticky
- order: DESC
- relationship: none
- table: node_field_data
- plugin_id: boolean
- entity_type: node
- entity_field: sticky
- created:
- field: created
- id: created
- order: DESC
- table: node_field_data
- plugin_id: date
- relationship: none
- group_type: group
- admin_label: ''
- exposed: false
- expose:
- label: ''
- granularity: second
- entity_type: node
- entity_field: created
- style:
- type: default
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- uses_fields: false
- title: ''
- header: { }
- footer: { }
- relationships: { }
- fields: { }
- arguments: { }
- display_extenders: { }
- display_plugin: default
- display_title: Master
- id: default
- position: 0
- cache_metadata:
- contexts:
- - 'languages:language_interface'
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- feed_1:
- display_plugin: feed
- id: feed_1
- display_title: Feed
- position: 2
- display_options:
- sitename_title: true
- path: rss.xml
- displays:
- page_1: page_1
- default: ''
- pager:
- type: some
- options:
- items_per_page: 10
- offset: 0
- style:
- type: rss
- options:
- description: ''
- grouping: { }
- uses_fields: false
- row:
- type: node_rss
- options:
- relationship: none
- view_mode: rss
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_interface'
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- page_1:
- display_options:
- path: node
- display_extenders: { }
- display_plugin: page
- display_title: Page
- id: page_1
- position: 1
- cache_metadata:
- contexts:
- - 'languages:language_interface'
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: -1
- tags: { }
- -
- collection: ''
- name: views.view.glossary
- data:
- langcode: en
- status: false
- dependencies:
- config:
- - system.menu.main
- module:
- - node
- - user
- id: glossary
- label: Glossary
- module: node
- description: 'All content, by letter.'
- tag: default
- base_table: node_field_data
- base_field: nid
- core: '8'
- display:
- default:
- id: default
- display_title: Master
- display_plugin: default
- position: 0
- display_options:
- query:
- type: views_query
- options:
- query_comment: ''
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_tags: { }
- use_ajax: true
- access:
- type: perm
- options:
- perm: 'access content'
- cache:
- type: tag
- options: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: mini
- options:
- items_per_page: 36
- offset: 0
- id: 0
- total_pages: 0
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- tags:
- previous: ‹‹
- next: ››
- fields:
- title:
- id: title
- table: node_field_data
- field: title
- plugin_id: field
- relationship: none
- group_type: group
- admin_label: ''
- label: Title
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- entity_type: node
- entity_field: title
- name:
- id: name
- table: users_field_data
- field: name
- label: Author
- relationship: uid
- plugin_id: field
- type: user_name
- group_type: group
- admin_label: ''
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- entity_type: user
- entity_field: name
- changed:
- id: changed
- table: node_field_data
- field: changed
- label: 'Last update'
- type: timestamp
- settings:
- date_format: long
- custom_date_format: ''
- timezone: ''
- plugin_id: field
- relationship: none
- group_type: group
- admin_label: ''
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- entity_type: node
- entity_field: changed
- arguments:
- title:
- id: title
- table: node_field_data
- field: title
- default_action: default
- exception:
- title_enable: true
- default_argument_type: fixed
- default_argument_options:
- argument: a
- summary:
- format: default_summary
- specify_validation: true
- glossary: true
- limit: 1
- case: upper
- path_case: lower
- transform_dash: false
- plugin_id: string
- relationship: none
- group_type: group
- admin_label: ''
- title_enable: false
- title: ''
- default_argument_skip_url: false
- summary_options: { }
- validate:
- type: none
- fail: 'not found'
- validate_options: { }
- break_phrase: false
- entity_type: node
- entity_field: title
- relationships:
- uid:
- id: uid
- table: node_field_data
- field: uid
- plugin_id: standard
- relationship: none
- group_type: group
- admin_label: author
- required: false
- style:
- type: table
- options:
- columns:
- title: title
- name: name
- changed: changed
- default: title
- info:
- title:
- sortable: true
- separator: ''
- name:
- sortable: true
- separator: ''
- changed:
- sortable: true
- separator: ''
- override: true
- sticky: false
- grouping: { }
- row_class: ''
- default_row_class: true
- uses_fields: false
- order: asc
- summary: ''
- empty_table: false
- row:
- type: fields
- options:
- inline: { }
- separator: ''
- hide_empty: false
- default_field_elements: true
- header: { }
- footer: { }
- empty: { }
- sorts: { }
- filters:
- langcode:
- id: langcode
- table: node_field_data
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value:
- '***LANGUAGE_language_content***': '***LANGUAGE_language_content***'
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: language
- entity_type: node
- entity_field: langcode
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: 0
- tags: { }
- attachment_1:
- id: attachment_1
- display_title: Attachment
- display_plugin: attachment
- position: 2
- display_options:
- query:
- type: views_query
- options: { }
- pager:
- type: none
- options:
- offset: 0
- items_per_page: 0
- defaults:
- arguments: false
- arguments:
- title:
- id: title
- table: node_field_data
- field: title
- default_action: summary
- exception:
- title_enable: true
- default_argument_type: fixed
- default_argument_options:
- argument: a
- summary:
- format: unformatted_summary
- summary_options:
- items_per_page: 25
- inline: true
- separator: ' | '
- specify_validation: true
- glossary: true
- limit: 1
- case: upper
- path_case: lower
- transform_dash: false
- plugin_id: string
- relationship: none
- group_type: group
- admin_label: ''
- title_enable: false
- title: ''
- default_argument_skip_url: false
- validate:
- type: none
- fail: 'not found'
- validate_options: { }
- break_phrase: false
- entity_type: node
- entity_field: title
- displays:
- default: default
- page_1: page_1
- inherit_arguments: false
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: 0
- tags: { }
- page_1:
- id: page_1
- display_title: Page
- display_plugin: page
- position: 1
- display_options:
- query:
- type: views_query
- options: { }
- path: glossary
- menu:
- type: normal
- title: Glossary
- weight: 0
- menu_name: main
- parent: ''
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - 'user.node_grants:view'
- - user.permissions
- max-age: 0
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.options.yml b/config/config_snapshot.snapshot.config_sync.module.options.yml
deleted file mode 100644
index 3ef1de4..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.options.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 23a96fcc-da68-4276-b906-35cfc0d7367b
-langcode: en
-status: true
-dependencies:
- module:
- - options
-id: config_sync.module.options
-snapshotSet: config_sync
-extensionType: module
-extensionName: options
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.page_cache.yml b/config/config_snapshot.snapshot.config_sync.module.page_cache.yml
deleted file mode 100644
index b4c0eff..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.page_cache.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7a2a278d-1c45-41f7-a66b-a573a38746bd
-langcode: en
-status: true
-dependencies:
- module:
- - page_cache
-id: config_sync.module.page_cache
-snapshotSet: config_sync
-extensionType: module
-extensionName: page_cache
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml b/config/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml
deleted file mode 100644
index 9f212bb..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: 97234a14-9821-446a-9bdd-9f9cacaf4715
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs_features
-id: config_sync.module.paragraphs_features
-snapshotSet: config_sync
-extensionType: module
-extensionName: paragraphs_features
-items:
- -
- collection: ''
- name: paragraphs_features.settings
- data:
- dropdown_to_button: false
diff --git a/config/config_snapshot.snapshot.config_sync.module.path.yml b/config/config_snapshot.snapshot.config_sync.module.path.yml
deleted file mode 100644
index 406c4f7..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.path.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: 0d523a33-d07e-4a24-aacc-96e08c8e3ccf
-langcode: en
-status: true
-dependencies:
- module:
- - path
-id: config_sync.module.path
-snapshotSet: config_sync
-extensionType: module
-extensionName: path
-items:
- -
- collection: ''
- name: language.content_settings.path_alias.path_alias
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - path_alias
- id: path_alias.path_alias
- target_entity_type_id: path_alias
- target_bundle: path_alias
- default_langcode: und
- language_alterable: true
diff --git a/config/config_snapshot.snapshot.config_sync.module.path_alias.yml b/config/config_snapshot.snapshot.config_sync.module.path_alias.yml
deleted file mode 100644
index 110fa20..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.path_alias.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: a5e7526a-41d2-4153-ad2d-d5e360989534
-langcode: en
-status: true
-dependencies:
- module:
- - path_alias
-id: config_sync.module.path_alias
-snapshotSet: config_sync
-extensionType: module
-extensionName: path_alias
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.pathauto.yml b/config/config_snapshot.snapshot.config_sync.module.pathauto.yml
deleted file mode 100644
index c7fd8a4..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.pathauto.yml
+++ /dev/null
@@ -1,61 +0,0 @@
-uuid: 3a1bc3fd-2df0-4878-9900-951377c5933e
-langcode: en
-status: true
-dependencies:
- module:
- - pathauto
-id: config_sync.module.pathauto
-snapshotSet: config_sync
-extensionType: module
-extensionName: pathauto
-items:
- -
- collection: ''
- name: pathauto.settings
- data:
- enabled_entity_types:
- - user
- punctuation:
- hyphen: 1
- verbose: false
- separator: '-'
- max_length: 100
- max_component_length: 100
- transliterate: true
- reduce_ascii: false
- case: true
- ignore_words: 'a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with'
- update_action: 2
- safe_tokens:
- - alias
- - path
- - join-path
- - login-url
- - url
- - url-brief
- -
- collection: ''
- name: system.action.pathauto_update_alias_node
- data:
- id: pathauto_update_alias_node
- label: 'Update URL alias'
- status: true
- langcode: en
- type: node
- plugin: pathauto_update_alias
- dependencies:
- module:
- - node
- -
- collection: ''
- name: system.action.pathauto_update_alias_user
- data:
- id: pathauto_update_alias_user
- label: 'Update URL alias'
- status: true
- langcode: en
- type: user
- plugin: pathauto_update_alias
- dependencies:
- module:
- - user
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.preview_link.yml b/config/config_snapshot.snapshot.config_sync.module.preview_link.yml
deleted file mode 100644
index 7ca2367..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.preview_link.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: cc0e34a0-e6c4-4e64-b41c-b6d83736ce26
-langcode: en
-status: true
-dependencies:
- module:
- - preview_link
-id: config_sync.module.preview_link
-snapshotSet: config_sync
-extensionType: module
-extensionName: preview_link
-items:
- -
- collection: ''
- name: preview_link.settings
- data:
- enabled_entity_types: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.quickedit.yml b/config/config_snapshot.snapshot.config_sync.module.quickedit.yml
deleted file mode 100644
index e18a480..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.quickedit.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: be81d25a-785d-47f5-8d8a-e343a0027fe7
-langcode: en
-status: true
-dependencies:
- module:
- - quickedit
-id: config_sync.module.quickedit
-snapshotSet: config_sync
-extensionType: module
-extensionName: quickedit
-items: { }
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.redirect.yml b/config/config_snapshot.snapshot.config_sync.module.redirect.yml
deleted file mode 100644
index 5f168ef..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.redirect.yml
+++ /dev/null
@@ -1,654 +0,0 @@
-uuid: 346bcfc4-be16-4b51-ae44-61a958a4bbb6
-langcode: en
-status: true
-dependencies:
- module:
- - redirect
-id: config_sync.module.redirect
-snapshotSet: config_sync
-extensionType: module
-extensionName: redirect
-items:
- -
- collection: ''
- name: language.content_settings.redirect.redirect
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - redirect
- id: redirect.redirect
- target_entity_type_id: redirect
- target_bundle: redirect
- default_langcode: und
- language_alterable: true
- -
- collection: ''
- name: redirect.settings
- data:
- auto_redirect: true
- default_status_code: 301
- passthrough_querystring: true
- warning: false
- ignore_admin_path: false
- access_check: false
- route_normalizer_enabled: true
- -
- collection: ''
- name: system.action.redirect_delete_action
- data:
- langcode: en
- status: true
- dependencies:
- enforced:
- module:
- - redirect
- module:
- - redirect
- id: redirect_delete_action
- label: 'Delete redirect'
- type: redirect
- plugin: redirect_delete_action
- configuration: { }
- -
- collection: ''
- name: views.view.redirect
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - link
- - redirect
- - user
- id: redirect
- label: Redirect
- module: views
- description: 'List of redirects'
- tag: ''
- base_table: redirect
- base_field: rid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'administer redirects'
- 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: Filter
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: full
- options:
- items_per_page: 50
- offset: 0
- id: 0
- total_pages: null
- tags:
- previous: '‹ previous'
- next: 'next ›'
- first: '« first'
- last: 'last »'
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- quantity: 9
- style:
- type: table
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- override: true
- sticky: false
- caption: ''
- summary: ''
- description: ''
- columns:
- redirect_source__path: redirect_source__path
- redirect_redirect__uri: redirect_redirect__uri
- status_code: status_code
- language: language
- created: created
- operations: operations
- info:
- redirect_source__path:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- redirect_redirect__uri:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- status_code:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- language:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- created:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- operations:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- default: created
- empty_table: false
- row:
- type: fields
- fields:
- redirect_bulk_form:
- id: redirect_bulk_form
- table: redirect
- field: redirect_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: 'With selection'
- include_exclude: exclude
- selected_actions: { }
- entity_type: redirect
- plugin_id: redirect_bulk_form
- redirect_source__path:
- id: redirect_source__path
- table: redirect
- field: redirect_source__path
- relationship: none
- group_type: group
- admin_label: ''
- label: From
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- click_sort_column: path
- type: redirect_source
- settings: { }
- group_column: ''
- 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: redirect
- entity_field: redirect_source
- plugin_id: field
- redirect_redirect__uri:
- id: redirect_redirect__uri
- table: redirect
- field: redirect_redirect__uri
- entity_type: redirect
- entity_field: redirect_redirect
- plugin_id: field
- status_code:
- id: status_code
- table: redirect
- field: status_code
- entity_type: redirect
- entity_field: status_code
- plugin_id: field
- language:
- id: language
- table: redirect
- field: language
- entity_type: redirect
- entity_field: language
- plugin_id: field
- created:
- id: created
- table: redirect
- field: created
- relationship: none
- group_type: group
- admin_label: ''
- label: Created
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- date_format: fallback
- custom_date_format: ''
- timezone: ''
- entity_type: redirect
- entity_field: created
- plugin_id: date
- operations:
- id: operations
- table: redirect
- field: operations
- entity_type: redirect
- plugin_id: entity_operations
- filters:
- redirect_source__path:
- id: redirect_source__path
- table: redirect
- field: redirect_source__path
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: redirect_source__path_op
- label: From
- description: ''
- use_operator: false
- operator: redirect_source__path_op
- identifier: redirect_source__path
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: redirect
- entity_field: redirect_source
- plugin_id: string
- redirect_redirect__uri:
- id: redirect_redirect__uri
- table: redirect
- field: redirect_redirect__uri
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: redirect_redirect__uri_op
- label: To
- description: ''
- use_operator: false
- operator: redirect_redirect__uri_op
- identifier: redirect_redirect__uri
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: redirect
- entity_field: redirect_redirect
- plugin_id: string
- status_code:
- id: status_code
- table: redirect
- field: status_code
- relationship: none
- group_type: group
- admin_label: ''
- operator: '='
- value:
- min: ''
- max: ''
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: status_code_op
- label: 'Status code'
- description: ''
- use_operator: false
- operator: status_code_op
- identifier: status_code
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: true
- group_info:
- label: 'Status code'
- description: ''
- identifier: status_code
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items:
- 1:
- title: '300 Multiple Choices'
- operator: '='
- value:
- value: '300'
- min: ''
- max: ''
- 2:
- title: '301 Moved Permanently'
- operator: '='
- value:
- value: '301'
- min: ''
- max: ''
- 3:
- title: '302 Found'
- operator: '='
- value:
- value: '302'
- min: ''
- max: ''
- 4:
- title: '303 See Other'
- operator: '='
- value:
- value: '303'
- min: ''
- max: ''
- 5:
- title: '304 Not Modified'
- operator: '='
- value:
- value: '304'
- min: ''
- max: ''
- 6:
- title: '305 Use Proxy'
- operator: '='
- value:
- value: '305'
- min: ''
- max: ''
- 7:
- title: '307 Temporary Redirect'
- operator: '='
- value:
- value: '307'
- min: ''
- max: ''
- entity_type: redirect
- entity_field: status_code
- plugin_id: numeric
- language:
- id: language
- table: redirect
- field: language
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: language_op
- label: 'Original language'
- description: ''
- use_operator: false
- operator: language_op
- identifier: language
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- entity_type: redirect
- entity_field: language
- plugin_id: language
- sorts: { }
- title: Redirect
- header: { }
- footer: { }
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- relationship: none
- group_type: group
- admin_label: ''
- empty: true
- tokenize: false
- content: 'There is no redirect yet.'
- plugin_id: text_custom
- relationships: { }
- arguments: { }
- display_extenders: { }
- filter_groups:
- operator: AND
- groups:
- 1: AND
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- cacheable: false
- max-age: 0
- tags: { }
- page_1:
- display_plugin: page
- id: page_1
- display_title: Page
- position: 1
- display_options:
- display_extenders: { }
- path: admin/config/search/redirect
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- cacheable: false
- max-age: 0
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.redirect_404.yml b/config/config_snapshot.snapshot.config_sync.module.redirect_404.yml
deleted file mode 100644
index 84af34e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.redirect_404.yml
+++ /dev/null
@@ -1,545 +0,0 @@
-uuid: 74a088f6-1929-4118-9884-97aabe753392
-langcode: en
-status: true
-dependencies:
- module:
- - redirect_404
-id: config_sync.module.redirect_404
-snapshotSet: config_sync
-extensionType: module
-extensionName: redirect_404
-items:
- -
- collection: ''
- name: redirect_404.settings
- data:
- row_limit: 10000
- pages: ''
- suppress_404: false
- -
- collection: ''
- name: views.view.redirect_404
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - redirect_404
- - user
- id: redirect_404
- label: 'Redirect 404'
- module: views
- description: ''
- tag: ''
- base_table: redirect_404
- base_field: ''
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'administer redirects'
- cache:
- type: none
- options: { }
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Filter
- reset_button: true
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: mini
- options:
- items_per_page: 10
- offset: 0
- id: 0
- total_pages: null
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- tags:
- previous: ‹‹
- next: ››
- style:
- type: table
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- override: true
- sticky: false
- caption: ''
- summary: ''
- description: ''
- columns:
- path: path
- count: count
- timestamp: timestamp
- info:
- path:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- count:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- timestamp:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- default: count
- empty_table: false
- row:
- type: fields
- fields:
- path:
- table: redirect_404
- field: path
- id: path
- entity_type: null
- entity_field: null
- plugin_id: standard
- relationship: none
- group_type: group
- admin_label: ''
- label: Path
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- count:
- id: count
- table: redirect_404
- field: count
- relationship: none
- group_type: group
- admin_label: ''
- label: Count
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- format: unserialized
- key: ''
- plugin_id: serialized
- timestamp:
- id: timestamp
- table: redirect_404
- field: timestamp
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Last accessed'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- date_format: short
- custom_date_format: ''
- timezone: ''
- plugin_id: date
- langcode:
- id: langcode
- table: redirect_404
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- label: Language
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: standard
- redirect_404_operations:
- id: redirect_404_operations
- table: redirect_404
- field: redirect_404_operations
- relationship: none
- group_type: group
- admin_label: ''
- label: Operations
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: redirect_404_operations
- filters:
- path:
- id: path
- table: redirect_404
- field: path
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: path_op
- label: Path
- description: ''
- use_operator: false
- operator: path_op
- identifier: path
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: string
- langcode:
- id: langcode
- table: redirect_404
- field: langcode
- relationship: none
- group_type: group
- admin_label: ''
- operator: in
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: langcode_op
- label: Language
- description: ''
- use_operator: false
- operator: langcode_op
- identifier: langcode
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: in_operator
- resolved:
- id: resolved
- table: redirect_404
- field: resolved
- relationship: none
- group_type: group
- admin_label: ''
- operator: '='
- value: '0'
- group: 1
- exposed: false
- expose:
- operator_id: ''
- label: Resolved
- description: ''
- use_operator: false
- operator: resolved_op
- identifier: resolved
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: boolean
- sorts: { }
- title: 'Fix 404 pages'
- header: { }
- footer: { }
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- relationship: none
- group_type: group
- admin_label: ''
- empty: true
- tokenize: false
- content: 'There are no 404 errors to fix.'
- plugin_id: text_custom
- relationships: { }
- arguments: { }
- display_extenders: { }
- filter_groups:
- operator: AND
- groups:
- 1: AND
- cache_metadata:
- max-age: 0
- contexts:
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- tags: { }
- page_1:
- display_plugin: page
- id: page_1
- display_title: Page
- position: 1
- display_options:
- display_extenders: { }
- path: admin/config/search/redirect/404
- display_description: 'Lists 404 error paths with no redirect assigned yet.'
- enabled: true
- cache_metadata:
- max-age: 0
- contexts:
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.regionincontent.yml b/config/config_snapshot.snapshot.config_sync.module.regionincontent.yml
deleted file mode 100644
index db53fbf..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.regionincontent.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: b48c1b16-6677-40c6-9c88-39329b37dd35
-langcode: en
-status: true
-dependencies:
- module:
- - regionincontent
-id: config_sync.module.regionincontent
-snapshotSet: config_sync
-extensionType: module
-extensionName: regionincontent
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.responsive_image.yml b/config/config_snapshot.snapshot.config_sync.module.responsive_image.yml
deleted file mode 100644
index 0ffe3de..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.responsive_image.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 55d2a254-8124-446d-8164-ae45124e2658
-langcode: en
-status: true
-dependencies:
- module:
- - responsive_image
-id: config_sync.module.responsive_image
-snapshotSet: config_sync
-extensionType: module
-extensionName: responsive_image
-items: { }
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.module.scn.yml b/config/config_snapshot.snapshot.config_sync.module.scn.yml
deleted file mode 100644
index 7f80497..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.scn.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 1814fd0d-5e9e-4093-80be-2d5dc3d24f1c
-langcode: en
-status: true
-dependencies:
- module:
- - scn
-id: config_sync.module.scn
-snapshotSet: config_sync
-extensionType: module
-extensionName: scn
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.search_api.yml b/config/config_snapshot.snapshot.config_sync.module.search_api.yml
deleted file mode 100644
index 1d391a5..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.search_api.yml
+++ /dev/null
@@ -1,445 +0,0 @@
-uuid: fe1dea4f-c906-4d41-9dcf-78cc2a2780ab
-langcode: en
-status: true
-dependencies:
- module:
- - search_api
-id: config_sync.module.search_api
-snapshotSet: config_sync
-extensionType: module
-extensionName: search_api
-items:
- -
- collection: ''
- name: search_api.settings
- data:
- default_cron_limit: 50
- cron_worker_runtime: 15
- default_tracker: default
- tracking_page_size: 100
- -
- collection: ''
- name: tour.tour.search-api-index
- data:
- id: search-api-index
- module: search_api
- label: 'Information about an index'
- langcode: en
- routes:
- -
- route_name: entity.search_api_index.canonical
- dependencies:
- module:
- - search_api
- tips:
- search-api-index-introduction:
- id: search-api-index-introduction
- plugin: text
- label: 'Information about an index'
- body: 'This page shows a summary of a search index and its status.'
- weight: 1
- search-api-index-index-status:
- id: search-api-index-index-status
- plugin: text
- label: 'Index status'
- body: 'This gives a summary about how many items are known for this index, and how many have been indexed in their latest version. Items that are not indexed yet cannot be found by searches.'
- weight: 2
- attributes:
- data-class: search-api-index-status
- search-api-index-status:
- id: search-api-index-status
- plugin: text
- label: Status
- body: 'Shows whether the index is currently enabled or disabled.'
- weight: 3
- attributes:
- data-class: search-api-index-summary--status
- search-api-index-datasources:
- id: search-api-index-datasources
- plugin: text
- label: Datasources
- body: 'Lists all datasources that are enabled for this index.'
- weight: 4
- attributes:
- data-class: search-api-index-summary--datasource
- search-api-index-tracker:
- id: search-api-index-tracker
- plugin: text
- label: Tracker
- body: 'The tracker used by the index. Only one ("Default") is available by default.'
- weight: 5
- attributes:
- data-class: search-api-index-summary--tracker
- search-api-index-server:
- id: search-api-index-server
- plugin: text
- label: Server
- body: 'If the index is attached to a server, this server is listed here.'
- weight: 6
- attributes:
- data-class: search-api-index-summary--server
- search-api-index-server-index-status:
- id: search-api-index-server-index-status
- plugin: text
- label: 'Server index status'
- body: 'For enabled indexes, the number of items that can actually be retrieved from the server is listed here. For reasons why this number might differ from the number under "Index status", see the module''s documentation.'
- weight: 7
- attributes:
- data-class: search-api-index-summary--server-index-status
- search-api-index-cron-batch-size:
- id: search-api-index-cron-batch-size
- plugin: text
- label: 'Cron batch size'
- body: 'The number of items that will be indexed at once during cron runs.'
- weight: 8
- attributes:
- data-class: search-api-index-summary--cron-batch-size
- search-api-index-index-now:
- id: search-api-index-remove
- plugin: text
- label: 'Start indexing now'
- body: 'The "Start indexing now" form allows indexing items manually right away, with a batch process. Otherwise, items are only indexed during cron runs. The form might be disabled if indexing is currently not possible for some reason, or not necessary.'
- weight: 9
- attributes:
- data-id: edit-index
- search-api-index-tracking:
- id: search-api-index-tracking
- plugin: text
- label: 'Track items for index'
- body: 'In certain situations, the index''s tracker doesn''t have the latest state of the items available for indexing. This will be automatically rectified during cron runs, but can also be manually triggered here, with the "Track now" button.'
- weight: 10
- attributes:
- data-id: edit-tracking
- search-api-index-reindex:
- id: search-api-index-reindex
- plugin: text
- label: 'Queue all items for reindexing'
- body: 'This will queue all items on this index for reindexing. Previously indexed data will remain on the search server, so searches on this index will continue to yield results.'
- weight: 11
- attributes:
- data-id: edit-reindex
- search-api-index-clear:
- id: search-api-index-clear
- plugin: text
- label: 'Clear all indexed data'
- body: 'This will remove all indexed content for this index from the search server and queue it for reindexing. Searches on this index will not return any results until items are reindexed.'
- weight: 12
- attributes:
- data-id: edit-clear
- -
- collection: ''
- name: tour.tour.search-api-index-fields
- data:
- id: search-api-index-fields
- module: search_api
- label: 'Fields indexed in this index'
- langcode: en
- routes:
- -
- route_name: entity.search_api_index.fields
- dependencies:
- module:
- - search_api
- tips:
- search-api-index-fields-introduction:
- id: search-api-index-fields-introduction
- plugin: text
- label: 'Fields indexed in this index'
- body: 'This page lists which fields are indexed in this index, grouped by datasource. (Datasource-independent fields are listed under "General".) Indexed fields can be used to add filters or sorting to views or other search displays based on the index. Fields with type "Fulltext" can also be used for fulltext searching.'
- weight: 1
- search-api-index-fields-add:
- id: search-api-index-fields-add
- plugin: text
- label: 'Add fields'
- body: 'With the "Add fields" button you can add additional fields to this index.'
- weight: 2
- attributes:
- data-class: 'button-action[data-drupal-selector="edit-add-field"]'
- search-api-index-fields-label:
- id: search-api-index-fields-label
- plugin: text
- label: Label
- body: 'A label for the field that will be used to refer to the field in most places in the user interface.'
- weight: 3
- attributes:
- data-class: 'details-wrapper:nth(0) table thead th:nth(0)'
- search-api-index-fields-machine-name:
- id: search-api-index-fields-machine-name
- plugin: text
- label: 'Machine name'
- body: "The internal ID to use for this field. Can safely be ignored by inexperienced users in most cases. Changing a field's machine name requires reindexing of the index."
- weight: 4
- attributes:
- data-class: 'details-wrapper:nth(0) table thead th:nth(1)'
- search-api-index-fields-property-path:
- id: search-api-index-fields-property-path
- plugin: text
- label: 'Property path'
- body: 'The internal relationship linking the indexed item to the field, with links being separated by colons (:). This can be useful information for advanced users, but can otherwise be ignored.'
- weight: 5
- attributes:
- data-class: 'details-wrapper:nth(0) table thead th:nth(2)'
- search-api-index-fields-type:
- id: search-api-index-fields-type
- plugin: text
- label: Type
- body: 'The data type to use when indexing the field. Determines how a field can be used in searches. For information on the available types, see the "Data types" box at the bottom of the page.'
- weight: 6
- attributes:
- data-class: 'details-wrapper:nth(0) table thead th:nth(3)'
- search-api-index-fields-boost:
- id: search-api-index-fields-boost
- plugin: text
- label: Boost
- body: 'Only applicable for fulltext fields. Determines how "important" the field is compared to other fulltext fields, to influence scoring of fulltext searches.'
- weight: 7
- attributes:
- data-class: 'details-wrapper:nth(0) table thead th:nth(4)'
- search-api-index-fields-edit:
- id: search-api-index-fields-edit
- plugin: text
- label: 'Edit field'
- body: 'Some fields have additional configuration available, in which case an "Edit" link is displayed in the "Operations" column.'
- weight: 8
- attributes:
- data-class: 'details-wrapper:nth(0) table tbody td:nth(5) a'
- search-api-index-fields-remove:
- id: search-api-index-fields-remove
- plugin: text
- label: 'Remove field'
- body: 'Removes a field from the index again. (Note: Sometimes, a field is required (for example, by a processor) and cannot be removed.)'
- weight: 9
- attributes:
- data-class: 'details-wrapper:nth(0) table tbody td:nth(6) a'
- search-api-index-fields-submit:
- id: search-api-index-fields-submit
- plugin: text
- label: 'Save changes'
- body: 'This saves all changes made to the fields for this index. Until this button is pressed, all added, changed or removed fields will only be stored temporarily and not effect the actual index used in the rest of the site.'
- weight: 10
- attributes:
- data-id: edit-actions-submit
- search-api-index-fields-cancel:
- id: search-api-index-fields-cancel
- plugin: text
- label: 'Cancel changes'
- body: 'If you have made changes to the index''s fields but not yet saved them, the "Cancel" link lets you discard those changes.'
- weight: 10
- attributes:
- data-id: edit-actions-cancel
- -
- collection: ''
- name: tour.tour.search-api-index-form
- data:
- id: search-api-index-form
- module: search_api
- label: 'Add or edit a Search API index'
- langcode: en
- routes:
- -
- route_name: entity.search_api_index.add_form
- -
- route_name: entity.search_api_index.edit_form
- dependencies:
- module:
- - search_api
- tips:
- search-api-index-form-introduction:
- id: search-api-index-form-introduction
- plugin: text
- label: 'Adding or editing an index'
- body: 'This form can be used to edit an existing index or add a new index to your site. Indexes define a set of data that will be indexed and can then be searched.'
- weight: 1
- search-api-index-form-name:
- id: search-api-index-form-name
- plugin: text
- label: 'Index name'
- body: 'Enter a name to identify this index. For example, "Content index". This will only be displayed in the admin user interface.'
- weight: 2
- attributes:
- data-id: edit-name
- search-api-index-form-datasources:
- id: search-api-index-form-datasources
- plugin: text
- label: Datasources
- body: 'Datasources define the types of items that will be indexed in this index. By default, all content entities (like content, comments and taxonomy terms) will be available here, but modules can also add their own.'
- weight: 3
- attributes:
- data-id: edit-datasources
- search-api-index-form-tracker:
- id: search-api-index-form-tracker
- plugin: text
- label: Tracker
- body: "An index's tracker is the system that keeps track of which items there are available for the index, and which of them still need to be indexed. Changing the tracker of an existing index will lead to reindexing of all items."
- weight: 4
- attributes:
- data-id: edit-tracker
- search-api-index-form-server:
- id: search-api-index-form-server
- plugin: text
- label: Server
- body: 'The search server that the index should use for indexing and searching. If no server is selected here, the index cannot be enabled. An index can only have one server, but a server can have any number of indexes.'
- weight: 5
- attributes:
- data-id: edit-server
- search-api-index-form-description:
- id: search-api-index-form-description
- plugin: text
- label: 'Index description'
- body: 'Optionally, enter a description to explain the function of the index in more detail. This will only be displayed in the admin user interface.'
- weight: 6
- attributes:
- data-id: edit-description
- search-api-index-form-options:
- id: search-api-index-form-options
- plugin: text
- label: 'Advanced options'
- body: 'These options allow more detailed configuration of index behavior, but can usually safely be ignored by inexperienced users.'
- weight: 7
- attributes:
- data-id: edit-options
- -
- collection: ''
- name: tour.tour.search-api-index-processors
- data:
- id: search-api-index-processors
- module: search_api
- label: 'Processors used for this index'
- langcode: en
- routes:
- -
- route_name: entity.search_api_index.processors
- dependencies:
- module:
- - search_api
- tips:
- search-api-index-processors-introduction:
- id: search-api-index-processors-introduction
- plugin: text
- label: 'Processors used for this index'
- body: "Processors customize different aspects of an index's functionality. They can keep items from being indexed, change how certain fields are indexed and influence searches."
- weight: 1
- search-api-index-processors-enable:
- id: search-api-index-processors-enable
- plugin: text
- label: 'Enable processors'
- body: 'This lists all processors available for this index and lets you choose the ones that should be active. (Note: Some processors cannot be disabled.)'
- weight: 2
- attributes:
- data-id: edit-status
- search-api-index-processors-weights:
- id: search-api-index-processors-weights
- plugin: text
- label: 'Processor order'
- body: 'This shows you which enabled processors will be active in the different parts of the indexing/searching workflow, and lets you re-arrange them. This should usually not be necessary, and only be used by advanced users as some processors will lead to unexpected results when used in the wrong order.'
- weight: 3
- attributes:
- data-id: edit-weights
- search-api-index-processors-settings:
- id: search-api-index-processors-settings
- plugin: text
- label: 'Processor settings'
- body: 'Some processors have additional configuration available, which you are able to change here.'
- weight: 4
- attributes:
- data-class: form-type-vertical-tabs
- -
- collection: ''
- name: tour.tour.search-api-server
- data:
- id: search-api-server
- module: search_api
- label: 'Information about a server'
- langcode: en
- routes:
- -
- route_name: entity.search_api_server.canonical
- dependencies:
- module:
- - search_api
- tips:
- search-api-server-introduction:
- id: search-api-server-introduction
- plugin: text
- label: 'Information about a server'
- body: 'This page shows a summary of a search server.'
- weight: 1
- search-api-server-status:
- id: search-api-server-status
- plugin: text
- label: Status
- body: 'Shows whether the server is currently enabled or disabled.'
- weight: 2
- attributes:
- data-class: search-api-server-summary--status
- search-api-server-backend:
- id: search-api-server-backend
- plugin: text
- label: 'Backend class'
- body: 'The backend plugin used for this server. The backend plugin determines how items are indexed and searched – for example, using the database or an Apache Solr server.'
- weight: 3
- attributes:
- data-class: search-api-server-summary--backend
- search-api-server-indexes:
- id: search-api-server-indexes
- plugin: text
- label: 'Search indexes'
- body: 'Lists all search indexes that are attached to this server.'
- weight: 4
- attributes:
- data-class: search-api-server-summary--indexes
- search-api-server-clear:
- id: search-api-server-clear
- plugin: text
- label: 'Delete all indexed data'
- body: "This will permanently remove all data currently indexed on this server for indexes that aren't read-only. Items are queued for reindexing. Until reindexing occurs, searches for the affected indexes will not return any results."
- weight: 5
- attributes:
- data-id: edit-clear
- -
- collection: ''
- name: tour.tour.search-api-server-form
- data:
- id: search-api-server-form
- module: search_api
- label: 'Add or edit a Search API server'
- langcode: en
- routes:
- -
- route_name: entity.search_api_server.add_form
- -
- route_name: entity.search_api_server.edit_form
- dependencies:
- module:
- - search_api
- tips:
- search-api-server-form-introduction:
- id: search-api-server-form-introduction
- plugin: text
- label: 'Adding or editing a Server'
- body: 'This form can be used to edit an existing server or add a new server to your site. Servers will hold your indexed data.'
- weight: 1
- search-api-server-form-name:
- id: search-api-server-form-name
- plugin: text
- label: 'Server name'
- body: 'Enter a name to identify this server. For example, "Solr server". This will only be displayed in the admin user interface.'
- weight: 2
- attributes:
- data-id: edit-name
- search-api-server-form-description:
- id: search-api-server-form-description
- plugin: text
- label: 'Server description'
- body: 'Optionally, enter a description to explain the function of the server in more detail. This will only be displayed in the admin user interface.'
- weight: 3
- attributes:
- data-id: edit-description
- search-api-server-form-backend:
- id: search-api-server-form-backend
- plugin: text
- label: 'Server backend'
- body: 'Servers can be based on different technologies. These are called "backends". A server uses exactly one backend and cannot change it later. You can make the "Database" backend available by enabling the "Database Search" module. Another very common backend is "Solr", which requires to be set up separately.'
- weight: 4
- attributes:
- data-id: edit-backend
diff --git a/config/config_snapshot.snapshot.config_sync.module.similarterms.yml b/config/config_snapshot.snapshot.config_sync.module.similarterms.yml
deleted file mode 100644
index 72b978d..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.similarterms.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 2e0b27f4-60d9-44b8-acdd-a62496f66166
-langcode: en
-status: true
-dependencies:
- module:
- - similarterms
-id: config_sync.module.similarterms
-snapshotSet: config_sync
-extensionType: module
-extensionName: similarterms
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.skins.yml b/config/config_snapshot.snapshot.config_sync.module.skins.yml
deleted file mode 100644
index 4638ef2..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.skins.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 24138d32-de00-4e61-8766-adef958fc806
-langcode: en
-status: true
-dependencies:
- module:
- - skins
-id: config_sync.module.skins
-snapshotSet: config_sync
-extensionType: module
-extensionName: skins
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.social_media_links.yml b/config/config_snapshot.snapshot.config_sync.module.social_media_links.yml
deleted file mode 100644
index 8087aa4..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.social_media_links.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 1ef784b2-e09e-4c8e-a2d3-76bbbdae228f
-langcode: en
-status: true
-dependencies:
- module:
- - social_media_links
-id: config_sync.module.social_media_links
-snapshotSet: config_sync
-extensionType: module
-extensionName: social_media_links
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.statistics.yml b/config/config_snapshot.snapshot.config_sync.module.statistics.yml
deleted file mode 100644
index ea6c5a3..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.statistics.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: dfee4f0b-625f-45e4-b0e0-46d876226950
-langcode: en
-status: true
-dependencies:
- module:
- - statistics
-id: config_sync.module.statistics
-snapshotSet: config_sync
-extensionType: module
-extensionName: statistics
-items:
- -
- collection: ''
- name: statistics.settings
- data:
- count_content_views: 0
- display_max_age: 3600
diff --git a/config/config_snapshot.snapshot.config_sync.module.stripe.yml b/config/config_snapshot.snapshot.config_sync.module.stripe.yml
deleted file mode 100644
index f451190..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.stripe.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: 182eb447-65a9-4596-888d-0afc28ac5581
-langcode: en
-status: true
-dependencies:
- module:
- - stripe
-id: config_sync.module.stripe
-snapshotSet: config_sync
-extensionType: module
-extensionName: stripe
-items:
- -
- collection: ''
- name: stripe.settings
- data:
- environment: test
- apikey:
- test:
- public: ''
- secret: ''
- webhook: ''
- live:
- public: ''
- secret: ''
- webhook: ''
- _core:
- default_config_hash: rvasJJkL462tLuGEfcTDUE_1ReQ_UkXB1gsCVJtCIPg
diff --git a/config/config_snapshot.snapshot.config_sync.module.syslog.yml b/config/config_snapshot.snapshot.config_sync.module.syslog.yml
deleted file mode 100644
index 3730950..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.syslog.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e88d65b8-4aec-4fbf-8548-9e8545efc31b
-langcode: en
-status: true
-dependencies:
- module:
- - syslog
-id: config_sync.module.syslog
-snapshotSet: config_sync
-extensionType: module
-extensionName: syslog
-items:
- -
- collection: ''
- name: syslog.settings
- data:
- identity: drupal
- facility: 8
- format: '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message'
diff --git a/config/config_snapshot.snapshot.config_sync.module.telephone.yml b/config/config_snapshot.snapshot.config_sync.module.telephone.yml
deleted file mode 100644
index 8dfe74e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.telephone.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 38e4bc4a-b5a7-4e33-8f43-d858213622e9
-langcode: en
-status: true
-dependencies:
- module:
- - telephone
-id: config_sync.module.telephone
-snapshotSet: config_sync
-extensionType: module
-extensionName: telephone
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml b/config/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml
deleted file mode 100644
index 09a9cd7..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 575bd709-f82f-403a-bdff-79ce9c03a646
-langcode: en
-status: true
-dependencies:
- module:
- - textarea_widget_for_text
-id: config_sync.module.textarea_widget_for_text
-snapshotSet: config_sync
-extensionType: module
-extensionName: textarea_widget_for_text
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.token.yml b/config/config_snapshot.snapshot.config_sync.module.token.yml
deleted file mode 100644
index 0e4b356..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.token.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 0d45d28c-0629-4be1-bcc5-4edd2dd1b3da
-langcode: en
-status: true
-dependencies:
- module:
- - token
-id: config_sync.module.token
-snapshotSet: config_sync
-extensionType: module
-extensionName: token
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.toolbar.yml b/config/config_snapshot.snapshot.config_sync.module.toolbar.yml
deleted file mode 100644
index 13242c2..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.toolbar.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 86b722ed-d0ba-49a0-8810-a554389de320
-langcode: en
-status: true
-dependencies:
- module:
- - toolbar
-id: config_sync.module.toolbar
-snapshotSet: config_sync
-extensionType: module
-extensionName: toolbar
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.tour.yml b/config/config_snapshot.snapshot.config_sync.module.tour.yml
deleted file mode 100644
index ed52d68..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.tour.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: cbd34594-e4cc-4b76-b12e-6119a8e6d049
-langcode: en
-status: true
-dependencies:
- module:
- - tour
-id: config_sync.module.tour
-snapshotSet: config_sync
-extensionType: module
-extensionName: tour
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.twigsuggest.yml b/config/config_snapshot.snapshot.config_sync.module.twigsuggest.yml
deleted file mode 100644
index e319880..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.twigsuggest.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: f659579f-ce66-4d10-bf0e-204de027efcf
-langcode: en
-status: true
-dependencies:
- module:
- - twigsuggest
-id: config_sync.module.twigsuggest
-snapshotSet: config_sync
-extensionType: module
-extensionName: twigsuggest
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.ui_patterns.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns.yml
deleted file mode 100644
index 68cbf4b..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ui_patterns.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 4120dd62-8fa0-4bce-a6d8-b6ae2a333819
-langcode: en
-status: true
-dependencies:
- module:
- - ui_patterns
-id: config_sync.module.ui_patterns
-snapshotSet: config_sync
-extensionType: module
-extensionName: ui_patterns
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml
deleted file mode 100644
index 17175e3..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: e5d507d4-fa23-4519-96ca-1c6dde6754f7
-langcode: en
-status: true
-dependencies:
- module:
- - ui_patterns_ds
-id: config_sync.module.ui_patterns_ds
-snapshotSet: config_sync
-extensionType: module
-extensionName: ui_patterns_ds
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml
deleted file mode 100644
index 47384b1..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 3250e055-fd97-449a-83ff-3808c64a81da
-langcode: en
-status: true
-dependencies:
- module:
- - ui_patterns_layouts
-id: config_sync.module.ui_patterns_layouts
-snapshotSet: config_sync
-extensionType: module
-extensionName: ui_patterns_layouts
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml
deleted file mode 100644
index 5cb7f15..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: a8de2bfe-071b-4d3b-9a9c-c1494239983c
-langcode: en
-status: true
-dependencies:
- module:
- - ui_patterns_library
-id: config_sync.module.ui_patterns_library
-snapshotSet: config_sync
-extensionType: module
-extensionName: ui_patterns_library
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.user.yml b/config/config_snapshot.snapshot.config_sync.module.user.yml
deleted file mode 100644
index 042877e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.user.yml
+++ /dev/null
@@ -1,1624 +0,0 @@
-uuid: f132de1a-0433-46f9-95ba-6b478a256428
-langcode: en
-status: true
-dependencies:
- module:
- - user
-id: config_sync.module.user
-snapshotSet: config_sync
-extensionType: module
-extensionName: user
-items:
- -
- collection: ''
- name: core.entity_form_mode.user.register
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: user.register
- label: Register
- targetEntityType: user
- cache: true
- -
- collection: ''
- name: core.entity_view_mode.user.compact
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: user.compact
- label: Compact
- targetEntityType: user
- cache: true
- -
- collection: ''
- name: core.entity_view_mode.user.full
- data:
- langcode: en
- status: false
- dependencies:
- module:
- - user
- id: user.full
- label: 'User account'
- targetEntityType: user
- cache: true
- -
- 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'
- -
- collection: ''
- name: system.action.user_block_user_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: user_block_user_action
- label: 'Block the selected user(s)'
- type: user
- plugin: user_block_user_action
- configuration: { }
- -
- collection: ''
- name: system.action.user_cancel_user_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: user_cancel_user_action
- label: 'Cancel the selected user account(s)'
- type: user
- plugin: user_cancel_user_action
- configuration: { }
- -
- collection: ''
- name: system.action.user_unblock_user_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: user_unblock_user_action
- label: 'Unblock the selected user(s)'
- type: user
- plugin: user_unblock_user_action
- configuration: { }
- -
- collection: ''
- name: user.flood
- data:
- uid_only: false
- ip_limit: 50
- ip_window: 3600
- user_limit: 5
- user_window: 21600
- -
- collection: ''
- name: user.mail
- data:
- cancel_confirm:
- body: |
- [user:display-name],
-
- A request to cancel your account has been made at [site:name].
-
- You may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:
-
- [user:cancel-url]
-
- NOTE: The cancellation of your account is not reversible.
-
- This link expires in one day and nothing will happen if it is not used.
-
- -- [site:name] team
- subject: 'Account cancellation request for [user:display-name] at [site:name]'
- password_reset:
- body: |
- [user:display-name],
-
- A request to reset the password for your account has been made at [site:name].
-
- You may now log in by clicking this link or copying and pasting it into your browser:
-
- [user:one-time-login-url]
-
- This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.
-
- -- [site:name] team
- subject: 'Replacement login information for [user:display-name] at [site:name]'
- register_admin_created:
- body: |
- [user:display-name],
-
- A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:
-
- [user:one-time-login-url]
-
- This link can only be used once to log in and will lead you to a page where you can set your password.
-
- After setting your password, you will be able to log in at [site:login-url] in the future using:
-
- username: [user:name]
- password: Your password
-
- -- [site:name] team
- subject: 'An administrator created an account for you at [site:name]'
- register_no_approval_required:
- body: |
- [user:display-name],
-
- Thank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:
-
- [user:one-time-login-url]
-
- This link can only be used once to log in and will lead you to a page where you can set your password.
-
- After setting your password, you will be able to log in at [site:login-url] in the future using:
-
- username: [user:name]
- password: Your password
-
- -- [site:name] team
- subject: 'Account details for [user:display-name] at [site:name]'
- register_pending_approval:
- body: |
- [user:display-name],
-
- Thank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.
-
- -- [site:name] team
- subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
- register_pending_approval_admin:
- body: |
- [user:display-name] has applied for an account.
-
- [user:edit-url]
- subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
- status_activated:
- body: |
- [user:display-name],
-
- Your account at [site:name] has been activated.
-
- You may now log in by clicking this link or copying and pasting it into your browser:
-
- [user:one-time-login-url]
-
- This link can only be used once to log in and will lead you to a page where you can set your password.
-
- After setting your password, you will be able to log in at [site:login-url] in the future using:
-
- username: [user:account-name]
- password: Your password
-
- -- [site:name] team
- subject: 'Account details for [user:display-name] at [site:name] (approved)'
- status_blocked:
- body: |
- [user:display-name],
-
- Your account on [site:name] has been blocked.
-
- -- [site:name] team
- subject: 'Account details for [user:display-name] at [site:name] (blocked)'
- status_canceled:
- body: |
- [user:display-name],
-
- Your account on [site:name] has been canceled.
-
- -- [site:name] team
- subject: 'Account details for [user:display-name] at [site:name] (canceled)'
- langcode: en
- -
- collection: ''
- name: user.role.anonymous
- data:
- langcode: en
- status: true
- dependencies: { }
- id: anonymous
- label: 'Anonymous user'
- weight: 0
- is_admin: false
- permissions:
- - 'access site-wide contact form'
- - 'use text format restricted_html'
- - 'access comments'
- -
- collection: ''
- name: user.role.authenticated
- data:
- langcode: en
- status: true
- dependencies: { }
- id: authenticated
- label: 'Authenticated user'
- weight: 1
- is_admin: false
- permissions:
- - 'access shortcuts'
- - 'access site-wide contact form'
- - 'cancel account'
- - 'change own username'
- - 'use text format basic_html'
- - 'access comments'
- - 'post comments'
- -
- collection: ''
- name: user.settings
- data:
- anonymous: Anonymous
- verify_mail: true
- notify:
- cancel_confirm: true
- password_reset: true
- status_activated: true
- status_blocked: false
- status_canceled: false
- register_admin_created: true
- register_no_approval_required: true
- register_pending_approval: true
- register: visitors
- cancel_method: user_cancel_block
- password_reset_timeout: 86400
- password_strength: true
- langcode: en
- -
- collection: ''
- name: views.view.user_admin_people
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: user_admin_people
- label: People
- module: user
- description: 'Find and manage people interacting with your site.'
- tag: default
- base_table: users_field_data
- base_field: uid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'administer users'
- cache:
- type: tag
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Filter
- reset_button: true
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: full
- options:
- items_per_page: 50
- offset: 0
- id: 0
- total_pages: 0
- tags:
- previous: '‹ Previous'
- next: 'Next ›'
- first: '« First'
- last: 'Last »'
- expose:
- items_per_page: false
- items_per_page_label: 'Items per page'
- items_per_page_options: '5, 10, 25, 50'
- items_per_page_options_all: false
- items_per_page_options_all_label: '- All -'
- offset: false
- offset_label: Offset
- quantity: 9
- style:
- type: table
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- override: true
- sticky: false
- summary: ''
- columns:
- user_bulk_form: user_bulk_form
- name: name
- status: status
- rid: rid
- created: created
- access: access
- edit_node: edit_node
- dropbutton: dropbutton
- info:
- user_bulk_form:
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- name:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- status:
- sortable: true
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- rid:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- created:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- access:
- sortable: true
- default_sort_order: desc
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- edit_node:
- align: ''
- separator: ''
- empty_column: false
- responsive: priority-low
- dropbutton:
- sortable: false
- default_sort_order: asc
- align: ''
- separator: ''
- empty_column: false
- responsive: ''
- default: created
- empty_table: true
- row:
- type: fields
- fields:
- user_bulk_form:
- id: user_bulk_form
- table: users
- field: user_bulk_form
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Bulk update'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: user_bulk_form
- entity_type: user
- name:
- id: name
- table: users_field_data
- field: name
- relationship: none
- group_type: group
- admin_label: ''
- label: Username
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: field
- type: user_name
- entity_type: user
- entity_field: name
- status:
- id: status
- table: users_field_data
- field: status
- relationship: none
- group_type: group
- admin_label: ''
- label: Status
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- plugin_id: field
- type: boolean
- settings:
- format: custom
- format_custom_true: Active
- format_custom_false: Blocked
- entity_type: user
- entity_field: status
- roles_target_id:
- id: roles_target_id
- table: user__roles
- field: roles_target_id
- relationship: none
- group_type: group
- admin_label: ''
- label: Roles
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- type: ul
- separator: ', '
- plugin_id: user_roles
- created:
- id: created
- table: users_field_data
- field: created
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Member for'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- type: timestamp_ago
- settings:
- future_format: '@interval'
- past_format: '@interval'
- granularity: 2
- plugin_id: field
- entity_type: user
- entity_field: created
- access:
- id: access
- table: users_field_data
- field: access
- relationship: none
- group_type: group
- admin_label: ''
- label: 'Last access'
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- type: timestamp_ago
- settings:
- future_format: '@interval hence'
- past_format: '@interval ago'
- granularity: 2
- plugin_id: field
- entity_type: user
- entity_field: access
- operations:
- id: operations
- table: users
- field: operations
- relationship: none
- group_type: group
- admin_label: ''
- label: Operations
- exclude: false
- alter:
- alter_text: false
- text: ''
- make_link: false
- path: ''
- absolute: false
- external: false
- replace_spaces: false
- path_case: none
- trim_whitespace: false
- alt: ''
- rel: ''
- link_class: ''
- prefix: ''
- suffix: ''
- target: ''
- nl2br: false
- max_length: 0
- word_boundary: true
- ellipsis: true
- more_link: false
- more_link_text: ''
- more_link_path: ''
- strip_tags: false
- trim: false
- preserve_tags: ''
- html: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_empty: false
- empty_zero: false
- hide_alter_empty: true
- destination: true
- entity_type: user
- plugin_id: entity_operations
- mail:
- id: mail
- table: users_field_data
- field: mail
- 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: basic_string
- settings: { }
- group_column: value
- group_columns: { }
- group_rows: true
- delta_limit: 0
- delta_offset: 0
- delta_reversed: false
- delta_first_last: false
- multi_type: separator
- separator: ', '
- field_api_classes: false
- plugin_id: field
- entity_type: user
- entity_field: mail
- filters:
- combine:
- id: combine
- table: views
- field: combine
- relationship: none
- group_type: group
- admin_label: ''
- operator: contains
- value: ''
- group: 1
- exposed: true
- expose:
- operator_id: combine_op
- label: 'Name or email contains'
- description: ''
- use_operator: false
- operator: combine_op
- identifier: user
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- fields:
- name: name
- mail: mail
- plugin_id: combine
- status:
- id: status
- table: users_field_data
- field: status
- relationship: none
- group_type: group
- admin_label: ''
- operator: '='
- value: '1'
- group: 1
- exposed: true
- expose:
- operator_id: ''
- label: ''
- description: ''
- use_operator: false
- operator: status_op
- identifier: status
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: true
- group_info:
- label: Status
- description: ''
- identifier: status
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items:
- 1:
- title: Active
- operator: '='
- value: '1'
- 2:
- title: Blocked
- operator: '='
- value: '0'
- plugin_id: boolean
- entity_type: user
- entity_field: status
- roles_target_id:
- id: roles_target_id
- table: user__roles
- field: roles_target_id
- relationship: none
- group_type: group
- admin_label: ''
- operator: or
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: roles_target_id_op
- label: Role
- description: ''
- use_operator: false
- operator: roles_target_id_op
- identifier: role
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- reduce_duplicates: false
- plugin_id: user_roles
- permission:
- id: permission
- table: user__roles
- field: permission
- relationship: none
- group_type: group
- admin_label: ''
- operator: or
- value: { }
- group: 1
- exposed: true
- expose:
- operator_id: permission_op
- label: Permission
- description: ''
- use_operator: false
- operator: permission_op
- identifier: permission
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- reduce: false
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- reduce_duplicates: false
- plugin_id: user_permissions
- default_langcode:
- id: default_langcode
- table: users_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: ''
- 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: user
- entity_field: default_langcode
- plugin_id: boolean
- uid_raw:
- id: uid_raw
- table: users_field_data
- field: uid_raw
- relationship: none
- group_type: group
- admin_label: ''
- operator: '!='
- value:
- min: ''
- max: ''
- value: '0'
- group: 1
- exposed: false
- expose:
- operator_id: '0'
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: numeric
- entity_type: user
- sorts:
- created:
- id: created
- table: users_field_data
- field: created
- relationship: none
- group_type: group
- admin_label: ''
- order: DESC
- exposed: false
- expose:
- label: ''
- granularity: second
- plugin_id: date
- entity_type: user
- entity_field: created
- title: People
- 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 people available.'
- plugin_id: text_custom
- use_more: false
- use_more_always: false
- use_more_text: more
- display_comment: ''
- use_ajax: false
- hide_attachment_summary: false
- show_admin_links: true
- group_by: false
- link_url: ''
- link_display: page_1
- css_class: ''
- filter_groups:
- operator: AND
- groups:
- 1: AND
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- max-age: 0
- tags: { }
- page_1:
- display_plugin: page
- id: page_1
- display_title: Page
- position: 1
- display_options:
- path: admin/people/list
- show_admin_links: false
- menu:
- type: 'default tab'
- title: List
- description: 'Find and manage people interacting with your site.'
- menu_name: admin
- weight: -10
- context: ''
- tab_options:
- type: normal
- title: People
- description: 'Manage user accounts, roles, and permissions.'
- menu_name: admin
- weight: 0
- defaults:
- show_admin_links: false
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - url
- - url.query_args
- - user.permissions
- max-age: 0
- tags: { }
- -
- collection: ''
- name: views.view.who_s_new
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: who_s_new
- label: "Who's new"
- module: user
- description: 'Shows a list of the newest user accounts on the site.'
- tag: default
- base_table: users_field_data
- base_field: uid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'access content'
- cache:
- type: tag
- options: { }
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: some
- options:
- items_per_page: 5
- offset: 0
- style:
- type: html_list
- row:
- type: fields
- fields:
- name:
- id: name
- table: users_field_data
- field: name
- label: ''
- plugin_id: field
- type: user_name
- alter:
- alter_text: false
- make_link: false
- absolute: false
- trim: false
- word_boundary: false
- ellipsis: false
- strip_tags: false
- html: false
- hide_empty: false
- empty_zero: false
- relationship: none
- group_type: group
- admin_label: ''
- exclude: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_alter_empty: true
- entity_type: user
- entity_field: name
- filters:
- status:
- value: '1'
- table: users_field_data
- field: status
- id: status
- expose:
- operator: '0'
- group: 1
- plugin_id: boolean
- entity_type: user
- entity_field: status
- access:
- id: access
- table: users_field_data
- field: access
- relationship: none
- group_type: group
- admin_label: ''
- operator: '>'
- value:
- min: ''
- max: ''
- value: '1970-01-01'
- type: date
- group: 1
- exposed: false
- expose:
- operator_id: '0'
- label: ''
- description: ''
- use_operator: false
- operator: ''
- identifier: ''
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: date
- entity_type: user
- entity_field: access
- sorts:
- created:
- id: created
- table: users_field_data
- field: created
- relationship: none
- group_type: group
- admin_label: ''
- order: DESC
- exposed: false
- expose:
- label: ''
- granularity: second
- plugin_id: date
- entity_type: user
- entity_field: created
- title: "Who's new"
- header: { }
- footer: { }
- empty: { }
- relationships: { }
- arguments: { }
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user.permissions
- max-age: -1
- tags: { }
- block_1:
- display_plugin: block
- id: block_1
- display_title: "Who's new"
- position: 1
- display_options:
- display_description: 'A list of new users'
- block_description: "Who's new"
- block_category: User
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user.permissions
- max-age: -1
- tags: { }
- -
- collection: ''
- name: views.view.who_s_online
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - user
- id: who_s_online
- label: "Who's online block"
- module: user
- description: 'Shows the user names of the most recently active users, and the total number of active users.'
- tag: default
- base_table: users_field_data
- base_field: uid
- core: 8.x
- display:
- default:
- display_plugin: default
- id: default
- display_title: Master
- position: 0
- display_options:
- access:
- type: perm
- options:
- perm: 'access user profiles'
- cache:
- type: tag
- options: { }
- query:
- type: views_query
- options:
- disable_sql_rewrite: false
- distinct: false
- replica: false
- query_comment: ''
- query_tags: { }
- exposed_form:
- type: basic
- options:
- submit_button: Apply
- reset_button: false
- reset_button_label: Reset
- exposed_sorts_label: 'Sort by'
- expose_sort_order: true
- sort_asc_label: Asc
- sort_desc_label: Desc
- pager:
- type: some
- options:
- items_per_page: 10
- offset: 0
- style:
- type: html_list
- options:
- grouping: { }
- row_class: ''
- default_row_class: true
- type: ul
- wrapper_class: item-list
- class: ''
- row:
- type: fields
- fields:
- name:
- id: name
- table: users_field_data
- field: name
- label: ''
- plugin_id: field
- type: user_name
- alter:
- alter_text: false
- make_link: false
- absolute: false
- trim: false
- word_boundary: false
- ellipsis: false
- strip_tags: false
- html: false
- hide_empty: false
- empty_zero: false
- relationship: none
- group_type: group
- admin_label: ''
- exclude: false
- element_type: ''
- element_class: ''
- element_label_type: ''
- element_label_class: ''
- element_label_colon: true
- element_wrapper_type: ''
- element_wrapper_class: ''
- element_default_classes: true
- empty: ''
- hide_alter_empty: true
- entity_type: user
- entity_field: name
- filters:
- status:
- value: '1'
- table: users_field_data
- field: status
- id: status
- expose:
- operator: '0'
- group: 1
- plugin_id: boolean
- entity_type: user
- entity_field: status
- access:
- id: access
- table: users_field_data
- field: access
- relationship: none
- group_type: group
- admin_label: ''
- operator: '>='
- value:
- min: ''
- max: ''
- value: '-15 minutes'
- type: offset
- group: 1
- exposed: false
- expose:
- operator_id: access_op
- label: 'Last access'
- description: 'A user is considered online for this long after they have last viewed a page.'
- use_operator: false
- operator: access_op
- identifier: access
- required: false
- remember: false
- multiple: false
- remember_roles:
- authenticated: authenticated
- anonymous: '0'
- administrator: '0'
- is_grouped: false
- group_info:
- label: ''
- description: ''
- identifier: ''
- optional: true
- widget: select
- multiple: false
- remember: false
- default_group: All
- default_group_multiple: { }
- group_items: { }
- plugin_id: date
- entity_type: user
- entity_field: access
- sorts:
- access:
- id: access
- table: users_field_data
- field: access
- order: DESC
- relationship: none
- group_type: group
- admin_label: ''
- exposed: false
- expose:
- label: ''
- granularity: second
- plugin_id: date
- entity_type: user
- entity_field: access
- title: "Who's online"
- header:
- result:
- id: result
- table: views
- field: result
- relationship: none
- group_type: group
- admin_label: ''
- empty: false
- content: 'There are currently @total users online.'
- plugin_id: result
- footer: { }
- empty:
- area_text_custom:
- id: area_text_custom
- table: views
- field: area_text_custom
- relationship: none
- group_type: group
- admin_label: ''
- empty: true
- tokenize: false
- content: 'There are currently 0 users online.'
- plugin_id: text_custom
- relationships: { }
- arguments: { }
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user.permissions
- max-age: -1
- tags: { }
- who_s_online_block:
- display_plugin: block
- id: who_s_online_block
- display_title: "Who's online"
- position: 1
- display_options:
- block_description: "Who's online"
- display_description: 'A list of users that are currently logged in.'
- display_extenders: { }
- cache_metadata:
- contexts:
- - 'languages:language_content'
- - 'languages:language_interface'
- - user.permissions
- max-age: -1
- tags: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.video_embed_field.yml b/config/config_snapshot.snapshot.config_sync.module.video_embed_field.yml
deleted file mode 100644
index cf76b4e..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.video_embed_field.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 843f5b95-1d7d-409b-84a8-fcc8df9c5038
-langcode: en
-status: true
-dependencies:
- module:
- - video_embed_field
-id: config_sync.module.video_embed_field
-snapshotSet: config_sync
-extensionType: module
-extensionName: video_embed_field
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.viewsreference.yml b/config/config_snapshot.snapshot.config_sync.module.viewsreference.yml
deleted file mode 100644
index b446357..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.viewsreference.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: aa2400ad-83ac-437f-8fb1-8b9130b91527
-langcode: en
-status: true
-dependencies:
- module:
- - viewsreference
-id: config_sync.module.viewsreference
-snapshotSet: config_sync
-extensionType: module
-extensionName: viewsreference
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml b/config/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml
deleted file mode 100644
index c8c1f35..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 4ee58691-ed66-4671-825b-ea87adf31ff6
-langcode: en
-status: true
-dependencies:
- module:
- - webform_mailchimp
-id: config_sync.module.webform_mailchimp
-snapshotSet: config_sync
-extensionType: module
-extensionName: webform_mailchimp
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml b/config/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml
deleted file mode 100644
index a16ab1d..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-uuid: f7497964-38de-460f-813f-c1925b00d24e
-langcode: en
-status: true
-dependencies:
- module:
- - webform_scheduled_email
-id: config_sync.module.webform_scheduled_email
-snapshotSet: config_sync
-extensionType: module
-extensionName: webform_scheduled_email
-items:
- -
- collection: ''
- name: webform_scheduled_email.settings
- data:
- schedule_type: date
diff --git a/config/config_snapshot.snapshot.config_sync.module.webform_ui.yml b/config/config_snapshot.snapshot.config_sync.module.webform_ui.yml
deleted file mode 100644
index 195c6c9..0000000
--- a/config/config_snapshot.snapshot.config_sync.module.webform_ui.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: d34b6ece-3aa6-4dfe-8033-0f623d1e5b21
-langcode: en
-status: true
-dependencies:
- module:
- - webform_ui
-id: config_sync.module.webform_ui
-snapshotSet: config_sync
-extensionType: module
-extensionName: webform_ui
-items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.theme.agarica.yml b/config/config_snapshot.snapshot.config_sync.theme.agarica.yml
deleted file mode 100644
index d21a112..0000000
--- a/config/config_snapshot.snapshot.config_sync.theme.agarica.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7713a871-54d4-4e75-81ba-d00a3cc85e5e
-langcode: en
-status: true
-dependencies:
- theme:
- - agarica
-id: config_sync.theme.agarica
-snapshotSet: config_sync
-extensionType: theme
-extensionName: agarica
-items: { }
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/config_snapshot.snapshot.config_sync.theme.seven.yml b/config/config_snapshot.snapshot.config_sync.theme.seven.yml
deleted file mode 100644
index dc51dfa..0000000
--- a/config/config_snapshot.snapshot.config_sync.theme.seven.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: eeb00cc5-3e46-4271-bf08-d6504894fae9
-langcode: en
-status: true
-dependencies:
- theme:
- - seven
-id: config_sync.theme.seven
-snapshotSet: config_sync
-extensionType: theme
-extensionName: seven
-items: { }
diff --git a/config/core.base_field_override.block_content.basic.changed.yml b/config/core.base_field_override.block_content.basic.changed.yml
deleted file mode 100644
index 2f8aa63..0000000
--- a/config/core.base_field_override.block_content.basic.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 41608aee-1510-443b-89ae-cf8c39a1289f
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.basic
-id: block_content.basic.changed
-field_name: changed
-entity_type: block_content
-bundle: basic
-label: Changed
-description: 'The time that the custom block was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.block_content.basic.info.yml b/config/core.base_field_override.block_content.basic.info.yml
deleted file mode 100644
index 2ea0df2..0000000
--- a/config/core.base_field_override.block_content.basic.info.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 65174d41-eac0-4255-b785-94162ac981db
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.basic
-id: block_content.basic.info
-field_name: info
-entity_type: block_content
-bundle: basic
-label: 'Block description'
-description: 'A brief description of your block.'
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.block_content.basic.metatag.yml b/config/core.base_field_override.block_content.basic.metatag.yml
deleted file mode 100644
index aaad787..0000000
--- a/config/core.base_field_override.block_content.basic.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c6b4be45-1f71-47f9-b35c-d646d27eb264
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.basic
-id: block_content.basic.metatag
-field_name: metatag
-entity_type: block_content
-bundle: basic
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.block_content.basic.status.yml b/config/core.base_field_override.block_content.basic.status.yml
deleted file mode 100644
index d687453..0000000
--- a/config/core.base_field_override.block_content.basic.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: d424ae95-c1be-407b-beec-f4f79c279109
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.basic
-id: block_content.basic.status
-field_name: status
-entity_type: block_content
-bundle: basic
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.block_content.slide.changed.yml b/config/core.base_field_override.block_content.slide.changed.yml
deleted file mode 100644
index 10a3c89..0000000
--- a/config/core.base_field_override.block_content.slide.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 965b0f55-08c2-429b-a8a5-5ae310b592ed
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.slide
-id: block_content.slide.changed
-field_name: changed
-entity_type: block_content
-bundle: slide
-label: Changed
-description: 'The time that the custom block was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.block_content.slide.info.yml b/config/core.base_field_override.block_content.slide.info.yml
deleted file mode 100644
index d75629b..0000000
--- a/config/core.base_field_override.block_content.slide.info.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 73efd0d0-35e5-4216-b8a5-35334273729b
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.slide
-id: block_content.slide.info
-field_name: info
-entity_type: block_content
-bundle: slide
-label: 'Block description'
-description: 'A brief description of your block.'
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.block_content.slide.metatag.yml b/config/core.base_field_override.block_content.slide.metatag.yml
deleted file mode 100644
index 7c59762..0000000
--- a/config/core.base_field_override.block_content.slide.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a81a3819-4cca-4aab-a890-f5ffca67b90d
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.slide
-id: block_content.slide.metatag
-field_name: metatag
-entity_type: block_content
-bundle: slide
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.block_content.slide.status.yml b/config/core.base_field_override.block_content.slide.status.yml
deleted file mode 100644
index f267cc0..0000000
--- a/config/core.base_field_override.block_content.slide.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 486b8af2-45f7-4650-bce0-2fd671dd2494
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.slide
-id: block_content.slide.status
-field_name: status
-entity_type: block_content
-bundle: slide
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.comment.comment.changed.yml b/config/core.base_field_override.comment.comment.changed.yml
deleted file mode 100644
index 86d1c5c..0000000
--- a/config/core.base_field_override.comment.comment.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e983c90b-55dc-4e90-9fde-6f5f15ec4d1a
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.changed
-field_name: changed
-entity_type: comment
-bundle: comment
-label: Changed
-description: 'The time that the comment was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.comment.comment.created.yml b/config/core.base_field_override.comment.comment.created.yml
deleted file mode 100644
index 304258c..0000000
--- a/config/core.base_field_override.comment.comment.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2980d695-92b2-4ba0-ae8a-cbed2c991f93
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.created
-field_name: created
-entity_type: comment
-bundle: comment
-label: Created
-description: 'The time that the comment was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.comment.comment.homepage.yml b/config/core.base_field_override.comment.comment.homepage.yml
deleted file mode 100644
index 90deef2..0000000
--- a/config/core.base_field_override.comment.comment.homepage.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 17b6e24d-0c11-44f5-b54c-a0362be64697
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.homepage
-field_name: homepage
-entity_type: comment
-bundle: comment
-label: Homepage
-description: "The comment author's home page address."
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: uri
diff --git a/config/core.base_field_override.comment.comment.hostname.yml b/config/core.base_field_override.comment.comment.hostname.yml
deleted file mode 100644
index c9f4ebc..0000000
--- a/config/core.base_field_override.comment.comment.hostname.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 26cc3527-ccab-4ff8-8975-6fbb96ca1b53
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.hostname
-field_name: hostname
-entity_type: comment
-bundle: comment
-label: Hostname
-description: "The comment author's hostname."
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\comment\Entity\Comment::getDefaultHostname'
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.comment.comment.mail.yml b/config/core.base_field_override.comment.comment.mail.yml
deleted file mode 100644
index 23b0034..0000000
--- a/config/core.base_field_override.comment.comment.mail.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 5026af0c-77f1-4229-acae-15eaf9fedb95
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.mail
-field_name: mail
-entity_type: comment
-bundle: comment
-label: Email
-description: "The comment author's email address."
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: email
diff --git a/config/core.base_field_override.comment.comment.name.yml b/config/core.base_field_override.comment.comment.name.yml
deleted file mode 100644
index e9dbcd3..0000000
--- a/config/core.base_field_override.comment.comment.name.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 76e948aa-3f9c-4168-956a-d16dd9ff4f2e
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.name
-field_name: name
-entity_type: comment
-bundle: comment
-label: Name
-description: "The comment author's name."
-required: false
-translatable: true
-default_value:
- -
- value: ''
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.comment.comment.status.yml b/config/core.base_field_override.comment.comment.status.yml
deleted file mode 100644
index eb358fe..0000000
--- a/config/core.base_field_override.comment.comment.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: cc737f2b-94e4-46db-9f55-340d97d00ae3
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.status
-field_name: status
-entity_type: comment
-bundle: comment
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: 'Drupal\comment\Entity\Comment::getDefaultStatus'
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.comment.comment.subject.yml b/config/core.base_field_override.comment.comment.subject.yml
deleted file mode 100644
index c791c55..0000000
--- a/config/core.base_field_override.comment.comment.subject.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: cade7016-949e-44d9-809a-5fe7c465d5c1
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.subject
-field_name: subject
-entity_type: comment
-bundle: comment
-label: Subject
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.comment.comment.uid.yml b/config/core.base_field_override.comment.comment.uid.yml
deleted file mode 100644
index 8f870db..0000000
--- a/config/core.base_field_override.comment.comment.uid.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 2772439b-715f-4e81-96b8-3b0c78397908
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
-id: comment.comment.uid
-field_name: uid
-entity_type: comment
-bundle: comment
-label: 'User ID'
-description: 'The user ID of the comment author.'
-required: false
-translatable: false
-default_value:
- -
- target_id: '0'
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.menu_link_content.menu_link_content.changed.yml b/config/core.base_field_override.menu_link_content.menu_link_content.changed.yml
deleted file mode 100644
index 0325a94..0000000
--- a/config/core.base_field_override.menu_link_content.menu_link_content.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: ff325e15-a43b-4d59-bd4f-fdd60f21d6ff
-langcode: en
-status: true
-dependencies:
- module:
- - menu_link_content
-id: menu_link_content.menu_link_content.changed
-field_name: changed
-entity_type: menu_link_content
-bundle: menu_link_content
-label: Changed
-description: 'The time that the menu link was last edited.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.menu_link_content.menu_link_content.description.yml b/config/core.base_field_override.menu_link_content.menu_link_content.description.yml
deleted file mode 100644
index 5c7a4b7..0000000
--- a/config/core.base_field_override.menu_link_content.menu_link_content.description.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 04bfd9a8-a5b3-4bd1-92bd-b4dea7a4034c
-langcode: en
-status: true
-dependencies:
- module:
- - menu_link_content
-id: menu_link_content.menu_link_content.description
-field_name: description
-entity_type: menu_link_content
-bundle: menu_link_content
-label: Description
-description: 'Shown when hovering over the menu link.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.menu_link_content.menu_link_content.metatag.yml b/config/core.base_field_override.menu_link_content.menu_link_content.metatag.yml
deleted file mode 100644
index 4a46ec9..0000000
--- a/config/core.base_field_override.menu_link_content.menu_link_content.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 5dd52b1d-ea60-4e81-ae80-5042d4aefa1f
-langcode: en
-status: true
-dependencies:
- module:
- - menu_link_content
-id: menu_link_content.menu_link_content.metatag
-field_name: metatag
-entity_type: menu_link_content
-bundle: menu_link_content
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.menu_link_content.menu_link_content.title.yml b/config/core.base_field_override.menu_link_content.menu_link_content.title.yml
deleted file mode 100644
index 0dba987..0000000
--- a/config/core.base_field_override.menu_link_content.menu_link_content.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 34a7c198-6d0b-41a6-81c2-9974f9c8ee98
-langcode: en
-status: true
-dependencies:
- module:
- - menu_link_content
-id: menu_link_content.menu_link_content.title
-field_name: title
-entity_type: menu_link_content
-bundle: menu_link_content
-label: 'Menu link title'
-description: 'The text to be used for this link in the menu.'
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.action.changed.yml b/config/core.base_field_override.node.action.changed.yml
deleted file mode 100644
index f713bf6..0000000
--- a/config/core.base_field_override.node.action.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 48d33576-e3df-49a6-9dd3-2fa5cc79711c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.changed
-field_name: changed
-entity_type: node
-bundle: action
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.action.created.yml b/config/core.base_field_override.node.action.created.yml
deleted file mode 100644
index 62328d2..0000000
--- a/config/core.base_field_override.node.action.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: fb72977b-7c35-4f65-911a-3255f5255e0d
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.created
-field_name: created
-entity_type: node
-bundle: action
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.action.menu_link.yml b/config/core.base_field_override.node.action.menu_link.yml
deleted file mode 100644
index f2d44f5..0000000
--- a/config/core.base_field_override.node.action.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 8d4e0593-8145-47d4-99ab-ffa856b3fac3
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.menu_link
-field_name: menu_link
-entity_type: node
-bundle: action
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.action.metatag.yml b/config/core.base_field_override.node.action.metatag.yml
deleted file mode 100644
index 129f8ab..0000000
--- a/config/core.base_field_override.node.action.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 75128e15-326e-4461-b808-f2f86057c00d
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.metatag
-field_name: metatag
-entity_type: node
-bundle: action
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.action.path.yml b/config/core.base_field_override.node.action.path.yml
deleted file mode 100644
index 674e90e..0000000
--- a/config/core.base_field_override.node.action.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: f2db5eb3-2f59-4f2c-90cd-53cb032790d1
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
- module:
- - path
-id: node.action.path
-field_name: path
-entity_type: node
-bundle: action
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.action.status.yml b/config/core.base_field_override.node.action.status.yml
deleted file mode 100644
index 344dfa3..0000000
--- a/config/core.base_field_override.node.action.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: aa12e6d9-6b81-430c-85bb-8ff2e85d3450
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.status
-field_name: status
-entity_type: node
-bundle: action
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.action.sticky.yml b/config/core.base_field_override.node.action.sticky.yml
deleted file mode 100644
index f41027c..0000000
--- a/config/core.base_field_override.node.action.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 76a6df83-45f0-4279-9148-65bac26df09c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.sticky
-field_name: sticky
-entity_type: node
-bundle: action
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.action.title.yml b/config/core.base_field_override.node.action.title.yml
deleted file mode 100644
index 5afbd3c..0000000
--- a/config/core.base_field_override.node.action.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: dc695cac-a4f4-46cb-b178-b2416707d63e
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.title
-field_name: title
-entity_type: node
-bundle: action
-label: Title
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.action.uid.yml b/config/core.base_field_override.node.action.uid.yml
deleted file mode 100644
index bc9a810..0000000
--- a/config/core.base_field_override.node.action.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: a7801c2d-fc69-4c23-adf0-1391ffe60493
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
-id: node.action.uid
-field_name: uid
-entity_type: node
-bundle: action
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.article.changed.yml b/config/core.base_field_override.node.article.changed.yml
deleted file mode 100644
index cc40ccb..0000000
--- a/config/core.base_field_override.node.article.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3191712b-e604-4b9a-b488-8f4800fe6adc
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.changed
-field_name: changed
-entity_type: node
-bundle: article
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.article.created.yml b/config/core.base_field_override.node.article.created.yml
deleted file mode 100644
index 5bc582a..0000000
--- a/config/core.base_field_override.node.article.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a6f08edd-2c64-48ce-bf53-affdb2357a0e
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.created
-field_name: created
-entity_type: node
-bundle: article
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.article.menu_link.yml b/config/core.base_field_override.node.article.menu_link.yml
deleted file mode 100644
index b4d7ff9..0000000
--- a/config/core.base_field_override.node.article.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 191c0539-b23d-4751-8a4f-3bf73f5d90ad
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.menu_link
-field_name: menu_link
-entity_type: node
-bundle: article
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.article.metatag.yml b/config/core.base_field_override.node.article.metatag.yml
deleted file mode 100644
index 758ae40..0000000
--- a/config/core.base_field_override.node.article.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 5ca83def-adb1-4c2a-ac77-ce51b04f4b5a
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.metatag
-field_name: metatag
-entity_type: node
-bundle: article
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.article.path.yml b/config/core.base_field_override.node.article.path.yml
deleted file mode 100644
index 217bab8..0000000
--- a/config/core.base_field_override.node.article.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: d76cf4a0-6761-41cd-ae39-0db632d740b8
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
- module:
- - path
-id: node.article.path
-field_name: path
-entity_type: node
-bundle: article
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.article.promote.yml b/config/core.base_field_override.node.article.promote.yml
deleted file mode 100644
index 1f5eb36..0000000
--- a/config/core.base_field_override.node.article.promote.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 3275b6de-2a55-4aa3-a226-f6ce85d4dac8
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.promote
-field_name: promote
-entity_type: node
-bundle: article
-label: 'Promoted to front page'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.article.status.yml b/config/core.base_field_override.node.article.status.yml
deleted file mode 100644
index 0a85c6e..0000000
--- a/config/core.base_field_override.node.article.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: d17fe005-70ba-44c7-bca3-ba0ce63113c8
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.status
-field_name: status
-entity_type: node
-bundle: article
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.article.sticky.yml b/config/core.base_field_override.node.article.sticky.yml
deleted file mode 100644
index d946e09..0000000
--- a/config/core.base_field_override.node.article.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: c95aa9e9-3813-44bd-98a6-0dada0480201
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.sticky
-field_name: sticky
-entity_type: node
-bundle: article
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.article.title.yml b/config/core.base_field_override.node.article.title.yml
deleted file mode 100644
index dc5fc26..0000000
--- a/config/core.base_field_override.node.article.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: ef4fd295-9856-42c2-9a36-99da6ab46197
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.title
-field_name: title
-entity_type: node
-bundle: article
-label: Title
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.article.uid.yml b/config/core.base_field_override.node.article.uid.yml
deleted file mode 100644
index 349d745..0000000
--- a/config/core.base_field_override.node.article.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 2750c6c3-a2a4-4dd7-b4a0-168fda85c846
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
-id: node.article.uid
-field_name: uid
-entity_type: node
-bundle: article
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.blog.changed.yml b/config/core.base_field_override.node.blog.changed.yml
deleted file mode 100644
index 2ddeb09..0000000
--- a/config/core.base_field_override.node.blog.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 4e862f89-8f4e-43c1-b279-812df4fb7f42
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.changed
-field_name: changed
-entity_type: node
-bundle: blog
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.blog.created.yml b/config/core.base_field_override.node.blog.created.yml
deleted file mode 100644
index 92b0154..0000000
--- a/config/core.base_field_override.node.blog.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2a30bd41-a0f5-46e5-932a-08976db069d6
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.created
-field_name: created
-entity_type: node
-bundle: blog
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.blog.menu_link.yml b/config/core.base_field_override.node.blog.menu_link.yml
deleted file mode 100644
index b991c3e..0000000
--- a/config/core.base_field_override.node.blog.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 5e0ebd9d-3492-4f28-aee0-db64e2c5423e
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.menu_link
-field_name: menu_link
-entity_type: node
-bundle: blog
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.blog.metatag.yml b/config/core.base_field_override.node.blog.metatag.yml
deleted file mode 100644
index 80a47be..0000000
--- a/config/core.base_field_override.node.blog.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 20fb6506-d1f2-40dc-a77f-46e8c58c36b5
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.metatag
-field_name: metatag
-entity_type: node
-bundle: blog
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.blog.path.yml b/config/core.base_field_override.node.blog.path.yml
deleted file mode 100644
index 74e7bb3..0000000
--- a/config/core.base_field_override.node.blog.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 38e808da-1e65-431b-9220-e9c302826a00
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
- module:
- - path
-id: node.blog.path
-field_name: path
-entity_type: node
-bundle: blog
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.blog.promote.yml b/config/core.base_field_override.node.blog.promote.yml
deleted file mode 100644
index 877c57b..0000000
--- a/config/core.base_field_override.node.blog.promote.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: ef669850-f90b-4372-9d70-381b9bea8dbd
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.promote
-field_name: promote
-entity_type: node
-bundle: blog
-label: 'Promoted to front page'
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.blog.status.yml b/config/core.base_field_override.node.blog.status.yml
deleted file mode 100644
index ecd0a7e..0000000
--- a/config/core.base_field_override.node.blog.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 478554d9-15f1-4bc4-b087-4c91175080c8
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.status
-field_name: status
-entity_type: node
-bundle: blog
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.blog.sticky.yml b/config/core.base_field_override.node.blog.sticky.yml
deleted file mode 100644
index f393e89..0000000
--- a/config/core.base_field_override.node.blog.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: a8c5fcea-35bb-4c9c-9654-b1669f650d4d
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.sticky
-field_name: sticky
-entity_type: node
-bundle: blog
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.blog.title.yml b/config/core.base_field_override.node.blog.title.yml
deleted file mode 100644
index 81c511c..0000000
--- a/config/core.base_field_override.node.blog.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 934b3753-2711-4804-8063-c5389a35fd1c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.title
-field_name: title
-entity_type: node
-bundle: blog
-label: Title
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.blog.uid.yml b/config/core.base_field_override.node.blog.uid.yml
deleted file mode 100644
index b8ceb0e..0000000
--- a/config/core.base_field_override.node.blog.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 3aaf830a-292c-474c-82ea-dfce3c878af0
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
-id: node.blog.uid
-field_name: uid
-entity_type: node
-bundle: blog
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.campaign.changed.yml b/config/core.base_field_override.node.campaign.changed.yml
deleted file mode 100644
index 98a0875..0000000
--- a/config/core.base_field_override.node.campaign.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 9f7d39bc-f1a1-47f6-907e-19f5fa9e4d84
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.changed
-field_name: changed
-entity_type: node
-bundle: campaign
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.campaign.created.yml b/config/core.base_field_override.node.campaign.created.yml
deleted file mode 100644
index 7b7e2f1..0000000
--- a/config/core.base_field_override.node.campaign.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 79915c2e-5f7b-419a-b1c4-72096685f214
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.created
-field_name: created
-entity_type: node
-bundle: campaign
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.campaign.menu_link.yml b/config/core.base_field_override.node.campaign.menu_link.yml
deleted file mode 100644
index 1c4589b..0000000
--- a/config/core.base_field_override.node.campaign.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: cd282b86-ad7f-43e0-9a28-10781745a4e7
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.menu_link
-field_name: menu_link
-entity_type: node
-bundle: campaign
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.campaign.metatag.yml b/config/core.base_field_override.node.campaign.metatag.yml
deleted file mode 100644
index f13dd65..0000000
--- a/config/core.base_field_override.node.campaign.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c58a42a8-bc16-444a-853d-571e3b8ff435
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.metatag
-field_name: metatag
-entity_type: node
-bundle: campaign
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.campaign.path.yml b/config/core.base_field_override.node.campaign.path.yml
deleted file mode 100644
index cf886a3..0000000
--- a/config/core.base_field_override.node.campaign.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 16f71ec9-56f9-46f1-94c9-fc912aa72f70
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
- module:
- - path
-id: node.campaign.path
-field_name: path
-entity_type: node
-bundle: campaign
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.campaign.status.yml b/config/core.base_field_override.node.campaign.status.yml
deleted file mode 100644
index 566864d..0000000
--- a/config/core.base_field_override.node.campaign.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: e6c333dd-f3d3-4e54-b7b7-8ceef65018fe
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.status
-field_name: status
-entity_type: node
-bundle: campaign
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.campaign.sticky.yml b/config/core.base_field_override.node.campaign.sticky.yml
deleted file mode 100644
index 3eaffb9..0000000
--- a/config/core.base_field_override.node.campaign.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: a2050c31-0a4c-4077-b3c9-1142e966f04f
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.sticky
-field_name: sticky
-entity_type: node
-bundle: campaign
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.campaign.title.yml b/config/core.base_field_override.node.campaign.title.yml
deleted file mode 100644
index b0a5ea2..0000000
--- a/config/core.base_field_override.node.campaign.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 9da64854-b084-442d-b29b-9c6c52bbe998
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.title
-field_name: title
-entity_type: node
-bundle: campaign
-label: Title
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.campaign.uid.yml b/config/core.base_field_override.node.campaign.uid.yml
deleted file mode 100644
index cf31210..0000000
--- a/config/core.base_field_override.node.campaign.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 17acbde1-6570-4e16-9826-96c5fda0eea3
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
-id: node.campaign.uid
-field_name: uid
-entity_type: node
-bundle: campaign
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.case_study.changed.yml b/config/core.base_field_override.node.case_study.changed.yml
deleted file mode 100644
index 0692cbf..0000000
--- a/config/core.base_field_override.node.case_study.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e873ea9d-5f2d-4e6f-bc02-18ddb3ada70c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.changed
-field_name: changed
-entity_type: node
-bundle: case_study
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.case_study.created.yml b/config/core.base_field_override.node.case_study.created.yml
deleted file mode 100644
index 72bbef1..0000000
--- a/config/core.base_field_override.node.case_study.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 55ba76ee-4586-4c47-b657-6e155ea83ab2
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.created
-field_name: created
-entity_type: node
-bundle: case_study
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.case_study.menu_link.yml b/config/core.base_field_override.node.case_study.menu_link.yml
deleted file mode 100644
index d5259d8..0000000
--- a/config/core.base_field_override.node.case_study.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 932d10fa-b0b3-40ed-b557-62ae0207f0bb
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.menu_link
-field_name: menu_link
-entity_type: node
-bundle: case_study
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.case_study.metatag.yml b/config/core.base_field_override.node.case_study.metatag.yml
deleted file mode 100644
index e3813ec..0000000
--- a/config/core.base_field_override.node.case_study.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3ef22146-40a0-44d2-ba2b-c33e25e82790
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.metatag
-field_name: metatag
-entity_type: node
-bundle: case_study
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.case_study.path.yml b/config/core.base_field_override.node.case_study.path.yml
deleted file mode 100644
index 3212b63..0000000
--- a/config/core.base_field_override.node.case_study.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 4c26fb7c-f5b9-4e0b-ac71-086146d0f559
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
- module:
- - path
-id: node.case_study.path
-field_name: path
-entity_type: node
-bundle: case_study
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.case_study.promote.yml b/config/core.base_field_override.node.case_study.promote.yml
deleted file mode 100644
index 222f7b0..0000000
--- a/config/core.base_field_override.node.case_study.promote.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: f7a750bc-12c1-43e9-aee6-d438d6b35561
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.promote
-field_name: promote
-entity_type: node
-bundle: case_study
-label: 'Promoted to front page'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.case_study.status.yml b/config/core.base_field_override.node.case_study.status.yml
deleted file mode 100644
index 5a837ca..0000000
--- a/config/core.base_field_override.node.case_study.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: ea3e20b4-cc84-4164-b644-049f3677be9c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.status
-field_name: status
-entity_type: node
-bundle: case_study
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.case_study.sticky.yml b/config/core.base_field_override.node.case_study.sticky.yml
deleted file mode 100644
index 491b850..0000000
--- a/config/core.base_field_override.node.case_study.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 7a7ad1a6-f949-4d38-8480-9985ef40b068
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.sticky
-field_name: sticky
-entity_type: node
-bundle: case_study
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.case_study.title.yml b/config/core.base_field_override.node.case_study.title.yml
deleted file mode 100644
index 53040bc..0000000
--- a/config/core.base_field_override.node.case_study.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 63c573f9-1ab3-4453-8e55-ffaf02616780
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.title
-field_name: title
-entity_type: node
-bundle: case_study
-label: Title
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.case_study.uid.yml b/config/core.base_field_override.node.case_study.uid.yml
deleted file mode 100644
index cbe00ec..0000000
--- a/config/core.base_field_override.node.case_study.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 70618ef5-80d0-4d5f-b72b-b1eda31f6b62
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
-id: node.case_study.uid
-field_name: uid
-entity_type: node
-bundle: case_study
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.event.changed.yml b/config/core.base_field_override.node.event.changed.yml
deleted file mode 100644
index 300e19f..0000000
--- a/config/core.base_field_override.node.event.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 994c0510-e5a2-46c6-a465-6a1b2648e194
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.changed
-field_name: changed
-entity_type: node
-bundle: event
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.event.created.yml b/config/core.base_field_override.node.event.created.yml
deleted file mode 100644
index 02a8ea4..0000000
--- a/config/core.base_field_override.node.event.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 499522b7-ecb9-4534-9f78-dc41bec4ccfa
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.created
-field_name: created
-entity_type: node
-bundle: event
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.event.menu_link.yml b/config/core.base_field_override.node.event.menu_link.yml
deleted file mode 100644
index 3eda1a6..0000000
--- a/config/core.base_field_override.node.event.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 67586f80-4204-4b79-b434-d9f4f56924c3
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.menu_link
-field_name: menu_link
-entity_type: node
-bundle: event
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.event.metatag.yml b/config/core.base_field_override.node.event.metatag.yml
deleted file mode 100644
index b06e2a8..0000000
--- a/config/core.base_field_override.node.event.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: f093e2b2-d975-4a16-b105-e4833f192be7
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.metatag
-field_name: metatag
-entity_type: node
-bundle: event
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.event.path.yml b/config/core.base_field_override.node.event.path.yml
deleted file mode 100644
index e760527..0000000
--- a/config/core.base_field_override.node.event.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: a22edcfb-9c78-4e17-9807-95fe8c8ce4c3
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
- module:
- - path
-id: node.event.path
-field_name: path
-entity_type: node
-bundle: event
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.event.status.yml b/config/core.base_field_override.node.event.status.yml
deleted file mode 100644
index a814bfa..0000000
--- a/config/core.base_field_override.node.event.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: d0f57a20-354f-4038-a767-bb13de0a4b4d
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.status
-field_name: status
-entity_type: node
-bundle: event
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.event.sticky.yml b/config/core.base_field_override.node.event.sticky.yml
deleted file mode 100644
index ad66f05..0000000
--- a/config/core.base_field_override.node.event.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 9f5cef55-27fd-4b2b-8587-45ef075a742b
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.sticky
-field_name: sticky
-entity_type: node
-bundle: event
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.event.title.yml b/config/core.base_field_override.node.event.title.yml
deleted file mode 100644
index c67c4a2..0000000
--- a/config/core.base_field_override.node.event.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a23c08d3-ffd6-42b6-a91e-f992f40babbb
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.title
-field_name: title
-entity_type: node
-bundle: event
-label: Title
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.event.uid.yml b/config/core.base_field_override.node.event.uid.yml
deleted file mode 100644
index 84a7ee4..0000000
--- a/config/core.base_field_override.node.event.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 24ced34a-ba69-47ce-97b1-dc5c15cac7d8
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
-id: node.event.uid
-field_name: uid
-entity_type: node
-bundle: event
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.landing_page.changed.yml b/config/core.base_field_override.node.landing_page.changed.yml
deleted file mode 100644
index e10e92c..0000000
--- a/config/core.base_field_override.node.landing_page.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 373f0004-cae5-4fed-848b-4d63431084ba
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.changed
-field_name: changed
-entity_type: node
-bundle: landing_page
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.landing_page.created.yml b/config/core.base_field_override.node.landing_page.created.yml
deleted file mode 100644
index a71e047..0000000
--- a/config/core.base_field_override.node.landing_page.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d93457b7-a58c-42a5-a8bb-4cb79a3f7c5b
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.created
-field_name: created
-entity_type: node
-bundle: landing_page
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.landing_page.menu_link.yml b/config/core.base_field_override.node.landing_page.menu_link.yml
deleted file mode 100644
index 6ed5e68..0000000
--- a/config/core.base_field_override.node.landing_page.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 1a8170f4-fd7e-4339-8831-4de6aec46767
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.menu_link
-field_name: menu_link
-entity_type: node
-bundle: landing_page
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.landing_page.metatag.yml b/config/core.base_field_override.node.landing_page.metatag.yml
deleted file mode 100644
index 0efc7cc..0000000
--- a/config/core.base_field_override.node.landing_page.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d4a8c8a8-3715-4ca0-8e0c-e98a363f774f
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.metatag
-field_name: metatag
-entity_type: node
-bundle: landing_page
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.landing_page.path.yml b/config/core.base_field_override.node.landing_page.path.yml
deleted file mode 100644
index 53ed713..0000000
--- a/config/core.base_field_override.node.landing_page.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 1e8e6269-de9e-48f9-aff3-8d3765d46051
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
- module:
- - path
-id: node.landing_page.path
-field_name: path
-entity_type: node
-bundle: landing_page
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.landing_page.status.yml b/config/core.base_field_override.node.landing_page.status.yml
deleted file mode 100644
index 7034bf3..0000000
--- a/config/core.base_field_override.node.landing_page.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 0af7b2d2-1320-4b66-a46d-8f1ea2b11e0a
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.status
-field_name: status
-entity_type: node
-bundle: landing_page
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.landing_page.sticky.yml b/config/core.base_field_override.node.landing_page.sticky.yml
deleted file mode 100644
index ae420c5..0000000
--- a/config/core.base_field_override.node.landing_page.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 9eabefe8-ead9-4a16-a850-d0d3ef180843
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.sticky
-field_name: sticky
-entity_type: node
-bundle: landing_page
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.landing_page.title.yml b/config/core.base_field_override.node.landing_page.title.yml
deleted file mode 100644
index 6a47849..0000000
--- a/config/core.base_field_override.node.landing_page.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 203da061-720b-41d9-9eba-26517f7bd5ca
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.title
-field_name: title
-entity_type: node
-bundle: landing_page
-label: Title
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.landing_page.uid.yml b/config/core.base_field_override.node.landing_page.uid.yml
deleted file mode 100644
index 4c953d4..0000000
--- a/config/core.base_field_override.node.landing_page.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 2cbcb6ea-e00d-411a-ade4-52cea4de5119
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
-id: node.landing_page.uid
-field_name: uid
-entity_type: node
-bundle: landing_page
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.page.metatag.yml b/config/core.base_field_override.node.page.metatag.yml
deleted file mode 100644
index b1cce98..0000000
--- a/config/core.base_field_override.node.page.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: bdab9222-854a-4877-b13b-d0c34bd229a7
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.page
-id: node.page.metatag
-field_name: metatag
-entity_type: node
-bundle: page
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.page.path.yml b/config/core.base_field_override.node.page.path.yml
deleted file mode 100644
index 4b87486..0000000
--- a/config/core.base_field_override.node.page.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: d6de1c8c-9841-4645-9707-f6ea6bbba644
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.page
- module:
- - path
-id: node.page.path
-field_name: path
-entity_type: node
-bundle: page
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.page.status.yml b/config/core.base_field_override.node.page.status.yml
deleted file mode 100644
index f19b153..0000000
--- a/config/core.base_field_override.node.page.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 66f2a3f8-b741-44e8-a8ac-bf76df6e553b
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.page
-id: node.page.status
-field_name: status
-entity_type: node
-bundle: page
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.page.sticky.yml b/config/core.base_field_override.node.page.sticky.yml
deleted file mode 100644
index a1aa422..0000000
--- a/config/core.base_field_override.node.page.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 0ad3a7e4-edab-469e-8876-5c6449dad900
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.page
-id: node.page.sticky
-field_name: sticky
-entity_type: node
-bundle: page
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.page.uid.yml b/config/core.base_field_override.node.page.uid.yml
deleted file mode 100644
index f6c1bed..0000000
--- a/config/core.base_field_override.node.page.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 69f6eace-2a6a-4f6f-93f0-8761f1083733
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.page
-id: node.page.uid
-field_name: uid
-entity_type: node
-bundle: page
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.people.changed.yml b/config/core.base_field_override.node.people.changed.yml
deleted file mode 100644
index 26f073c..0000000
--- a/config/core.base_field_override.node.people.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 4d356d22-df8d-4b97-a7be-aeb1121eaf3d
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.changed
-field_name: changed
-entity_type: node
-bundle: people
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.people.created.yml b/config/core.base_field_override.node.people.created.yml
deleted file mode 100644
index 0bdda05..0000000
--- a/config/core.base_field_override.node.people.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 1e7c3677-684b-4833-9d80-f7f570c17ad3
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.created
-field_name: created
-entity_type: node
-bundle: people
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.people.menu_link.yml b/config/core.base_field_override.node.people.menu_link.yml
deleted file mode 100644
index 30116af..0000000
--- a/config/core.base_field_override.node.people.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 5b7ce899-b36c-46e8-b139-67ac07ce3b0c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.menu_link
-field_name: menu_link
-entity_type: node
-bundle: people
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.people.metatag.yml b/config/core.base_field_override.node.people.metatag.yml
deleted file mode 100644
index 4798f43..0000000
--- a/config/core.base_field_override.node.people.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 5fc74445-388d-4770-89ba-20f7da411ecd
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.metatag
-field_name: metatag
-entity_type: node
-bundle: people
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.people.path.yml b/config/core.base_field_override.node.people.path.yml
deleted file mode 100644
index 31123ef..0000000
--- a/config/core.base_field_override.node.people.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 5ecead59-410f-4fda-9895-cfe080f77998
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
- module:
- - path
-id: node.people.path
-field_name: path
-entity_type: node
-bundle: people
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.people.status.yml b/config/core.base_field_override.node.people.status.yml
deleted file mode 100644
index d2b11cd..0000000
--- a/config/core.base_field_override.node.people.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 12531509-40d9-4d58-914d-bf4da75458df
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.status
-field_name: status
-entity_type: node
-bundle: people
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.people.sticky.yml b/config/core.base_field_override.node.people.sticky.yml
deleted file mode 100644
index 4c62068..0000000
--- a/config/core.base_field_override.node.people.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: df792917-5b82-437b-8f49-53e86881b805
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.sticky
-field_name: sticky
-entity_type: node
-bundle: people
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.people.uid.yml b/config/core.base_field_override.node.people.uid.yml
deleted file mode 100644
index ac44cbf..0000000
--- a/config/core.base_field_override.node.people.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 5a3ca509-818b-4ab7-bfce-72567b156fa3
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
-id: node.people.uid
-field_name: uid
-entity_type: node
-bundle: people
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.resource.changed.yml b/config/core.base_field_override.node.resource.changed.yml
deleted file mode 100644
index 2bcf992..0000000
--- a/config/core.base_field_override.node.resource.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e3151d77-c991-4afb-a674-2914b256af56
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.changed
-field_name: changed
-entity_type: node
-bundle: resource
-label: Changed
-description: 'The time that the node was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.node.resource.created.yml b/config/core.base_field_override.node.resource.created.yml
deleted file mode 100644
index c69ca54..0000000
--- a/config/core.base_field_override.node.resource.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 81874d96-39fd-43fe-a0b4-e07675edb781
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.created
-field_name: created
-entity_type: node
-bundle: resource
-label: 'Authored on'
-description: 'The time that the node was created.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.node.resource.menu_link.yml b/config/core.base_field_override.node.resource.menu_link.yml
deleted file mode 100644
index bd68d82..0000000
--- a/config/core.base_field_override.node.resource.menu_link.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 304134d1-565b-4ce8-9533-a68c9ba84250
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.menu_link
-field_name: menu_link
-entity_type: node
-bundle: resource
-label: 'Menu link'
-description: 'Computed menu link for the node (only available during node saving).'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.node.resource.metatag.yml b/config/core.base_field_override.node.resource.metatag.yml
deleted file mode 100644
index 5503775..0000000
--- a/config/core.base_field_override.node.resource.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2eba9196-1785-4d1d-ba58-2f9fb379b3ed
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.metatag
-field_name: metatag
-entity_type: node
-bundle: resource
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.node.resource.path.yml b/config/core.base_field_override.node.resource.path.yml
deleted file mode 100644
index 2f8b13a..0000000
--- a/config/core.base_field_override.node.resource.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 7423a56f-e0f8-46af-bad3-4883de4c085c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
- module:
- - path
-id: node.resource.path
-field_name: path
-entity_type: node
-bundle: resource
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.node.resource.promote.yml b/config/core.base_field_override.node.resource.promote.yml
deleted file mode 100644
index a2bc86b..0000000
--- a/config/core.base_field_override.node.resource.promote.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 0d3c9fb4-4930-4360-9497-8d8d7e4b1f8a
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.promote
-field_name: promote
-entity_type: node
-bundle: resource
-label: 'Promoted to front page'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.resource.status.yml b/config/core.base_field_override.node.resource.status.yml
deleted file mode 100644
index 32a32ae..0000000
--- a/config/core.base_field_override.node.resource.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 774b1b2e-ce94-4cb0-9b03-0419ab0b8bbb
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.status
-field_name: status
-entity_type: node
-bundle: resource
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.resource.sticky.yml b/config/core.base_field_override.node.resource.sticky.yml
deleted file mode 100644
index 9ab9736..0000000
--- a/config/core.base_field_override.node.resource.sticky.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 6f995dd8-f3db-44aa-8c19-664f437e7154
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.sticky
-field_name: sticky
-entity_type: node
-bundle: resource
-label: 'Sticky at top of lists'
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.node.resource.title.yml b/config/core.base_field_override.node.resource.title.yml
deleted file mode 100644
index afd74d3..0000000
--- a/config/core.base_field_override.node.resource.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d6466c03-c68f-4c98-a45d-677b84605bb8
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.title
-field_name: title
-entity_type: node
-bundle: resource
-label: Title
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.node.resource.uid.yml b/config/core.base_field_override.node.resource.uid.yml
deleted file mode 100644
index 17dcbf6..0000000
--- a/config/core.base_field_override.node.resource.uid.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 00896232-4133-48aa-8dfd-87e4d3c04ea9
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
-id: node.resource.uid
-field_name: uid
-entity_type: node
-bundle: resource
-label: 'Authored by'
-description: 'The username of the content author.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner'
-settings:
- handler: default
- handler_settings: { }
-field_type: entity_reference
diff --git a/config/core.base_field_override.paragraph.faq.created.yml b/config/core.base_field_override.paragraph.faq.created.yml
deleted file mode 100644
index a5c46ca..0000000
--- a/config/core.base_field_override.paragraph.faq.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 47c6e5c9-1e3c-4fbf-ac91-3f14188eb76f
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.faq
-id: paragraph.faq.created
-field_name: created
-entity_type: paragraph
-bundle: faq
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.faq.status.yml b/config/core.base_field_override.paragraph.faq.status.yml
deleted file mode 100644
index 3062a58..0000000
--- a/config/core.base_field_override.paragraph.faq.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 4cd165ce-e33d-4b4a-b831-f330b29ddc35
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.faq
-id: paragraph.faq.status
-field_name: status
-entity_type: paragraph
-bundle: faq
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.file.created.yml b/config/core.base_field_override.paragraph.file.created.yml
deleted file mode 100644
index cfba079..0000000
--- a/config/core.base_field_override.paragraph.file.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a764a37a-e246-4280-a02a-57a9dd9598a2
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.file
-id: paragraph.file.created
-field_name: created
-entity_type: paragraph
-bundle: file
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.file.status.yml b/config/core.base_field_override.paragraph.file.status.yml
deleted file mode 100644
index d9f3f7a..0000000
--- a/config/core.base_field_override.paragraph.file.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 5b9ba5e6-2a19-45e3-b54b-893f37f94895
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.file
-id: paragraph.file.status
-field_name: status
-entity_type: paragraph
-bundle: file
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.image.created.yml b/config/core.base_field_override.paragraph.image.created.yml
deleted file mode 100644
index 25b9b1a..0000000
--- a/config/core.base_field_override.paragraph.image.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 44746eff-07c4-4a1a-9b57-caf280f5b766
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.image
-id: paragraph.image.created
-field_name: created
-entity_type: paragraph
-bundle: image
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.image.status.yml b/config/core.base_field_override.paragraph.image.status.yml
deleted file mode 100644
index eeae8e2..0000000
--- a/config/core.base_field_override.paragraph.image.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: bba7e0ad-8d36-496d-bec4-f660afbaea40
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.image
-id: paragraph.image.status
-field_name: status
-entity_type: paragraph
-bundle: image
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.quotation_with_image.created.yml b/config/core.base_field_override.paragraph.quotation_with_image.created.yml
deleted file mode 100644
index 0431259..0000000
--- a/config/core.base_field_override.paragraph.quotation_with_image.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: dbede773-e852-438a-8559-1daa1268879d
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.quotation_with_image
-id: paragraph.quotation_with_image.created
-field_name: created
-entity_type: paragraph
-bundle: quotation_with_image
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.quotation_with_image.status.yml b/config/core.base_field_override.paragraph.quotation_with_image.status.yml
deleted file mode 100644
index 2a681f2..0000000
--- a/config/core.base_field_override.paragraph.quotation_with_image.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 402d3558-8ccc-49e5-ae57-c083b6e6c40f
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.quotation_with_image
-id: paragraph.quotation_with_image.status
-field_name: status
-entity_type: paragraph
-bundle: quotation_with_image
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.slide.created.yml b/config/core.base_field_override.paragraph.slide.created.yml
deleted file mode 100644
index 66fc1ad..0000000
--- a/config/core.base_field_override.paragraph.slide.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a46008de-fe55-416f-9a60-ce2da4c5b237
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.slide
-id: paragraph.slide.created
-field_name: created
-entity_type: paragraph
-bundle: slide
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.slide.status.yml b/config/core.base_field_override.paragraph.slide.status.yml
deleted file mode 100644
index 81d543f..0000000
--- a/config/core.base_field_override.paragraph.slide.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 9f9aba98-f96e-4005-bd81-2b36ac04375a
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.slide
-id: paragraph.slide.status
-field_name: status
-entity_type: paragraph
-bundle: slide
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.storyline_header.created.yml b/config/core.base_field_override.paragraph.storyline_header.created.yml
deleted file mode 100644
index b9ee9b8..0000000
--- a/config/core.base_field_override.paragraph.storyline_header.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 6eb91dc2-7e62-4273-80d2-bb37b5a6c3da
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.storyline_header
-id: paragraph.storyline_header.created
-field_name: created
-entity_type: paragraph
-bundle: storyline_header
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.storyline_header.status.yml b/config/core.base_field_override.paragraph.storyline_header.status.yml
deleted file mode 100644
index 0a922b1..0000000
--- a/config/core.base_field_override.paragraph.storyline_header.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 1d3dd202-2415-454e-b8a2-03ef7837440c
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.storyline_header
-id: paragraph.storyline_header.status
-field_name: status
-entity_type: paragraph
-bundle: storyline_header
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.storyline_item.created.yml b/config/core.base_field_override.paragraph.storyline_item.created.yml
deleted file mode 100644
index 4281d64..0000000
--- a/config/core.base_field_override.paragraph.storyline_item.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 195bdf2e-c9b9-4bb3-a5dc-b85784ae30d2
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.storyline_item
-id: paragraph.storyline_item.created
-field_name: created
-entity_type: paragraph
-bundle: storyline_item
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.storyline_item.status.yml b/config/core.base_field_override.paragraph.storyline_item.status.yml
deleted file mode 100644
index ad21639..0000000
--- a/config/core.base_field_override.paragraph.storyline_item.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 86529a1a-fd75-4ffe-b58b-42c7443d8bf7
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.storyline_item
-id: paragraph.storyline_item.status
-field_name: status
-entity_type: paragraph
-bundle: storyline_item
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.text.created.yml b/config/core.base_field_override.paragraph.text.created.yml
deleted file mode 100644
index cfa4b53..0000000
--- a/config/core.base_field_override.paragraph.text.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 90662cce-a02d-4ddb-86cc-2e55219eed74
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.text
-id: paragraph.text.created
-field_name: created
-entity_type: paragraph
-bundle: text
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.text.status.yml b/config/core.base_field_override.paragraph.text.status.yml
deleted file mode 100644
index eac0927..0000000
--- a/config/core.base_field_override.paragraph.text.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 88ebeeee-5b48-4312-a882-3f7327429d84
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.text
-id: paragraph.text.status
-field_name: status
-entity_type: paragraph
-bundle: text
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.title.created.yml b/config/core.base_field_override.paragraph.title.created.yml
deleted file mode 100644
index 9e20356..0000000
--- a/config/core.base_field_override.paragraph.title.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2217a83d-9ba9-4d90-86fc-5c1701ea0343
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.title
-id: paragraph.title.created
-field_name: created
-entity_type: paragraph
-bundle: title
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.title.status.yml b/config/core.base_field_override.paragraph.title.status.yml
deleted file mode 100644
index 56b7473..0000000
--- a/config/core.base_field_override.paragraph.title.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: ff21bc84-8a40-4775-b5a9-5535d081ccb5
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.title
-id: paragraph.title.status
-field_name: status
-entity_type: paragraph
-bundle: title
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.update.created.yml b/config/core.base_field_override.paragraph.update.created.yml
deleted file mode 100644
index a356065..0000000
--- a/config/core.base_field_override.paragraph.update.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 5a55b2dc-d8c5-4921-8baf-45fd1fad8a4a
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.update
-id: paragraph.update.created
-field_name: created
-entity_type: paragraph
-bundle: update
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.update.status.yml b/config/core.base_field_override.paragraph.update.status.yml
deleted file mode 100644
index 40ef081..0000000
--- a/config/core.base_field_override.paragraph.update.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 7abee5be-e96c-4f3e-b07f-5dec5016fa14
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.update
-id: paragraph.update.status
-field_name: status
-entity_type: paragraph
-bundle: update
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.video.created.yml b/config/core.base_field_override.paragraph.video.created.yml
deleted file mode 100644
index 53ee494..0000000
--- a/config/core.base_field_override.paragraph.video.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 0e169e6f-c61f-432b-91e9-4cb7793cbe9a
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.video
-id: paragraph.video.created
-field_name: created
-entity_type: paragraph
-bundle: video
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.video.status.yml b/config/core.base_field_override.paragraph.video.status.yml
deleted file mode 100644
index 22a2cde..0000000
--- a/config/core.base_field_override.paragraph.video.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 1f0098c9-41d4-4fbe-a30a-70b688bf551a
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.video
-id: paragraph.video.status
-field_name: status
-entity_type: paragraph
-bundle: video
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.view.created.yml b/config/core.base_field_override.paragraph.view.created.yml
deleted file mode 100644
index fd23314..0000000
--- a/config/core.base_field_override.paragraph.view.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: abe596c9-069c-4cc2-a3c2-c1ef3363b483
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.view
-id: paragraph.view.created
-field_name: created
-entity_type: paragraph
-bundle: view
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.view.status.yml b/config/core.base_field_override.paragraph.view.status.yml
deleted file mode 100644
index 686e932..0000000
--- a/config/core.base_field_override.paragraph.view.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: ef247b9f-2dc1-48e7-abd6-a86c12f1f1ea
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.view
-id: paragraph.view.status
-field_name: status
-entity_type: paragraph
-bundle: view
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.paragraph.webform.created.yml b/config/core.base_field_override.paragraph.webform.created.yml
deleted file mode 100644
index adfe4e4..0000000
--- a/config/core.base_field_override.paragraph.webform.created.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 6ac7f919-b1f4-4f1e-a049-405881cfb2f0
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.webform
-id: paragraph.webform.created
-field_name: created
-entity_type: paragraph
-bundle: webform
-label: 'Authored on'
-description: 'The time that the Paragraph was created.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: created
diff --git a/config/core.base_field_override.paragraph.webform.status.yml b/config/core.base_field_override.paragraph.webform.status.yml
deleted file mode 100644
index da0003c..0000000
--- a/config/core.base_field_override.paragraph.webform.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: a00f86b3-ad0e-419f-92ca-1f10d5bee126
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.webform
-id: paragraph.webform.status
-field_name: status
-entity_type: paragraph
-bundle: webform
-label: Published
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.shortcut.default.metatag.yml b/config/core.base_field_override.shortcut.default.metatag.yml
deleted file mode 100644
index d766445..0000000
--- a/config/core.base_field_override.shortcut.default.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3c5959d8-21e9-48ac-a2e0-7c134eb0fdee
-langcode: en
-status: true
-dependencies:
- config:
- - shortcut.set.default
-id: shortcut.default.metatag
-field_name: metatag
-entity_type: shortcut
-bundle: default
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.shortcut.default.title.yml b/config/core.base_field_override.shortcut.default.title.yml
deleted file mode 100644
index 5d42a3b..0000000
--- a/config/core.base_field_override.shortcut.default.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 1345f321-f8d4-4bf3-8c47-d644e27b85ec
-langcode: en
-status: true
-dependencies:
- config:
- - shortcut.set.default
-id: shortcut.default.title
-field_name: title
-entity_type: shortcut
-bundle: default
-label: Name
-description: 'The name of the shortcut.'
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.action_type.changed.yml b/config/core.base_field_override.taxonomy_term.action_type.changed.yml
deleted file mode 100644
index 49b5c77..0000000
--- a/config/core.base_field_override.taxonomy_term.action_type.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: efe20a83-7d58-46e4-8c5b-a273a8917dc3
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
-id: taxonomy_term.action_type.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: action_type
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.action_type.description.yml b/config/core.base_field_override.taxonomy_term.action_type.description.yml
deleted file mode 100644
index 03b3ba4..0000000
--- a/config/core.base_field_override.taxonomy_term.action_type.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 014822a7-d221-4ec3-a364-d17837eeba34
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
- module:
- - text
-id: taxonomy_term.action_type.description
-field_name: description
-entity_type: taxonomy_term
-bundle: action_type
-label: Description
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.action_type.metatag.yml b/config/core.base_field_override.taxonomy_term.action_type.metatag.yml
deleted file mode 100644
index abeb8b4..0000000
--- a/config/core.base_field_override.taxonomy_term.action_type.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 169a1021-b240-4968-9ee3-d8f165fa7448
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
-id: taxonomy_term.action_type.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: action_type
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.action_type.name.yml b/config/core.base_field_override.taxonomy_term.action_type.name.yml
deleted file mode 100644
index 45bad2d..0000000
--- a/config/core.base_field_override.taxonomy_term.action_type.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: ac5de459-120d-444b-ae29-80b27aea7012
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
-id: taxonomy_term.action_type.name
-field_name: name
-entity_type: taxonomy_term
-bundle: action_type
-label: Name
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.action_type.path.yml b/config/core.base_field_override.taxonomy_term.action_type.path.yml
deleted file mode 100644
index b796d23..0000000
--- a/config/core.base_field_override.taxonomy_term.action_type.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 0652dda9-62c7-485d-af11-815b8339582b
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
- module:
- - path
-id: taxonomy_term.action_type.path
-field_name: path
-entity_type: taxonomy_term
-bundle: action_type
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.action_type.status.yml b/config/core.base_field_override.taxonomy_term.action_type.status.yml
deleted file mode 100644
index f3c08cd..0000000
--- a/config/core.base_field_override.taxonomy_term.action_type.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 6871b060-32a7-44f1-bc5e-2c255971f6ac
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
-id: taxonomy_term.action_type.status
-field_name: status
-entity_type: taxonomy_term
-bundle: action_type
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.article_type.changed.yml b/config/core.base_field_override.taxonomy_term.article_type.changed.yml
deleted file mode 100644
index d09938e..0000000
--- a/config/core.base_field_override.taxonomy_term.article_type.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c1af0224-17ba-4e36-a5b7-5738147ae42f
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
-id: taxonomy_term.article_type.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: article_type
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.article_type.description.yml b/config/core.base_field_override.taxonomy_term.article_type.description.yml
deleted file mode 100644
index d896679..0000000
--- a/config/core.base_field_override.taxonomy_term.article_type.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 4a3de262-c486-41d7-814b-1ce1982911fb
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
- module:
- - text
-id: taxonomy_term.article_type.description
-field_name: description
-entity_type: taxonomy_term
-bundle: article_type
-label: Description
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.article_type.metatag.yml b/config/core.base_field_override.taxonomy_term.article_type.metatag.yml
deleted file mode 100644
index 293bc71..0000000
--- a/config/core.base_field_override.taxonomy_term.article_type.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d71281e6-6678-4434-97de-139e7ae22f55
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
-id: taxonomy_term.article_type.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: article_type
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.article_type.name.yml b/config/core.base_field_override.taxonomy_term.article_type.name.yml
deleted file mode 100644
index c41dc6f..0000000
--- a/config/core.base_field_override.taxonomy_term.article_type.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 61570cb9-3ab4-4537-ad65-b058f3f0c43f
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
-id: taxonomy_term.article_type.name
-field_name: name
-entity_type: taxonomy_term
-bundle: article_type
-label: Name
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.article_type.path.yml b/config/core.base_field_override.taxonomy_term.article_type.path.yml
deleted file mode 100644
index 7aa89d4..0000000
--- a/config/core.base_field_override.taxonomy_term.article_type.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 64265c25-ad03-4fde-98aa-1ab39532dfba
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
- module:
- - path
-id: taxonomy_term.article_type.path
-field_name: path
-entity_type: taxonomy_term
-bundle: article_type
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.article_type.status.yml b/config/core.base_field_override.taxonomy_term.article_type.status.yml
deleted file mode 100644
index 1d78e86..0000000
--- a/config/core.base_field_override.taxonomy_term.article_type.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 84f31f1e-b190-4314-a296-495b0ac0e5fc
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
-id: taxonomy_term.article_type.status
-field_name: status
-entity_type: taxonomy_term
-bundle: article_type
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.event_type.changed.yml b/config/core.base_field_override.taxonomy_term.event_type.changed.yml
deleted file mode 100644
index 315dede..0000000
--- a/config/core.base_field_override.taxonomy_term.event_type.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 7a526c26-a51f-4d92-aeb3-e291829a140a
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
-id: taxonomy_term.event_type.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: event_type
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.event_type.description.yml b/config/core.base_field_override.taxonomy_term.event_type.description.yml
deleted file mode 100644
index a7a2d07..0000000
--- a/config/core.base_field_override.taxonomy_term.event_type.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 0571b65d-1d5c-4059-ac8c-07a7a4eb40ae
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
- module:
- - text
-id: taxonomy_term.event_type.description
-field_name: description
-entity_type: taxonomy_term
-bundle: event_type
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.event_type.metatag.yml b/config/core.base_field_override.taxonomy_term.event_type.metatag.yml
deleted file mode 100644
index 3203157..0000000
--- a/config/core.base_field_override.taxonomy_term.event_type.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 953de96d-b72a-40f0-93e6-33ddabfa0675
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
-id: taxonomy_term.event_type.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: event_type
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.event_type.name.yml b/config/core.base_field_override.taxonomy_term.event_type.name.yml
deleted file mode 100644
index 6617f0f..0000000
--- a/config/core.base_field_override.taxonomy_term.event_type.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 4642c313-2d47-4711-93e3-de48bb97f1b4
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
-id: taxonomy_term.event_type.name
-field_name: name
-entity_type: taxonomy_term
-bundle: event_type
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.event_type.path.yml b/config/core.base_field_override.taxonomy_term.event_type.path.yml
deleted file mode 100644
index 53511f5..0000000
--- a/config/core.base_field_override.taxonomy_term.event_type.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 54a235c6-6c9e-4258-857d-a2239a586e6c
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
- module:
- - path
-id: taxonomy_term.event_type.path
-field_name: path
-entity_type: taxonomy_term
-bundle: event_type
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.event_type.status.yml b/config/core.base_field_override.taxonomy_term.event_type.status.yml
deleted file mode 100644
index f692483..0000000
--- a/config/core.base_field_override.taxonomy_term.event_type.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 4da80524-0a66-4b49-b12c-41b0a8971a3b
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
-id: taxonomy_term.event_type.status
-field_name: status
-entity_type: taxonomy_term
-bundle: event_type
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.group_type.changed.yml b/config/core.base_field_override.taxonomy_term.group_type.changed.yml
deleted file mode 100644
index 49831ab..0000000
--- a/config/core.base_field_override.taxonomy_term.group_type.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a961ff48-5e6b-4396-85df-7b5928b78a00
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
-id: taxonomy_term.group_type.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: group_type
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.group_type.description.yml b/config/core.base_field_override.taxonomy_term.group_type.description.yml
deleted file mode 100644
index 7cb351a..0000000
--- a/config/core.base_field_override.taxonomy_term.group_type.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 772deaf0-a660-43f3-897c-77478ee70b86
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
- module:
- - text
-id: taxonomy_term.group_type.description
-field_name: description
-entity_type: taxonomy_term
-bundle: group_type
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.group_type.metatag.yml b/config/core.base_field_override.taxonomy_term.group_type.metatag.yml
deleted file mode 100644
index 9b1c97b..0000000
--- a/config/core.base_field_override.taxonomy_term.group_type.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e1436b49-dddb-410a-ac3f-fb037b0032c7
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
-id: taxonomy_term.group_type.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: group_type
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.group_type.name.yml b/config/core.base_field_override.taxonomy_term.group_type.name.yml
deleted file mode 100644
index 9dd51b5..0000000
--- a/config/core.base_field_override.taxonomy_term.group_type.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a0ffa870-2e7a-4900-93ec-1ecbd4461514
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
-id: taxonomy_term.group_type.name
-field_name: name
-entity_type: taxonomy_term
-bundle: group_type
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.group_type.path.yml b/config/core.base_field_override.taxonomy_term.group_type.path.yml
deleted file mode 100644
index a49f42c..0000000
--- a/config/core.base_field_override.taxonomy_term.group_type.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: ca06eb27-bdc2-4b81-b7d0-521eafaae969
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
- module:
- - path
-id: taxonomy_term.group_type.path
-field_name: path
-entity_type: taxonomy_term
-bundle: group_type
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.group_type.status.yml b/config/core.base_field_override.taxonomy_term.group_type.status.yml
deleted file mode 100644
index 6060dca..0000000
--- a/config/core.base_field_override.taxonomy_term.group_type.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 4e1dea5c-d05a-4eeb-9221-17e8964db177
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
-id: taxonomy_term.group_type.status
-field_name: status
-entity_type: taxonomy_term
-bundle: group_type
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.license.changed.yml b/config/core.base_field_override.taxonomy_term.license.changed.yml
deleted file mode 100644
index 3a2ab33..0000000
--- a/config/core.base_field_override.taxonomy_term.license.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2b3a7e40-e800-4758-ac8c-76b26d428770
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
-id: taxonomy_term.license.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: license
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.license.description.yml b/config/core.base_field_override.taxonomy_term.license.description.yml
deleted file mode 100644
index 173c1ca..0000000
--- a/config/core.base_field_override.taxonomy_term.license.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 7f000381-1ca8-496b-8e69-fc782b7a04d5
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - text
-id: taxonomy_term.license.description
-field_name: description
-entity_type: taxonomy_term
-bundle: license
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.license.metatag.yml b/config/core.base_field_override.taxonomy_term.license.metatag.yml
deleted file mode 100644
index e1f2e99..0000000
--- a/config/core.base_field_override.taxonomy_term.license.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 499346b1-e83c-4f09-b7f6-1c0a32577e38
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
-id: taxonomy_term.license.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: license
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.license.name.yml b/config/core.base_field_override.taxonomy_term.license.name.yml
deleted file mode 100644
index f58b4d6..0000000
--- a/config/core.base_field_override.taxonomy_term.license.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 749a6ede-42b1-4b74-8bf5-c6f64ea94b35
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
-id: taxonomy_term.license.name
-field_name: name
-entity_type: taxonomy_term
-bundle: license
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.license.path.yml b/config/core.base_field_override.taxonomy_term.license.path.yml
deleted file mode 100644
index 5c08048..0000000
--- a/config/core.base_field_override.taxonomy_term.license.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: ca313660-5880-4a9d-8430-f751253beaf1
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - path
-id: taxonomy_term.license.path
-field_name: path
-entity_type: taxonomy_term
-bundle: license
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.license.status.yml b/config/core.base_field_override.taxonomy_term.license.status.yml
deleted file mode 100644
index 946cf76..0000000
--- a/config/core.base_field_override.taxonomy_term.license.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 0b560b82-4d04-4044-baf2-aedf619691c5
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
-id: taxonomy_term.license.status
-field_name: status
-entity_type: taxonomy_term
-bundle: license
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.people_type.changed.yml b/config/core.base_field_override.taxonomy_term.people_type.changed.yml
deleted file mode 100644
index 9c50bc0..0000000
--- a/config/core.base_field_override.taxonomy_term.people_type.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d91a1e24-5ceb-4d34-af65-b23458cef2ed
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
-id: taxonomy_term.people_type.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: people_type
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.people_type.description.yml b/config/core.base_field_override.taxonomy_term.people_type.description.yml
deleted file mode 100644
index 32fb180..0000000
--- a/config/core.base_field_override.taxonomy_term.people_type.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: ed6e2e0d-bf4d-4ceb-8d27-ac59bf6d241c
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
- module:
- - text
-id: taxonomy_term.people_type.description
-field_name: description
-entity_type: taxonomy_term
-bundle: people_type
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.people_type.metatag.yml b/config/core.base_field_override.taxonomy_term.people_type.metatag.yml
deleted file mode 100644
index 574769f..0000000
--- a/config/core.base_field_override.taxonomy_term.people_type.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2ebb2896-f65d-4126-b785-5ffdcdff4adc
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
-id: taxonomy_term.people_type.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: people_type
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.people_type.name.yml b/config/core.base_field_override.taxonomy_term.people_type.name.yml
deleted file mode 100644
index 3fde903..0000000
--- a/config/core.base_field_override.taxonomy_term.people_type.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 752d0f34-387a-4d48-8a0a-53edda4333ac
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
-id: taxonomy_term.people_type.name
-field_name: name
-entity_type: taxonomy_term
-bundle: people_type
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.people_type.path.yml b/config/core.base_field_override.taxonomy_term.people_type.path.yml
deleted file mode 100644
index 26d6d9e..0000000
--- a/config/core.base_field_override.taxonomy_term.people_type.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: f7a8a47c-9bc7-4294-bd3e-726c414cd77d
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
- module:
- - path
-id: taxonomy_term.people_type.path
-field_name: path
-entity_type: taxonomy_term
-bundle: people_type
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.people_type.status.yml b/config/core.base_field_override.taxonomy_term.people_type.status.yml
deleted file mode 100644
index c0b6f64..0000000
--- a/config/core.base_field_override.taxonomy_term.people_type.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 88bf4f8e-169d-4bcf-94ae-bf858fc1bc2a
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
-id: taxonomy_term.people_type.status
-field_name: status
-entity_type: taxonomy_term
-bundle: people_type
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.resource_type.changed.yml b/config/core.base_field_override.taxonomy_term.resource_type.changed.yml
deleted file mode 100644
index d48bfab..0000000
--- a/config/core.base_field_override.taxonomy_term.resource_type.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3504b1ae-aa52-4705-bbae-9126406a9417
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
-id: taxonomy_term.resource_type.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: resource_type
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.resource_type.description.yml b/config/core.base_field_override.taxonomy_term.resource_type.description.yml
deleted file mode 100644
index 94ef458..0000000
--- a/config/core.base_field_override.taxonomy_term.resource_type.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: a2754a0a-d1af-4102-b706-e22bad19e4f5
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
- module:
- - text
-id: taxonomy_term.resource_type.description
-field_name: description
-entity_type: taxonomy_term
-bundle: resource_type
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.resource_type.metatag.yml b/config/core.base_field_override.taxonomy_term.resource_type.metatag.yml
deleted file mode 100644
index 44c9d15..0000000
--- a/config/core.base_field_override.taxonomy_term.resource_type.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c25c0262-5b8e-4b9f-8329-55eb9b1f7c50
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
-id: taxonomy_term.resource_type.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: resource_type
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.resource_type.name.yml b/config/core.base_field_override.taxonomy_term.resource_type.name.yml
deleted file mode 100644
index d0fc7c7..0000000
--- a/config/core.base_field_override.taxonomy_term.resource_type.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 08e5864c-6b4f-471a-9181-d13dbd859641
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
-id: taxonomy_term.resource_type.name
-field_name: name
-entity_type: taxonomy_term
-bundle: resource_type
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.resource_type.path.yml b/config/core.base_field_override.taxonomy_term.resource_type.path.yml
deleted file mode 100644
index 22ee5c3..0000000
--- a/config/core.base_field_override.taxonomy_term.resource_type.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 8588933e-2f4c-4ee3-82fc-d8fb129e7f06
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
- module:
- - path
-id: taxonomy_term.resource_type.path
-field_name: path
-entity_type: taxonomy_term
-bundle: resource_type
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.resource_type.status.yml b/config/core.base_field_override.taxonomy_term.resource_type.status.yml
deleted file mode 100644
index 4ad866b..0000000
--- a/config/core.base_field_override.taxonomy_term.resource_type.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: d673ac8a-c419-4154-b28c-3bdc90e3ad4c
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
-id: taxonomy_term.resource_type.status
-field_name: status
-entity_type: taxonomy_term
-bundle: resource_type
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.services.changed.yml b/config/core.base_field_override.taxonomy_term.services.changed.yml
deleted file mode 100644
index 86f93f1..0000000
--- a/config/core.base_field_override.taxonomy_term.services.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 03b09eec-f705-4a1a-ba6a-80ef16791923
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
-id: taxonomy_term.services.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: services
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.services.description.yml b/config/core.base_field_override.taxonomy_term.services.description.yml
deleted file mode 100644
index b0b5ba3..0000000
--- a/config/core.base_field_override.taxonomy_term.services.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 0354c1c7-55f5-414c-9ddc-342d77a97d72
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
- module:
- - text
-id: taxonomy_term.services.description
-field_name: description
-entity_type: taxonomy_term
-bundle: services
-label: Description
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.services.metatag.yml b/config/core.base_field_override.taxonomy_term.services.metatag.yml
deleted file mode 100644
index 70d759c..0000000
--- a/config/core.base_field_override.taxonomy_term.services.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 64c4df25-9aa3-4e03-92bf-0d4210b9a5ee
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
-id: taxonomy_term.services.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: services
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.services.name.yml b/config/core.base_field_override.taxonomy_term.services.name.yml
deleted file mode 100644
index 626b4bb..0000000
--- a/config/core.base_field_override.taxonomy_term.services.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: deabd67a-99e7-4110-8d64-ceb6240011b4
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
-id: taxonomy_term.services.name
-field_name: name
-entity_type: taxonomy_term
-bundle: services
-label: Name
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.services.path.yml b/config/core.base_field_override.taxonomy_term.services.path.yml
deleted file mode 100644
index 1acd12c..0000000
--- a/config/core.base_field_override.taxonomy_term.services.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 75cf55df-19c4-4a25-ad46-34a1bacf365d
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
- module:
- - path
-id: taxonomy_term.services.path
-field_name: path
-entity_type: taxonomy_term
-bundle: services
-label: 'URL alias'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.services.status.yml b/config/core.base_field_override.taxonomy_term.services.status.yml
deleted file mode 100644
index e4953f3..0000000
--- a/config/core.base_field_override.taxonomy_term.services.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: b2e74abb-e6dd-4781-9a93-3c41d78af16d
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
-id: taxonomy_term.services.status
-field_name: status
-entity_type: taxonomy_term
-bundle: services
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.tags.changed.yml b/config/core.base_field_override.taxonomy_term.tags.changed.yml
deleted file mode 100644
index ca43e95..0000000
--- a/config/core.base_field_override.taxonomy_term.tags.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e654c03e-3437-4af2-972c-f11c73f5c1e3
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
-id: taxonomy_term.tags.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: tags
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.tags.description.yml b/config/core.base_field_override.taxonomy_term.tags.description.yml
deleted file mode 100644
index c9c0def..0000000
--- a/config/core.base_field_override.taxonomy_term.tags.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 7b0c34c0-06f3-4ff2-be85-5587c69576c7
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
- module:
- - text
-id: taxonomy_term.tags.description
-field_name: description
-entity_type: taxonomy_term
-bundle: tags
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.tags.metatag.yml b/config/core.base_field_override.taxonomy_term.tags.metatag.yml
deleted file mode 100644
index 2f29303..0000000
--- a/config/core.base_field_override.taxonomy_term.tags.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 0a4094a0-0560-4ed7-94c2-ae44f00fccb2
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
-id: taxonomy_term.tags.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: tags
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.tags.name.yml b/config/core.base_field_override.taxonomy_term.tags.name.yml
deleted file mode 100644
index e676c31..0000000
--- a/config/core.base_field_override.taxonomy_term.tags.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 65b9e8ea-8f5a-449e-bcd4-32499ef37c38
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
-id: taxonomy_term.tags.name
-field_name: name
-entity_type: taxonomy_term
-bundle: tags
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.tags.path.yml b/config/core.base_field_override.taxonomy_term.tags.path.yml
deleted file mode 100644
index ecafdcd..0000000
--- a/config/core.base_field_override.taxonomy_term.tags.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: ba150f8e-fc51-4adf-ac7d-fff97d464eaf
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
- module:
- - path
-id: taxonomy_term.tags.path
-field_name: path
-entity_type: taxonomy_term
-bundle: tags
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.tags.status.yml b/config/core.base_field_override.taxonomy_term.tags.status.yml
deleted file mode 100644
index 3dff7f1..0000000
--- a/config/core.base_field_override.taxonomy_term.tags.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 54ebd665-b563-4a77-a933-7270a15a15cc
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
-id: taxonomy_term.tags.status
-field_name: status
-entity_type: taxonomy_term
-bundle: tags
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.technologies.changed.yml b/config/core.base_field_override.taxonomy_term.technologies.changed.yml
deleted file mode 100644
index ab8c343..0000000
--- a/config/core.base_field_override.taxonomy_term.technologies.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 6ca86b69-43e3-47b0-839c-b2953e9a5efa
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
-id: taxonomy_term.technologies.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: technologies
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.technologies.description.yml b/config/core.base_field_override.taxonomy_term.technologies.description.yml
deleted file mode 100644
index c4f0d05..0000000
--- a/config/core.base_field_override.taxonomy_term.technologies.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 3665a055-bf90-4ca0-9bb4-b6ae4409dc5c
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
- module:
- - text
-id: taxonomy_term.technologies.description
-field_name: description
-entity_type: taxonomy_term
-bundle: technologies
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.technologies.metatag.yml b/config/core.base_field_override.taxonomy_term.technologies.metatag.yml
deleted file mode 100644
index b20fc47..0000000
--- a/config/core.base_field_override.taxonomy_term.technologies.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c54664ac-8791-4336-b0d2-4fc2cca097aa
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
-id: taxonomy_term.technologies.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: technologies
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.technologies.name.yml b/config/core.base_field_override.taxonomy_term.technologies.name.yml
deleted file mode 100644
index b1810d9..0000000
--- a/config/core.base_field_override.taxonomy_term.technologies.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: b4ecb9d9-be93-42a5-93bb-4adfc002e982
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
-id: taxonomy_term.technologies.name
-field_name: name
-entity_type: taxonomy_term
-bundle: technologies
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.technologies.path.yml b/config/core.base_field_override.taxonomy_term.technologies.path.yml
deleted file mode 100644
index d6245dd..0000000
--- a/config/core.base_field_override.taxonomy_term.technologies.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 43e480c3-49a5-4ad2-abac-a3069b67ad12
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
- module:
- - path
-id: taxonomy_term.technologies.path
-field_name: path
-entity_type: taxonomy_term
-bundle: technologies
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.technologies.status.yml b/config/core.base_field_override.taxonomy_term.technologies.status.yml
deleted file mode 100644
index 0fe36c3..0000000
--- a/config/core.base_field_override.taxonomy_term.technologies.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 0d459063-261f-4fbf-96b8-45c43cc56937
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
-id: taxonomy_term.technologies.status
-field_name: status
-entity_type: taxonomy_term
-bundle: technologies
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.taxonomy_term.topics.changed.yml b/config/core.base_field_override.taxonomy_term.topics.changed.yml
deleted file mode 100644
index 2cb112c..0000000
--- a/config/core.base_field_override.taxonomy_term.topics.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 55c851ca-4335-4856-962c-c42d6de87fca
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
-id: taxonomy_term.topics.changed
-field_name: changed
-entity_type: taxonomy_term
-bundle: topics
-label: Changed
-description: 'The time that the term was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.taxonomy_term.topics.description.yml b/config/core.base_field_override.taxonomy_term.topics.description.yml
deleted file mode 100644
index 5a92a84..0000000
--- a/config/core.base_field_override.taxonomy_term.topics.description.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 902216f3-bccb-4a72-8d31-75a97f100ef0
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
- module:
- - text
-id: taxonomy_term.topics.description
-field_name: description
-entity_type: taxonomy_term
-bundle: topics
-label: Description
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/core.base_field_override.taxonomy_term.topics.metatag.yml b/config/core.base_field_override.taxonomy_term.topics.metatag.yml
deleted file mode 100644
index 96b6422..0000000
--- a/config/core.base_field_override.taxonomy_term.topics.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a884a9ac-1cee-4c50-aef3-252da8709dc7
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
-id: taxonomy_term.topics.metatag
-field_name: metatag
-entity_type: taxonomy_term
-bundle: topics
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.taxonomy_term.topics.name.yml b/config/core.base_field_override.taxonomy_term.topics.name.yml
deleted file mode 100644
index 2c6923b..0000000
--- a/config/core.base_field_override.taxonomy_term.topics.name.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3fa7c76a-2e9c-49da-b409-7631e5fc0abc
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
-id: taxonomy_term.topics.name
-field_name: name
-entity_type: taxonomy_term
-bundle: topics
-label: Name
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/core.base_field_override.taxonomy_term.topics.path.yml b/config/core.base_field_override.taxonomy_term.topics.path.yml
deleted file mode 100644
index 0dcfae3..0000000
--- a/config/core.base_field_override.taxonomy_term.topics.path.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 9b0e0f83-ee38-4774-90e8-4b0a53da4e12
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
- module:
- - path
-id: taxonomy_term.topics.path
-field_name: path
-entity_type: taxonomy_term
-bundle: topics
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
diff --git a/config/core.base_field_override.taxonomy_term.topics.status.yml b/config/core.base_field_override.taxonomy_term.topics.status.yml
deleted file mode 100644
index 8bd8cc2..0000000
--- a/config/core.base_field_override.taxonomy_term.topics.status.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 96a4c0a4-221d-4cd2-b476-e53750c842b9
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
-id: taxonomy_term.topics.status
-field_name: status
-entity_type: taxonomy_term
-bundle: topics
-label: Published
-description: ''
-required: false
-translatable: false
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'On'
- off_label: 'Off'
-field_type: boolean
diff --git a/config/core.base_field_override.user.user.changed.yml b/config/core.base_field_override.user.user.changed.yml
deleted file mode 100644
index 6d5b6d5..0000000
--- a/config/core.base_field_override.user.user.changed.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c18f5e81-1edd-4c69-8f2b-bb78b9554844
-langcode: en
-status: true
-dependencies:
- module:
- - user
-id: user.user.changed
-field_name: changed
-entity_type: user
-bundle: user
-label: Changed
-description: 'The time that the user was last edited.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: changed
diff --git a/config/core.base_field_override.user.user.metatag.yml b/config/core.base_field_override.user.user.metatag.yml
deleted file mode 100644
index 938703d..0000000
--- a/config/core.base_field_override.user.user.metatag.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: b075f765-c367-430f-9a31-90cb1644ba48
-langcode: en
-status: true
-dependencies:
- module:
- - user
-id: user.user.metatag
-field_name: metatag
-entity_type: user
-bundle: user
-label: Metatags
-description: 'The meta tags for the entity.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: map
diff --git a/config/core.base_field_override.user.user.path.yml b/config/core.base_field_override.user.user.path.yml
deleted file mode 100644
index ef7dabd..0000000
--- a/config/core.base_field_override.user.user.path.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: 7d0fe6a5-78af-4369-ad65-65673c9d4405
-langcode: en
-status: true
-dependencies:
- module:
- - path
- - user
-id: user.user.path
-field_name: path
-entity_type: user
-bundle: user
-label: 'URL alias'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: path
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.contact_message.personal.default.yml b/config/core.entity_form_display.contact_message.personal.default.yml
deleted file mode 100644
index fea7d4c..0000000
--- a/config/core.entity_form_display.contact_message.personal.default.yml
+++ /dev/null
@@ -1,60 +0,0 @@
-uuid: 82535634-2ac6-4702-b581-31fbda1c233b
-langcode: en
-status: true
-dependencies:
- config:
- - contact.form.personal
-id: contact_message.personal.default
-targetEntityType: contact_message
-bundle: personal
-mode: default
-content:
- copy:
- weight: 7
- region: content
- settings: { }
- third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
- region: content
- settings:
- include_locked: true
- third_party_settings: { }
- mail:
- weight: 2
- region: content
- settings: { }
- third_party_settings: { }
- message:
- type: string_textarea
- weight: 5
- region: content
- settings:
- rows: 12
- placeholder: ''
- third_party_settings: { }
- name:
- weight: 1
- region: content
- settings: { }
- third_party_settings: { }
- preview:
- weight: 6
- region: content
- settings: { }
- third_party_settings: { }
- recipient:
- weight: 3
- region: content
- settings: { }
- third_party_settings: { }
- subject:
- type: string_textfield
- weight: 4
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
-hidden: { }
diff --git a/config/core.entity_form_display.node.case_study.default.yml b/config/core.entity_form_display.node.case_study.default.yml
deleted file mode 100644
index 1cbabde..0000000
--- a/config/core.entity_form_display.node.case_study.default.yml
+++ /dev/null
@@ -1,200 +0,0 @@
-uuid: 96402b45-e786-494e-a6f8-23b6fd7247ef
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - image.style.thumbnail
- - node.type.case_study
- module:
- - image
- - metatag
- - paragraphs
- - path
- - text
-_core:
- default_config_hash: VOaPesGPSlTWJL3fsv-c_Anb_E97eXvThYrALcLR_eQ
-id: node.case_study.default
-targetEntityType: node
-bundle: case_study
-mode: default
-content:
- created:
- type: datetime_timestamp
- weight: 12
- region: content
- settings: { }
- third_party_settings: { }
- field_body_paragraph:
- type: entity_reference_paragraphs
- weight: 4
- region: content
- settings:
- title: Paragraph
- title_plural: Paragraphs
- edit_mode: open
- add_mode: dropdown
- form_display_mode: default
- default_paragraph_type: ''
- third_party_settings: { }
- field_case_study_client:
- type: text_textfield
- weight: 5
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- field_case_study_partners:
- type: text_textfield
- weight: 11
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- field_case_study_status:
- type: string_textfield
- weight: 7
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- field_case_study_subtitle:
- type: string_textfield
- weight: 1
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- field_case_study_team:
- type: entity_reference_autocomplete
- weight: 10
- region: content
- settings:
- match_operator: CONTAINS
- match_limit: 10
- size: 60
- placeholder: ''
- third_party_settings: { }
- field_case_study_year:
- type: number
- weight: 6
- region: content
- settings:
- placeholder: ''
- third_party_settings: { }
- field_image:
- type: image_image
- weight: 2
- region: content
- settings:
- progress_indicator: throbber
- preview_image_style: thumbnail
- third_party_settings: { }
- field_license:
- type: entity_reference_autocomplete
- weight: 18
- region: content
- settings:
- match_operator: CONTAINS
- match_limit: 10
- size: 60
- placeholder: ''
- third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 17
- region: content
- settings: { }
- third_party_settings: { }
- field_services:
- type: options_buttons
- weight: 8
- region: content
- settings: { }
- third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 3
- region: content
- settings:
- rows: 5
- placeholder: ''
- third_party_settings: { }
- field_technologies:
- type: options_buttons
- weight: 9
- region: content
- settings: { }
- third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
- region: content
- settings:
- include_locked: true
- third_party_settings: { }
- path:
- type: path
- weight: 15
- region: content
- settings: { }
- third_party_settings: { }
- promote:
- type: boolean_checkbox
- weight: 13
- region: content
- settings:
- display_label: true
- third_party_settings: { }
- status:
- type: boolean_checkbox
- weight: 16
- region: content
- settings:
- display_label: true
- third_party_settings: { }
- sticky:
- type: boolean_checkbox
- weight: 14
- region: content
- settings:
- display_label: true
- third_party_settings: { }
- title:
- type: string_textfield
- weight: 0
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
- url_redirects:
- weight: 50
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- body: true
- uid: true
diff --git a/config/core.entity_form_display.paragraph.content_reference.default.yml b/config/core.entity_form_display.paragraph.content_reference.default.yml
deleted file mode 100644
index 32ee210..0000000
--- a/config/core.entity_form_display.paragraph.content_reference.default.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: e50613ed-23a3-4601-bd5f-4287d40b3482
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.content_reference.field_content_reference
- - paragraphs.paragraphs_type.content_reference
-id: paragraph.content_reference.default
-targetEntityType: paragraph
-bundle: content_reference
-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_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_display.paragraph.quotation_with_image.default.yml b/config/core.entity_form_display.paragraph.quotation_with_image.default.yml
deleted file mode 100644
index cc83695..0000000
--- a/config/core.entity_form_display.paragraph.quotation_with_image.default.yml
+++ /dev/null
@@ -1,70 +0,0 @@
-uuid: cd7571d8-7699-4885-b399-a757220a17b3
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.quotation_with_image.field_image
- - field.field.paragraph.quotation_with_image.field_quotation
- - field.field.paragraph.quotation_with_image.field_style_escape_flow
- - image.style.thumbnail
- - paragraphs.paragraphs_type.quotation_with_image
- module:
- - allowed_formats
- - field_group
- - image
- - text
-third_party_settings:
- field_group:
- group_style:
- children:
- - field_style_escape_flow
- label: Style
- region: content
- parent_name: ''
- weight: 3
- format_type: details
- format_settings:
- classes: ''
- id: ''
- open: false
- required_fields: true
-id: paragraph.quotation_with_image.default
-targetEntityType: paragraph
-bundle: quotation_with_image
-mode: default
-content:
- field_image:
- type: image_image
- weight: 1
- region: content
- settings:
- progress_indicator: throbber
- preview_image_style: thumbnail
- third_party_settings: { }
- field_quotation:
- type: text_textarea
- weight: 0
- region: content
- settings:
- rows: 3
- placeholder: ''
- third_party_settings:
- allowed_formats:
- hide_help: '0'
- hide_guidelines: '0'
- field_style_escape_flow:
- type: boolean_checkbox
- weight: 2
- region: content
- settings:
- display_label: false
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- created: true
- status: true
- uid: true
diff --git a/config/core.entity_form_display.paragraph.text.default.yml b/config/core.entity_form_display.paragraph.text.default.yml
deleted file mode 100644
index 37bf562..0000000
--- a/config/core.entity_form_display.paragraph.text.default.yml
+++ /dev/null
@@ -1,66 +0,0 @@
-uuid: ef988c59-17f5-4845-a254-76385d278f5f
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.text.field_style_classes
- - field.field.paragraph.text.field_style_escape_flow
- - field.field.paragraph.text.field_text
- - paragraphs.paragraphs_type.text
- module:
- - field_group
- - text
-third_party_settings:
- field_group:
- group_style:
- children:
- - field_style_classes
- - field_style_escape_flow
- label: Style
- region: content
- parent_name: ''
- weight: 1
- format_type: tab
- format_settings:
- classes: ''
- id: ''
- formatter: closed
- description: ''
- required_fields: true
-_core:
- default_config_hash: HcHUk34p8VqAF8IVnIOT1SpvhP1C7UmNlFz8jHIDwE0
-id: paragraph.text.default
-targetEntityType: paragraph
-bundle: text
-mode: default
-content:
- field_style_classes:
- type: options_select
- weight: 2
- region: content
- settings: { }
- third_party_settings: { }
- field_style_escape_flow:
- type: boolean_checkbox
- weight: 3
- region: content
- settings:
- display_label: false
- third_party_settings: { }
- field_text:
- type: text_textarea
- weight: 0
- region: content
- settings:
- rows: 5
- placeholder: ''
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- created: true
- status: true
- uid: true
diff --git a/config/core.entity_form_display.paragraph.title.default.yml b/config/core.entity_form_display.paragraph.title.default.yml
deleted file mode 100644
index 040f593..0000000
--- a/config/core.entity_form_display.paragraph.title.default.yml
+++ /dev/null
@@ -1,80 +0,0 @@
-uuid: fcfa7400-ac2f-419e-a2da-a163279ef894
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.title.field_image
- - field.field.paragraph.title.field_style_classes
- - field.field.paragraph.title.field_style_color
- - field.field.paragraph.title.field_style_titlebar
- - field.field.paragraph.title.field_subtitle
- - field.field.paragraph.title.field_title
- - image.style.thumbnail
- - paragraphs.paragraphs_type.title
- module:
- - allowed_formats
- - image
- - text
-id: paragraph.title.default
-targetEntityType: paragraph
-bundle: title
-mode: default
-content:
- field_image:
- type: image_image
- weight: 2
- region: content
- settings:
- progress_indicator: throbber
- preview_image_style: thumbnail
- third_party_settings: { }
- field_style_classes:
- type: options_buttons
- weight: 5
- region: content
- settings: { }
- third_party_settings: { }
- field_style_color:
- type: options_select
- weight: 3
- region: content
- settings: { }
- third_party_settings: { }
- field_style_titlebar:
- type: boolean_checkbox
- weight: 4
- region: content
- settings:
- display_label: true
- third_party_settings: { }
- field_subtitle:
- type: text_textfield
- weight: 1
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings:
- allowed_formats:
- hide_help: '1'
- hide_guidelines: '1'
- field_title:
- type: text_textfield
- weight: 0
- region: content
- settings:
- size: 60
- placeholder: ''
- third_party_settings:
- allowed_formats:
- hide_help: '1'
- hide_guidelines: '1'
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- created: true
- status: true
- uid: true
diff --git a/config/core.entity_form_display.paragraph.video.default.yml b/config/core.entity_form_display.paragraph.video.default.yml
deleted file mode 100644
index 7102c84..0000000
--- a/config/core.entity_form_display.paragraph.video.default.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: 39b23dba-c892-4cde-afed-19b986049cb1
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.video.field_video_embed
- - paragraphs.paragraphs_type.video
- module:
- - video_embed_field
-_core:
- default_config_hash: 06c7Ahwb8yJby6MRemnEP6p683BbgZCUPnF6WE1ni50
-id: paragraph.video.default
-targetEntityType: paragraph
-bundle: video
-mode: default
-content:
- field_video_embed:
- type: video_embed_field_textfield
- weight: 0
- region: content
- settings: { }
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- created: true
- status: true
- uid: true
diff --git a/config/core.entity_form_display.paragraph.view.default.yml b/config/core.entity_form_display.paragraph.view.default.yml
deleted file mode 100644
index d7bd052..0000000
--- a/config/core.entity_form_display.paragraph.view.default.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-uuid: 58414ad1-0d71-444b-900c-890745e2d3d9
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.view.field_style_escape_flow
- - field.field.paragraph.view.field_view_reference
- - paragraphs.paragraphs_type.view
- module:
- - field_group
- - viewsreference
-third_party_settings:
- field_group:
- group_style:
- children:
- - field_style_escape_flow
- label: Style
- region: content
- parent_name: ''
- weight: 1
- format_type: details
- format_settings:
- classes: ''
- id: ''
- open: true
- required_fields: true
-id: paragraph.view.default
-targetEntityType: paragraph
-bundle: view
-mode: default
-content:
- field_style_escape_flow:
- type: boolean_checkbox
- weight: 2
- region: content
- settings:
- display_label: false
- third_party_settings: { }
- field_view_reference:
- type: viewsreference_autocomplete
- weight: 0
- region: content
- settings:
- match_operator: CONTAINS
- size: '60'
- placeholder: ''
- match_limit: 10
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- created: true
- status: true
- uid: true
diff --git a/config/core.entity_form_display.paragraph.webform.default.yml b/config/core.entity_form_display.paragraph.webform.default.yml
deleted file mode 100644
index d65c8b1..0000000
--- a/config/core.entity_form_display.paragraph.webform.default.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-uuid: 02428115-3e5a-49f7-8f1b-6258a3f6cd5b
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.webform.field_webform
- - paragraphs.paragraphs_type.webform
- module:
- - webform
-id: paragraph.webform.default
-targetEntityType: paragraph
-bundle: webform
-mode: default
-content:
- field_webform:
- type: webform_entity_reference_select
- weight: 0
- region: content
- settings:
- default_data: true
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
-hidden:
- created: true
- status: true
- uid: 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.blog.full.yml b/config/core.entity_view_display.node.blog.full.yml
deleted file mode 100644
index 0286043..0000000
--- a/config/core.entity_view_display.node.blog.full.yml
+++ /dev/null
@@ -1,105 +0,0 @@
-uuid: 1767cffc-87d1-4b48-9da5-e2d929a14053
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_display.comment.comment.default
- - core.entity_view_mode.node.full
- - field.field.node.blog.body
- - field.field.node.blog.comment
- - field.field.node.blog.field_authors
- - field.field.node.blog.field_body_paragraph
- - field.field.node.blog.field_image
- - field.field.node.blog.field_meta_tags
- - field.field.node.blog.field_summary
- - field.field.node.blog.field_tags
- - field.field.node.blog.field_topics
- - node.type.blog
- module:
- - comment
- - ds
- - entity_reference_revisions
- - indieweb_microformat
- - inotherwords
- - user
-_core:
- default_config_hash: eLe_jwnmC3YVxzxyG5O3Vc3cB-yoH17iuPzsEFt3TDM
-id: node.blog.full
-targetEntityType: node
-bundle: blog
-mode: full
-content:
- comment:
- type: comment_default
- label: above
- settings:
- view_mode: default
- pager_id: 0
- third_party_settings: { }
- weight: 4
- region: content
- field_authors:
- type: inotherwords_list
- label: hidden
- settings:
- link: '1'
- series_join: ', '
- series_final_join: ' and '
- oxford_comma: '1'
- text_before: 'Written by '
- text_after: ''
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: default
- link: ''
- third_party_settings: { }
- weight: 1
- region: content
- field_tags:
- type: entity_reference_label_microformat
- label: hidden
- settings:
- microformat_class: p-category
- third_party_settings: { }
- weight: 3
- region: content
- field_topics:
- type: entity_reference_label_microformat
- label: visually_hidden
- settings:
- microformat_class: p-category
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 2
- region: content
- indieweb_bridgypublishmastodon:
- settings: { }
- third_party_settings: { }
- weight: 6
- region: content
- indieweb_bridgypublishtwitter:
- settings: { }
- third_party_settings: { }
- weight: 5
- region: content
- indieweb_syndication:
- settings: { }
- third_party_settings: { }
- weight: 7
- region: content
-hidden:
- body: true
- field_image: true
- field_meta_tags: true
- field_summary: true
- langcode: true
- links: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.blog.rss.yml b/config/core.entity_view_display.node.blog.rss.yml
deleted file mode 100644
index 14b8380..0000000
--- a/config/core.entity_view_display.node.blog.rss.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-uuid: d29d83f8-6205-4200-9a59-db61a7fea6ff
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.rss
- - field.field.node.blog.body
- - field.field.node.blog.comment
- - field.field.node.blog.field_authors
- - field.field.node.blog.field_body_paragraph
- - field.field.node.blog.field_image
- - field.field.node.blog.field_meta_tags
- - field.field.node.blog.field_summary
- - field.field.node.blog.field_tags
- - field.field.node.blog.field_topics
- - node.type.blog
- module:
- - ds
- - paragraphs
- - user
-third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - node_title
- - node_post_date
- - field_authors
- - field_body_paragraph
- - node_link
- fields:
- node_post_date:
- plugin_id: node_post_date
- weight: 1
- label: hidden
- formatter: ds_post_date_long
- node_title:
- plugin_id: node_title
- weight: 0
- label: hidden
- formatter: default
- node_link:
- plugin_id: node_link
- weight: 4
- label: hidden
- formatter: default
-_core:
- default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM
-id: node.blog.rss
-targetEntityType: node
-bundle: blog
-mode: rss
-content:
- field_authors:
- type: entity_reference_label
- label: hidden
- settings:
- link: false
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 2
- region: content
- field_body_paragraph:
- type: paragraph_summary
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 3
- region: content
-hidden:
- body: true
- comment: true
- field_image: true
- field_meta_tags: true
- field_summary: true
- field_tags: true
- field_topics: 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.node.blog.rss_teaser.yml b/config/core.entity_view_display.node.blog.rss_teaser.yml
deleted file mode 100644
index a19dd1c..0000000
--- a/config/core.entity_view_display.node.blog.rss_teaser.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-uuid: d29088c7-133a-4d1b-8ff0-ec4e84315a37
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.rss_teaser
- - field.field.node.blog.body
- - field.field.node.blog.comment
- - field.field.node.blog.field_authors
- - field.field.node.blog.field_body_paragraph
- - field.field.node.blog.field_image
- - field.field.node.blog.field_meta_tags
- - field.field.node.blog.field_summary
- - field.field.node.blog.field_tags
- - field.field.node.blog.field_topics
- - node.type.blog
- module:
- - ds
- - entity_reference_revisions
- - user
-_core:
- default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM
-id: node.blog.rss_teaser
-targetEntityType: node
-bundle: blog
-mode: rss_teaser
-content:
- field_authors:
- type: entity_reference_label
- label: hidden
- settings:
- link: false
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: preview
- link: ''
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 1
- region: content
-hidden:
- body: true
- comment: true
- field_image: true
- field_meta_tags: true
- field_summary: true
- field_tags: true
- field_topics: 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.node.blog.teaser.yml b/config/core.entity_view_display.node.blog.teaser.yml
deleted file mode 100644
index 6ed3107..0000000
--- a/config/core.entity_view_display.node.blog.teaser.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-uuid: d3fb89f7-ea9a-4a77-9d3e-e38c50fee8aa
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.teaser
- - field.field.node.blog.body
- - field.field.node.blog.comment
- - field.field.node.blog.field_authors
- - field.field.node.blog.field_body_paragraph
- - field.field.node.blog.field_image
- - field.field.node.blog.field_meta_tags
- - field.field.node.blog.field_summary
- - field.field.node.blog.field_tags
- - field.field.node.blog.field_topics
- - node.type.blog
- - responsive_image.styles.wide
- module:
- - ds
- - field_group
- - responsive_image
- - text
- - user
-third_party_settings:
- field_group:
- group_card_content:
- children: { }
- label: 'Card content'
- parent_name: ''
- region: hidden
- weight: 10
- format_type: html_element
- format_settings:
- classes: ''
- id: ''
- element: div
- show_label: false
- label_element: h3
- attributes: ''
- effect: none
- speed: fast
-_core:
- default_config_hash: bIW-s9Bo_W7omXxAG4XHIq96IyNJEbhcATZv9TBQqNU
-id: node.blog.teaser
-targetEntityType: node
-bundle: blog
-mode: teaser
-content:
- field_authors:
- type: entity_reference_label
- label: hidden
- settings:
- link: false
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
- field_image:
- type: responsive_image
- label: hidden
- settings:
- responsive_image_style: wide
- image_link: ''
- image_loading:
- attribute: eager
- third_party_settings: { }
- weight: 1
- region: content
- field_summary:
- type: text_trimmed
- label: hidden
- settings:
- trim_length: 600
- third_party_settings: { }
- weight: 2
- region: content
-hidden:
- body: true
- comment: true
- field_body_paragraph: true
- field_meta_tags: true
- field_tags: true
- field_topics: 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.node.case_study.card.yml b/config/core.entity_view_display.node.case_study.card.yml
deleted file mode 100644
index a744119..0000000
--- a/config/core.entity_view_display.node.case_study.card.yml
+++ /dev/null
@@ -1,116 +0,0 @@
-uuid: fb88591c-28f2-4fa4-81e9-164d2c877ffc
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.card
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- - responsive_image.styles.wide
- module:
- - ds
- - field_group
- - responsive_image
- - user
-third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - field_image
- - group_card_content
- - node_title
- - field_case_study_subtitle
- fields:
- node_title:
- plugin_id: node_title
- weight: 2
- label: hidden
- formatter: default
- settings:
- link: true
- wrapper: h2
- class: title
- exclude_node_title: '1'
- field_group:
- group_card_content:
- children:
- - node_title
- - field_case_study_subtitle
- label: 'Card Content'
- parent_name: ''
- region: content
- weight: 1
- format_type: html_element
- format_settings:
- classes: ''
- id: ''
- element: div
- show_label: false
- label_element: h3
- attributes: ''
- effect: none
- speed: fast
-_core:
- default_config_hash: ajlgTMuDr6Ca9wpU9W7h0XFSEQlzgaCVveEKB-FY60o
-id: node.case_study.card
-targetEntityType: node
-bundle: case_study
-mode: card
-content:
- field_case_study_subtitle:
- type: string
- label: hidden
- settings:
- link_to_entity: false
- third_party_settings: { }
- weight: 3
- region: content
- field_image:
- type: responsive_image
- label: hidden
- settings:
- responsive_image_style: wide
- image_link: content
- image_loading:
- attribute: eager
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- body: true
- field_body_paragraph: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_team: true
- field_case_study_year: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- field_technologies: 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.node.case_study.default.yml b/config/core.entity_view_display.node.case_study.default.yml
deleted file mode 100644
index 5dd9cc4..0000000
--- a/config/core.entity_view_display.node.case_study.default.yml
+++ /dev/null
@@ -1,71 +0,0 @@
-uuid: 33a163de-149e-4f5d-b524-ef1a45df29b6
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- module:
- - ds
- - paragraphs
- - user
-third_party_settings:
- ds:
- layout:
- id: pattern_title_paragraph
- library: null
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- paragraphs:
- - field_body_paragraph
-_core:
- default_config_hash: bCf6cJZ9WLriQEA0IYx7QFyj0JBZcFc41oTGp_9UccU
-id: node.case_study.default
-targetEntityType: node
-bundle: case_study
-mode: default
-content:
- field_body_paragraph:
- type: paragraph_summary
- label: hidden
- settings: { }
- third_party_settings:
- ds:
- ds_limit: '1'
- weight: 0
- region: paragraphs
-hidden:
- body: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_subtitle: true
- field_case_study_team: true
- field_case_study_year: true
- field_image: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- field_technologies: 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.node.case_study.full.yml b/config/core.entity_view_display.node.case_study.full.yml
deleted file mode 100644
index b7cd890..0000000
--- a/config/core.entity_view_display.node.case_study.full.yml
+++ /dev/null
@@ -1,123 +0,0 @@
-uuid: d9038909-a41c-418c-82ca-6a1fa900c84a
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.full
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- module:
- - ds
- - entity_reference_revisions
- - text
- - user
-_core:
- default_config_hash: N_SusIa1IFu4fIGYNRpaypRg9DZhGSCXmBlKzUUIJi4
-id: node.case_study.full
-targetEntityType: node
-bundle: case_study
-mode: full
-content:
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: visually_hidden
- settings:
- view_mode: default
- link: ''
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
- field_case_study_client:
- type: text_default
- label: inline
- settings: { }
- third_party_settings: { }
- weight: 1
- region: content
- field_case_study_partners:
- type: text_default
- label: inline
- settings: { }
- third_party_settings: { }
- weight: 7
- region: content
- field_case_study_status:
- type: string
- label: inline
- settings:
- link_to_entity: false
- third_party_settings:
- ds:
- ft:
- id: default
- settings:
- lb: ''
- lb-col: false
- classes: { }
- weight: 3
- region: content
- field_case_study_team:
- type: entity_reference_label
- label: inline
- settings:
- link: true
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 6
- region: content
- field_case_study_year:
- type: number_integer
- label: inline
- settings:
- thousand_separator: ''
- prefix_suffix: true
- third_party_settings: { }
- weight: 2
- region: content
- field_services:
- type: entity_reference_label
- label: inline
- settings:
- link: true
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 4
- region: content
- field_technologies:
- type: entity_reference_label
- label: inline
- settings:
- link: true
- third_party_settings: { }
- weight: 5
- region: content
-hidden:
- body: true
- field_case_study_subtitle: true
- field_image: true
- field_license: 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.node.case_study.search_index.yml b/config/core.entity_view_display.node.case_study.search_index.yml
deleted file mode 100644
index 400d32c..0000000
--- a/config/core.entity_view_display.node.case_study.search_index.yml
+++ /dev/null
@@ -1,61 +0,0 @@
-uuid: 639cfd32-676a-4889-92af-6f8d427aebba
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.search_index
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- module:
- - ds
- - user
-third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions: { }
-_core:
- default_config_hash: NCFQRlPzRO2SgGymdg1A_OAbDWN3Jf9O-nzIKIX8hK0
-id: node.case_study.search_index
-targetEntityType: node
-bundle: case_study
-mode: search_index
-content: { }
-hidden:
- body: true
- field_body_paragraph: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_subtitle: true
- field_case_study_team: true
- field_case_study_year: true
- field_image: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- field_technologies: 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.node.case_study.small_card.yml b/config/core.entity_view_display.node.case_study.small_card.yml
deleted file mode 100644
index 37336b1..0000000
--- a/config/core.entity_view_display.node.case_study.small_card.yml
+++ /dev/null
@@ -1,156 +0,0 @@
-uuid: 4f1d045f-1d1a-4a10-9ae5-6be5d3c21f84
-langcode: en
-status: false
-dependencies:
- config:
- - core.entity_view_mode.node.small_card
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- module:
- - ds
- - metatag
- - paragraphs
- - responsive_image
- - text
- - user
-third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - body
- - field_services
- - field_body_paragraph
- - field_meta_tags
- - field_image
- - field_case_study_year
- - field_case_study_technologies
- - field_case_study_team
- - field_case_study_subtitle
- - field_case_study_status
- - field_case_study_partners
- - field_case_study_client
-_core:
- default_config_hash: eoKfNvf7DsMVKNXQcPieuwCGFU7ydopQ7ArNbJeBfyI
-id: node.case_study.small_card
-targetEntityType: node
-bundle: case_study
-mode: small_card
-content:
- body:
- type: text_default
- label: above
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
- field_body_paragraph:
- type: paragraph_summary
- label: above
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
- field_case_study_client:
- type: text_default
- label: above
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
- field_case_study_partners:
- type: text_default
- label: above
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
- field_case_study_status:
- type: string
- label: above
- settings:
- link_to_entity: false
- third_party_settings: { }
- weight: 0
- region: content
- field_case_study_subtitle:
- type: string
- label: above
- settings:
- link_to_entity: false
- third_party_settings: { }
- weight: 0
- region: content
- field_case_study_team:
- type: entity_reference_entity_view
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings: { }
- weight: 0
- region: content
- field_case_study_year:
- type: number_integer
- label: above
- settings:
- thousand_separator: ''
- prefix_suffix: true
- third_party_settings: { }
- weight: 0
- region: content
- field_image:
- type: responsive_image
- label: above
- settings:
- responsive_image_style: ''
- image_link: ''
- image_loading:
- attribute: eager
- third_party_settings: { }
- weight: 0
- region: content
- field_meta_tags:
- type: metatag_empty_formatter
- label: above
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
- field_services:
- type: entity_reference_entity_view
- label: above
- settings:
- view_mode: default
- link: false
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- field_license: true
- field_summary: true
- field_technologies: 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.node.case_study.teaser.yml b/config/core.entity_view_display.node.case_study.teaser.yml
deleted file mode 100644
index ad760e1..0000000
--- a/config/core.entity_view_display.node.case_study.teaser.yml
+++ /dev/null
@@ -1,89 +0,0 @@
-uuid: 4965ad81-8a1d-4cee-a6c6-556840ae1f81
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.teaser
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - image.style.landscape
- - node.type.case_study
- module:
- - ds
- - entity_reference_revisions
- - image
- - text
- - user
-_core:
- default_config_hash: FwRsHZiFptSX1FBWrCtHDJo0wPJuGR83s9qYJTE1Fdk
-id: node.case_study.teaser
-targetEntityType: node
-bundle: case_study
-mode: teaser
-content:
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: preview
- link: ''
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
- field_case_study_subtitle:
- type: string
- label: hidden
- settings:
- link_to_entity: false
- third_party_settings: { }
- weight: 2
- region: content
- field_image:
- type: image
- label: hidden
- settings:
- image_link: ''
- image_style: landscape
- image_loading:
- attribute: lazy
- third_party_settings: { }
- weight: 1
- region: content
- field_summary:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 3
- region: content
-hidden:
- body: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_team: true
- field_case_study_year: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_technologies: 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.node.case_study.tile.yml b/config/core.entity_view_display.node.case_study.tile.yml
deleted file mode 100644
index 0cc0a84..0000000
--- a/config/core.entity_view_display.node.case_study.tile.yml
+++ /dev/null
@@ -1,76 +0,0 @@
-uuid: ab927412-3d79-46fb-a0ae-ea65be8bbb4a
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.tile
- - field.field.node.case_study.body
- - field.field.node.case_study.field_body_paragraph
- - field.field.node.case_study.field_case_study_client
- - field.field.node.case_study.field_case_study_partners
- - field.field.node.case_study.field_case_study_status
- - field.field.node.case_study.field_case_study_subtitle
- - field.field.node.case_study.field_case_study_team
- - field.field.node.case_study.field_case_study_year
- - field.field.node.case_study.field_image
- - field.field.node.case_study.field_license
- - field.field.node.case_study.field_meta_tags
- - field.field.node.case_study.field_services
- - field.field.node.case_study.field_summary
- - field.field.node.case_study.field_technologies
- - node.type.case_study
- module:
- - ds
- - entity_reference_revisions
- - user
-third_party_settings:
- ds:
- layout:
- id: pattern_title_paragraph
- library: null
- disable_css: false
- entity_classes: all_classes
- settings:
- pattern:
- field_templates: default
- regions:
- paragraphs:
- - field_body_paragraph
-_core:
- default_config_hash: 9bC0pOp-ep1gVclJKEIqhnIeBFLyFQuhdg3RGsKzFHg
-id: node.case_study.tile
-targetEntityType: node
-bundle: case_study
-mode: tile
-content:
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: columnar
- link: ''
- third_party_settings:
- ds:
- ds_limit: '1'
- weight: 0
- region: paragraphs
-hidden:
- body: true
- field_case_study_client: true
- field_case_study_partners: true
- field_case_study_status: true
- field_case_study_subtitle: true
- field_case_study_team: true
- field_case_study_year: true
- field_image: true
- field_license: true
- field_meta_tags: true
- field_services: true
- field_summary: true
- field_technologies: 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.node.landing_page.simple_card.yml b/config/core.entity_view_display.node.landing_page.simple_card.yml
deleted file mode 100644
index dc99df8..0000000
--- a/config/core.entity_view_display.node.landing_page.simple_card.yml
+++ /dev/null
@@ -1,96 +0,0 @@
-uuid: fb5873a3-19ba-42e2-b348-db186ee58dd9
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.simple_card
- - field.field.node.landing_page.field_body_paragraph
- - field.field.node.landing_page.field_image
- - field.field.node.landing_page.field_meta_tags
- - node.type.landing_page
- - responsive_image.styles.narrow
- module:
- - ds
- - field_group
- - responsive_image
- - user
-third_party_settings:
- ds:
- layout:
- id: ds_2col
- library: ds/ds_2col
- disable_css: false
- entity_classes: all_classes
- settings:
- classes:
- layout_class: { }
- wrappers:
- left: div
- right: div
- outer_wrapper: div
- attributes: ''
- link_attribute: ''
- link_custom: ''
- label: ''
- regions:
- left:
- - node_title
- right:
- - field_image
- fields:
- node_title:
- plugin_id: node_title
- weight: 0
- label: hidden
- formatter: default
- settings:
- link: true
- wrapper: h2
- class: 'title is-size-3-desktop is-size-4-tablet is-size-5-mobile'
- exclude_node_title: '0'
- field_group:
- group_date:
- children:
- - node_post_date
- label: Date
- parent_name: ''
- region: hidden
- weight: 2
- format_type: html_element
- format_settings:
- classes: subtitle
- id: ''
- element: p
- show_label: false
- label_element: h3
- label_element_classes: ''
- attributes: ''
- effect: none
- speed: fast
-_core:
- default_config_hash: v2M7V8tN6TiqnoWONGAwAfzJywu0vB04hvs-LQx-bIQ
-id: node.landing_page.simple_card
-targetEntityType: node
-bundle: landing_page
-mode: simple_card
-content:
- field_image:
- type: responsive_image
- label: hidden
- settings:
- responsive_image_style: narrow
- image_link: content
- image_loading:
- attribute: eager
- third_party_settings: { }
- weight: 1
- region: right
-hidden:
- field_body_paragraph: true
- field_meta_tags: 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.node.page.full.yml b/config/core.entity_view_display.node.page.full.yml
deleted file mode 100644
index 241f638..0000000
--- a/config/core.entity_view_display.node.page.full.yml
+++ /dev/null
@@ -1,69 +0,0 @@
-uuid: b49f752c-3d55-46e7-9d3e-469cff35ed59
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.full
- - 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:
- - entity_reference_revisions
- - metatag
- - text
- - user
-_core:
- default_config_hash: ejxo55vENzO8ZHuGrkj_Np-soJ-olS86ZhSc2taHa2I
-id: node.page.full
-targetEntityType: node
-bundle: page
-mode: full
-content:
- body:
- type: text_summary_or_trimmed
- label: above
- settings:
- trim_length: 600
- third_party_settings: { }
- weight: 0
- region: content
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: default
- link: ''
- third_party_settings: { }
- weight: 2
- region: content
- field_meta_tags:
- type: metatag_empty_formatter
- label: above
- settings: { }
- third_party_settings: { }
- weight: 1
- region: content
- field_storyline:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: default
- link: ''
- third_party_settings: { }
- weight: 3
- region: content
- links:
- settings: { }
- third_party_settings: { }
- weight: 4
- region: content
-hidden:
- field_summary: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.page.teaser.yml b/config/core.entity_view_display.node.page.teaser.yml
deleted file mode 100644
index c6a767f..0000000
--- a/config/core.entity_view_display.node.page.teaser.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-uuid: 150612b9-14f5-4b73-8255-58ce283d7e0f
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.teaser
- - 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:
- - text
- - user
-_core:
- default_config_hash: BKUufmEYaaN3co_7-bdlsJm6bUHORrPYYf_FYmthy4g
-id: node.page.teaser
-targetEntityType: node
-bundle: page
-mode: teaser
-content:
- field_summary:
- type: text_trimmed
- label: hidden
- settings:
- trim_length: 600
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- body: true
- field_body_paragraph: true
- field_meta_tags: true
- field_storyline: 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.node.people.full.yml b/config/core.entity_view_display.node.people.full.yml
deleted file mode 100644
index 44d0e01..0000000
--- a/config/core.entity_view_display.node.people.full.yml
+++ /dev/null
@@ -1,113 +0,0 @@
-uuid: 46d42752-929a-4eef-a4f1-63aa8bbea141
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.full
- - field.field.node.people.field_body_paragraph
- - field.field.node.people.field_image
- - field.field.node.people.field_meta_tags
- - field.field.node.people.field_people_email
- - field.field.node.people.field_people_position
- - field.field.node.people.field_people_public_gpg_key
- - field.field.node.people.field_people_social_media
- - field.field.node.people.field_people_type
- - field.field.node.people.field_summary
- - image.style.landscape
- - node.type.people
- module:
- - entity_reference_revisions
- - file
- - image
- - link
- - text
- - user
-_core:
- default_config_hash: mOqGMXhG-1WYGi-yooQwPMMtw5QzRZL_TSWW_NQhow0
-id: node.people.full
-targetEntityType: node
-bundle: people
-mode: full
-content:
- field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
- settings:
- view_mode: default
- link: ''
- third_party_settings: { }
- weight: 7
- region: content
- field_image:
- type: image
- label: hidden
- settings:
- image_link: ''
- image_style: landscape
- image_loading:
- attribute: lazy
- third_party_settings: { }
- weight: 0
- region: content
- field_people_email:
- type: basic_string
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 4
- region: content
- field_people_position:
- type: string
- label: hidden
- settings:
- link_to_entity: false
- third_party_settings: { }
- weight: 2
- region: content
- field_people_public_gpg_key:
- type: file_default
- label: hidden
- settings:
- use_description_as_link_text: true
- third_party_settings: { }
- weight: 5
- region: content
- field_people_social_media:
- type: link
- label: visually_hidden
- settings:
- trim_length: 80
- url_only: false
- url_plain: false
- rel: ''
- target: ''
- third_party_settings: { }
- weight: 6
- region: content
- field_people_type:
- type: entity_reference_label
- label: hidden
- settings:
- link: false
- third_party_settings: { }
- weight: 1
- region: content
- field_summary:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 3
- region: content
- links:
- settings: { }
- third_party_settings: { }
- weight: 8
- region: content
-hidden:
- field_meta_tags: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.people.small_card.yml b/config/core.entity_view_display.node.people.small_card.yml
deleted file mode 100644
index c5f81c5..0000000
--- a/config/core.entity_view_display.node.people.small_card.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-uuid: 48faa272-5c8f-4633-96ae-f9d9b2103df2
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.small_card
- - field.field.node.people.field_body_paragraph
- - field.field.node.people.field_image
- - field.field.node.people.field_meta_tags
- - field.field.node.people.field_people_email
- - field.field.node.people.field_people_position
- - field.field.node.people.field_people_public_gpg_key
- - field.field.node.people.field_people_social_media
- - field.field.node.people.field_people_type
- - field.field.node.people.field_summary
- - node.type.people
- module:
- - image
- - text
- - user
-_core:
- default_config_hash: z1inMX04WqMLNtcIhFzhHwZW_utfrkMPfyPscbBo4WQ
-id: node.people.small_card
-targetEntityType: node
-bundle: people
-mode: small_card
-content:
- field_image:
- type: image_url
- label: hidden
- settings:
- image_style: landscape
- third_party_settings: { }
- weight: 0
- region: content
- field_summary:
- type: text_trimmed
- label: hidden
- settings:
- trim_length: 600
- third_party_settings: { }
- weight: 2
- region: content
-hidden:
- field_body_paragraph: true
- field_meta_tags: true
- field_people_email: true
- field_people_position: true
- field_people_public_gpg_key: true
- field_people_social_media: true
- field_people_type: 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.node.people.teaser.yml b/config/core.entity_view_display.node.people.teaser.yml
deleted file mode 100644
index 8fa0853..0000000
--- a/config/core.entity_view_display.node.people.teaser.yml
+++ /dev/null
@@ -1,61 +0,0 @@
-uuid: 7ae6a799-35c8-42ab-a101-44f40c914f50
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.node.teaser
- - field.field.node.people.field_body_paragraph
- - field.field.node.people.field_image
- - field.field.node.people.field_meta_tags
- - field.field.node.people.field_people_email
- - field.field.node.people.field_people_position
- - field.field.node.people.field_people_public_gpg_key
- - field.field.node.people.field_people_social_media
- - field.field.node.people.field_people_type
- - field.field.node.people.field_summary
- - image.style.landscape
- - node.type.people
- module:
- - image
- - text
- - user
-_core:
- default_config_hash: gCkJOlEwJlVhfOrZ9tg-TRlQAaIiOeJVH-yWVceuQgc
-id: node.people.teaser
-targetEntityType: node
-bundle: people
-mode: teaser
-content:
- field_image:
- type: image
- label: hidden
- settings:
- image_link: ''
- image_style: landscape
- image_loading:
- attribute: lazy
- third_party_settings: { }
- weight: 0
- region: content
- field_summary:
- type: text_trimmed
- label: hidden
- settings:
- trim_length: 600
- third_party_settings: { }
- weight: 1
- region: content
-hidden:
- field_body_paragraph: true
- field_meta_tags: true
- field_people_email: true
- field_people_position: true
- field_people_public_gpg_key: true
- field_people_social_media: true
- field_people_type: 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.content_reference.default.yml b/config/core.entity_view_display.paragraph.content_reference.default.yml
deleted file mode 100644
index 7b51bea..0000000
--- a/config/core.entity_view_display.paragraph.content_reference.default.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: 160f66af-bbb4-4d93-856f-6e2be7948dbf
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.content_reference.field_content_reference
- - paragraphs.paragraphs_type.content_reference
- module:
- - ds
-id: paragraph.content_reference.default
-targetEntityType: paragraph
-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:
- 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_display.paragraph.quotation_with_image.default.yml b/config/core.entity_view_display.paragraph.quotation_with_image.default.yml
deleted file mode 100644
index 80135fe..0000000
--- a/config/core.entity_view_display.paragraph.quotation_with_image.default.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-uuid: 54e1ef87-9c4b-4617-a965-ff48b2011277
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.quotation_with_image.field_image
- - field.field.paragraph.quotation_with_image.field_quotation
- - field.field.paragraph.quotation_with_image.field_style_escape_flow
- - image.style.max_650x650
- - paragraphs.paragraphs_type.quotation_with_image
- module:
- - image
- - text
-id: paragraph.quotation_with_image.default
-targetEntityType: paragraph
-bundle: quotation_with_image
-mode: default
-content:
- field_image:
- type: image
- label: hidden
- settings:
- image_link: ''
- image_style: max_650x650
- image_loading:
- attribute: lazy
- third_party_settings: { }
- weight: 1
- region: content
- field_quotation:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- field_style_escape_flow: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.paragraph.title.columnar.yml b/config/core.entity_view_display.paragraph.title.columnar.yml
deleted file mode 100644
index 59bfac4..0000000
--- a/config/core.entity_view_display.paragraph.title.columnar.yml
+++ /dev/null
@@ -1,55 +0,0 @@
-uuid: dc799418-ec3e-49b6-8674-76c72898a2f3
-langcode: en
-status: true
-dependencies:
- config:
- - core.entity_view_mode.paragraph.columnar
- - field.field.paragraph.title.field_image
- - field.field.paragraph.title.field_style_classes
- - field.field.paragraph.title.field_style_color
- - field.field.paragraph.title.field_style_titlebar
- - field.field.paragraph.title.field_subtitle
- - field.field.paragraph.title.field_title
- - image.style.max_325x325
- - paragraphs.paragraphs_type.title
- module:
- - image
- - options
- - text
-id: paragraph.title.columnar
-targetEntityType: paragraph
-bundle: title
-mode: columnar
-content:
- field_image:
- type: image_url
- label: hidden
- settings:
- image_style: max_325x325
- third_party_settings: { }
- weight: 2
- region: content
- field_style_color:
- type: list_key
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 3
- region: content
- field_subtitle:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 1
- region: content
- field_title:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- field_style_classes: true
- field_style_titlebar: true
diff --git a/config/core.entity_view_display.paragraph.title.default.yml b/config/core.entity_view_display.paragraph.title.default.yml
deleted file mode 100644
index 083c420..0000000
--- a/config/core.entity_view_display.paragraph.title.default.yml
+++ /dev/null
@@ -1,73 +0,0 @@
-uuid: e7066bcc-767c-4a92-9a46-f0eecb39effb
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.title.field_image
- - field.field.paragraph.title.field_style_classes
- - field.field.paragraph.title.field_style_color
- - field.field.paragraph.title.field_style_titlebar
- - field.field.paragraph.title.field_subtitle
- - field.field.paragraph.title.field_title
- - image.style.max_650x650
- - paragraphs.paragraphs_type.title
- module:
- - image
- - options
- - text
-id: paragraph.title.default
-targetEntityType: paragraph
-bundle: title
-mode: default
-content:
- field_image:
- type: image
- label: hidden
- settings:
- image_link: ''
- image_style: max_650x650
- image_loading:
- attribute: lazy
- third_party_settings: { }
- weight: 2
- region: content
- field_style_classes:
- type: list_key
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 5
- region: content
- field_style_color:
- type: list_key
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 3
- region: content
- field_style_titlebar:
- type: boolean
- label: hidden
- settings:
- format: true-false
- format_custom_false: ''
- format_custom_true: ''
- third_party_settings: { }
- weight: 4
- region: content
- field_subtitle:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 1
- region: content
- field_title:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.paragraph.video.default.yml b/config/core.entity_view_display.paragraph.video.default.yml
deleted file mode 100644
index 7255892..0000000
--- a/config/core.entity_view_display.paragraph.video.default.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-uuid: 406238b0-4871-4f20-a576-04cb527d326a
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.video.field_video_embed
- - paragraphs.paragraphs_type.video
- module:
- - video_embed_field
-_core:
- default_config_hash: Uc_VcQxa9xymaKq_6y4sDw0aRlcLrBPzAU9Ai5zYyrU
-id: paragraph.video.default
-targetEntityType: paragraph
-bundle: video
-mode: default
-content:
- field_video_embed:
- type: video_embed_field_video
- label: visually_hidden
- settings:
- autoplay: false
- responsive: true
- width: 854
- height: 480
- third_party_settings: { }
- weight: 0
- region: content
-hidden: { }
diff --git a/config/core.entity_view_display.paragraph.view.default.yml b/config/core.entity_view_display.paragraph.view.default.yml
deleted file mode 100644
index cddbe63..0000000
--- a/config/core.entity_view_display.paragraph.view.default.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-uuid: 01e9439c-9802-4b6d-9c59-12ea050fb525
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.view.field_style_escape_flow
- - field.field.paragraph.view.field_view_reference
- - paragraphs.paragraphs_type.view
- module:
- - viewsreference
-id: paragraph.view.default
-targetEntityType: paragraph
-bundle: view
-mode: default
-content:
- field_view_reference:
- type: viewsreference_formatter
- label: hidden
- settings:
- plugin_types:
- block: block
- page: page
- default: 0
- feed: 0
- embed: 0
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- field_style_escape_flow: true
diff --git a/config/core.entity_view_display.paragraph.webform.default.yml b/config/core.entity_view_display.paragraph.webform.default.yml
deleted file mode 100644
index 1cbd36d..0000000
--- a/config/core.entity_view_display.paragraph.webform.default.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: f8ef0a35-c37b-4b1b-a38f-702315aa83fa
-langcode: en
-status: true
-dependencies:
- config:
- - field.field.paragraph.webform.field_webform
- - paragraphs.paragraphs_type.webform
- module:
- - webform
-id: paragraph.webform.default
-targetEntityType: paragraph
-bundle: webform
-mode: default
-content:
- field_webform:
- type: webform_entity_reference_entity_view
- label: hidden
- settings:
- source_entity: true
- third_party_settings: { }
- weight: 0
- region: content
-hidden: { }
diff --git a/config/core.entity_view_display.taxonomy_term.license.default.yml b/config/core.entity_view_display.taxonomy_term.license.default.yml
deleted file mode 100644
index b689522..0000000
--- a/config/core.entity_view_display.taxonomy_term.license.default.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: 3441316f-a5b8-4b65-a30b-fb38775255a9
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - ds
- - text
-third_party_settings:
- ds:
- layout:
- id: layout_onecol
- library: layout_discovery/onecol
- disable_css: false
- entity_classes: all_classes
- settings: { }
- regions:
- content:
- - description
-_core:
- default_config_hash: 3CKJCJsfe08wfwULp-xeQRKeiTJMB3NgPg_9tNa49dE
-id: taxonomy_term.license.default
-targetEntityType: taxonomy_term
-bundle: license
-mode: default
-content:
- description:
- type: text_default
- label: hidden
- settings: { }
- third_party_settings: { }
- weight: 0
- region: content
-hidden:
- langcode: true
diff --git a/config/core.entity_view_mode.comment.indieweb_microformat.yml b/config/core.entity_view_mode.comment.indieweb_microformat.yml
deleted file mode 100644
index 6e09f07..0000000
--- a/config/core.entity_view_mode.comment.indieweb_microformat.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 464d808f-4424-4aa9-909e-fe581dd3d9cb
-langcode: en
-status: false
-dependencies:
- module:
- - comment
-_core:
- default_config_hash: 25JEl_n0_Mi0qsnoWLVcWpvotra4FecaCBgr5jsIMqo
-id: comment.indieweb_microformat
-label: Microformat
-description: ''
-targetEntityType: comment
-cache: 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.menu_link_content.token.yml b/config/core.entity_view_mode.menu_link_content.token.yml
deleted file mode 100644
index d39cd40..0000000
--- a/config/core.entity_view_mode.menu_link_content.token.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: c6792514-750e-4312-a990-1825e6b91c8e
-langcode: en
-status: true
-dependencies:
- module:
- - menu_link_content
-id: menu_link_content.token
-label: Token
-description: ''
-targetEntityType: menu_link_content
-cache: true
diff --git a/config/core.entity_view_mode.node.diff.yml b/config/core.entity_view_mode.node.diff.yml
deleted file mode 100644
index 884741c..0000000
--- a/config/core.entity_view_mode.node.diff.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: 316215b0-93fc-49d9-a1f0-e0ea02dcb966
-langcode: en
-status: false
-dependencies:
- module:
- - node
- enforced:
- module:
- - node
- - diff
-_core:
- default_config_hash: pqZNtad5J9THcdbYjwPD4qINqvrTxnOd8KCWn6tUBRs
-id: node.diff
-label: 'Revision comparison'
-description: ''
-targetEntityType: node
-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/core.entity_view_mode.node.indieweb_microformat.yml b/config/core.entity_view_mode.node.indieweb_microformat.yml
deleted file mode 100644
index c2c1d5e..0000000
--- a/config/core.entity_view_mode.node.indieweb_microformat.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 71a37f3b-0003-4e23-8f1f-6f5307827f6b
-langcode: en
-status: false
-dependencies:
- module:
- - node
-_core:
- default_config_hash: o4upP70gPTf5u6859CZ34eDu8Au-VsMU7XjBDiKiw2c
-id: node.indieweb_microformat
-label: Microformat
-description: ''
-targetEntityType: node
-cache: true
diff --git a/config/core.entity_view_mode.node.rss_teaser.yml b/config/core.entity_view_mode.node.rss_teaser.yml
deleted file mode 100644
index de5cbc8..0000000
--- a/config/core.entity_view_mode.node.rss_teaser.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 250aa0a9-bcdd-43d7-a5d4-fa36db832188
-langcode: en
-status: true
-dependencies:
- module:
- - node
-id: node.rss_teaser
-label: 'RSS teaser'
-description: ''
-targetEntityType: node
-cache: true
diff --git a/config/core.entity_view_mode.shortcut.token.yml b/config/core.entity_view_mode.shortcut.token.yml
deleted file mode 100644
index 3cb7a92..0000000
--- a/config/core.entity_view_mode.shortcut.token.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 4ce7072b-511a-482e-b897-c299be0a7ef5
-langcode: en
-status: true
-dependencies:
- module:
- - shortcut
-id: shortcut.token
-label: Token
-description: ''
-targetEntityType: shortcut
-cache: true
diff --git a/config/core.entity_view_mode.taxonomy_term.token.yml b/config/core.entity_view_mode.taxonomy_term.token.yml
deleted file mode 100644
index 4d47ee5..0000000
--- a/config/core.entity_view_mode.taxonomy_term.token.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 6c1aff50-b66f-443b-9e2e-56ed217bb563
-langcode: en
-status: true
-dependencies:
- module:
- - taxonomy
-id: taxonomy_term.token
-label: Token
-description: ''
-targetEntityType: taxonomy_term
-cache: true
diff --git a/config/core.entity_view_mode.tour.token.yml b/config/core.entity_view_mode.tour.token.yml
deleted file mode 100644
index 8c953fc..0000000
--- a/config/core.entity_view_mode.tour.token.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: a01744e8-49e8-4605-853a-70221a9af2b6
-langcode: en
-status: true
-dependencies:
- module:
- - tour
-id: tour.token
-label: Token
-description: ''
-targetEntityType: tour
-cache: true
diff --git a/config/crop.settings.yml b/config/crop.settings.yml
deleted file mode 100644
index 2fd805c..0000000
--- a/config/crop.settings.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
- default_config_hash: 7eGOTSG7bRv_AAqu-Ls8CSnob7zPF1ez-lD2OLZgBHs
-flush_derivative_images: true
diff --git a/config/crop.type.focal_point.yml b/config/crop.type.focal_point.yml
deleted file mode 100644
index 961779f..0000000
--- a/config/crop.type.focal_point.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-uuid: 45d49ae5-9b5b-49c6-b2b1-2242c0aed885
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: flCi9IdafdLXlJqvoHguutUOiC05-aynK4niYN4YZ3o
-label: 'Focal point'
-id: focal_point
-description: 'Crop type used by Focal point module.'
-aspect_ratio: ''
-soft_limit_width: null
-soft_limit_height: null
-hard_limit_width: null
-hard_limit_height: null
diff --git a/config/customerror.settings.yml b/config/customerror.settings.yml
deleted file mode 100644
index e31697e..0000000
--- a/config/customerror.settings.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-403:
- title: 'Access denied'
- body: |
-
-
-
-
- I'm sorry, you do not have permission to be here.
-
-
-
-
-
- Knocked once
- Tried to tell 'em I've been there
- Door slammed
- Hospitality's thin there
- Marvin Moore, "Green Door"
-
-
-
-
-
-
-
-
-
-
-
-
- theme: ''
- enable_login: 0
-404:
- title: 'Requested page not found'
- body: 'Requested page not found.'
- theme: ''
- enable_login: 0
-redirect: ''
-_core:
- default_config_hash: DIuRxgLzDh82NlGr5h67xrsGSi4HzpJenEqDeWfYKc8
diff --git a/config/diff.settings.yml b/config/diff.settings.yml
deleted file mode 100644
index 699bbbb..0000000
--- a/config/diff.settings.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-_core:
- default_config_hash: oXwX3NzLv9QK_LbNEvpQ9OPwH9tqtMSJzq5y8t63Q8w
-general_settings:
- radio_behavior: simple
- context_lines_leading: 1
- context_lines_trailing: 1
- revision_pager_limit: 50
- layout_plugins:
- visual_inline:
- enabled: true
- weight: 0
- split_fields:
- enabled: true
- weight: 1
- unified_fields:
- enabled: true
- weight: 2
- visual_inline_theme: default
diff --git a/config/dropdown_language.setting.yml b/config/dropdown_language.setting.yml
deleted file mode 100644
index fa1d20e..0000000
--- a/config/dropdown_language.setting.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-_core:
- default_config_hash: xbqiqGnFfv7G00sewxA46T8PO-uo8uvWhDSIFyR1Fhk
-wrapper: false
-display_language_id: 2
-filter_untranslated: 0
-always_show_block: 0
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.minimalhtml.yml b/config/editor.editor.minimalhtml.yml
deleted file mode 100644
index 618ae52..0000000
--- a/config/editor.editor.minimalhtml.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-uuid: 447fc641-aab5-4a0e-8d17-7614a08e4853
-langcode: en
-status: true
-dependencies:
- config:
- - filter.format.minimalhtml
- module:
- - ckeditor
-_core:
- default_config_hash: kP3r4Ns9C1XIg5vFA9a0mteIKThq8E_eL43z7VIZUTY
-format: minimalhtml
-editor: ckeditor
-settings:
- toolbar:
- rows:
- -
- -
- name: Formatting
- items:
- - Bold
- - Italic
- -
- name: Links
- items:
- - DrupalLink
- - DrupalUnlink
- -
- name: Lists
- items:
- - BulletedList
- - NumberedList
- -
- name: Media
- items:
- - Blockquote
- -
- name: Tools
- items:
- - Source
- plugins:
- linebreaks:
- method: force
-image_upload:
- status: false
- scheme: public
- directory: inline-images
- max_size: ''
- max_dimensions:
- width: null
- height: null
diff --git a/config/editor.editor.minimalhtmltitle.yml b/config/editor.editor.minimalhtmltitle.yml
deleted file mode 100644
index b5f7cd8..0000000
--- a/config/editor.editor.minimalhtmltitle.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-uuid: 5c4802a3-173c-41ab-9f8a-34be61703535
-langcode: en
-status: true
-dependencies:
- config:
- - filter.format.minimalhtmltitle
- module:
- - ckeditor
-_core:
- default_config_hash: KzgAyGtOmwxsCmjDE1v5LInNV3wobOT8oBbfnLl59jM
-format: minimalhtmltitle
-editor: ckeditor
-settings:
- toolbar:
- rows:
- -
- -
- name: Formatting
- items:
- - Bold
- - Italic
- -
- name: Tools
- items:
- - Source
- plugins:
- linebreaks:
- method: force
-image_upload:
- status: false
- scheme: public
- directory: inline-images
- max_size: ''
- max_dimensions:
- width: null
- height: null
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/facets.facet_source.search_api__views_page__blog__page_listing.yml b/config/facets.facet_source.search_api__views_page__blog__page_listing.yml
deleted file mode 100644
index 182f96b..0000000
--- a/config/facets.facet_source.search_api__views_page__blog__page_listing.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: 2d0517de-c212-415a-bfd9-f67b6931f974
-langcode: en
-status: true
-dependencies: { }
-id: search_api__views_page__blog__page_listing
-name: 'search_api:views_page__blog__page_listing'
-filter_key: null
-url_processor: query_string
-breadcrumb: { }
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.node.campaign.field_body_paragraph.yml b/config/field.field.node.campaign.field_body_paragraph.yml
deleted file mode 100644
index a4fc284..0000000
--- a/config/field.field.node.campaign.field_body_paragraph.yml
+++ /dev/null
@@ -1,88 +0,0 @@
-uuid: a5684552-f818-4186-be05-7caf1ae29803
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_body_paragraph
- - node.type.campaign
- - paragraphs.paragraphs_type.faq
- - paragraphs.paragraphs_type.file
- - paragraphs.paragraphs_type.image
- - paragraphs.paragraphs_type.quotation_with_image
- - paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- - paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.title
- - paragraphs.paragraphs_type.update
- - paragraphs.paragraphs_type.video
- - paragraphs.paragraphs_type.view
- module:
- - entity_reference_revisions
-_core:
- default_config_hash: eQ5Jp9J4OVS6YUsxeBfWQx6E-qgMTADFYWPtEZnV7oM
-id: node.campaign.field_body_paragraph
-field_name: field_body_paragraph
-entity_type: node
-bundle: campaign
-label: Background
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:paragraph'
- handler_settings:
- target_bundles:
- file: file
- image: image
- text: text
- update: update
- faq: faq
- quotation_with_image: quotation_with_image
- slide: slide
- storyline_header: storyline_header
- storyline_item: storyline_item
- title: title
- video: video
- view: view
- negate: 0
- target_bundles_drag_drop:
- faq:
- weight: 13
- enabled: true
- file:
- weight: -7
- enabled: true
- image:
- weight: -7
- enabled: true
- quotation_with_image:
- weight: 16
- enabled: true
- slide:
- weight: 17
- enabled: true
- storyline_header:
- weight: 18
- enabled: true
- storyline_item:
- weight: 19
- enabled: true
- text:
- weight: -7
- enabled: true
- title:
- weight: 21
- enabled: true
- update:
- weight: 8
- enabled: true
- video:
- weight: 23
- enabled: true
- view:
- weight: 24
- enabled: true
-field_type: entity_reference_revisions
diff --git a/config/field.field.node.case_study.body.yml b/config/field.field.node.case_study.body.yml
deleted file mode 100644
index 7d6047e..0000000
--- a/config/field.field.node.case_study.body.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: df7a1a71-756b-45ff-a4c6-ac667be6aa4c
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.body
- - node.type.case_study
- module:
- - text
-_core:
- default_config_hash: cnhfj0MddoYgcNvVkpe94wBJ9uEUN4MCs22qy1p0hLU
-id: node.case_study.body
-field_name: body
-entity_type: node
-bundle: case_study
-label: Body
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- display_summary: true
- required_summary: false
-field_type: text_with_summary
diff --git a/config/field.field.node.case_study.field_body_paragraph.yml b/config/field.field.node.case_study.field_body_paragraph.yml
deleted file mode 100644
index e222fc0..0000000
--- a/config/field.field.node.case_study.field_body_paragraph.yml
+++ /dev/null
@@ -1,98 +0,0 @@
-uuid: a6940b4e-b2fa-450c-bd21-07cb6d30eef0
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_body_paragraph
- - node.type.case_study
- - paragraphs.paragraphs_type.content_reference
- - paragraphs.paragraphs_type.faq
- - paragraphs.paragraphs_type.file
- - paragraphs.paragraphs_type.image
- - paragraphs.paragraphs_type.quotation_with_image
- - paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- - paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.title
- - paragraphs.paragraphs_type.update
- - paragraphs.paragraphs_type.video
- - paragraphs.paragraphs_type.view
- - paragraphs.paragraphs_type.webform
- module:
- - entity_reference_revisions
-_core:
- default_config_hash: Xw8bvWDMqCOT8vGnUTICQaGUhR0GBwvjmLgLsTnzfPU
-id: node.case_study.field_body_paragraph
-field_name: field_body_paragraph
-entity_type: node
-bundle: case_study
-label: 'Body paragraph'
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:paragraph'
- handler_settings:
- target_bundles:
- title: title
- text: text
- image: image
- slide: slide
- file: file
- storyline_header: storyline_header
- storyline_item: storyline_item
- update: update
- faq: faq
- video: video
- content_reference: content_reference
- quotation_with_image: quotation_with_image
- view: view
- webform: webform
- negate: 0
- target_bundles_drag_drop:
- content_reference:
- weight: 15
- enabled: true
- faq:
- weight: -13
- enabled: true
- file:
- weight: -17
- enabled: true
- image:
- weight: -19
- enabled: true
- quotation_with_image:
- weight: 17
- enabled: true
- slide:
- weight: -18
- enabled: true
- storyline_header:
- weight: -16
- enabled: true
- storyline_item:
- weight: -15
- enabled: true
- text:
- weight: -20
- enabled: true
- title:
- weight: -21
- enabled: true
- update:
- weight: -14
- enabled: true
- video:
- weight: -12
- enabled: true
- view:
- weight: 25
- enabled: true
- webform:
- weight: 26
- enabled: true
-field_type: entity_reference_revisions
diff --git a/config/field.field.node.case_study.field_case_study_client.yml b/config/field.field.node.case_study.field_case_study_client.yml
deleted file mode 100644
index 5bc9192..0000000
--- a/config/field.field.node.case_study.field_case_study_client.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 63b48d47-d868-4ff9-8417-73eb814cf055
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_client
- - node.type.case_study
- module:
- - text
-_core:
- default_config_hash: 4cXvlXzljsiGNOR_X_EjEs_kWBBtHN0X5O4Y2AUsdiI
-id: node.case_study.field_case_study_client
-field_name: field_case_study_client
-entity_type: node
-bundle: case_study
-label: Client
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text
diff --git a/config/field.field.node.case_study.field_case_study_partners.yml b/config/field.field.node.case_study.field_case_study_partners.yml
deleted file mode 100644
index 8670c08..0000000
--- a/config/field.field.node.case_study.field_case_study_partners.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 5fe2870f-3c5e-4730-8e58-0873d5711860
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_partners
- - node.type.case_study
- module:
- - text
-_core:
- default_config_hash: 1N8E3M0u_JWNTalQx1444VFF9xlF6Dmvw-39P0-1O5c
-id: node.case_study.field_case_study_partners
-field_name: field_case_study_partners
-entity_type: node
-bundle: case_study
-label: Partners
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text
diff --git a/config/field.field.node.case_study.field_case_study_status.yml b/config/field.field.node.case_study.field_case_study_status.yml
deleted file mode 100644
index 4b112f0..0000000
--- a/config/field.field.node.case_study.field_case_study_status.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: 71b8e0c1-7e61-43cf-befe-323e9c8426c6
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_status
- - node.type.case_study
-_core:
- default_config_hash: SlYHbHEVne8Ut9b1LMW7Msl5ruhfVlrttpH9On8P8HI
-id: node.case_study.field_case_study_status
-field_name: field_case_study_status
-entity_type: node
-bundle: case_study
-label: Status
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/field.field.node.case_study.field_case_study_subtitle.yml b/config/field.field.node.case_study.field_case_study_subtitle.yml
deleted file mode 100644
index 07dc31e..0000000
--- a/config/field.field.node.case_study.field_case_study_subtitle.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: 64bf9c2e-121f-4b34-89e7-3046c11dd2d3
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_subtitle
- - node.type.case_study
-_core:
- default_config_hash: KRl7WHk030SApcueJBQHqyGl-FARsn77tDUuBj9kg3Y
-id: node.case_study.field_case_study_subtitle
-field_name: field_case_study_subtitle
-entity_type: node
-bundle: case_study
-label: Subtitle
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: string
diff --git a/config/field.field.node.case_study.field_case_study_team.yml b/config/field.field.node.case_study.field_case_study_team.yml
deleted file mode 100644
index 506847f..0000000
--- a/config/field.field.node.case_study.field_case_study_team.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-uuid: 190ff924-bfba-4d36-8840-137dafd1dc1c
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_team
- - node.type.case_study
- - node.type.people
-_core:
- default_config_hash: bTJ06kFtZgIRrjOCiZ0JxX52kNZeKFbhrS8SddEZzNs
-id: node.case_study.field_case_study_team
-field_name: field_case_study_team
-entity_type: node
-bundle: case_study
-label: Team
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:node'
- handler_settings:
- target_bundles:
- people: people
- sort:
- field: _none
- auto_create: true
- auto_create_bundle: ''
-field_type: entity_reference
diff --git a/config/field.field.node.case_study.field_case_study_year.yml b/config/field.field.node.case_study.field_case_study_year.yml
deleted file mode 100644
index 4629956..0000000
--- a/config/field.field.node.case_study.field_case_study_year.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: 40c456eb-a57a-4df1-b8f7-535b4cdbc929
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_year
- - node.type.case_study
-_core:
- default_config_hash: isQa32_GPD0PuyuMqtIfxuJ_4r31MgW7buqtzfL5qjA
-id: node.case_study.field_case_study_year
-field_name: field_case_study_year
-entity_type: node
-bundle: case_study
-label: Year
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- min: null
- max: null
- prefix: ''
- suffix: ''
-field_type: integer
diff --git a/config/field.field.node.case_study.field_image.yml b/config/field.field.node.case_study.field_image.yml
deleted file mode 100644
index 80b3a9f..0000000
--- a/config/field.field.node.case_study.field_image.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-uuid: 4b255015-161f-4acf-ad41-3c0288cfcb2e
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_image
- - node.type.case_study
- module:
- - content_translation
- - image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
-_core:
- default_config_hash: kTZSUq7WPcC_QIRMzI3I_otBSuTVQkJix5i1o63eAo4
-id: node.case_study.field_image
-field_name: field_image
-entity_type: node
-bundle: case_study
-label: Image
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:file'
- handler_settings: { }
- file_directory: '[date:custom:Y]-[date:custom:m]'
- file_extensions: 'png gif jpg jpeg'
- max_filesize: ''
- max_resolution: ''
- min_resolution: ''
- alt_field: true
- alt_field_required: true
- title_field: false
- title_field_required: false
- default_image:
- uuid: ''
- alt: ''
- title: ''
- width: null
- height: null
-field_type: image
diff --git a/config/field.field.node.case_study.field_license.yml b/config/field.field.node.case_study.field_license.yml
deleted file mode 100644
index 236546c..0000000
--- a/config/field.field.node.case_study.field_license.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-uuid: ea0632ba-40bb-4657-abe0-13f590c94d82
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_license
- - node.type.case_study
- - taxonomy.vocabulary.license
- content:
- - 'taxonomy_term:license:61745acc-d11c-4e65-bd9e-518d223fedab'
-_core:
- default_config_hash: T7m68a92H2-MCB3SN0o0T1_F8RfV4gUk4N-fkdbeVVQ
-id: node.case_study.field_license
-field_name: field_license
-entity_type: node
-bundle: case_study
-label: License
-description: ''
-required: false
-translatable: true
-default_value:
- -
- target_uuid: 61745acc-d11c-4e65-bd9e-518d223fedab
-default_value_callback: ''
-settings:
- handler: 'default:taxonomy_term'
- handler_settings:
- target_bundles:
- license: license
- sort:
- field: name
- direction: asc
- auto_create: false
- auto_create_bundle: ''
-field_type: entity_reference
diff --git a/config/field.field.node.case_study.field_meta_tags.yml b/config/field.field.node.case_study.field_meta_tags.yml
deleted file mode 100644
index 7a167ed..0000000
--- a/config/field.field.node.case_study.field_meta_tags.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: fbe7f726-18b8-40ef-a9a8-74bbce700bc0
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_meta_tags
- - node.type.case_study
- module:
- - metatag
-_core:
- default_config_hash: J1NItav9LNncLXegzMZdixF1I-auaujAQZbxjyG7C7I
-id: node.case_study.field_meta_tags
-field_name: field_meta_tags
-entity_type: node
-bundle: case_study
-label: 'Meta tags'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: metatag
diff --git a/config/field.field.node.case_study.field_services.yml b/config/field.field.node.case_study.field_services.yml
deleted file mode 100644
index 8db37a8..0000000
--- a/config/field.field.node.case_study.field_services.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: 5d3b5eb8-5c96-49e5-b80d-37e3ebc13a46
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_services
- - node.type.case_study
- - taxonomy.vocabulary.services
-_core:
- default_config_hash: 9cyLqn-Mk200js1d5HVYBskKSamYTWabc84RdbfuSK4
-id: node.case_study.field_services
-field_name: field_services
-entity_type: node
-bundle: case_study
-label: Services
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:taxonomy_term'
- handler_settings:
- target_bundles:
- services: services
- sort:
- field: name
- direction: asc
- auto_create: true
- auto_create_bundle: ''
-field_type: entity_reference
diff --git a/config/field.field.node.case_study.field_summary.yml b/config/field.field.node.case_study.field_summary.yml
deleted file mode 100644
index 699b4a9..0000000
--- a/config/field.field.node.case_study.field_summary.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 18b16509-51af-49d7-bd48-3fb5dcf50480
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_summary
- - node.type.case_study
- module:
- - text
-_core:
- default_config_hash: HlfPAxbH2bAH-Vzy8zb8jijY4I9VHTgRANYLCsYa6XM
-id: node.case_study.field_summary
-field_name: field_summary
-entity_type: node
-bundle: case_study
-label: Summary
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text_long
diff --git a/config/field.field.node.case_study.field_technologies.yml b/config/field.field.node.case_study.field_technologies.yml
deleted file mode 100644
index c8aebf1..0000000
--- a/config/field.field.node.case_study.field_technologies.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-uuid: 24fe9f8d-053c-4977-b5dc-9c9fdcd1a49a
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_technologies
- - node.type.case_study
- - taxonomy.vocabulary.technologies
-_core:
- default_config_hash: 40GeQJRCefldgDENE1r5lUGfEnQ-XWaNJRd_UGp7rj4
-id: node.case_study.field_technologies
-field_name: field_technologies
-entity_type: node
-bundle: case_study
-label: Technologies
-description: 'Add new technology term'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:taxonomy_term'
- handler_settings:
- target_bundles:
- technologies: technologies
- sort:
- field: name
- direction: asc
- auto_create: false
- auto_create_bundle: ''
-field_type: entity_reference
diff --git a/config/field.field.node.landing_page.field_body_paragraph.yml b/config/field.field.node.landing_page.field_body_paragraph.yml
deleted file mode 100644
index 420238e..0000000
--- a/config/field.field.node.landing_page.field_body_paragraph.yml
+++ /dev/null
@@ -1,103 +0,0 @@
-uuid: cb4e96ce-1f87-401b-868d-a298c57ceeb9
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_body_paragraph
- - node.type.landing_page
- - paragraphs.paragraphs_type.content_reference
- - paragraphs.paragraphs_type.embedded_content
- - paragraphs.paragraphs_type.faq
- - paragraphs.paragraphs_type.file
- - paragraphs.paragraphs_type.image
- - paragraphs.paragraphs_type.quotation_with_image
- - paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- - paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.title
- - paragraphs.paragraphs_type.update
- - paragraphs.paragraphs_type.video
- - paragraphs.paragraphs_type.view
- - paragraphs.paragraphs_type.webform
- module:
- - entity_reference_revisions
-_core:
- default_config_hash: SY6szifQZxW4ucxM-P_RlOcopaMTOymNXiEZPLSvDec
-id: node.landing_page.field_body_paragraph
-field_name: field_body_paragraph
-entity_type: node
-bundle: landing_page
-label: 'Body paragraph'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:paragraph'
- handler_settings:
- target_bundles:
- text: text
- image: image
- video: video
- file: file
- slide: slide
- storyline_header: storyline_header
- storyline_item: storyline_item
- faq: faq
- update: update
- title: title
- view: view
- content_reference: content_reference
- embedded_content: embedded_content
- quotation_with_image: quotation_with_image
- webform: webform
- negate: 0
- target_bundles_drag_drop:
- content_reference:
- weight: 15
- enabled: true
- embedded_content:
- weight: 17
- enabled: true
- faq:
- weight: -14
- enabled: true
- file:
- weight: -18
- enabled: true
- image:
- weight: -20
- enabled: true
- quotation_with_image:
- weight: 17
- enabled: true
- slide:
- weight: -17
- enabled: true
- storyline_header:
- weight: -16
- enabled: true
- storyline_item:
- weight: -15
- enabled: true
- text:
- weight: -21
- enabled: true
- title:
- weight: -12
- enabled: true
- update:
- weight: -13
- enabled: true
- video:
- weight: -19
- enabled: true
- view:
- weight: 12
- enabled: true
- webform:
- weight: 26
- enabled: true
-field_type: entity_reference_revisions
diff --git a/config/field.field.node.landing_page.field_image.yml b/config/field.field.node.landing_page.field_image.yml
deleted file mode 100644
index 1751b05..0000000
--- a/config/field.field.node.landing_page.field_image.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-uuid: dfc742b6-f16a-46d3-9174-71d4023daf7c
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_image
- - node.type.landing_page
- module:
- - content_translation
- - image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
-id: node.landing_page.field_image
-field_name: field_image
-entity_type: node
-bundle: landing_page
-label: Image
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:file'
- handler_settings: { }
- file_directory: '[date:custom:Y]-[date:custom:m]'
- file_extensions: 'png gif jpg jpeg'
- max_filesize: ''
- max_resolution: ''
- min_resolution: ''
- alt_field: true
- alt_field_required: true
- title_field: false
- title_field_required: false
- default_image:
- uuid: ''
- alt: ''
- title: ''
- width: null
- height: null
-field_type: image
diff --git a/config/field.field.node.page.field_body_paragraph.yml b/config/field.field.node.page.field_body_paragraph.yml
deleted file mode 100644
index e80aad0..0000000
--- a/config/field.field.node.page.field_body_paragraph.yml
+++ /dev/null
@@ -1,103 +0,0 @@
-uuid: 96a0ecc5-623a-419e-82b1-bebadd261539
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_body_paragraph
- - node.type.page
- - paragraphs.paragraphs_type.content_reference
- - paragraphs.paragraphs_type.embedded_content
- - paragraphs.paragraphs_type.faq
- - paragraphs.paragraphs_type.file
- - paragraphs.paragraphs_type.image
- - paragraphs.paragraphs_type.quotation_with_image
- - paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- - paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.title
- - paragraphs.paragraphs_type.update
- - paragraphs.paragraphs_type.video
- - paragraphs.paragraphs_type.view
- - paragraphs.paragraphs_type.webform
- module:
- - entity_reference_revisions
-_core:
- default_config_hash: HJYh7swNX1LRKal9y5OKiapYOWv17eglY8LI3vJaEug
-id: node.page.field_body_paragraph
-field_name: field_body_paragraph
-entity_type: node
-bundle: page
-label: 'Body paragraph'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:paragraph'
- handler_settings:
- target_bundles:
- text: text
- image: image
- file: file
- video: video
- slide: slide
- update: update
- faq: faq
- webform: webform
- content_reference: content_reference
- embedded_content: embedded_content
- quotation_with_image: quotation_with_image
- storyline_header: storyline_header
- storyline_item: storyline_item
- title: title
- view: view
- negate: 0
- target_bundles_drag_drop:
- content_reference:
- weight: 15
- enabled: true
- embedded_content:
- weight: 17
- enabled: true
- faq:
- weight: -9
- enabled: true
- file:
- weight: -13
- enabled: true
- image:
- weight: -14
- enabled: true
- quotation_with_image:
- weight: 18
- enabled: true
- slide:
- weight: -11
- enabled: true
- storyline_header:
- weight: 20
- enabled: true
- storyline_item:
- weight: 21
- enabled: true
- text:
- weight: -15
- enabled: true
- title:
- weight: 23
- enabled: true
- update:
- weight: -10
- enabled: true
- video:
- weight: -12
- enabled: true
- view:
- weight: 26
- enabled: true
- webform:
- weight: 14
- enabled: true
-field_type: entity_reference_revisions
diff --git a/config/field.field.node.people.field_body_paragraph.yml b/config/field.field.node.people.field_body_paragraph.yml
deleted file mode 100644
index bbcb9a6..0000000
--- a/config/field.field.node.people.field_body_paragraph.yml
+++ /dev/null
@@ -1,93 +0,0 @@
-uuid: ea974c1e-ce38-4701-bd5f-7655c118779f
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_body_paragraph
- - node.type.people
- - paragraphs.paragraphs_type.faq
- - paragraphs.paragraphs_type.file
- - paragraphs.paragraphs_type.image
- - paragraphs.paragraphs_type.quotation_with_image
- - paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- - paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.title
- - paragraphs.paragraphs_type.update
- - paragraphs.paragraphs_type.video
- - paragraphs.paragraphs_type.view
- - paragraphs.paragraphs_type.webform
- module:
- - entity_reference_revisions
-_core:
- default_config_hash: 0bKKOd0u6BWVA8_qN4zyQ9RnJerQ1i_ojb8vX7xsS-c
-id: node.people.field_body_paragraph
-field_name: field_body_paragraph
-entity_type: node
-bundle: people
-label: Bio
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:paragraph'
- handler_settings:
- target_bundles:
- file: file
- image: image
- text: text
- slide: slide
- update: update
- faq: faq
- quotation_with_image: quotation_with_image
- storyline_header: storyline_header
- storyline_item: storyline_item
- title: title
- video: video
- view: view
- webform: webform
- negate: 0
- target_bundles_drag_drop:
- faq:
- weight: 14
- enabled: true
- file:
- weight: -7
- enabled: true
- image:
- weight: -7
- enabled: true
- quotation_with_image:
- weight: 17
- enabled: true
- slide:
- weight: 8
- enabled: true
- storyline_header:
- weight: 19
- enabled: true
- storyline_item:
- weight: 20
- enabled: true
- text:
- weight: -7
- enabled: true
- title:
- weight: 22
- enabled: true
- update:
- weight: 10
- enabled: true
- video:
- weight: 24
- enabled: true
- view:
- weight: 25
- enabled: true
- webform:
- weight: 26
- enabled: true
-field_type: entity_reference_revisions
diff --git a/config/field.field.node.people.field_people_email.yml b/config/field.field.node.people.field_people_email.yml
deleted file mode 100644
index 1aa77bb..0000000
--- a/config/field.field.node.people.field_people_email.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: 2fc4903b-ce60-42de-ad58-e45374026971
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_people_email
- - node.type.people
-id: node.people.field_people_email
-field_name: field_people_email
-entity_type: node
-bundle: people
-label: Email
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: email
diff --git a/config/field.field.node.people.field_people_social_media.yml b/config/field.field.node.people.field_people_social_media.yml
deleted file mode 100644
index f7c4b9a..0000000
--- a/config/field.field.node.people.field_people_social_media.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 0861ae84-c026-4690-bcb8-699f59b67518
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_people_social_media
- - node.type.people
- module:
- - link
-id: node.people.field_people_social_media
-field_name: field_people_social_media
-entity_type: node
-bundle: people
-label: 'Social Media'
-description: ''
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- title: 1
- link_type: 16
-field_type: link
diff --git a/config/field.field.node.resource.field_resource_video.yml b/config/field.field.node.resource.field_resource_video.yml
deleted file mode 100644
index 1f3473f..0000000
--- a/config/field.field.node.resource.field_resource_video.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: f19ff82f-b431-4aef-a78a-69b8d9f7fc7e
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_resource_video
- - node.type.resource
- module:
- - video_embed_field
-_core:
- default_config_hash: HEfr7NJ5bqyMeGY6gu7Y4Hk6xcrMg6EN5BrVT2DQo_o
-id: node.resource.field_resource_video
-field_name: field_resource_video
-entity_type: node
-bundle: resource
-label: 'Resource video'
-description: 'Paste in the embed link from YouTube or Vimeo to embed a video.'
-required: false
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- allowed_providers:
- vimeo: '0'
- youtube: '0'
- youtube_playlist: '0'
-field_type: video_embed_field
diff --git a/config/field.field.paragraph.content_reference.field_content_reference.yml b/config/field.field.paragraph.content_reference.field_content_reference.yml
deleted file mode 100644
index b22f61a..0000000
--- a/config/field.field.paragraph.content_reference.field_content_reference.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-uuid: 65a2e9fe-e9c7-4508-bc38-fc2eaa1a0dc8
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_content_reference
- - node.type.article
- - node.type.blog
- - node.type.campaign
- - node.type.case_study
- - node.type.event
- - node.type.landing_page
- - node.type.page
- - node.type.people
- - node.type.resource
- - paragraphs.paragraphs_type.content_reference
-id: paragraph.content_reference.field_content_reference
-field_name: field_content_reference
-entity_type: paragraph
-bundle: content_reference
-label: Content
-description: ''
-required: true
-translatable: false
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:node'
- handler_settings:
- target_bundles:
- article: article
- page: page
- blog: blog
- campaign: campaign
- case_study: case_study
- event: event
- landing_page: landing_page
- people: people
- resource: resource
- sort:
- field: changed
- direction: DESC
- auto_create: false
- auto_create_bundle: campaign
-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.field.paragraph.quotation_with_image.field_image.yml b/config/field.field.paragraph.quotation_with_image.field_image.yml
deleted file mode 100644
index 0c1c4db..0000000
--- a/config/field.field.paragraph.quotation_with_image.field_image.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-uuid: 920d3a87-d31f-43d6-af89-2b846807402c
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_image
- - paragraphs.paragraphs_type.quotation_with_image
- module:
- - content_translation
- - image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
-id: paragraph.quotation_with_image.field_image
-field_name: field_image
-entity_type: paragraph
-bundle: quotation_with_image
-label: Image
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:file'
- handler_settings: { }
- file_directory: '[date:custom:Y]-[date:custom:m]'
- file_extensions: 'png gif jpg jpeg'
- max_filesize: ''
- max_resolution: ''
- min_resolution: ''
- alt_field: true
- alt_field_required: true
- title_field: false
- title_field_required: false
- default_image:
- uuid: ''
- alt: ''
- title: ''
- width: null
- height: null
-field_type: image
diff --git a/config/field.field.paragraph.quotation_with_image.field_quotation.yml b/config/field.field.paragraph.quotation_with_image.field_quotation.yml
deleted file mode 100644
index e6a89db..0000000
--- a/config/field.field.paragraph.quotation_with_image.field_quotation.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-uuid: 0ad42b66-9314-49a7-a090-09bb85c2ca8b
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_quotation
- - paragraphs.paragraphs_type.quotation_with_image
- module:
- - allowed_formats
- - text
-third_party_settings:
- allowed_formats:
- allowed_formats:
- - minimalhtml
-id: paragraph.quotation_with_image.field_quotation
-field_name: field_quotation
-entity_type: paragraph
-bundle: quotation_with_image
-label: Quotation
-description: "Don't use a blockquote or quotation marks unless what you are quoting contains a quotation, itself."
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text
diff --git a/config/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml b/config/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml
deleted file mode 100644
index 2582e6a..0000000
--- a/config/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: f5010972-c60c-4907-9e9a-7bda99bd672a
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_escape_flow
- - paragraphs.paragraphs_type.quotation_with_image
-id: paragraph.quotation_with_image.field_style_escape_flow
-field_name: field_style_escape_flow
-entity_type: paragraph
-bundle: quotation_with_image
-label: 'Expand beyond content to sides'
-description: 'Bust out of content flow to be able to expand left and right.'
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'Bust out'
- off_label: 'Stay in lane'
-field_type: boolean
diff --git a/config/field.field.paragraph.text.field_style_classes.yml b/config/field.field.paragraph.text.field_style_classes.yml
deleted file mode 100644
index 77359bf..0000000
--- a/config/field.field.paragraph.text.field_style_classes.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: d2cc85cf-82ea-45c3-9bef-636780e14906
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_classes
- - paragraphs.paragraphs_type.text
- module:
- - options
-id: paragraph.text.field_style_classes
-field_name: field_style_classes
-entity_type: paragraph
-bundle: text
-label: 'Section style'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: list_string
diff --git a/config/field.field.paragraph.text.field_style_escape_flow.yml b/config/field.field.paragraph.text.field_style_escape_flow.yml
deleted file mode 100644
index eda2ac7..0000000
--- a/config/field.field.paragraph.text.field_style_escape_flow.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 60e773e7-b43d-41c2-ad9f-0c5abc5868a2
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_escape_flow
- - paragraphs.paragraphs_type.text
-id: paragraph.text.field_style_escape_flow
-field_name: field_style_escape_flow
-entity_type: paragraph
-bundle: text
-label: 'Expand beyond content to sides'
-description: 'Bust out of content flow to be able to expand left and right. Use this when applying a hero class.'
-required: false
-translatable: true
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: 'Bust out'
- off_label: 'Stay in lane'
-field_type: boolean
diff --git a/config/field.field.paragraph.title.field_image.yml b/config/field.field.paragraph.title.field_image.yml
deleted file mode 100644
index b1be992..0000000
--- a/config/field.field.paragraph.title.field_image.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-uuid: ba308d47-ba1b-4c91-a9e6-e13ec052e808
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_image
- - paragraphs.paragraphs_type.title
- module:
- - content_translation
- - image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
-id: paragraph.title.field_image
-field_name: field_image
-entity_type: paragraph
-bundle: title
-label: Image
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:file'
- handler_settings: { }
- file_directory: 'title-image/[date:custom:Y]-[date:custom:m]'
- file_extensions: 'png gif jpg jpeg'
- max_filesize: ''
- max_resolution: ''
- min_resolution: ''
- alt_field: true
- alt_field_required: true
- title_field: false
- title_field_required: false
- default_image:
- uuid: ''
- alt: ''
- title: ''
- width: null
- height: null
-field_type: image
diff --git a/config/field.field.paragraph.title.field_style_classes.yml b/config/field.field.paragraph.title.field_style_classes.yml
deleted file mode 100644
index 11c48a3..0000000
--- a/config/field.field.paragraph.title.field_style_classes.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: ff03f9a0-22f0-484e-8156-663dcee6fff8
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_classes
- - paragraphs.paragraphs_type.title
- module:
- - options
-id: paragraph.title.field_style_classes
-field_name: field_style_classes
-entity_type: paragraph
-bundle: title
-label: 'Section style'
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: list_string
diff --git a/config/field.field.paragraph.title.field_style_color.yml b/config/field.field.paragraph.title.field_style_color.yml
deleted file mode 100644
index df43719..0000000
--- a/config/field.field.paragraph.title.field_style_color.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: 54b33186-ce84-44bd-a692-d5040dfc8473
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_color
- - paragraphs.paragraphs_type.title
- module:
- - options
-id: paragraph.title.field_style_color
-field_name: field_style_color
-entity_type: paragraph
-bundle: title
-label: Color
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: list_string
diff --git a/config/field.field.paragraph.title.field_style_titlebar.yml b/config/field.field.paragraph.title.field_style_titlebar.yml
deleted file mode 100644
index 33fdfbb..0000000
--- a/config/field.field.paragraph.title.field_style_titlebar.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 5e6848cc-9b1b-40bb-b774-2c086fae0e74
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_titlebar
- - paragraphs.paragraphs_type.title
-id: paragraph.title.field_style_titlebar
-field_name: field_style_titlebar
-entity_type: paragraph
-bundle: title
-label: Titlebar
-description: ''
-required: false
-translatable: true
-default_value:
- -
- value: 0
-default_value_callback: ''
-settings:
- on_label: Titlebar
- off_label: Normal
-field_type: boolean
diff --git a/config/field.field.paragraph.title.field_subtitle.yml b/config/field.field.paragraph.title.field_subtitle.yml
deleted file mode 100644
index b6b3027..0000000
--- a/config/field.field.paragraph.title.field_subtitle.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-uuid: 233caa0e-d7c3-47cd-945b-34d08b312e5a
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_subtitle
- - paragraphs.paragraphs_type.title
- module:
- - allowed_formats
- - text
-third_party_settings:
- allowed_formats:
- allowed_formats:
- - minimalhtmltitle
-id: paragraph.title.field_subtitle
-field_name: field_subtitle
-entity_type: paragraph
-bundle: title
-label: Subtitle
-description: ''
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text
diff --git a/config/field.field.paragraph.title.field_title.yml b/config/field.field.paragraph.title.field_title.yml
deleted file mode 100644
index 3fa811a..0000000
--- a/config/field.field.paragraph.title.field_title.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-uuid: d05fd624-a976-4c35-836e-f81b6dff68b3
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_title
- - paragraphs.paragraphs_type.title
- module:
- - allowed_formats
- - text
-third_party_settings:
- allowed_formats:
- allowed_formats:
- - minimalhtmltitle
-id: paragraph.title.field_title
-field_name: field_title
-entity_type: paragraph
-bundle: title
-label: Title
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings: { }
-field_type: text
diff --git a/config/field.field.paragraph.video.field_video_embed.yml b/config/field.field.paragraph.video.field_video_embed.yml
deleted file mode 100644
index efc7d07..0000000
--- a/config/field.field.paragraph.video.field_video_embed.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-uuid: 3086d849-f345-41d4-8404-9357b15e493e
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_video_embed
- - paragraphs.paragraphs_type.video
- module:
- - video_embed_field
-_core:
- default_config_hash: Yrm-bWfkd2hARu0QJI5GATWCD4Sf6COaEHduLWg21M0
-id: paragraph.video.field_video_embed
-field_name: field_video_embed
-entity_type: paragraph
-bundle: video
-label: 'Video embed'
-description: 'Paste in the embed link from YouTube or Vimeo to embed a video.'
-required: false
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- allowed_providers:
- vimeo: '0'
- youtube: '0'
- youtube_playlist: '0'
-field_type: video_embed_field
diff --git a/config/field.field.paragraph.view.field_style_escape_flow.yml b/config/field.field.paragraph.view.field_style_escape_flow.yml
deleted file mode 100644
index 7557be2..0000000
--- a/config/field.field.paragraph.view.field_style_escape_flow.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 3bc88415-1587-43d8-9a11-d70504be46e0
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_style_escape_flow
- - paragraphs.paragraphs_type.view
-id: paragraph.view.field_style_escape_flow
-field_name: field_style_escape_flow
-entity_type: paragraph
-bundle: view
-label: 'Expand beyond content to sides'
-description: 'Bust out of content flow to be able to expand left and right.'
-required: false
-translatable: true
-default_value:
- -
- value: 1
-default_value_callback: ''
-settings:
- on_label: 'Bust out'
- off_label: 'Stay in lane'
-field_type: boolean
diff --git a/config/field.field.paragraph.view.field_view_reference.yml b/config/field.field.paragraph.view.field_view_reference.yml
deleted file mode 100644
index 96f69c6..0000000
--- a/config/field.field.paragraph.view.field_view_reference.yml
+++ /dev/null
@@ -1,61 +0,0 @@
-uuid: 2047c61c-bd55-4463-8e4b-57f464190f1c
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_view_reference
- - paragraphs.paragraphs_type.view
- module:
- - viewsreference
-id: paragraph.view.field_view_reference
-field_name: field_view_reference
-entity_type: paragraph
-bundle: view
-label: View
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:view'
- handler_settings:
- target_bundles: null
- auto_create: 0
- plugin_types:
- block: block
- page: page
- embed: embed
- default: 0
- feed: 0
- preselect_views:
- action: 0
- article: 0
- block_content: 0
- blog: 0
- campaign: 0
- case_study: 0
- comment: 0
- comments_recent: 0
- content: 0
- content_recent: 0
- event: 0
- files: 0
- frontpage: 0
- group: 0
- group_content: 0
- group_members: 0
- group_nodes: 0
- people: 0
- redirect: 0
- redirect_404: 0
- related_content: 0
- resource: 0
- search: 0
- taxonomy_term: 0
- user_admin_people: 0
- watchdog: 0
- webform_submissions: 0
- who_s_new: 0
- who_s_online: 0
-field_type: viewsreference
diff --git a/config/field.field.paragraph.webform.field_webform.yml b/config/field.field.paragraph.webform.field_webform.yml
deleted file mode 100644
index a4d136f..0000000
--- a/config/field.field.paragraph.webform.field_webform.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: 80d76a08-0ac0-4c55-aed7-75d47bf0652e
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.paragraph.field_webform
- - paragraphs.paragraphs_type.webform
- module:
- - webform
-id: paragraph.webform.field_webform
-field_name: field_webform
-entity_type: paragraph
-bundle: webform
-label: Webform
-description: ''
-required: true
-translatable: true
-default_value: { }
-default_value_callback: ''
-settings:
- handler: 'default:webform'
- handler_settings:
- target_bundles: null
- auto_create: false
-field_type: webform
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/field.storage.comment.indieweb_webmention.yml b/config/field.storage.comment.indieweb_webmention.yml
deleted file mode 100644
index c762937..0000000
--- a/config/field.storage.comment.indieweb_webmention.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: ac5e9a7c-a0ec-43a0-8e4a-cc916a028019
-langcode: en
-status: true
-dependencies:
- module:
- - comment
- - indieweb_webmention
-_core:
- default_config_hash: BcN97r55G9u06GXLtTs7f7je2m71D2lBYEvPwFP4xyc
-id: comment.indieweb_webmention
-field_name: indieweb_webmention
-entity_type: comment
-type: entity_reference
-settings:
- target_type: indieweb_webmention
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: true
-custom_storage: false
diff --git a/config/field.storage.node.field_case_study_client.yml b/config/field.storage.node.field_case_study_client.yml
deleted file mode 100644
index 81edc5d..0000000
--- a/config/field.storage.node.field_case_study_client.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: f6b7edf7-ed2b-48b5-96df-c2b54a014ffc
-langcode: en
-status: true
-dependencies:
- module:
- - node
- - text
-_core:
- default_config_hash: k8TKtvmyHil_t8eAai4z3wQC-BRkW6xFe7SKGNa3lLM
-id: node.field_case_study_client
-field_name: field_case_study_client
-entity_type: node
-type: text
-settings:
- max_length: 255
-module: text
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_case_study_partners.yml b/config/field.storage.node.field_case_study_partners.yml
deleted file mode 100644
index f47e872..0000000
--- a/config/field.storage.node.field_case_study_partners.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 0f2f9034-842d-4359-b298-c7bc5df840f2
-langcode: en
-status: true
-dependencies:
- module:
- - node
- - text
-_core:
- default_config_hash: FdSLUGZ_aB8YFRpYU3yKYFLXIPh0sD0zhmqq5-Kcs9k
-id: node.field_case_study_partners
-field_name: field_case_study_partners
-entity_type: node
-type: text
-settings:
- max_length: 255
-module: text
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_case_study_status.yml b/config/field.storage.node.field_case_study_status.yml
deleted file mode 100644
index 3493d05..0000000
--- a/config/field.storage.node.field_case_study_status.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: d5bfb60a-2b13-4846-afac-f3c33687d3e0
-langcode: en
-status: true
-dependencies:
- module:
- - node
-_core:
- default_config_hash: l4Xj9ZO9SL2d2peuvH-8r5BW6_rrhW5NQ1rBQZYO2_E
-id: node.field_case_study_status
-field_name: field_case_study_status
-entity_type: node
-type: string
-settings:
- max_length: 255
- case_sensitive: false
- is_ascii: false
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_case_study_subtitle.yml b/config/field.storage.node.field_case_study_subtitle.yml
deleted file mode 100644
index 98e3a9a..0000000
--- a/config/field.storage.node.field_case_study_subtitle.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 4e3a086b-9fbe-44a0-91f6-14bf60be11c0
-langcode: en
-status: true
-dependencies:
- module:
- - node
-_core:
- default_config_hash: 0Ww7LsVnOl8WnZL8859X6uuI60OaLnvQ7PT71v5ravo
-id: node.field_case_study_subtitle
-field_name: field_case_study_subtitle
-entity_type: node
-type: string
-settings:
- max_length: 255
- case_sensitive: false
- is_ascii: false
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_case_study_team.yml b/config/field.storage.node.field_case_study_team.yml
deleted file mode 100644
index 9e2edd9..0000000
--- a/config/field.storage.node.field_case_study_team.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: ac2a7f1c-e36b-4cd6-82f6-272f63009acf
-langcode: en
-status: true
-dependencies:
- module:
- - node
-_core:
- default_config_hash: mLgpzKD2aeOx6AgBbkqhgJvxQyReqtLVMtLlwZx8840
-id: node.field_case_study_team
-field_name: field_case_study_team
-entity_type: node
-type: entity_reference
-settings:
- target_type: node
-module: core
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_case_study_year.yml b/config/field.storage.node.field_case_study_year.yml
deleted file mode 100644
index b8d38c8..0000000
--- a/config/field.storage.node.field_case_study_year.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: bf97711d-cff0-49a5-8907-9db152eeb180
-langcode: en
-status: true
-dependencies:
- module:
- - node
-_core:
- default_config_hash: h4jra3vwrbjWkY5fGxVvVsBjmO-TJ2JDUmBnVOdTb58
-id: node.field_case_study_year
-field_name: field_case_study_year
-entity_type: node
-type: integer
-settings:
- unsigned: false
- size: normal
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_people_email.yml b/config/field.storage.node.field_people_email.yml
deleted file mode 100644
index dcf2f89..0000000
--- a/config/field.storage.node.field_people_email.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: f806baa5-39c5-4179-bf5a-03c988ba232a
-langcode: en
-status: true
-dependencies:
- module:
- - node
-id: node.field_people_email
-field_name: field_people_email
-entity_type: node
-type: email
-settings: { }
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_people_social_media.yml b/config/field.storage.node.field_people_social_media.yml
deleted file mode 100644
index cb44122..0000000
--- a/config/field.storage.node.field_people_social_media.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-uuid: accd7c44-5f5b-4a7b-bfba-54ed0479c9be
-langcode: en
-status: true
-dependencies:
- module:
- - link
- - node
-id: node.field_people_social_media
-field_name: field_people_social_media
-entity_type: node
-type: link
-settings: { }
-module: link
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_resource_video.yml b/config/field.storage.node.field_resource_video.yml
deleted file mode 100644
index 2072034..0000000
--- a/config/field.storage.node.field_resource_video.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: 7b08e618-8701-4f76-8b03-fd29378f29f0
-langcode: en
-status: true
-dependencies:
- module:
- - node
- - video_embed_field
-_core:
- default_config_hash: oqZ6I00cqecS4gOqZm-KAIFjAzADaHdTE_GK5xnQIqk
-id: node.field_resource_video
-field_name: field_resource_video
-entity_type: node
-type: video_embed_field
-settings: { }
-module: video_embed_field
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_services.yml b/config/field.storage.node.field_services.yml
deleted file mode 100644
index 2dd2bbb..0000000
--- a/config/field.storage.node.field_services.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 39d2763a-c4da-411a-a69c-9a570a77aa82
-langcode: en
-status: true
-dependencies:
- module:
- - node
- - taxonomy
-_core:
- default_config_hash: e3KDBrjASUAP1Hbh77UW79YCsm4OH1avCRJcvNG9JtA
-id: node.field_services
-field_name: field_services
-entity_type: node
-type: entity_reference
-settings:
- target_type: taxonomy_term
-module: core
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.node.field_technologies.yml b/config/field.storage.node.field_technologies.yml
deleted file mode 100644
index 17d733d..0000000
--- a/config/field.storage.node.field_technologies.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-uuid: 3351cda2-a815-4643-a2d2-84256372fcf4
-langcode: en
-status: true
-dependencies:
- module:
- - node
- - taxonomy
-_core:
- default_config_hash: 6RxhmNW-9ODOQKkvwTka8QrbykUXxG84HvUf1HOCnvM
-id: node.field_technologies
-field_name: field_technologies
-entity_type: node
-type: entity_reference
-settings:
- target_type: taxonomy_term
-module: core
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_content_reference.yml b/config/field.storage.paragraph.field_content_reference.yml
deleted file mode 100644
index 6e6e5b8..0000000
--- a/config/field.storage.paragraph.field_content_reference.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 1862071b-3776-48b6-96ae-207891806771
-langcode: en
-status: true
-dependencies:
- module:
- - node
- - paragraphs
-id: paragraph.field_content_reference
-field_name: field_content_reference
-entity_type: paragraph
-type: entity_reference
-settings:
- target_type: node
-module: core
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_quotation.yml b/config/field.storage.paragraph.field_quotation.yml
deleted file mode 100644
index 0546593..0000000
--- a/config/field.storage.paragraph.field_quotation.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 4b2944bf-a6da-4924-b85e-23352257c964
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
- - text
-id: paragraph.field_quotation
-field_name: field_quotation
-entity_type: paragraph
-type: text
-settings:
- max_length: 1020
-module: text
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_style_classes.yml b/config/field.storage.paragraph.field_style_classes.yml
deleted file mode 100644
index 4f9bd4d..0000000
--- a/config/field.storage.paragraph.field_style_classes.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-uuid: 95c1887e-3679-4bb1-85bb-ace73acdefd8
-langcode: en
-status: true
-dependencies:
- module:
- - options
- - paragraphs
-id: paragraph.field_style_classes
-field_name: field_style_classes
-entity_type: paragraph
-type: list_string
-settings:
- allowed_values:
- -
- value: hero-main
- label: Main
- -
- value: is-large
- label: Large
- -
- value: is-light
- label: Light
- allowed_values_function: ''
-module: options
-locked: false
-cardinality: -1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_style_color.yml b/config/field.storage.paragraph.field_style_color.yml
deleted file mode 100644
index 27f6e58..0000000
--- a/config/field.storage.paragraph.field_style_color.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-uuid: 5570eeee-e38b-473c-8ac8-2a72f33a0132
-langcode: en
-status: true
-dependencies:
- module:
- - options
- - paragraphs
-id: paragraph.field_style_color
-field_name: field_style_color
-entity_type: paragraph
-type: list_string
-settings:
- allowed_values:
- -
- value: berry
- label: Berry
- -
- value: blue
- label: 'Bright blue'
- -
- value: cinnamon
- label: Cinnamon
- -
- value: dandelion
- label: Dandelion
- -
- value: dark
- label: 'Dark blue'
- -
- value: marine
- label: Marine
- -
- value: grey
- label: Gray
- -
- value: white
- label: White
- allowed_values_function: ''
-module: options
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_style_escape_flow.yml b/config/field.storage.paragraph.field_style_escape_flow.yml
deleted file mode 100644
index fea2a58..0000000
--- a/config/field.storage.paragraph.field_style_escape_flow.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 6394f4d6-6bf1-41f6-b98e-b31a42a67e41
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
-id: paragraph.field_style_escape_flow
-field_name: field_style_escape_flow
-entity_type: paragraph
-type: boolean
-settings: { }
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_style_titlebar.yml b/config/field.storage.paragraph.field_style_titlebar.yml
deleted file mode 100644
index 9609fea..0000000
--- a/config/field.storage.paragraph.field_style_titlebar.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: be14b062-f74f-4c37-a7ad-50ab9fc656a8
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
-id: paragraph.field_style_titlebar
-field_name: field_style_titlebar
-entity_type: paragraph
-type: boolean
-settings: { }
-module: core
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_subtitle.yml b/config/field.storage.paragraph.field_subtitle.yml
deleted file mode 100644
index df9ce31..0000000
--- a/config/field.storage.paragraph.field_subtitle.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 67dda41e-5e4f-4ec5-9e59-0f7f6351d086
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
- - text
-id: paragraph.field_subtitle
-field_name: field_subtitle
-entity_type: paragraph
-type: text
-settings:
- max_length: 255
-module: text
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_title.yml b/config/field.storage.paragraph.field_title.yml
deleted file mode 100644
index ec39295..0000000
--- a/config/field.storage.paragraph.field_title.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 5d58be84-e643-407d-b71c-88da020ed670
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
- - text
-id: paragraph.field_title
-field_name: field_title
-entity_type: paragraph
-type: text
-settings:
- max_length: 140
-module: text
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_video_embed.yml b/config/field.storage.paragraph.field_video_embed.yml
deleted file mode 100644
index 006708e..0000000
--- a/config/field.storage.paragraph.field_video_embed.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: 445eaff3-0b50-45e1-b3ee-c472ae83e075
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
- - video_embed_field
-_core:
- default_config_hash: 7pnKv1o8OLIFTOvfreN2O4S13MgT8mqaaGDhUoC8z88
-id: paragraph.field_video_embed
-field_name: field_video_embed
-entity_type: paragraph
-type: video_embed_field
-settings: { }
-module: video_embed_field
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_view_reference.yml b/config/field.storage.paragraph.field_view_reference.yml
deleted file mode 100644
index 223bce2..0000000
--- a/config/field.storage.paragraph.field_view_reference.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-uuid: bbefa52b-e218-4684-a896-06b96e50355c
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
- - views
- - viewsreference
-id: paragraph.field_view_reference
-field_name: field_view_reference
-entity_type: paragraph
-type: viewsreference
-settings:
- target_type: view
-module: viewsreference
-locked: false
-cardinality: 1
-translatable: true
-indexes: { }
-persist_with_no_fields: false
-custom_storage: false
diff --git a/config/field.storage.paragraph.field_webform.yml b/config/field.storage.paragraph.field_webform.yml
deleted file mode 100644
index a5c4741..0000000
--- a/config/field.storage.paragraph.field_webform.yml
+++ /dev/null
@@ -1,20 +0,0 @@
-uuid: 1392d91e-9a3e-4b6c-9bc1-8559c49f2876
-langcode: en
-status: true
-dependencies:
- module:
- - paragraphs
- - webform
-id: paragraph.field_webform
-field_name: field_webform
-entity_type: paragraph
-type: webform
-settings:
- target_type: webform
-module: webform
-locked: false
-cardinality: 1
-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.minimalhtml.yml b/config/filter.format.minimalhtml.yml
deleted file mode 100644
index 71f02db..0000000
--- a/config/filter.format.minimalhtml.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-uuid: 06ee902d-39b9-48b5-aa9d-93f632a90b39
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: 92ohirYz2djTZfHPcIDKZb7qWJfnf8PejLU9mQZs5GY
-name: 'Minimal HTML'
-format: minimalhtml
-weight: 0
-filters:
- filter_autop:
- id: filter_autop
- provider: filter
- status: true
- weight: 0
- settings: { }
- filter_html:
- id: filter_html
- provider: filter
- status: true
- weight: -10
- settings:
- allowed_html: ' -
-
- '
- filter_html_help: true
- filter_html_nofollow: false
- filter_htmlcorrector:
- id: filter_htmlcorrector
- provider: filter
- status: true
- weight: 10
- settings: { }
- filter_url:
- id: filter_url
- provider: filter
- status: true
- weight: 0
- settings:
- filter_url_length: 72
diff --git a/config/filter.format.minimalhtmltitle.yml b/config/filter.format.minimalhtmltitle.yml
deleted file mode 100644
index ce66901..0000000
--- a/config/filter.format.minimalhtmltitle.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-uuid: 74cc2c9f-54d8-468c-8e15-3a334d51a7a5
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: tbAGfMPqW51iWDBISE87e95poLBgtKfqjUtqc93BQYo
-name: 'Title HTML'
-format: minimalhtmltitle
-weight: 0
-filters:
- filter_autop:
- id: filter_autop
- provider: filter
- status: true
- weight: -40
- settings: { }
- filter_html:
- id: filter_html
- provider: filter
- status: true
- weight: -30
- settings:
- allowed_html: '
'
- filter_html_help: false
- filter_html_nofollow: false
- filter_htmlcorrector:
- id: filter_htmlcorrector
- provider: filter
- status: true
- weight: -10
- settings: { }
- filter_url:
- id: filter_url
- provider: filter
- status: true
- weight: -20
- settings:
- filter_url_length: 72
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/focal_point.settings.yml b/config/focal_point.settings.yml
deleted file mode 100644
index 75b071d..0000000
--- a/config/focal_point.settings.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-_core:
- default_config_hash: 8JOAPEbjHMB4rDFCsu3EXEx6L2UDQ5SSDyN0d7S0Ic0
-crop_type: focal_point
-default_value: '50,50'
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/google_analytics.settings.yml b/config/google_analytics.settings.yml
deleted file mode 100644
index 48b4c96..0000000
--- a/config/google_analytics.settings.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-_core:
- default_config_hash: SMk3vOyh4KT6rXnqkDcNQ51YGpJzRV5hyig5SSIfU6U
-account: UA-64247200-1
-domain_mode: 0
-cross_domains: ''
-visibility:
- request_path_mode: 0
- request_path_pages: |
- /admin
- /admin/*
- /batch
- /node/add*
- /node/*/*
- /user/*/*
- user_role_mode: 0
- user_role_roles: { }
- user_account_mode: 0
-track:
- outbound: true
- mailto: true
- tel: true
- files: true
- files_extensions: '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc(x|m)?|dot(x|m)?|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt(x|m)?|pot(x|m)?|pps(x|m)?|ppam|sld(x|m)?|thmx|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls(x|m|b)?|xlt(x|m)|xlam|xml|z|zip'
- colorbox: true
- linkid: false
- urlfragments: false
- userid: false
- messages: { }
- site_search: false
- adsense: false
- displayfeatures: false
-privacy:
- anonymizeip: true
-custom: { }
-codesnippet:
- create: { }
- before: ''
- after: ''
-translation_set: false
-cache: false
-debug: false
diff --git a/config/honeypot.settings.yml b/config/honeypot.settings.yml
deleted file mode 100644
index f03e6eb..0000000
--- a/config/honeypot.settings.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-_core:
- default_config_hash: 9bVDfWSa_In6VzTXmy04jJ_3ZQobihKjO9isuuUCPaw
-protect_all_forms: false
-unprotected_forms:
- - user_login_form
- - search_form
- - search_block_form
- - views_exposed_form
- - honeypot_settings_form
-log: true
-element_name: url
-time_limit: 6
-expire: 600
-form_settings:
- user_register_form: true
- user_pass: true
- contact_message_personal_form: true
- node_action_form: false
- node_article_form: false
- node_blog_form: false
- node_campaign_form: false
- node_case_study_form: false
- node_event_form: false
- node_landing_page_form: false
- node_page_form: false
- node_people_form: false
- node_resource_form: false
- comment_comment_form: 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.landscape.yml b/config/image.style.landscape.yml
deleted file mode 100644
index dccfd4b..0000000
--- a/config/image.style.landscape.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-uuid: 530db7fe-5227-42ad-a763-56ab95d6558b
-langcode: en
-status: true
-dependencies: { }
-name: landscape
-label: Landscape
-effects:
- 6ea1befe-6198-4075-97a0-8aab104f8985:
- uuid: 6ea1befe-6198-4075-97a0-8aab104f8985
- id: image_scale_and_crop
- weight: 1
- data:
- width: 672
- height: 504
- anchor: center-center
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.style.small_landscape.yml b/config/image.style.small_landscape.yml
deleted file mode 100644
index 93b9742..0000000
--- a/config/image.style.small_landscape.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-uuid: ef082871-7e9a-4f4a-befa-094f4091d45f
-langcode: en
-status: true
-dependencies: { }
-name: small_landscape
-label: 'Small landscape'
-effects:
- 87ff4c68-189e-4459-ad57-6834f8181d0a:
- uuid: 87ff4c68-189e-4459-ad57-6834f8181d0a
- id: image_resize
- weight: 1
- data:
- width: 88
- height: 31
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/indieweb_context.settings.yml b/config/indieweb_context.settings.yml
deleted file mode 100644
index 407352f..0000000
--- a/config/indieweb_context.settings.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
- default_config_hash: paSfEoTF1KMwEI-yfLZdCNUGJlkjdzF7BtV5IhHQZ2Y
-handler: cron
diff --git a/config/indieweb_microformat.settings.yml b/config/indieweb_microformat.settings.yml
deleted file mode 100644
index fe4245b..0000000
--- a/config/indieweb_microformat.settings.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-_core:
- default_config_hash: M4eTLAM6YmYdwygiLpINnQ1-O5AWqpzpcPV8B9MZDmA
-h_entry: true
-h_entry_comment: true
-h_event: event
-post_metadata: false
-post_metadata_comment: true
-p_name_exclude_node_type: ''
-e_content: false
-e_content_fields: field_body_paragraphs
-e_content_comment: true
-u_photo: false
-u_video: true
-u_audio: true
-p_summary: field_summary
-p_bridgy_twitter_content: false
-ds_node_support: false
diff --git a/config/indieweb_webmention.comment.yml b/config/indieweb_webmention.comment.yml
deleted file mode 100644
index fb70746..0000000
--- a/config/indieweb_webmention.comment.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-_core:
- default_config_hash: vCQViaufFP7eoZ6awByoVWGvmXhPKJs2kVxu-l7rdEs
-comment_create_enable: false
-comment_create_default_status: 0
-comment_create_comment_type: ''
-comment_create_webmention_reference_field: ''
-comment_create_node_comment_field: ''
-comment_create_mail_notification: ''
diff --git a/config/indieweb_webmention.settings.yml b/config/indieweb_webmention.settings.yml
deleted file mode 100644
index f9b0f16..0000000
--- a/config/indieweb_webmention.settings.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-_core:
- default_config_hash: bYXASvKSQG0TXFKL-ACHIRzci6Fn4pmrAn9uU4Cpt54
-webmention_endpoint: ''
-webmention_notify: false
-webmention_secret: ''
-webmention_internal: false
-webmention_internal_handler: disabled
-webmention_log_processing: false
-webmention_detect_identical: false
-webmention_expose_link_tag: false
-pingback_internal: false
-pingback_expose_link_tag: false
-pingback_notify: false
-pingback_endpoint: ''
-webmention_uid: 1
-webmention_log_payload: true
-syndication_targets: "Twitter (bridgy)|https://brid.gy/publish/twitter|1\r\nMastodon - social.coop (bridgy)|https://brid.gy/publish/mastodon|1"
-bridgy_back_link: always
-send_custom_url: false
-send_link_fields: ''
-send_webmention_handler: cron
-send_log_response: true
-send_comment_webmention_field: indieweb_webmention
-send_comment_permission_fields: true
diff --git a/config/language.content_settings.block_content.basic.yml b/config/language.content_settings.block_content.basic.yml
deleted file mode 100644
index ff91f05..0000000
--- a/config/language.content_settings.block_content.basic.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 25420aba-3d5d-4d58-946c-5236e70fb214
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.basic
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: block_content.basic
-target_entity_type_id: block_content
-target_bundle: basic
-default_langcode: site_default
-language_alterable: 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.content_settings.block_content.slide.yml b/config/language.content_settings.block_content.slide.yml
deleted file mode 100644
index 8cd1c63..0000000
--- a/config/language.content_settings.block_content.slide.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 20daf48c-7a63-4ff8-a4eb-40e38da19093
-langcode: en
-status: true
-dependencies:
- config:
- - block_content.type.slide
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: block_content.slide
-target_entity_type_id: block_content
-target_bundle: slide
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.comment.comment.yml b/config/language.content_settings.comment.comment.yml
deleted file mode 100644
index c76c948..0000000
--- a/config/language.content_settings.comment.comment.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c44d84e0-24bd-4df7-b1ae-bde8ce7f3eda
-langcode: en
-status: true
-dependencies:
- config:
- - comment.type.comment
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: comment.comment
-target_entity_type_id: comment
-target_bundle: comment
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.contact_message.personal.yml b/config/language.content_settings.contact_message.personal.yml
deleted file mode 100644
index ef8326f..0000000
--- a/config/language.content_settings.contact_message.personal.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 6a558202-408f-4963-a62a-5aebf44ed69d
-langcode: en
-status: true
-dependencies:
- config:
- - contact.form.personal
-id: contact_message.personal
-target_entity_type_id: contact_message
-target_bundle: personal
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.file.file.yml b/config/language.content_settings.file.file.yml
deleted file mode 100644
index db4ea10..0000000
--- a/config/language.content_settings.file.file.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 07149e4f-97fb-4b1f-ae25-324930708708
-langcode: en
-status: true
-dependencies:
- module:
- - file
-id: file.file
-target_entity_type_id: file
-target_bundle: file
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.indieweb_webmention.indieweb_webmention.yml b/config/language.content_settings.indieweb_webmention.indieweb_webmention.yml
deleted file mode 100644
index 8b3ea24..0000000
--- a/config/language.content_settings.indieweb_webmention.indieweb_webmention.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7d45f419-0467-4d55-a0a7-8c50692ad4a7
-langcode: en
-status: true
-dependencies:
- module:
- - indieweb_webmention
-id: indieweb_webmention.indieweb_webmention
-target_entity_type_id: indieweb_webmention
-target_bundle: indieweb_webmention
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.menu_link_content.menu_link_content.yml b/config/language.content_settings.menu_link_content.menu_link_content.yml
deleted file mode 100644
index 0cca9f8..0000000
--- a/config/language.content_settings.menu_link_content.menu_link_content.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: 91003c00-3a44-4367-9105-fb80a41d7392
-langcode: en
-status: true
-dependencies:
- module:
- - content_translation
- - menu_link_content
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: menu_link_content.menu_link_content
-target_entity_type_id: menu_link_content
-target_bundle: menu_link_content
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.node.action.yml b/config/language.content_settings.node.action.yml
deleted file mode 100644
index 333f21d..0000000
--- a/config/language.content_settings.node.action.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: c5f84591-4033-4d6a-93c5-a5482901b2e1
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.action
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.action
-target_entity_type_id: node
-target_bundle: action
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.article.yml b/config/language.content_settings.node.article.yml
deleted file mode 100644
index bc0657c..0000000
--- a/config/language.content_settings.node.article.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 27b360ed-8872-42c4-9d29-a13bae7cd8f1
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.article
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.article
-target_entity_type_id: node
-target_bundle: article
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.blog.yml b/config/language.content_settings.node.blog.yml
deleted file mode 100644
index 6b9eaf4..0000000
--- a/config/language.content_settings.node.blog.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: efff39b5-7cf9-4290-8a7d-639574d25140
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.blog
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.blog
-target_entity_type_id: node
-target_bundle: blog
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.node.campaign.yml b/config/language.content_settings.node.campaign.yml
deleted file mode 100644
index 22e2ff6..0000000
--- a/config/language.content_settings.node.campaign.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 58b5cd4c-3418-4819-a675-8d29d19b829c
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.campaign
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.campaign
-target_entity_type_id: node
-target_bundle: campaign
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.case_study.yml b/config/language.content_settings.node.case_study.yml
deleted file mode 100644
index 63065be..0000000
--- a/config/language.content_settings.node.case_study.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 7f38030a-3c64-414e-a3c0-5deb6cd65210
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.case_study
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.case_study
-target_entity_type_id: node
-target_bundle: case_study
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.event.yml b/config/language.content_settings.node.event.yml
deleted file mode 100644
index d6cfe79..0000000
--- a/config/language.content_settings.node.event.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: cddd24fa-a3b4-46ed-a7df-e4327842465b
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.event
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.event
-target_entity_type_id: node
-target_bundle: event
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.landing_page.yml b/config/language.content_settings.node.landing_page.yml
deleted file mode 100644
index 61bb244..0000000
--- a/config/language.content_settings.node.landing_page.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 462a2c5b-71ca-44ab-b291-f0f81e83c512
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.landing_page
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.landing_page
-target_entity_type_id: node
-target_bundle: landing_page
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.page.yml b/config/language.content_settings.node.page.yml
deleted file mode 100644
index ea080b8..0000000
--- a/config/language.content_settings.node.page.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d013ee21-83a8-46b2-903c-c993055f3eb9
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.page
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.page
-target_entity_type_id: node
-target_bundle: page
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.node.people.yml b/config/language.content_settings.node.people.yml
deleted file mode 100644
index a92c11d..0000000
--- a/config/language.content_settings.node.people.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d05911bc-6adb-4b24-941b-10e1ada1f326
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.people
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.people
-target_entity_type_id: node
-target_bundle: people
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.node.resource.yml b/config/language.content_settings.node.resource.yml
deleted file mode 100644
index c885575..0000000
--- a/config/language.content_settings.node.resource.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 6a5271c1-30d3-4f92-b22c-1ab4c81e6a09
-langcode: en
-status: true
-dependencies:
- config:
- - node.type.resource
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: node.resource
-target_entity_type_id: node
-target_bundle: resource
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.paragraph.faq.yml b/config/language.content_settings.paragraph.faq.yml
deleted file mode 100644
index 7e22de2..0000000
--- a/config/language.content_settings.paragraph.faq.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: bb98a951-dea3-43c0-8c5e-2e6a93c615ba
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.faq
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.faq
-target_entity_type_id: paragraph
-target_bundle: faq
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.file.yml b/config/language.content_settings.paragraph.file.yml
deleted file mode 100644
index 812b927..0000000
--- a/config/language.content_settings.paragraph.file.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 55de9855-26b2-48e1-b033-d22cfdb68e05
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.file
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.file
-target_entity_type_id: paragraph
-target_bundle: file
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.image.yml b/config/language.content_settings.paragraph.image.yml
deleted file mode 100644
index ac5ec5f..0000000
--- a/config/language.content_settings.paragraph.image.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 26303fa1-83cb-4682-9d62-a40152a0e2fd
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.image
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.image
-target_entity_type_id: paragraph
-target_bundle: image
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.quotation_with_image.yml b/config/language.content_settings.paragraph.quotation_with_image.yml
deleted file mode 100644
index 1eb1d6f..0000000
--- a/config/language.content_settings.paragraph.quotation_with_image.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3f1fee69-edda-4965-9811-89b4a7f7a572
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.quotation_with_image
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.quotation_with_image
-target_entity_type_id: paragraph
-target_bundle: quotation_with_image
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.slide.yml b/config/language.content_settings.paragraph.slide.yml
deleted file mode 100644
index 25ab75e..0000000
--- a/config/language.content_settings.paragraph.slide.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 44c88afd-3a8b-449f-a9c3-3788d844a5f9
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.slide
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.slide
-target_entity_type_id: paragraph
-target_bundle: slide
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.storyline_header.yml b/config/language.content_settings.paragraph.storyline_header.yml
deleted file mode 100644
index b92e96f..0000000
--- a/config/language.content_settings.paragraph.storyline_header.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 4a617d50-e67f-4450-bbab-9d12a12eebba
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.storyline_header
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.storyline_header
-target_entity_type_id: paragraph
-target_bundle: storyline_header
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.storyline_item.yml b/config/language.content_settings.paragraph.storyline_item.yml
deleted file mode 100644
index 833cdb9..0000000
--- a/config/language.content_settings.paragraph.storyline_item.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: f87e8571-4dbd-4712-b01b-b3235a751da5
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.storyline_item
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.storyline_item
-target_entity_type_id: paragraph
-target_bundle: storyline_item
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.text.yml b/config/language.content_settings.paragraph.text.yml
deleted file mode 100644
index 064792d..0000000
--- a/config/language.content_settings.paragraph.text.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: bfd38ee9-9421-43f9-8f04-c7aaa0c0ea29
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.text
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.text
-target_entity_type_id: paragraph
-target_bundle: text
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.title.yml b/config/language.content_settings.paragraph.title.yml
deleted file mode 100644
index e197525..0000000
--- a/config/language.content_settings.paragraph.title.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: ddb9f27b-95cd-4465-877e-f56bc85968e1
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.title
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.title
-target_entity_type_id: paragraph
-target_bundle: title
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.update.yml b/config/language.content_settings.paragraph.update.yml
deleted file mode 100644
index 218525c..0000000
--- a/config/language.content_settings.paragraph.update.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: e487dc7b-b510-410e-a946-604c51df632f
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.update
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.update
-target_entity_type_id: paragraph
-target_bundle: update
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.video.yml b/config/language.content_settings.paragraph.video.yml
deleted file mode 100644
index fa17ff0..0000000
--- a/config/language.content_settings.paragraph.video.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: f543d272-6d27-4d04-b24b-428e3faa264f
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.video
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.video
-target_entity_type_id: paragraph
-target_bundle: video
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.view.yml b/config/language.content_settings.paragraph.view.yml
deleted file mode 100644
index b100e0c..0000000
--- a/config/language.content_settings.paragraph.view.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: d5d67ef6-750d-4274-a34b-b34958ef2d58
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.view
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.view
-target_entity_type_id: paragraph
-target_bundle: view
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.paragraph.webform.yml b/config/language.content_settings.paragraph.webform.yml
deleted file mode 100644
index e618a79..0000000
--- a/config/language.content_settings.paragraph.webform.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 3e069410-4092-4867-839d-4fcbe07fc075
-langcode: en
-status: true
-dependencies:
- config:
- - paragraphs.paragraphs_type.webform
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: paragraph.webform
-target_entity_type_id: paragraph
-target_bundle: webform
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.path_alias.path_alias.yml b/config/language.content_settings.path_alias.path_alias.yml
deleted file mode 100644
index b7e3684..0000000
--- a/config/language.content_settings.path_alias.path_alias.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 08d5831c-2650-4df9-9973-b83ff9026932
-langcode: en
-status: true
-dependencies:
- module:
- - path_alias
-_core:
- default_config_hash: dhjFABRzm52DkRXnYja5ZoHwjY0R3gEGic3KpDUXgRo
-id: path_alias.path_alias
-target_entity_type_id: path_alias
-target_bundle: path_alias
-default_langcode: und
-language_alterable: true
diff --git a/config/language.content_settings.redirect.redirect.yml b/config/language.content_settings.redirect.redirect.yml
deleted file mode 100644
index 09ff166..0000000
--- a/config/language.content_settings.redirect.redirect.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-uuid: 4bc9f11a-1dfd-4d25-bf2c-21e5834ffbdc
-langcode: en
-status: true
-dependencies:
- module:
- - redirect
-_core:
- default_config_hash: y734AXEpjry1Ppff_hQQBFQGJvYjF0fk1JoWtp5q2JY
-id: redirect.redirect
-target_entity_type_id: redirect
-target_bundle: redirect
-default_langcode: und
-language_alterable: true
diff --git a/config/language.content_settings.shortcut.default.yml b/config/language.content_settings.shortcut.default.yml
deleted file mode 100644
index 2ce90e0..0000000
--- a/config/language.content_settings.shortcut.default.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: a3a87eab-1a7f-4ccb-875a-35ee75ea253a
-langcode: en
-status: true
-dependencies:
- config:
- - shortcut.set.default
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: shortcut.default
-target_entity_type_id: shortcut
-target_bundle: default
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.action_type.yml b/config/language.content_settings.taxonomy_term.action_type.yml
deleted file mode 100644
index da3c719..0000000
--- a/config/language.content_settings.taxonomy_term.action_type.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 2a7a9265-72a3-458b-9d07-02122c777123
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.action_type
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.action_type
-target_entity_type_id: taxonomy_term
-target_bundle: action_type
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.taxonomy_term.article_type.yml b/config/language.content_settings.taxonomy_term.article_type.yml
deleted file mode 100644
index 9050e3e..0000000
--- a/config/language.content_settings.taxonomy_term.article_type.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 51e5ee4b-65c1-4052-b35a-d0df8285468d
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.article_type
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.article_type
-target_entity_type_id: taxonomy_term
-target_bundle: article_type
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.taxonomy_term.event_type.yml b/config/language.content_settings.taxonomy_term.event_type.yml
deleted file mode 100644
index 04825ca..0000000
--- a/config/language.content_settings.taxonomy_term.event_type.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: aa36d7e7-fbb8-4e56-8845-6cf0634a021c
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.event_type
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.event_type
-target_entity_type_id: taxonomy_term
-target_bundle: event_type
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.group_type.yml b/config/language.content_settings.taxonomy_term.group_type.yml
deleted file mode 100644
index b78da35..0000000
--- a/config/language.content_settings.taxonomy_term.group_type.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 9a3d1328-faaa-4666-ad21-9384c11360d1
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.group_type
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.group_type
-target_entity_type_id: taxonomy_term
-target_bundle: group_type
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.license.yml b/config/language.content_settings.taxonomy_term.license.yml
deleted file mode 100644
index a1c8d4e..0000000
--- a/config/language.content_settings.taxonomy_term.license.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 24913fbb-b33d-4634-898d-fe08a9d869bb
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.license
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.license
-target_entity_type_id: taxonomy_term
-target_bundle: license
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.people_type.yml b/config/language.content_settings.taxonomy_term.people_type.yml
deleted file mode 100644
index 4750701..0000000
--- a/config/language.content_settings.taxonomy_term.people_type.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 30764dd4-5645-49b8-b46e-0da670848a67
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.people_type
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.people_type
-target_entity_type_id: taxonomy_term
-target_bundle: people_type
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.resource_type.yml b/config/language.content_settings.taxonomy_term.resource_type.yml
deleted file mode 100644
index 8113a4e..0000000
--- a/config/language.content_settings.taxonomy_term.resource_type.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 517ed3eb-afb7-42c2-8cb9-95fdd878a274
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.resource_type
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.resource_type
-target_entity_type_id: taxonomy_term
-target_bundle: resource_type
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.services.yml b/config/language.content_settings.taxonomy_term.services.yml
deleted file mode 100644
index 10dd2af..0000000
--- a/config/language.content_settings.taxonomy_term.services.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: f336c8ac-746d-4396-b1e7-198264db78b5
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.services
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: true
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.services
-target_entity_type_id: taxonomy_term
-target_bundle: services
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.taxonomy_term.tags.yml b/config/language.content_settings.taxonomy_term.tags.yml
deleted file mode 100644
index 0f029f7..0000000
--- a/config/language.content_settings.taxonomy_term.tags.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 8a94b08e-afaf-4ab0-b841-c489ff663fd6
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.tags
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.tags
-target_entity_type_id: taxonomy_term
-target_bundle: tags
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.taxonomy_term.technologies.yml b/config/language.content_settings.taxonomy_term.technologies.yml
deleted file mode 100644
index 9bb2acc..0000000
--- a/config/language.content_settings.taxonomy_term.technologies.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: f2e4daeb-e0be-4e83-bb1b-1cb6673b044e
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.technologies
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.technologies
-target_entity_type_id: taxonomy_term
-target_bundle: technologies
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.taxonomy_term.topics.yml b/config/language.content_settings.taxonomy_term.topics.yml
deleted file mode 100644
index 3f15793..0000000
--- a/config/language.content_settings.taxonomy_term.topics.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 6f6606c7-0264-447e-b026-128140465524
-langcode: en
-status: true
-dependencies:
- config:
- - taxonomy.vocabulary.topics
- module:
- - content_translation
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: taxonomy_term.topics
-target_entity_type_id: taxonomy_term
-target_bundle: topics
-default_langcode: site_default
-language_alterable: true
diff --git a/config/language.content_settings.user.user.yml b/config/language.content_settings.user.user.yml
deleted file mode 100644
index 39561eb..0000000
--- a/config/language.content_settings.user.user.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-uuid: a97e538d-fa21-4db3-b1f5-30fed10076d3
-langcode: en
-status: true
-dependencies:
- module:
- - content_translation
- - user
-third_party_settings:
- content_translation:
- enabled: false
- bundle_settings:
- untranslatable_fields_hide: '0'
-id: user.user
-target_entity_type_id: user
-target_bundle: user
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml b/config/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml
deleted file mode 100644
index 2d388c0..0000000
--- a/config/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 8d0f3bf0-d7f0-44bb-865f-9634cf158c50
-langcode: es
-status: true
-dependencies:
- config:
- - webform.webform.attend_the_tech_and_rev_workshop
-id: webform_submission.attend_the_tech_and_rev_workshop
-target_entity_type_id: webform_submission
-target_bundle: attend_the_tech_and_rev_workshop
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.webform_submission.contact.yml b/config/language.content_settings.webform_submission.contact.yml
deleted file mode 100644
index b447739..0000000
--- a/config/language.content_settings.webform_submission.contact.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 68d143e7-26b0-40f6-b266-0f938216f97f
-langcode: en
-status: true
-dependencies:
- config:
- - webform.webform.contact
-id: webform_submission.contact
-target_entity_type_id: webform_submission
-target_bundle: contact
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.webform_submission.general_services.yml b/config/language.content_settings.webform_submission.general_services.yml
deleted file mode 100644
index 826421f..0000000
--- a/config/language.content_settings.webform_submission.general_services.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 8419a60c-d48f-4458-bd40-8ad10d5eee57
-langcode: en
-status: true
-dependencies:
- config:
- - webform.webform.general_services
-id: webform_submission.general_services
-target_entity_type_id: webform_submission
-target_bundle: general_services
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.content_settings.webform_submission.training.yml b/config/language.content_settings.webform_submission.training.yml
deleted file mode 100644
index 5e241fb..0000000
--- a/config/language.content_settings.webform_submission.training.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 71a51211-fd5d-40a6-be02-2f4399052643
-langcode: en
-status: true
-dependencies:
- config:
- - webform.webform.training
-id: webform_submission.training
-target_entity_type_id: webform_submission
-target_bundle: training
-default_langcode: site_default
-language_alterable: false
diff --git a/config/language.entity.en.yml b/config/language.entity.en.yml
deleted file mode 100644
index b0405cb..0000000
--- a/config/language.entity.en.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 7fba3579-9abe-4f55-8496-3d08330f5a4e
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: lBXDpdDPXQtrfTJQhr6MjRJJEEyYSoRJ0acdvHLsWeA
-id: en
-label: English
-direction: ltr
-weight: 0
-locked: false
diff --git a/config/language.entity.es.yml b/config/language.entity.es.yml
deleted file mode 100644
index c1aaf21..0000000
--- a/config/language.entity.es.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: 4f38e8b5-4ead-41ee-8bc1-062d29b7cfd1
-langcode: en
-status: true
-dependencies: { }
-id: es
-label: Spanish
-direction: ltr
-weight: 1
-locked: false
diff --git a/config/language.entity.und.yml b/config/language.entity.und.yml
deleted file mode 100644
index 1bdea4c..0000000
--- a/config/language.entity.und.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: bc0252ab-fe6f-4c55-a693-0e52103ff7ec
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: eNX6lLCKDaY83nCMh20My---y03KbiFlv802DKCCpvg
-id: und
-label: 'Not specified'
-direction: ltr
-weight: 2
-locked: true
diff --git a/config/language.entity.zxx.yml b/config/language.entity.zxx.yml
deleted file mode 100644
index 778caec..0000000
--- a/config/language.entity.zxx.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 94bb11c3-10e5-4433-bc95-f5a4b989a21b
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: 35CefWbnzaiytcg3acexxz_GTvuwIjYd_ZTcmmR-tXA
-id: zxx
-label: 'Not applicable'
-direction: ltr
-weight: 3
-locked: true
diff --git a/config/language.mappings.yml b/config/language.mappings.yml
deleted file mode 100644
index bdfaae2..0000000
--- a/config/language.mappings.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-_core:
- default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc
-map:
- 'no': nb
- pt: pt-pt
- zh: zh-hans
- zh-tw: zh-hant
- zh-hk: zh-hant
- zh-mo: zh-hant
- zh-cht: zh-hant
- zh-cn: zh-hans
- zh-sg: zh-hans
- zh-chs: zh-hans
diff --git a/config/language.negotiation.yml b/config/language.negotiation.yml
deleted file mode 100644
index 1eb9640..0000000
--- a/config/language.negotiation.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-_core:
- default_config_hash: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM
-session:
- parameter: language
-url:
- source: path_prefix
- prefixes:
- en: ''
- es: es
- domains:
- en: ''
- es: ''
-selected_langcode: site_default
diff --git a/config/language.types.yml b/config/language.types.yml
deleted file mode 100644
index 1808f38..0000000
--- a/config/language.types.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-_core:
- default_config_hash: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8
-all:
- - language_interface
- - language_content
- - language_url
-configurable:
- - language_interface
-negotiation:
- language_content:
- enabled:
- language-interface: 0
- language_url:
- enabled:
- language-url: 0
- language-url-fallback: 1
- language_interface:
- enabled:
- language-url: 0
diff --git a/config/language/es/block.block.agarica_powered_by_drutopia.yml b/config/language/es/block.block.agarica_powered_by_drutopia.yml
deleted file mode 100644
index b9dc856..0000000
--- a/config/language/es/block.block.agarica_powered_by_drutopia.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-settings:
- label: 'Desarrollado por Drutopia'
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.bulma_main_menu.yml b/config/language/es/block.block.bulma_main_menu.yml
deleted file mode 100644
index 4d2bdfa..0000000
--- a/config/language/es/block.block.bulma_main_menu.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-settings:
- label: Navegación
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.octavia_main_menu.yml b/config/language/es/block.block.octavia_main_menu.yml
deleted file mode 100644
index 4d2bdfa..0000000
--- a/config/language/es/block.block.octavia_main_menu.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-settings:
- label: Navegación
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/block_visibility_groups.block_visibility_group.search.yml b/config/language/es/block_visibility_groups.block_visibility_group.search.yml
deleted file mode 100644
index 489f7e9..0000000
--- a/config/language/es/block_visibility_groups.block_visibility_group.search.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Buscar
diff --git a/config/language/es/contact.form.personal.yml b/config/language/es/contact.form.personal.yml
deleted file mode 100644
index cefd43b..0000000
--- a/config/language/es/contact.form.personal.yml
+++ /dev/null
@@ -1 +0,0 @@
-message: '¡Gracias por contactarnos! Nos pondremos en contacto con usted tan pronto como uno de nosotros (probablemente Clayton) revise nuestro correo electrónico.'
diff --git a/config/language/es/core.base_field_override.node.people.title.yml b/config/language/es/core.base_field_override.node.people.title.yml
deleted file mode 100644
index 42570d1..0000000
--- a/config/language/es/core.base_field_override.node.people.title.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Nombre
diff --git a/config/language/es/core.entity_view_mode.paragraph.preview.yml b/config/language/es/core.entity_view_mode.paragraph.preview.yml
deleted file mode 100644
index ded3edb..0000000
--- a/config/language/es/core.entity_view_mode.paragraph.preview.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: 'Vista previa'
diff --git a/config/language/es/field.field.block_content.basic.body.yml b/config/language/es/field.field.block_content.basic.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.block_content.basic.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.action.body.yml b/config/language/es/field.field.node.action.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.action.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.action.field_tags.yml b/config/language/es/field.field.node.action.field_tags.yml
deleted file mode 100644
index fedbf4f..0000000
--- a/config/language/es/field.field.node.action.field_tags.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Etiquetas
diff --git a/config/language/es/field.field.node.article.body.yml b/config/language/es/field.field.node.article.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.article.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.article.comment.yml b/config/language/es/field.field.node.article.comment.yml
deleted file mode 100644
index 9ec8e29..0000000
--- a/config/language/es/field.field.node.article.comment.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Comentarios
diff --git a/config/language/es/field.field.node.article.field_tags.yml b/config/language/es/field.field.node.article.field_tags.yml
deleted file mode 100644
index fedbf4f..0000000
--- a/config/language/es/field.field.node.article.field_tags.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Etiquetas
diff --git a/config/language/es/field.field.node.blog.body.yml b/config/language/es/field.field.node.blog.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.blog.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.blog.comment.yml b/config/language/es/field.field.node.blog.comment.yml
deleted file mode 100644
index 9ec8e29..0000000
--- a/config/language/es/field.field.node.blog.comment.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Comentarios
diff --git a/config/language/es/field.field.node.blog.field_tags.yml b/config/language/es/field.field.node.blog.field_tags.yml
deleted file mode 100644
index fedbf4f..0000000
--- a/config/language/es/field.field.node.blog.field_tags.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Etiquetas
diff --git a/config/language/es/field.field.node.campaign.body.yml b/config/language/es/field.field.node.campaign.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.campaign.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.case_study.body.yml b/config/language/es/field.field.node.case_study.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.case_study.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.case_study.field_case_study_status.yml b/config/language/es/field.field.node.case_study.field_case_study_status.yml
deleted file mode 100644
index 1448df3..0000000
--- a/config/language/es/field.field.node.case_study.field_case_study_status.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Estado
diff --git a/config/language/es/field.field.node.case_study.field_services.yml b/config/language/es/field.field.node.case_study.field_services.yml
deleted file mode 100644
index 051afb6..0000000
--- a/config/language/es/field.field.node.case_study.field_services.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Servicios
diff --git a/config/language/es/field.field.node.event.body.yml b/config/language/es/field.field.node.event.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.event.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.event.field_tags.yml b/config/language/es/field.field.node.event.field_tags.yml
deleted file mode 100644
index fedbf4f..0000000
--- a/config/language/es/field.field.node.event.field_tags.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Etiquetas
diff --git a/config/language/es/field.field.node.page.body.yml b/config/language/es/field.field.node.page.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.page.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
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/field.field.node.resource.body.yml b/config/language/es/field.field.node.resource.body.yml
deleted file mode 100644
index 92785c1..0000000
--- a/config/language/es/field.field.node.resource.body.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Cuerpo
diff --git a/config/language/es/field.field.node.resource.field_tags.yml b/config/language/es/field.field.node.resource.field_tags.yml
deleted file mode 100644
index fedbf4f..0000000
--- a/config/language/es/field.field.node.resource.field_tags.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Etiquetas
diff --git a/config/language/es/metatag.metatag_defaults.front.yml b/config/language/es/metatag.metatag_defaults.front.yml
deleted file mode 100644
index 60f1d0b..0000000
--- a/config/language/es/metatag.metatag_defaults.front.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: 'Página de Inicio'
diff --git a/config/language/es/metatag.metatag_defaults.node.yml b/config/language/es/metatag.metatag_defaults.node.yml
deleted file mode 100644
index 1b2eb56..0000000
--- a/config/language/es/metatag.metatag_defaults.node.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Contenido
diff --git a/config/language/es/metatag.metatag_defaults.user.yml b/config/language/es/metatag.metatag_defaults.user.yml
deleted file mode 100644
index f5d71ec..0000000
--- a/config/language/es/metatag.metatag_defaults.user.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: Usuario
diff --git a/config/language/es/node.type.action.yml b/config/language/es/node.type.action.yml
deleted file mode 100644
index 66ccc05..0000000
--- a/config/language/es/node.type.action.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: Acción
diff --git a/config/language/es/node.type.case_study.yml b/config/language/es/node.type.case_study.yml
deleted file mode 100644
index 42b9156..0000000
--- a/config/language/es/node.type.case_study.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: 'Case Study'
diff --git a/config/language/es/node.type.page.yml b/config/language/es/node.type.page.yml
deleted file mode 100644
index 1764032..0000000
--- a/config/language/es/node.type.page.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: Página
diff --git a/config/language/es/pathauto.pattern.case_study.yml b/config/language/es/pathauto.pattern.case_study.yml
deleted file mode 100644
index 352f27d..0000000
--- a/config/language/es/pathauto.pattern.case_study.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: 'Case Study'
diff --git a/config/language/es/search_api.index.action.yml b/config/language/es/search_api.index.action.yml
deleted file mode 100644
index 66ccc05..0000000
--- a/config/language/es/search_api.index.action.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: Acción
diff --git a/config/language/es/search_api.index.case_study.yml b/config/language/es/search_api.index.case_study.yml
deleted file mode 100644
index 42b9156..0000000
--- a/config/language/es/search_api.index.case_study.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: 'Case Study'
diff --git a/config/language/es/shortcut.set.default.yml b/config/language/es/shortcut.set.default.yml
deleted file mode 100644
index 06bd1d7..0000000
--- a/config/language/es/shortcut.set.default.yml
+++ /dev/null
@@ -1 +0,0 @@
-label: 'Por defecto'
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/system.menu.main.yml b/config/language/es/system.menu.main.yml
deleted file mode 100644
index 1599e4f..0000000
--- a/config/language/es/system.menu.main.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-label: Navegación
-description: 'Sección de enlaces'
diff --git a/config/language/es/taxonomy.vocabulary.services.yml b/config/language/es/taxonomy.vocabulary.services.yml
deleted file mode 100644
index 77e8354..0000000
--- a/config/language/es/taxonomy.vocabulary.services.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: Servicios
diff --git a/config/language/es/taxonomy.vocabulary.tags.yml b/config/language/es/taxonomy.vocabulary.tags.yml
deleted file mode 100644
index 3976e6a..0000000
--- a/config/language/es/taxonomy.vocabulary.tags.yml
+++ /dev/null
@@ -1 +0,0 @@
-name: Etiquetas
diff --git a/config/language/es/tour.tour.locale.yml b/config/language/es/tour.tour.locale.yml
deleted file mode 100644
index 30fab97..0000000
--- a/config/language/es/tour.tour.locale.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-tips:
- locale-search:
- label: Buscar
diff --git a/config/language/es/tour.tour.search-api-index-fields.yml b/config/language/es/tour.tour.search-api-index-fields.yml
deleted file mode 100644
index 30348d1..0000000
--- a/config/language/es/tour.tour.search-api-index-fields.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-tips:
- search-api-index-fields-label:
- label: Etiqueta
- search-api-index-fields-type:
- label: Tipo
diff --git a/config/language/es/tour.tour.search-api-index.yml b/config/language/es/tour.tour.search-api-index.yml
deleted file mode 100644
index 104df2d..0000000
--- a/config/language/es/tour.tour.search-api-index.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-tips:
- search-api-index-status:
- label: Estado
diff --git a/config/language/es/tour.tour.search-api-server.yml b/config/language/es/tour.tour.search-api-server.yml
deleted file mode 100644
index 2d17522..0000000
--- a/config/language/es/tour.tour.search-api-server.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-tips:
- search-api-server-status:
- label: Estado
diff --git a/config/language/es/tour.tour.views-ui.yml b/config/language/es/tour.tour.views-ui.yml
deleted file mode 100644
index f361187..0000000
--- a/config/language/es/tour.tour.views-ui.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-tips:
- views-ui-fields:
- label: Campos
- views-ui-preview:
- label: 'Vista previa'
diff --git a/config/language/es/views.view.action.yml b/config/language/es/views.view.action.yml
deleted file mode 100644
index 8129545..0000000
--- a/config/language/es/views.view.action.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-label: Acción
-display:
- default:
- display_options:
- title: Acciones
- page_listing:
- display_title: Página
- display_options:
- menu:
- title: Acciones
diff --git a/config/language/es/views.view.archive.yml b/config/language/es/views.view.archive.yml
deleted file mode 100644
index 87e841b..0000000
--- a/config/language/es/views.view.archive.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- block_1:
- display_title: Bloque
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.article.yml b/config/language/es/views.view.article.yml
deleted file mode 100644
index 51ad2a5..0000000
--- a/config/language/es/views.view.article.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-display:
- page_listing:
- display_title: Página
diff --git a/config/language/es/views.view.block_content.yml b/config/language/es/views.view.block_content.yml
deleted file mode 100644
index 44c3c25..0000000
--- a/config/language/es/views.view.block_content.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- display_options:
- fields:
- operations:
- label: Operaciones
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.blog.yml b/config/language/es/views.view.blog.yml
deleted file mode 100644
index bd21b4f..0000000
--- a/config/language/es/views.view.blog.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-display:
- embed_listing:
- display_options:
- footer:
- area:
- content:
- value: |
-
- format: full_html
- page_listing:
- display_title: Página
diff --git a/config/language/es/views.view.campaign.yml b/config/language/es/views.view.campaign.yml
deleted file mode 100644
index 412ce66..0000000
--- a/config/language/es/views.view.campaign.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-display:
- default:
- display_options:
- title: Campañas
- page_listing:
- display_title: Página
- display_options:
- menu:
- title: Campañas
diff --git a/config/language/es/views.view.case_study.yml b/config/language/es/views.view.case_study.yml
deleted file mode 100644
index 3407819..0000000
--- a/config/language/es/views.view.case_study.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-display:
- block_work:
- display_title: Proyectos
- default:
- display_options:
- title: 'Case Study'
- block_promoted:
- display_options:
- title: Proyectos
- page_listing:
- display_title: Página
- display_options:
- menu:
- title: Proyectos
-description: Proyectos
-label: 'Case Study'
diff --git a/config/language/es/views.view.comment.yml b/config/language/es/views.view.comment.yml
deleted file mode 100644
index 8a30f31..0000000
--- a/config/language/es/views.view.comment.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-label: Comentarios
-display:
- default:
- display_title: 'Por defecto'
- display_options:
- title: Comentarios
- fields:
- comment_bulk_form:
- action_title: Acción
- subject:
- label: Asunto
- operations:
- label: Operaciones
- exposed_form:
- options:
- submit_button: Filter
- filters:
- subject:
- expose:
- label: Asunto
- page_published:
- display_options:
- menu:
- title: Comentarios
- page_unapproved:
- display_options:
- fields:
- comment_bulk_form:
- action_title: Acción
- subject:
- label: Asunto
- operations:
- label: Operaciones
- filters:
- subject:
- expose:
- label: Asunto
diff --git a/config/language/es/views.view.comments_recent.yml b/config/language/es/views.view.comments_recent.yml
deleted file mode 100644
index 017497e..0000000
--- a/config/language/es/views.view.comments_recent.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- block_1:
- display_title: Bloque
diff --git a/config/language/es/views.view.content.yml b/config/language/es/views.view.content.yml
deleted file mode 100644
index 4f05e81..0000000
--- a/config/language/es/views.view.content.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-label: Contenido
-display:
- default:
- display_title: 'Por defecto'
- display_options:
- title: Contenido
- fields:
- title:
- label: Título
- status:
- label: Estado
- operations:
- label: Operaciones
- exposed_form:
- options:
- submit_button: Filter
- filters:
- title:
- expose:
- label: Título
- status:
- expose:
- label: Estado
- page_1:
- display_title: Página
- display_options:
- menu:
- title: Contenido
- tab_options:
- title: Contenido
diff --git a/config/language/es/views.view.content_recent.yml b/config/language/es/views.view.content_recent.yml
deleted file mode 100644
index 017497e..0000000
--- a/config/language/es/views.view.content_recent.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- block_1:
- display_title: Bloque
diff --git a/config/language/es/views.view.event.yml b/config/language/es/views.view.event.yml
deleted file mode 100644
index 51ad2a5..0000000
--- a/config/language/es/views.view.event.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-display:
- page_listing:
- display_title: Página
diff --git a/config/language/es/views.view.files.yml b/config/language/es/views.view.files.yml
deleted file mode 100644
index 2642159..0000000
--- a/config/language/es/views.view.files.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- display_options:
- fields:
- filename:
- label: Nombre
- status:
- label: Estado
- exposed_form:
- options:
- submit_button: Filter
- filters:
- status:
- expose:
- label: Estado
- page_2:
- display_options:
- fields:
- entity_label:
- label: Entidad
diff --git a/config/language/es/views.view.frontpage.yml b/config/language/es/views.view.frontpage.yml
deleted file mode 100644
index 853315a..0000000
--- a/config/language/es/views.view.frontpage.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.glossary.yml b/config/language/es/views.view.glossary.yml
deleted file mode 100644
index d6e99c7..0000000
--- a/config/language/es/views.view.glossary.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- display_options:
- fields:
- title:
- label: Título
- page_1:
- display_title: Página
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.people.yml b/config/language/es/views.view.people.yml
deleted file mode 100644
index a6f812e..0000000
--- a/config/language/es/views.view.people.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- page_listing:
- display_title: Página
diff --git a/config/language/es/views.view.redirect.yml b/config/language/es/views.view.redirect.yml
deleted file mode 100644
index 371489c..0000000
--- a/config/language/es/views.view.redirect.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-display:
- default:
- display_options:
- exposed_form:
- options:
- submit_button: Filter
- fields:
- created:
- label: Creado
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.redirect_404.yml b/config/language/es/views.view.redirect_404.yml
deleted file mode 100644
index d18c0f7..0000000
--- a/config/language/es/views.view.redirect_404.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-display:
- default:
- display_options:
- exposed_form:
- options:
- submit_button: Filter
- fields:
- path:
- label: Ruta
- redirect_404_operations:
- label: Operaciones
- filters:
- path:
- expose:
- label: Ruta
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.resource.yml b/config/language/es/views.view.resource.yml
deleted file mode 100644
index 51ad2a5..0000000
--- a/config/language/es/views.view.resource.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-display:
- page_listing:
- display_title: Página
diff --git a/config/language/es/views.view.search.yml b/config/language/es/views.view.search.yml
deleted file mode 100644
index 9debb5b..0000000
--- a/config/language/es/views.view.search.yml
+++ /dev/null
@@ -1,13 +0,0 @@
-label: Buscar
-display:
- default:
- display_options:
- exposed_form:
- options:
- submit_button: Buscar
- title: Buscar
- page_1:
- display_title: Página
- display_options:
- menu:
- title: Buscar
diff --git a/config/language/es/views.view.taxonomy_term.yml b/config/language/es/views.view.taxonomy_term.yml
deleted file mode 100644
index 853315a..0000000
--- a/config/language/es/views.view.taxonomy_term.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.user_admin_people.yml b/config/language/es/views.view.user_admin_people.yml
deleted file mode 100644
index c3ba7e3..0000000
--- a/config/language/es/views.view.user_admin_people.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- display_options:
- fields:
- status:
- label: Estado
- operations:
- label: Operaciones
- exposed_form:
- options:
- submit_button: Filter
- filters:
- status:
- group_info:
- label: Estado
- permission:
- expose:
- label: Permiso
- page_1:
- display_title: Página
- display_options:
- menu:
- title: Lista
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.webform_submissions.yml b/config/language/es/views.view.webform_submissions.yml
deleted file mode 100644
index 883a907..0000000
--- a/config/language/es/views.view.webform_submissions.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-display:
- default:
- display_options:
- fields:
- created:
- label: Creado
- view_webform_submission:
- label: Operaciones
- embed_administer:
- display_options:
- fields:
- webform_submission_bulk_form:
- action_title: Acción
- created:
- label: Creado
- operations:
- label: Operaciones
- embed_manage:
- display_options:
- fields:
- webform_submission_bulk_form:
- action_title: Acción
- created:
- label: Creado
- view_webform_submission:
- label: Operaciones
- edit_webform_submission:
- label: Operaciones
- embed_review:
- display_options:
- fields:
- created:
- label: Creado
- view_webform_submission:
- label: Operaciones
diff --git a/config/language/es/views.view.webmentions.yml b/config/language/es/views.view.webmentions.yml
deleted file mode 100644
index 289bbd9..0000000
--- a/config/language/es/views.view.webmentions.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-display:
- default:
- display_options:
- fields:
- webmention_bulk_form:
- action_title: Acción
- type:
- label: Tipo
- created:
- label: Creado
- filters:
- type:
- expose:
- label: Tipo
- page_1:
- display_title: Página
diff --git a/config/language/es/views.view.who_s_new.yml b/config/language/es/views.view.who_s_new.yml
deleted file mode 100644
index d50eda9..0000000
--- a/config/language/es/views.view.who_s_new.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-display:
- default:
- display_title: 'Por defecto'
- block_1:
- display_options:
- block_category: Usuario
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.settings.yml b/config/language/es/webform.settings.yml
deleted file mode 100644
index 90d0221..0000000
--- a/config/language/es/webform.settings.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-settings:
- default_form_close_message: 'Sorry…This form is closed to new submissions.'
- default_submit_button_label: Enviar
- default_delete_button_label: Eliminar
- default_preview_next_button_label: 'Vista previa'
- default_preview_label: 'Vista previa'
-mail:
- default_subject: 'Webform submission from: [webform_submission:source-entity]'
diff --git a/config/language/es/webform.webform.capacitacion.yml b/config/language/es/webform.webform.capacitacion.yml
deleted file mode 100644
index 7b172f3..0000000
--- a/config/language/es/webform.webform.capacitacion.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-elements: |
- intro_text:
- '#text': "Gracias por el interetes en nuestras capacitaciones. Solo necesitamos un poco de información acerca de lo que buscas y nos pondremos en contacto pronto.
\r\n"
- name:
- '#title': Nombre
- topics:
- '#title': Temas
- '#options':
- 'Introduction to Drupal': 'Introducción a Drupal'
- 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'
- 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'
- 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'
- 'Drupal theming and templating': 'Diseño y theming en Drupal'
- 'Data migration': 'Migración de Datos'
- size:
- '#title': Tamaño
- '#options':
- 'Personal training': 'Capacitación personal'
- 'Small group (2-5)': 'Grupo pequeño(2-5)'
- 'Larger group (more than 5)': 'Grupo grande (mas de 5)'
- actions:
- '#submit__label': 'Pedir una capacitación'
diff --git a/config/language/es/webform.webform.contact.yml b/config/language/es/webform.webform.contact.yml
deleted file mode 100644
index f11491c..0000000
--- a/config/language/es/webform.webform.contact.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/language/es/webform.webform.contacto.yml b/config/language/es/webform.webform.contacto.yml
deleted file mode 100644
index c54f21c..0000000
--- a/config/language/es/webform.webform.contacto.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-title: Contacto
-elements: |
- introduction:
- '#markup': 'Usted – nuestros clientes, colegas, y admiradores locos – on 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
- how_did_you_find_us:
- '#title': '¿Cómo se enteró de nosotros?'
- '#options':
- 'A professional or personal recommendation': 'Una recomendación profesional o personal'
- 'I met an Agaric and was given a business card': 'Conocí a un Agárico y me dieron una tarjeta de presentación'
- 'Google or something similar': 'Google o algo similar'
- 'The Agaric logo appeared on toast I made': 'El logo de Agaric apareció en una tostada que hice'
- '#other__option_label': Otro
- 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.'
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/language/es/webform.webform.training.yml b/config/language/es/webform.webform.training.yml
deleted file mode 100644
index 7b172f3..0000000
--- a/config/language/es/webform.webform.training.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-elements: |
- intro_text:
- '#text': "Gracias por el interetes en nuestras capacitaciones. Solo necesitamos un poco de información acerca de lo que buscas y nos pondremos en contacto pronto.
\r\n"
- name:
- '#title': Nombre
- topics:
- '#title': Temas
- '#options':
- 'Introduction to Drupal': 'Introducción a Drupal'
- 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'
- 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'
- 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'
- 'Drupal theming and templating': 'Diseño y theming en Drupal'
- 'Data migration': 'Migración de Datos'
- size:
- '#title': Tamaño
- '#options':
- 'Personal training': 'Capacitación personal'
- 'Small group (2-5)': 'Grupo pequeño(2-5)'
- 'Larger group (more than 5)': 'Grupo grande (mas de 5)'
- actions:
- '#submit__label': 'Pedir una capacitación'
diff --git a/config/locale.settings.yml b/config/locale.settings.yml
deleted file mode 100644
index 970cc15..0000000
--- a/config/locale.settings.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-_core:
- default_config_hash: cSdYeE-_AQETCNZnl8BMFS9-sVn5--VzAYILkpPBUbM
-cache_strings: true
-translate_english: false
-javascript:
- directory: languages
-translation:
- use_source: remote_and_local
- default_filename: '%project-%version.%language.po'
- default_server_pattern: 'https://ftp.drupal.org/files/translations/%core/%project/%project-%version.%language.po'
- overwrite_customized: false
- overwrite_not_customized: true
- update_interval_days: 0
- path: sites/default/files/translations
- import_enabled: true
diff --git a/config/mailchimp.settings.yml b/config/mailchimp.settings.yml
deleted file mode 100644
index 2b0eadb..0000000
--- a/config/mailchimp.settings.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-_core:
- default_config_hash: x8k6uOqmSHPqpp71jYGxHF3_SAs3U-Pha3YCntQIhPU
-api_key: 0d9708666001345ed62e71b9744aca35-us20
-api_timeout: 10
-cron: false
-batch_limit: 100
-api_classname: Mailchimp\Mailchimp
-test_mode: false
-enable_connected: false
-connected_id: null
-connected_paths: null
-optin_check_email_msg: 'Please check your email to confirm your subscription.'
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/markdown.settings.yml b/config/markdown.settings.yml
deleted file mode 100644
index 38f90b8..0000000
--- a/config/markdown.settings.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
- default_config_hash: BGlnbueWmcxablTviSA1SF0-yNvbNkUjnvYMMFuUl24
-markdown_library: php-markdown
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/metatag.metatag_defaults.front.yml b/config/metatag.metatag_defaults.front.yml
deleted file mode 100644
index a4b4784..0000000
--- a/config/metatag.metatag_defaults.front.yml
+++ /dev/null
@@ -1,30 +0,0 @@
-uuid: 91de18fd-8c24-49d4-a042-e8019f76b6d5
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: 1noCXlegCr5HFehQRF1ViXy1jhU1jZ_sNN99a8Sj5jo
-id: front
-label: 'Front page'
-tags:
- shortlink: '[site:url]'
- image_src: 'https://agaric.coop/themes/custom/agarica/patternlibrary/agaric/images/agaric-975x400-v1.png'
- description: 'We help cause-driven organizations meet their goals by building websites and other tools using free and open-source software.'
- title: 'Agaric Tech Cooperative - Web Strategy, Design and Development'
- canonical_url: '[site:url]'
- og_email: ask@agaric.coop
- og_postal_code: '02134'
- og_description: 'We help cause-driven organization meet their goals by building websites and other tools using free and open-source software.'
- og_phone_number: '(508) 283-3557'
- og_image: 'https://agaric.coop/themes/custom/agarica/patternlibrary/agaric/images/agaric-975x400-v1.png'
- og_region: Massachusetts
- og_locality: Boston
- og_site_name: 'Agaric Tech Cooperative'
- og_title: 'Agaric Tech Cooperative - Web Strategy, Design and Development'
- og_image_alt: Agaric.
- twitter_cards_image_alt: 'Two stylized mushrooms.'
- twitter_cards_image: 'https://agaric.coop/themes/custom/agarica/patternlibrary/agaric/images/agaric-square.png'
- twitter_cards_description: 'We help cause-driven organization meet their goals by building websites and other tools using free and open-source software.'
- twitter_cards_site: '@agaric'
- twitter_cards_title: 'Agaric Tech Cooperative'
- twitter_cards_type: summary
diff --git a/config/metatag.metatag_defaults.global.yml b/config/metatag.metatag_defaults.global.yml
deleted file mode 100644
index 02f6935..0000000
--- a/config/metatag.metatag_defaults.global.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-uuid: 4065b34e-19b7-4f43-8455-01bb2a48001e
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: sL588ui1E_8-2c_UupwyYxcqX2OVyMFp3HTLbbFqvPc
-id: global
-label: Global
-tags:
- title: '[current-page:title]'
- canonical_url: '[current-page:url]'
- og_site_name: Agaric
- og_title: '[current-page:title]'
- twitter_cards_site_id: '14375823'
- twitter_cards_page_url: '[current-page:url]'
- twitter_cards_site: '@agaric'
- twitter_cards_title: '[current-page:title]'
- twitter_cards_type: summary
diff --git a/config/metatag.metatag_defaults.node.yml b/config/metatag.metatag_defaults.node.yml
deleted file mode 100644
index 2744aa6..0000000
--- a/config/metatag.metatag_defaults.node.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-uuid: 3bfd819b-4e14-4e0a-add6-429a3995d81d
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: rpwvgyEURXLz_JjgMCrkS1rUv-0k3L79BpO-ReN7fDI
-id: node
-label: Content
-tags:
- image_src: '[node:field_image:entity:url]'
- title: '[node:title]'
- canonical_url: '[node:url]'
- og_description: '[node:field_summary]'
- og_image: '[node:field_image:entity:url]'
- og_site_name: Agaric
- og_title: '[node:title]'
- og_image_alt: '[node:field_image:alt]'
- twitter_cards_image_alt: '[node:field_image:alt]'
- twitter_cards_image: '[node:field_image:entity:url]'
- twitter_cards_description: '[node:field_summary]'
- twitter_cards_site: '@agaric'
- twitter_cards_title: '[node:title]'
- twitter_cards_type: summary
diff --git a/config/migrate_plus.migration_group.agaric.yml b/config/migrate_plus.migration_group.agaric.yml
deleted file mode 100644
index 964154b..0000000
--- a/config/migrate_plus.migration_group.agaric.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-uuid: 56b0ff59-0f10-408e-ab26-e7142a0d664e
-langcode: en
-status: true
-dependencies: { }
-id: agaric
-label: agaric
-description: ''
-source_type: null
-module: null
-shared_configuration: null
diff --git a/config/migrate_plus.migration_group.default.yml b/config/migrate_plus.migration_group.default.yml
deleted file mode 100644
index e136f51..0000000
--- a/config/migrate_plus.migration_group.default.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-uuid: ebf7bad7-82a1-4b78-8962-5b69dc39a374
-langcode: en
-status: true
-dependencies: { }
-id: default
-label: Default
-description: 'A container for any migrations not explicitly assigned to a group.'
-source_type: null
-module: null
-shared_configuration: null
diff --git a/config/node.type.case_study.yml b/config/node.type.case_study.yml
deleted file mode 100644
index 930caf5..0000000
--- a/config/node.type.case_study.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: f22ee73f-8ffc-4253-8cf4-ecef01a2a4c2
-langcode: en
-status: true
-dependencies:
- module:
- - indieweb_context
- - menu_ui
-third_party_settings:
- menu_ui:
- available_menus:
- - main
- parent: 'main:'
- indieweb_context:
- post_context_link_field: ''
- post_context_post_type: ''
-_core:
- default_config_hash: MRh-kbbNL2hwFapj6KIArv0J3_03XSkBNAtdKvf5vMk
-name: 'Case Study'
-type: case_study
-description: ''
-help: ''
-new_revision: true
-preview_mode: 0
-display_submitted: false
diff --git a/config/paragraphs.paragraphs_type.content_reference.yml b/config/paragraphs.paragraphs_type.content_reference.yml
deleted file mode 100644
index ca41392..0000000
--- a/config/paragraphs.paragraphs_type.content_reference.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: 16df13f1-60e7-42e2-8ea3-4de29259a16d
-langcode: en
-status: true
-dependencies:
- content:
- - 'file:file:052700be-3a94-41a7-8a54-f427611b5cf8'
-id: content_reference
-label: 'Content reference'
-icon_uuid: 052700be-3a94-41a7-8a54-f427611b5cf8
-description: 'Create an ordered list of any other content on the site.'
-behavior_plugins: { }
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/paragraphs.paragraphs_type.quotation_with_image.yml b/config/paragraphs.paragraphs_type.quotation_with_image.yml
deleted file mode 100644
index feb2df1..0000000
--- a/config/paragraphs.paragraphs_type.quotation_with_image.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: d613928a-85d1-421f-920a-4907e21c40d5
-langcode: en
-status: true
-dependencies:
- content:
- - 'file:file:28542b04-bbcd-4a47-a3fb-f18d2f3dc5a2'
-id: quotation_with_image
-label: 'Quotation with image'
-icon_uuid: 28542b04-bbcd-4a47-a3fb-f18d2f3dc5a2
-description: 'An emphasized quotation with an image that together span across the full width of the content area.'
-behavior_plugins: { }
diff --git a/config/paragraphs.paragraphs_type.title.yml b/config/paragraphs.paragraphs_type.title.yml
deleted file mode 100644
index 78cb47e..0000000
--- a/config/paragraphs.paragraphs_type.title.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: c3e070a2-1522-442f-b4bd-7a1e32464f1c
-langcode: en
-status: true
-dependencies: { }
-id: title
-label: Title
-icon_uuid: null
-description: 'A title for your content with an optional image and subtitle.'
-behavior_plugins: { }
diff --git a/config/paragraphs.paragraphs_type.video.yml b/config/paragraphs.paragraphs_type.video.yml
deleted file mode 100644
index 402f7d4..0000000
--- a/config/paragraphs.paragraphs_type.video.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-uuid: c6c20197-1a40-4854-879b-4dda01142e7f
-langcode: en
-status: true
-dependencies: { }
-_core:
- default_config_hash: l2oKRFDP1Dlnfp3Rt7Y7b32zx6EhEfcdxyUIBHM1Rao
-id: video
-label: Video
-icon_uuid: null
-description: 'For adding an embedded video from YouTube or Vimeo.'
-behavior_plugins: { }
diff --git a/config/paragraphs.paragraphs_type.view.yml b/config/paragraphs.paragraphs_type.view.yml
deleted file mode 100644
index 0fd56b1..0000000
--- a/config/paragraphs.paragraphs_type.view.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: fa75b78a-c5b6-4474-959d-9adb4b38b911
-langcode: en
-status: true
-dependencies: { }
-id: view
-label: View
-icon_uuid: null
-description: ''
-behavior_plugins: { }
diff --git a/config/paragraphs.paragraphs_type.webform.yml b/config/paragraphs.paragraphs_type.webform.yml
deleted file mode 100644
index 817ca50..0000000
--- a/config/paragraphs.paragraphs_type.webform.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-uuid: fda0eced-7d18-4a73-af1a-55ed0644fca1
-langcode: en
-status: true
-dependencies: { }
-id: webform
-label: Webform
-icon_uuid: null
-description: 'Embed a webform in your page.'
-behavior_plugins: { }
diff --git a/config/paragraphs_features.settings.yml b/config/paragraphs_features.settings.yml
deleted file mode 100644
index 08a07ec..0000000
--- a/config/paragraphs_features.settings.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-_core:
- default_config_hash: lQErqdedK_5v01xVINKpMQnPQNpp4vS6oMsdNYbPfTI
-dropdown_to_button: true
diff --git a/config/pathauto.pattern.case_study.yml b/config/pathauto.pattern.case_study.yml
deleted file mode 100644
index 429f97d..0000000
--- a/config/pathauto.pattern.case_study.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-uuid: 8cfbd0e3-7c2a-4d24-96d6-72c2175bf604
-langcode: en
-status: true
-dependencies:
- module:
- - node
-_core:
- default_config_hash: x86XjGDeiRblTVs3u7TjciPk57C3yHazk0SsjmACJXk
-id: case_study
-label: 'Case Study'
-type: 'canonical_entities:node'
-pattern: 'work/[node:title]'
-selection_criteria:
- 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1:
- id: 'entity_bundle:node'
- negate: false
- uuid: 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1
- context_mapping:
- node: node
- bundles:
- case_study: case_study
-selection_logic: and
-weight: -5
-relationships: { }
diff --git a/config/pathauto.pattern.vocabulary_terms.yml b/config/pathauto.pattern.vocabulary_terms.yml
deleted file mode 100644
index c676996..0000000
--- a/config/pathauto.pattern.vocabulary_terms.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-uuid: 45ca10be-f94d-408f-ade6-6c7ba90dc8b4
-langcode: en
-status: true
-dependencies:
- module:
- - ctools
- - taxonomy
-id: vocabulary_terms
-label: 'Vocabulary Terms'
-type: 'canonical_entities:taxonomy_term'
-pattern: '/[term:vocabulary]/[term:name]'
-selection_criteria:
- 275b9758-36fd-4489-adc3-ca85343c3194:
- id: 'entity_bundle:taxonomy_term'
- negate: false
- uuid: 275b9758-36fd-4489-adc3-ca85343c3194
- context_mapping:
- taxonomy_term: taxonomy_term
- bundles:
- services: services
- tags: tags
- technologies: technologies
-selection_logic: and
-weight: -5
-relationships: { }
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/redirect.settings.yml b/config/redirect.settings.yml
deleted file mode 100644
index e3e647a..0000000
--- a/config/redirect.settings.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-_core:
- default_config_hash: FEwQLW1wXW7fiJdG1B2bxW1c_-k6w-r-3V3bSsW6PqM
-auto_redirect: true
-default_status_code: 301
-passthrough_querystring: true
-warning: false
-ignore_admin_path: false
-access_check: false
-route_normalizer_enabled: true
diff --git a/config/redirect_404.settings.yml b/config/redirect_404.settings.yml
deleted file mode 100644
index 516824a..0000000
--- a/config/redirect_404.settings.yml
+++ /dev/null
@@ -1,155 +0,0 @@
-_core:
- default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM
-row_limit: 100000
-pages: |
- /wp-login.php
- /
- /xmlrpc.php
- /
- /LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /module.php?echo%2027ebdd36a8ac535e55aaeb6abf8a769d&feature=shell
- /
- /.well-known/assetlinks.json
- /
- /plus/read.php
- /
- /servlet?jumpto=status&p=login&q=loginForm
- /
- /data/cache/asd.php
- /
- /data/cache/flye.php
- /
- /plus/result.php
- /
- /phpmyadmin
- /
- /fuck.php
- /
- /plus/mytag_js.php?aid=9527
- /
- /~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /wordpress/wp-login.php
- /
- /coon.php
- /
- /sqlite/sqlite-manager/main.php
- /
- /plus/mytag_js.php?aid=9527
- /
- /dede/login.php
- /
- /blog/xmlrpc.php
- /
- /plus/90sec.php
- /
- /admin/login.php
- /
- /lx.php
- /
- /lequ.php
- /
- /blog/user/register
- /
- /payload.php
- /
- /PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /MYAdmin
- /
- /plus/mytag_js.php?aid=511348
- /
- /sb.php
- /
- /
- /sqlite/sqlitemanager/main.php
- /
- /mySqlDumper
- /
- /plus/mytag_js.php?aid=6022
- /
- /pmd/index.php
- /
- /sites/default/files/content-post.php
- /
- /gb.php
- /
- /s.php?c=echo%20InfoOS%3A%60uname%20-a%3Bid%60OSInfo%3B%20exit%3B
- /
- /modules/coder/coder_upgrade/scripts/coder_upgrade.run.php
- /
- /install/index.php.bak?insLockfile=a&install_demo_name=..%2Fdata%2Fadmin%2Fconfig_update.php&s_lang=a&step=11
- /
- /srv/svn/agaric/drupal-contrib/5/modules-all/transliteration/data/x6e.php
- /
- /config/secrets.yml
- /
- /ewebeditor/php/upload.php?action=save&language=en&style=toby57&type=FILE
- /
- /plus/da.php
- /
- /plus/car.php
- /
- /~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d
- /
- /~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /auth/register
- /
- /~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run
- /
- /keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run
-suppress_404: false
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/scn.settings.yml b/config/scn.settings.yml
deleted file mode 100644
index 1023a2f..0000000
--- a/config/scn.settings.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-scn_admin: 0
-scn_roles:
- authenticated: 0
- contributor: 0
- editor: 0
- manager: 0
- administrator: 0
- past: 0
- partner: 0
- staff: 0
-scn_maillist: ask@agaric.com
-scn_telegram: 0
-scn_telegram_bottoken: ''
-scn_telegram_chatids: ''
-scn_telegram_proxy: 0
-scn_telegram_proxy_server: ''
-scn_telegram_proxy_login: ''
-scn_telegram_proxy_password: ''
diff --git a/config/search_api.index.case_study.yml b/config/search_api.index.case_study.yml
deleted file mode 100644
index 14e5d73..0000000
--- a/config/search_api.index.case_study.yml
+++ /dev/null
@@ -1,303 +0,0 @@
-uuid: 552bb15c-6625-4c5c-9ac1-079ca864e7f2
-langcode: en
-status: true
-dependencies:
- config:
- - field.storage.node.field_case_study_client
- - field.storage.node.field_case_study_partners
- - field.storage.node.field_case_study_status
- - field.storage.node.field_case_study_subtitle
- - field.storage.node.field_case_study_team
- - field.storage.node.field_case_study_year
- - field.storage.node.field_services
- - field.storage.node.field_summary
- - search_api.server.database
- module:
- - node
- - user
- - search_api
-_core:
- default_config_hash: nBr-sIteA0eUXy98AelC21GVhp9W0nXOrtrNz0nvZ64
-id: case_study
-name: 'Case Study'
-description: 'An index for the case study content type.'
-read_only: false
-field_settings:
- changed:
- label: Changed
- datasource_id: 'entity:node'
- property_path: changed
- type: date
- dependencies:
- module:
- - node
- created:
- label: 'Authored on'
- datasource_id: 'entity:node'
- property_path: created
- type: date
- dependencies:
- module:
- - node
- field_case_study_client:
- label: Client
- datasource_id: 'entity:node'
- property_path: field_case_study_client
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_client
- field_case_study_partners:
- label: Partners
- datasource_id: 'entity:node'
- property_path: field_case_study_partners
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_partners
- field_case_study_status:
- label: Status
- datasource_id: 'entity:node'
- property_path: field_case_study_status
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_status
- field_case_study_subtitle:
- label: Subtitle
- datasource_id: 'entity:node'
- property_path: field_case_study_subtitle
- type: string
- dependencies:
- config:
- - field.storage.node.field_case_study_subtitle
- field_case_study_team:
- label: Team
- datasource_id: 'entity:node'
- property_path: field_case_study_team
- type: integer
- dependencies:
- config:
- - field.storage.node.field_case_study_team
- field_case_study_year:
- label: Year
- datasource_id: 'entity:node'
- property_path: field_case_study_year
- type: integer
- dependencies:
- config:
- - field.storage.node.field_case_study_year
- field_services:
- label: Services
- datasource_id: 'entity:node'
- property_path: field_services
- type: integer
- dependencies:
- config:
- - field.storage.node.field_services
- field_summary:
- label: Summary
- datasource_id: 'entity:node'
- property_path: field_summary
- type: text
- dependencies:
- config:
- - field.storage.node.field_summary
- name:
- label: 'Authored by » User » Name'
- datasource_id: 'entity:node'
- property_path: 'uid:entity:name'
- type: string
- dependencies:
- module:
- - node
- - user
- node_grants:
- label: 'Node access information'
- property_path: search_api_node_grants
- type: string
- indexed_locked: true
- type_locked: true
- hidden: true
- promote:
- label: 'Promoted to front page'
- datasource_id: 'entity:node'
- property_path: promote
- type: boolean
- dependencies:
- module:
- - node
- rendered_item:
- label: 'Rendered HTML output'
- property_path: rendered_item
- type: text
- configuration:
- roles:
- anonymous: anonymous
- view_mode:
- 'entity:node':
- action: ''
- article: ''
- blog: ''
- campaign: ''
- event: ''
- landing_page: ''
- page: ''
- people: ''
- resource: ''
- status:
- label: Published
- datasource_id: 'entity:node'
- property_path: status
- type: boolean
- indexed_locked: true
- type_locked: true
- dependencies:
- module:
- - node
- sticky:
- label: 'Sticky at top of lists'
- datasource_id: 'entity:node'
- property_path: sticky
- type: boolean
- dependencies:
- module:
- - node
- title:
- label: Title
- datasource_id: 'entity:node'
- property_path: title
- type: text
- boost: 8.0
- dependencies:
- module:
- - node
- uid:
- label: 'Authored by'
- datasource_id: 'entity:node'
- property_path: uid
- type: integer
- indexed_locked: true
- type_locked: true
- dependencies:
- module:
- - node
-datasource_settings:
- 'entity:node':
- bundles:
- default: false
- selected:
- - case_study
- languages:
- default: true
- selected: { }
-processor_settings:
- add_url: { }
- aggregated_field: { }
- content_access:
- weights:
- preprocess_query: -45
- entity_status: { }
- html_filter:
- weights:
- preprocess_index: -46
- preprocess_query: -47
- all_fields: false
- fields:
- - field_summary
- - rendered_item
- title: true
- alt: true
- tags:
- b: 2
- h1: 5
- h2: 3
- h3: 2
- strong: 2
- ignorecase:
- weights:
- preprocess_index: -49
- preprocess_query: -49
- all_fields: false
- fields:
- - field_summary
- - name
- - rendered_item
- - title
- language_with_fallback: { }
- rendered_item: { }
- stopwords:
- weights:
- preprocess_index: -48
- preprocess_query: -50
- all_fields: false
- fields:
- - field_summary
- - rendered_item
- - title
- stopwords:
- - a
- - an
- - and
- - are
- - as
- - at
- - be
- - but
- - by
- - for
- - if
- - in
- - into
- - is
- - it
- - 'no'
- - not
- - of
- - 'on'
- - or
- - s
- - such
- - t
- - that
- - the
- - their
- - then
- - there
- - these
- - they
- - this
- - to
- - was
- - will
- - with
- tokenizer:
- weights:
- preprocess_index: -44
- preprocess_query: -46
- all_fields: false
- fields:
- - field_summary
- - rendered_item
- - title
- spaces: ''
- overlap_cjk: 1
- minimum_word_size: '3'
- transliteration:
- weights:
- preprocess_index: -47
- preprocess_query: -48
- all_fields: false
- fields:
- - field_summary
- - name
- - rendered_item
- - title
-tracker_settings:
- default:
- indexing_order: fifo
-options:
- cron_limit: 50
- index_directly: true
- track_changes_in_references: true
-server: database
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/statistics.settings.yml b/config/statistics.settings.yml
deleted file mode 100644
index 1b4bef8..0000000
--- a/config/statistics.settings.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-_core:
- default_config_hash: 83DFdl59OsypYUif32K2NCB8eiszXAKCcay04oZCRpA
-count_content_views: 1
-display_max_age: 3600
diff --git a/config/stripe.settings.yml b/config/stripe.settings.yml
deleted file mode 100644
index 696dcb5..0000000
--- a/config/stripe.settings.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-environment: test
-apikey:
- test:
- public: ''
- secret: ''
- webhook: ''
- live:
- public: ''
- secret: ''
- webhook: ''
-_core:
- default_config_hash: rvasJJkL462tLuGEfcTDUE_1ReQ_UkXB1gsCVJtCIPg
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/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/block.block.agarica_account_menu.yml b/config/sync/block.block.agarica_account_menu.yml
similarity index 87%
rename from config/block.block.agarica_account_menu.yml
rename to config/sync/block.block.agarica_account_menu.yml
index 99fcace..d5b74f4 100644
--- a/config/block.block.agarica_account_menu.yml
+++ b/config/sync/block.block.agarica_account_menu.yml
@@ -1,4 +1,4 @@
-uuid: 3b1f525d-c361-4250-a2fc-1e23db783316
+uuid: a8f04425-a9b7-4f96-aaa4-575e983ccb8a
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/sync/block.block.agarica_article_topics_facet.yml b/config/sync/block.block.agarica_article_topics_facet.yml
new file mode 100644
index 0000000..2cb7852
--- /dev/null
+++ b/config/sync/block.block.agarica_article_topics_facet.yml
@@ -0,0 +1,31 @@
+uuid: 70a7531c-d494-4e0d-a8af-5a51af2fea1d
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.article_listing
+ - facets.facet.article_topics
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: NJuCGqhBPJPjTN_j6cwp541YwuuxuMQvoOsN-0Ps1CM
+id: agarica_article_topics_facet
+theme: agarica
+region: sidebar_first
+weight: 2
+provider: null
+plugin: 'facet_block:article_topics'
+settings:
+ id: 'facet_block:article_topics'
+ label: Topics
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: article_listing
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_article_type_facet.yml b/config/sync/block.block.agarica_article_type_facet.yml
new file mode 100644
index 0000000..e6f8d16
--- /dev/null
+++ b/config/sync/block.block.agarica_article_type_facet.yml
@@ -0,0 +1,31 @@
+uuid: 5082796c-be62-4c2a-a271-fec3847d2a56
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.article_listing
+ - facets.facet.article_type
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: 6j__NVO5JxKfFmr47ejTaks6k9o5x0N0yJch6CDerpk
+id: agarica_article_type_facet
+theme: agarica
+region: sidebar_first
+weight: 4
+provider: null
+plugin: 'facet_block:article_type'
+settings:
+ id: 'facet_block:article_type'
+ label: Type
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: article_listing
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_blog_topics_facet.yml b/config/sync/block.block.agarica_blog_topics_facet.yml
new file mode 100644
index 0000000..7ea7796
--- /dev/null
+++ b/config/sync/block.block.agarica_blog_topics_facet.yml
@@ -0,0 +1,31 @@
+uuid: 03b1e609-0418-4c7a-bd72-8258b2892a6c
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.blog_listing
+ - facets.facet.blog_topics
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: Max0E_eDhkIhOZZ7zxC1-5Eg6Mz-j4uA4GGQ6dx-8Ug
+id: agarica_blog_topics_facet
+theme: agarica
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'facet_block:blog_topics'
+settings:
+ id: 'facet_block:blog_topics'
+ label: Topics
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: blog_listing
+ context_mapping: { }
diff --git a/config/block.block.agarica_branding.yml b/config/sync/block.block.agarica_branding.yml
similarity index 91%
rename from config/block.block.agarica_branding.yml
rename to config/sync/block.block.agarica_branding.yml
index 1a09689..e8acea1 100644
--- a/config/block.block.agarica_branding.yml
+++ b/config/sync/block.block.agarica_branding.yml
@@ -1,4 +1,4 @@
-uuid: fc2abc82-1c90-4aad-ac9d-794d79b7c777
+uuid: dfc55d72-43fc-4f24-a520-f39383c4c6d4
langcode: en
status: true
dependencies:
@@ -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 87%
rename from config/block.block.agarica_content.yml
rename to config/sync/block.block.agarica_content.yml
index 65869ae..cf6a8ca 100644
--- a/config/block.block.agarica_content.yml
+++ b/config/sync/block.block.agarica_content.yml
@@ -1,4 +1,4 @@
-uuid: fd5572f7-ae8a-454c-9837-9bec9b96b455
+uuid: 16e6231a-5e2f-4e74-a448-14833226f234
langcode: en
status: true
dependencies:
@@ -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/sync/block.block.agarica_event_topics_facet.yml b/config/sync/block.block.agarica_event_topics_facet.yml
new file mode 100644
index 0000000..3ccb058
--- /dev/null
+++ b/config/sync/block.block.agarica_event_topics_facet.yml
@@ -0,0 +1,31 @@
+uuid: 4141fa43-45b0-41ae-b826-a361ba314ad6
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.event_listing
+ - facets.facet.event_topics
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: _25X0Udn7s-jp0sShOujXFbYzkjovYBpM4rMHE3G3XA
+id: agarica_event_topics_facet
+theme: agarica
+region: sidebar_first
+weight: 0
+provider: null
+plugin: 'facet_block:event_topics'
+settings:
+ id: 'facet_block:event_topics'
+ label: Topics
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: event_listing
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_event_type_facet.yml b/config/sync/block.block.agarica_event_type_facet.yml
new file mode 100644
index 0000000..94faeb0
--- /dev/null
+++ b/config/sync/block.block.agarica_event_type_facet.yml
@@ -0,0 +1,31 @@
+uuid: 756f8cd0-1777-4b68-9728-389d70729352
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.event_listing
+ - facets.facet.event_type
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: SQoKW-2hDhnWExYD72YAxwk_Pc4mBtszT9Jr7QowX38
+id: agarica_event_type_facet
+theme: agarica
+region: sidebar_first
+weight: 2
+provider: null
+plugin: 'facet_block:event_type'
+settings:
+ id: 'facet_block:event_type'
+ label: Type
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: event_listing
+ context_mapping: { }
diff --git a/config/block.block.agarica_footer_menu.yml b/config/sync/block.block.agarica_footer_menu.yml
similarity index 86%
rename from config/block.block.agarica_footer_menu.yml
rename to config/sync/block.block.agarica_footer_menu.yml
index 439affa..895d095 100644
--- a/config/block.block.agarica_footer_menu.yml
+++ b/config/sync/block.block.agarica_footer_menu.yml
@@ -1,4 +1,4 @@
-uuid: e0e2c708-36ce-4bd0-8465-54d042e8938a
+uuid: 361baebf-8a29-4fe0-bce0-cf119df7ab00
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
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..1550dac
--- /dev/null
+++ b/config/sync/block.block.agarica_group_operations.yml
@@ -0,0 +1,38 @@
+uuid: 585c1dcf-11af-4152-a5c2-6da22fd930d0
+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 88%
rename from config/block.block.agarica_help.yml
rename to config/sync/block.block.agarica_help.yml
index 723a927..cd4afb9 100644
--- a/config/block.block.agarica_help.yml
+++ b/config/sync/block.block.agarica_help.yml
@@ -1,4 +1,4 @@
-uuid: adf7108e-22dc-431d-8dda-935bd1ad500d
+uuid: d64ccfd1-36e0-4360-81e8-2c18e9435269
langcode: en
status: true
dependencies:
@@ -17,6 +17,6 @@ plugin: help_block
settings:
id: help_block
label: Help
- label_display: '0'
provider: help
+ label_display: '0'
visibility: { }
diff --git a/config/sync/block.block.agarica_home_page_feature.yml b/config/sync/block.block.agarica_home_page_feature.yml
new file mode 100644
index 0000000..265a48d
--- /dev/null
+++ b/config/sync/block.block.agarica_home_page_feature.yml
@@ -0,0 +1,38 @@
+uuid: 7cbb9940-f3e6-40be-a5dd-e57d801e8117
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ content:
+ - 'block_content:slide:2b547200-6da3-4608-aa40-b98a6bea4933'
+ enforced:
+ module:
+ - block_content
+ module:
+ - block_content
+ - block_visibility_groups
+ theme:
+ - agarica
+_core:
+ default_config_hash: Gfi_3QiVJsPMCSzDXQdrnY7iKUWS_k76GDc0iK3yDNw
+id: agarica_home_page_feature
+theme: agarica
+region: content
+weight: 4
+provider: null
+plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
+settings:
+ id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
+ label: 'Home page feature'
+ provider: block_content
+ label_display: '0'
+ status: true
+ info: ''
+ view_mode: full
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_home_page_hero.yml b/config/sync/block.block.agarica_home_page_hero.yml
new file mode 100644
index 0000000..ecc88bf
--- /dev/null
+++ b/config/sync/block.block.agarica_home_page_hero.yml
@@ -0,0 +1,38 @@
+uuid: ffdcfb41-83ee-49ab-bae1-22a87c4e7416
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ content:
+ - 'block_content:slide:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
+ enforced:
+ module:
+ - block_content
+ module:
+ - block_content
+ - block_visibility_groups
+ theme:
+ - agarica
+_core:
+ default_config_hash: 7LaudnAYBHZQGUVPqWOVEya4bd5pa1kdHDJn9SKEhcE
+id: agarica_home_page_hero
+theme: agarica
+region: highlighted
+weight: 0
+provider: null
+plugin: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
+settings:
+ id: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
+ label: 'Home page hero'
+ provider: block_content
+ label_display: '0'
+ status: true
+ info: ''
+ view_mode: full
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ 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 86%
rename from config/block.block.agarica_local_actions.yml
rename to config/sync/block.block.agarica_local_actions.yml
index cc6ec15..e145552 100644
--- a/config/block.block.agarica_local_actions.yml
+++ b/config/sync/block.block.agarica_local_actions.yml
@@ -1,4 +1,4 @@
-uuid: e870348d-68df-4fc1-b204-5811d9c43588
+uuid: ae2f269c-2ecc-4bd8-b05d-3c3c9d05c330
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.agarica_local_tasks.yml
rename to config/sync/block.block.agarica_local_tasks.yml
index 8451818..6e6f2f0 100644
--- a/config/block.block.agarica_local_tasks.yml
+++ b/config/sync/block.block.agarica_local_tasks.yml
@@ -1,4 +1,4 @@
-uuid: e4ba5a97-9572-489e-b737-041655976797
+uuid: fa84b8fc-b83e-4a20-b684-c570060351c3
langcode: en
status: true
dependencies:
@@ -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 62%
rename from config/block.block.agarica_main_menu.yml
rename to config/sync/block.block.agarica_main_menu.yml
index 4a08674..20c2bf9 100644
--- a/config/block.block.agarica_main_menu.yml
+++ b/config/sync/block.block.agarica_main_menu.yml
@@ -1,11 +1,10 @@
-uuid: 65140d20-fd32-480a-bbad-200a3da9b870
+uuid: 4356c769-5d15-4d90-b9eb-28b3e1572a85
langcode: en
status: true
dependencies:
config:
- system.menu.main
module:
- - block_visibility_groups
- system
theme:
- agarica
@@ -14,20 +13,14 @@ _core:
id: agarica_main_menu
theme: agarica
region: primary_menu
-weight: -9
+weight: 1
provider: null
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
-visibility:
- condition_group:
- id: condition_group
- negate: false
- context_mapping: { }
- block_visibility_group: ''
+ depth: 2
+visibility: { }
diff --git a/config/block.block.agarica_messages.yml b/config/sync/block.block.agarica_messages.yml
similarity index 89%
rename from config/block.block.agarica_messages.yml
rename to config/sync/block.block.agarica_messages.yml
index 8f88d95..db87d58 100644
--- a/config/block.block.agarica_messages.yml
+++ b/config/sync/block.block.agarica_messages.yml
@@ -1,4 +1,4 @@
-uuid: fc0fbe9e-e838-47d8-8f95-42e155542cb6
+uuid: 560fc918-0772-4dcd-bbca-78d3980b432d
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.agarica_page_title.yml
rename to config/sync/block.block.agarica_page_title.yml
index 836cb8e..9d5276c 100644
--- a/config/block.block.agarica_page_title.yml
+++ b/config/sync/block.block.agarica_page_title.yml
@@ -1,4 +1,4 @@
-uuid: d2a2274c-6693-4a54-9119-68c1676e4376
+uuid: 01db5ecc-89e5-49b9-b206-719ed49652f5
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.agarica_powered_by_drutopia.yml
rename to config/sync/block.block.agarica_powered_by_drutopia.yml
index b8e86ae..16ddb22 100644
--- a/config/block.block.agarica_powered_by_drutopia.yml
+++ b/config/sync/block.block.agarica_powered_by_drutopia.yml
@@ -1,4 +1,4 @@
-uuid: 8ff88c29-9bb1-485c-9c23-5ec4c932f276
+uuid: 260083c3-0d5b-4f55-b9f1-0e75faad03da
langcode: en
status: true
dependencies:
@@ -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/sync/block.block.agarica_resource_topics_facet.yml b/config/sync/block.block.agarica_resource_topics_facet.yml
new file mode 100644
index 0000000..a325aa9
--- /dev/null
+++ b/config/sync/block.block.agarica_resource_topics_facet.yml
@@ -0,0 +1,31 @@
+uuid: 68627fae-203c-429d-8bfd-57620ceb71c1
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.resource_listing
+ - facets.facet.resource_topics
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: uwcCwoWPVeb7Sw0Uh-9L34NROH0VWZBBp8bnl3BtkAg
+id: agarica_resource_topics_facet
+theme: agarica
+region: sidebar_first
+weight: 2
+provider: null
+plugin: 'facet_block:resource_topics'
+settings:
+ id: 'facet_block:resource_topics'
+ label: Topics
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: resource_listing
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_resource_type_facet.yml b/config/sync/block.block.agarica_resource_type_facet.yml
new file mode 100644
index 0000000..bb402c6
--- /dev/null
+++ b/config/sync/block.block.agarica_resource_type_facet.yml
@@ -0,0 +1,31 @@
+uuid: e384ad3d-249d-48f9-b5e5-32f4deaa47cf
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.resource_listing
+ - facets.facet.resource_type
+ module:
+ - block_visibility_groups
+ - facets
+ theme:
+ - agarica
+_core:
+ default_config_hash: CPjM93pYWaZW1BobHIdZvB3BKMPJLJCnnbIBS1fD_84
+id: agarica_resource_type_facet
+theme: agarica
+region: sidebar_first
+weight: 4
+provider: null
+plugin: 'facet_block:resource_type'
+settings:
+ id: 'facet_block:resource_type'
+ label: Type
+ provider: facets
+ label_display: visible
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: resource_listing
+ context_mapping: { }
diff --git a/config/block.block.agarica_socialmedialinks.yml b/config/sync/block.block.agarica_socialmedialinks.yml
similarity index 97%
rename from config/block.block.agarica_socialmedialinks.yml
rename to config/sync/block.block.agarica_socialmedialinks.yml
index 8f70d66..abe3051 100644
--- a/config/block.block.agarica_socialmedialinks.yml
+++ b/config/sync/block.block.agarica_socialmedialinks.yml
@@ -1,4 +1,4 @@
-uuid: 27bd6a21-87b7-4f7e-beb6-1b43495d82d2
+uuid: 95d83612-817d-4c3c-bfb2-253440876f04
langcode: en
status: true
dependencies:
@@ -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/sync/block.block.agarica_views_block__action_block_promoted.yml b/config/sync/block.block.agarica_views_block__action_block_promoted.yml
new file mode 100644
index 0000000..960e86b
--- /dev/null
+++ b/config/sync/block.block.agarica_views_block__action_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: 4a8037a8-c2ee-40c8-918c-2295ef9a1861
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.action
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - agarica
+_core:
+ default_config_hash: Sldg8HosmN2eEJFdEdTdFYSJUldPSB8kq8tHwXRG-cw
+id: agarica_views_block__action_block_promoted
+theme: agarica
+region: content
+weight: 2
+provider: null
+plugin: 'views_block:action-block_promoted'
+settings:
+ id: 'views_block:action-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_views_block__article_block_promoted.yml b/config/sync/block.block.agarica_views_block__article_block_promoted.yml
new file mode 100644
index 0000000..04b0d7d
--- /dev/null
+++ b/config/sync/block.block.agarica_views_block__article_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: e84655ed-dc3d-4ae7-a9ec-4474a0c768ee
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.article
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - agarica
+_core:
+ default_config_hash: l2bsxK18NjDhsgZCw3TRnHkvHQeHTmWGFggDnzMmU3k
+id: agarica_views_block__article_block_promoted
+theme: agarica
+region: content
+weight: 0
+provider: null
+plugin: 'views_block:article-block_promoted'
+settings:
+ id: 'views_block:article-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_views_block__blog_block_promoted.yml b/config/sync/block.block.agarica_views_block__blog_block_promoted.yml
new file mode 100644
index 0000000..e472557
--- /dev/null
+++ b/config/sync/block.block.agarica_views_block__blog_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: 3148bdc8-bf99-4db2-98dd-ac89cda86639
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.blog
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - agarica
+_core:
+ default_config_hash: 9dv0gc7PE-q9ktWJGwVlxDH5_2fOagzHUqCi4KRO9AY
+id: agarica_views_block__blog_block_promoted
+theme: agarica
+region: content
+weight: 6
+provider: null
+plugin: 'views_block:blog-block_promoted'
+settings:
+ id: 'views_block:blog-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.agarica_views_block__campaign_block_promoted.yml b/config/sync/block.block.agarica_views_block__campaign_block_promoted.yml
new file mode 100644
index 0000000..0f4ac98
--- /dev/null
+++ b/config/sync/block.block.agarica_views_block__campaign_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: 8557b039-6203-4459-9946-4988d959a617
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.campaign
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - agarica
+_core:
+ default_config_hash: UR4KbKgtdT08m5Oq7hBhPvmiBCdKS4QiZuEiI78slhQ
+id: agarica_views_block__campaign_block_promoted
+theme: agarica
+region: content
+weight: 8
+provider: null
+plugin: 'views_block:campaign-block_promoted'
+settings:
+ id: 'views_block:campaign-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
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 75%
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..dd4283b 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
@@ -1,4 +1,4 @@
-uuid: 4bf80fa6-e5ed-4fff-a070-e48f7fad530a
+uuid: 450d559f-8039-4d52-8128-0f8086c5bfe1
langcode: en
status: true
dependencies:
@@ -6,7 +6,6 @@ dependencies:
- views.view.related_content
module:
- block_visibility_groups
- - ctools
- views
theme:
- agarica
@@ -15,27 +14,20 @@ _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: ''
- 'entity_bundle:node':
- id: 'entity_bundle:node'
- negate: true
- context_mapping:
- node: '@node.node_route_context:node'
- bundles:
- people: people
+ context_mapping: { }
diff --git a/config/block.block.article_topics_facet.yml b/config/sync/block.block.article_topics_facet.yml
similarity index 94%
rename from config/block.block.article_topics_facet.yml
rename to config/sync/block.block.article_topics_facet.yml
index 212453d..6f2f7d5 100644
--- a/config/block.block.article_topics_facet.yml
+++ b/config/sync/block.block.article_topics_facet.yml
@@ -1,4 +1,4 @@
-uuid: 0252d5f1-86a2-40a8-a0fa-71d098f1534c
+uuid: 8028849a-a982-4e37-a77a-8f68eadfc334
langcode: en
status: true
dependencies:
@@ -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 93%
rename from config/block.block.article_type_facet.yml
rename to config/sync/block.block.article_type_facet.yml
index 3d83d36..3789ba1 100644
--- a/config/block.block.article_type_facet.yml
+++ b/config/sync/block.block.article_type_facet.yml
@@ -1,4 +1,4 @@
-uuid: fbabce6b-990f-448d-aeb0-bd3712575388
+uuid: 7a5a712f-50cd-4574-801d-834da148b0e5
langcode: en
status: true
dependencies:
@@ -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 87%
rename from config/block.block.bulma_account_menu.yml
rename to config/sync/block.block.bulma_account_menu.yml
index 9b65df1..73dd0a5 100644
--- a/config/block.block.bulma_account_menu.yml
+++ b/config/sync/block.block.bulma_account_menu.yml
@@ -1,4 +1,4 @@
-uuid: 6c8e6045-e58b-45a8-a78b-cc2e83a4eb50
+uuid: 72849663-05ad-4609-b10b-568715e55a81
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/block.block.bulma_branding.yml b/config/sync/block.block.bulma_branding.yml
similarity index 91%
rename from config/block.block.bulma_branding.yml
rename to config/sync/block.block.bulma_branding.yml
index 778e876..28e6219 100644
--- a/config/block.block.bulma_branding.yml
+++ b/config/sync/block.block.bulma_branding.yml
@@ -1,4 +1,4 @@
-uuid: c46b7d79-b26f-46b0-939c-12ef2fad98a8
+uuid: 3a0aa933-2aa4-41ba-be21-7a1cb628d688
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.bulma_content.yml
rename to config/sync/block.block.bulma_content.yml
index 37081f7..63ae02b 100644
--- a/config/block.block.bulma_content.yml
+++ b/config/sync/block.block.bulma_content.yml
@@ -1,4 +1,4 @@
-uuid: fe83bf49-1ce8-4639-9ab6-2a2c0aa77c1c
+uuid: d5bb3d92-1f88-4851-9944-978a91775720
langcode: en
status: true
dependencies:
@@ -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 88%
rename from config/block.block.bulma_help.yml
rename to config/sync/block.block.bulma_help.yml
index f45c086..a3c2f06 100644
--- a/config/block.block.bulma_help.yml
+++ b/config/sync/block.block.bulma_help.yml
@@ -1,4 +1,4 @@
-uuid: 90cb6a54-ab26-49a5-a968-d5d8a4723eed
+uuid: 2518ef56-c632-4da0-ab5f-ee475eb0aca2
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.bulma_local_tasks.yml
rename to config/sync/block.block.bulma_local_tasks.yml
index c4ea790..16e0a89 100644
--- a/config/block.block.bulma_local_tasks.yml
+++ b/config/sync/block.block.bulma_local_tasks.yml
@@ -1,4 +1,4 @@
-uuid: 5d041c74-78f6-4a99-9013-7e3076ad1580
+uuid: de189aea-af8a-435f-9707-4f4ba98fc194
langcode: en
status: true
dependencies:
@@ -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 86%
rename from config/block.block.bulma_main_menu.yml
rename to config/sync/block.block.bulma_main_menu.yml
index df7760a..0ce38cc 100644
--- a/config/block.block.bulma_main_menu.yml
+++ b/config/sync/block.block.bulma_main_menu.yml
@@ -1,4 +1,4 @@
-uuid: 13e76ccc-848d-4689-a0b6-417f64854f38
+uuid: e5fa9369-f549-4268-867c-d005ce33141d
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/block.block.bulma_messages.yml b/config/sync/block.block.bulma_messages.yml
similarity index 89%
rename from config/block.block.bulma_messages.yml
rename to config/sync/block.block.bulma_messages.yml
index b6dd75c..9cf654f 100644
--- a/config/block.block.bulma_messages.yml
+++ b/config/sync/block.block.bulma_messages.yml
@@ -1,4 +1,4 @@
-uuid: 52315eed-652b-4f82-9efe-009774b80272
+uuid: cb9d2897-811a-4ced-b50a-302490cc3d1a
langcode: en
status: true
dependencies:
@@ -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 88%
rename from config/block.block.bulma_page_title.yml
rename to config/sync/block.block.bulma_page_title.yml
index 42c8405..9d0b3b6 100644
--- a/config/block.block.bulma_page_title.yml
+++ b/config/sync/block.block.bulma_page_title.yml
@@ -1,4 +1,4 @@
-uuid: 90a1ab56-0d72-4209-a48b-31282acca8cf
+uuid: b0beb4fc-5eab-45a5-bb4f-cef111389879
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.bulma_powered.yml
rename to config/sync/block.block.bulma_powered.yml
index 99408df..3ddfcc5 100644
--- a/config/block.block.bulma_powered.yml
+++ b/config/sync/block.block.bulma_powered.yml
@@ -1,4 +1,4 @@
-uuid: 608acdc0-f7e9-4491-b5e0-937e667bfcff
+uuid: f3e71eb9-ccc8-4ad1-bd1b-6d8d7d665320
langcode: en
status: true
dependencies:
@@ -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 86%
rename from config/block.block.bulma_tools.yml
rename to config/sync/block.block.bulma_tools.yml
index 3fde28d..2df5f5d 100644
--- a/config/block.block.bulma_tools.yml
+++ b/config/sync/block.block.bulma_tools.yml
@@ -1,4 +1,4 @@
-uuid: 844961ed-e273-4c0e-8cf9-06f07f0f8524
+uuid: 4e6b6712-d256-4511-897d-b087d5a2407d
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/block.block.content_search_form_global.yml b/config/sync/block.block.content_search_form_global.yml
similarity index 93%
rename from config/block.block.content_search_form_global.yml
rename to config/sync/block.block.content_search_form_global.yml
index ad51282..130b24a 100644
--- a/config/block.block.content_search_form_global.yml
+++ b/config/sync/block.block.content_search_form_global.yml
@@ -1,4 +1,4 @@
-uuid: 25be0dcb-7727-4258-a7f9-e191b0449644
+uuid: f8a4f1dc-0291-4ea5-989d-0c47fb4ad8e6
langcode: en
status: true
dependencies:
@@ -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 94%
rename from config/block.block.content_search_form_search.yml
rename to config/sync/block.block.content_search_form_search.yml
index a1ce5a4..abca632 100644
--- a/config/block.block.content_search_form_search.yml
+++ b/config/sync/block.block.content_search_form_search.yml
@@ -1,4 +1,4 @@
-uuid: 6b14561b-5882-48b8-8332-537d6a65f065
+uuid: 327627eb-7ec6-4acd-aef6-e15c3eb48869
langcode: en
status: true
dependencies:
@@ -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 93%
rename from config/block.block.event_topics_facet.yml
rename to config/sync/block.block.event_topics_facet.yml
index 459ec58..d266865 100644
--- a/config/block.block.event_topics_facet.yml
+++ b/config/sync/block.block.event_topics_facet.yml
@@ -1,4 +1,4 @@
-uuid: f33e6dfa-07ac-4714-bdc9-9674b684ca62
+uuid: 1610ab04-990e-42a3-b2ef-b27b5f2fca74
langcode: en
status: true
dependencies:
@@ -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 93%
rename from config/block.block.event_type_facet.yml
rename to config/sync/block.block.event_type_facet.yml
index 9929393..f56836e 100644
--- a/config/block.block.event_type_facet.yml
+++ b/config/sync/block.block.event_type_facet.yml
@@ -1,4 +1,4 @@
-uuid: c965b6dd-b3c6-4e90-9382-277afcb67004
+uuid: cd8c43f6-ff68-4e9b-8ff0-6a4f75a26942
langcode: en
status: true
dependencies:
@@ -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/sync/block.block.group_operations.yml b/config/sync/block.block.group_operations.yml
new file mode 100644
index 0000000..4592afb
--- /dev/null
+++ b/config/sync/block.block.group_operations.yml
@@ -0,0 +1,38 @@
+uuid: 1bafa681-f9cb-4e9a-894c-5f01f99cc4ed
+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.home_page_feature.yml b/config/sync/block.block.home_page_feature.yml
similarity index 86%
rename from config/block.block.home_page_feature.yml
rename to config/sync/block.block.home_page_feature.yml
index b5e605a..213b21b 100644
--- a/config/block.block.home_page_feature.yml
+++ b/config/sync/block.block.home_page_feature.yml
@@ -1,18 +1,18 @@
-uuid: 194e48cd-82d4-4e1b-96e7-f240a6751dc9
+uuid: 179126d5-494f-471c-907f-120ce6c45eaa
langcode: en
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
+ default_config_hash: Gfi_3QiVJsPMCSzDXQdrnY7iKUWS_k76GDc0iK3yDNw
id: home_page_feature
theme: octavia
region: content
@@ -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.home_page_custom_1.yml b/config/sync/block.block.home_page_hero.yml
similarity index 55%
rename from config/block.block.home_page_custom_1.yml
rename to config/sync/block.block.home_page_hero.yml
index d673aa3..c9ce523 100644
--- a/config/block.block.home_page_custom_1.yml
+++ b/config/sync/block.block.home_page_hero.yml
@@ -1,32 +1,35 @@
-uuid: 13f7ec9a-7c8a-4882-ac8b-2435704e46a7
+uuid: 51319124-c3d6-44c1-92d3-d1634d5e5c11
langcode: en
status: true
dependencies:
config:
- block_visibility_groups.block_visibility_group.home_page
+ enforced:
+ module:
+ - block_content
module:
- block_visibility_groups
theme:
- octavia
_core:
- default_config_hash: Ek5XM_EH35AD3Efjo15F1f5LaMJbgdTx_plu8K_9vok
-id: home_page_custom_1
+ default_config_hash: 7LaudnAYBHZQGUVPqWOVEya4bd5pa1kdHDJn9SKEhcE
+id: home_page_hero
theme: octavia
-region: content_bottom
+region: highlighted
weight: 0
provider: null
-plugin: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d'
+plugin: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
settings:
- id: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d'
- label: 'Home page custom 1'
- label_display: '0'
+ id: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
+ label: 'Home page hero'
provider: block_content
+ label_display: '0'
status: true
info: ''
- view_mode: columnar
+ view_mode: full
visibility:
condition_group:
id: condition_group
negate: false
- context_mapping: { }
block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/block.block.octavia_account_menu.yml b/config/sync/block.block.octavia_account_menu.yml
similarity index 87%
rename from config/block.block.octavia_account_menu.yml
rename to config/sync/block.block.octavia_account_menu.yml
index 20a7b46..5c5995d 100644
--- a/config/block.block.octavia_account_menu.yml
+++ b/config/sync/block.block.octavia_account_menu.yml
@@ -1,4 +1,4 @@
-uuid: 07ca41d3-9ff0-4cb7-814a-fcdee23b203c
+uuid: fe6a60c1-ca42-4ada-9e5e-f0e2d46d591b
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/block.block.octavia_branding.yml b/config/sync/block.block.octavia_branding.yml
similarity index 91%
rename from config/block.block.octavia_branding.yml
rename to config/sync/block.block.octavia_branding.yml
index 1982007..0441893 100644
--- a/config/block.block.octavia_branding.yml
+++ b/config/sync/block.block.octavia_branding.yml
@@ -1,4 +1,4 @@
-uuid: ff33c349-771a-4fee-9c25-6ac5bdeed7e9
+uuid: 1eecb7ca-0991-4277-b3d2-f8a876163d39
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.octavia_content.yml
rename to config/sync/block.block.octavia_content.yml
index 626d3c4..415123b 100644
--- a/config/block.block.octavia_content.yml
+++ b/config/sync/block.block.octavia_content.yml
@@ -1,4 +1,4 @@
-uuid: fe1b1d6a-89f3-431d-b062-d1342317b829
+uuid: e1b40af7-6218-4473-9193-3f857bcfc87e
langcode: en
status: true
dependencies:
@@ -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 86%
rename from config/block.block.octavia_footer_menu.yml
rename to config/sync/block.block.octavia_footer_menu.yml
index 5c68cd3..f0e113a 100644
--- a/config/block.block.octavia_footer_menu.yml
+++ b/config/sync/block.block.octavia_footer_menu.yml
@@ -1,4 +1,4 @@
-uuid: 0f7786a4-7c90-4c1d-aff3-ba16fa37c5bb
+uuid: 590bc965-8c79-4e8a-bd14-10b3c9b1e1da
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/block.block.octavia_help.yml b/config/sync/block.block.octavia_help.yml
similarity index 88%
rename from config/block.block.octavia_help.yml
rename to config/sync/block.block.octavia_help.yml
index 2eb558e..804cb90 100644
--- a/config/block.block.octavia_help.yml
+++ b/config/sync/block.block.octavia_help.yml
@@ -1,4 +1,4 @@
-uuid: 58fe3747-436a-4fc3-9b60-0d45c2cb1c7c
+uuid: 305575d4-3871-4a75-8809-04423cc5e12d
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.octavia_local_actions.yml
rename to config/sync/block.block.octavia_local_actions.yml
index cad882e..b87336c 100644
--- a/config/block.block.octavia_local_actions.yml
+++ b/config/sync/block.block.octavia_local_actions.yml
@@ -1,4 +1,4 @@
-uuid: daac2f2f-68d8-4165-ba14-66e2d803c7ae
+uuid: ebbfd0fb-a7cd-4133-aae5-07e0db78aac1
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.octavia_local_tasks.yml
rename to config/sync/block.block.octavia_local_tasks.yml
index 7c93501..5992801 100644
--- a/config/block.block.octavia_local_tasks.yml
+++ b/config/sync/block.block.octavia_local_tasks.yml
@@ -1,4 +1,4 @@
-uuid: 1cc41144-2fac-4268-a9ca-3c353c908abc
+uuid: 0a6e503a-7ac8-45a9-922a-125c11139f8e
langcode: en
status: true
dependencies:
@@ -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 86%
rename from config/block.block.octavia_main_menu.yml
rename to config/sync/block.block.octavia_main_menu.yml
index f9a8f63..e4a337a 100644
--- a/config/block.block.octavia_main_menu.yml
+++ b/config/sync/block.block.octavia_main_menu.yml
@@ -1,4 +1,4 @@
-uuid: bcb57e2d-5bf9-40b0-a36a-a273c971d371
+uuid: 1da04397-8389-4f29-ba74-dcf1ca1715df
langcode: en
status: true
dependencies:
@@ -19,9 +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
visibility: { }
diff --git a/config/block.block.octavia_messages.yml b/config/sync/block.block.octavia_messages.yml
similarity index 89%
rename from config/block.block.octavia_messages.yml
rename to config/sync/block.block.octavia_messages.yml
index 51d7940..6910e4b 100644
--- a/config/block.block.octavia_messages.yml
+++ b/config/sync/block.block.octavia_messages.yml
@@ -1,4 +1,4 @@
-uuid: f8ce2c05-5d12-408a-bddb-e565c24fff72
+uuid: 00c2c794-726b-4e18-8059-8d00ba4d40bd
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.octavia_page_title.yml
rename to config/sync/block.block.octavia_page_title.yml
index fa75a1e..11a5189 100644
--- a/config/block.block.octavia_page_title.yml
+++ b/config/sync/block.block.octavia_page_title.yml
@@ -1,4 +1,4 @@
-uuid: e311b4aa-5815-4ae8-a710-0fc2ae39688e
+uuid: 07878dd9-7464-4929-8578-4b80d5035bc8
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.octavia_powered_by_drutopia.yml
rename to config/sync/block.block.octavia_powered_by_drutopia.yml
index dd90e40..1899296 100644
--- a/config/block.block.octavia_powered_by_drutopia.yml
+++ b/config/sync/block.block.octavia_powered_by_drutopia.yml
@@ -1,4 +1,4 @@
-uuid: 4ade6485-fbee-41bb-b36a-4d593e721414
+uuid: 0669464f-310e-44e7-a374-75e1df5fd9b9
langcode: en
status: true
dependencies:
@@ -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 94%
rename from config/block.block.resource_topics_facet.yml
rename to config/sync/block.block.resource_topics_facet.yml
index 478b3db..117098d 100644
--- a/config/block.block.resource_topics_facet.yml
+++ b/config/sync/block.block.resource_topics_facet.yml
@@ -1,4 +1,4 @@
-uuid: d7645e7b-a6c7-4b62-9bf4-98bb1257a1cb
+uuid: 02188cba-32c9-439a-9211-e3647c5765e8
langcode: en
status: true
dependencies:
@@ -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 93%
rename from config/block.block.resource_type_facet.yml
rename to config/sync/block.block.resource_type_facet.yml
index b370e1b..4facf05 100644
--- a/config/block.block.resource_type_facet.yml
+++ b/config/sync/block.block.resource_type_facet.yml
@@ -1,4 +1,4 @@
-uuid: 8b0edda7-9a74-4d1d-bcab-9291263d42c0
+uuid: c30891b1-2ee9-4c03-9ce8-582656ea7797
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.seven_breadcrumbs.yml
rename to config/sync/block.block.seven_breadcrumbs.yml
index 9786fc4..7a243b0 100644
--- a/config/block.block.seven_breadcrumbs.yml
+++ b/config/sync/block.block.seven_breadcrumbs.yml
@@ -1,4 +1,4 @@
-uuid: 080dc147-5b70-42c2-bfda-95c16345420f
+uuid: 5a17eddd-399b-45d7-8813-95627dfb7f8a
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.seven_content.yml
rename to config/sync/block.block.seven_content.yml
index 44bebc4..5609fdc 100644
--- a/config/block.block.seven_content.yml
+++ b/config/sync/block.block.seven_content.yml
@@ -1,4 +1,4 @@
-uuid: ce2bb0ee-255b-4e88-bc2d-f684fac18247
+uuid: 7c053ecf-a849-44ef-a0f0-118bde25dc78
langcode: en
status: true
dependencies:
@@ -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 88%
rename from config/block.block.seven_help.yml
rename to config/sync/block.block.seven_help.yml
index a2b9697..814b63d 100644
--- a/config/block.block.seven_help.yml
+++ b/config/sync/block.block.seven_help.yml
@@ -1,4 +1,4 @@
-uuid: 6bbf2709-d620-4b4d-9218-dfa3b1d666dc
+uuid: 29e0b7bc-fc45-4e15-a19b-74e9a70844d8
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.seven_local_actions.yml
rename to config/sync/block.block.seven_local_actions.yml
index 7bd1aa9..e86ea19 100644
--- a/config/block.block.seven_local_actions.yml
+++ b/config/sync/block.block.seven_local_actions.yml
@@ -1,4 +1,4 @@
-uuid: 3bf126a8-ff38-4a22-a417-5593a2bacebc
+uuid: 034f2df7-355f-4313-ac1e-6f68159245c0
langcode: en
status: true
dependencies:
@@ -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 89%
rename from config/block.block.seven_login.yml
rename to config/sync/block.block.seven_login.yml
index 2916fb5..d6d9f06 100644
--- a/config/block.block.seven_login.yml
+++ b/config/sync/block.block.seven_login.yml
@@ -1,4 +1,4 @@
-uuid: 6ce0ea94-d8e4-4dee-aaea-e38484cf5d21
+uuid: 298f8c75-09bb-45e1-a798-ac441c8f5cef
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.seven_messages.yml
rename to config/sync/block.block.seven_messages.yml
index 3af450d..91c58df 100644
--- a/config/block.block.seven_messages.yml
+++ b/config/sync/block.block.seven_messages.yml
@@ -1,4 +1,4 @@
-uuid: 4dc72401-2bed-414e-a3c4-0e97b5916603
+uuid: d7a674e8-d3d8-4c75-8767-fb06d82d5934
langcode: en
status: true
dependencies:
@@ -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 88%
rename from config/block.block.seven_page_title.yml
rename to config/sync/block.block.seven_page_title.yml
index c47c870..74765a6 100644
--- a/config/block.block.seven_page_title.yml
+++ b/config/sync/block.block.seven_page_title.yml
@@ -1,4 +1,4 @@
-uuid: 50cfaa69-7da8-41a4-8659-40cfb0d72d94
+uuid: 2d7527e8-addc-4ffe-9a13-b9dad756d859
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.seven_primary_local_tasks.yml
rename to config/sync/block.block.seven_primary_local_tasks.yml
index 6d46cfc..73614e2 100644
--- a/config/block.block.seven_primary_local_tasks.yml
+++ b/config/sync/block.block.seven_primary_local_tasks.yml
@@ -1,4 +1,4 @@
-uuid: 594a9673-7a59-4990-9cab-8180e0852cf0
+uuid: 44a25be8-58b4-46c0-a1fc-081831140b04
langcode: en
status: true
dependencies:
@@ -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 90%
rename from config/block.block.seven_secondary_local_tasks.yml
rename to config/sync/block.block.seven_secondary_local_tasks.yml
index 99d269b..57a3ca8 100644
--- a/config/block.block.seven_secondary_local_tasks.yml
+++ b/config/sync/block.block.seven_secondary_local_tasks.yml
@@ -1,4 +1,4 @@
-uuid: a8dfd4d2-f605-4f14-8565-48198722ba30
+uuid: af4b61c4-719e-460f-a753-30668e220767
langcode: en
status: true
dependencies:
@@ -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 97%
rename from config/block.block.socialmedialinks.yml
rename to config/sync/block.block.socialmedialinks.yml
index 60583e6..0cc0839 100644
--- a/config/block.block.socialmedialinks.yml
+++ b/config/sync/block.block.socialmedialinks.yml
@@ -1,4 +1,4 @@
-uuid: 695b8264-a2b9-4074-8263-c08c4aa4b57f
+uuid: f5737a6e-d223-44a2-9928-0339cd478cbf
langcode: en
status: true
dependencies:
@@ -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/sync/block.block.views_block__action_block_promoted.yml b/config/sync/block.block.views_block__action_block_promoted.yml
new file mode 100644
index 0000000..4e0ceaa
--- /dev/null
+++ b/config/sync/block.block.views_block__action_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: 0bcda3de-8611-4371-9cb3-11c0286beef7
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.action
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - octavia
+_core:
+ default_config_hash: Sldg8HosmN2eEJFdEdTdFYSJUldPSB8kq8tHwXRG-cw
+id: views_block__action_block_promoted
+theme: octavia
+region: content
+weight: 2
+provider: null
+plugin: 'views_block:action-block_promoted'
+settings:
+ id: 'views_block:action-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.views_block__article_block_promoted.yml b/config/sync/block.block.views_block__article_block_promoted.yml
new file mode 100644
index 0000000..886b405
--- /dev/null
+++ b/config/sync/block.block.views_block__article_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: 747f3439-046f-4add-bb7f-d7aadbc331db
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.article
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - octavia
+_core:
+ default_config_hash: l2bsxK18NjDhsgZCw3TRnHkvHQeHTmWGFggDnzMmU3k
+id: views_block__article_block_promoted
+theme: octavia
+region: content
+weight: 0
+provider: null
+plugin: 'views_block:article-block_promoted'
+settings:
+ id: 'views_block:article-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.views_block__blog_block_promoted.yml b/config/sync/block.block.views_block__blog_block_promoted.yml
new file mode 100644
index 0000000..adb8c88
--- /dev/null
+++ b/config/sync/block.block.views_block__blog_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: e606d895-3e25-46cd-b8bb-7411e32187b6
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.blog
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - octavia
+_core:
+ default_config_hash: 9dv0gc7PE-q9ktWJGwVlxDH5_2fOagzHUqCi4KRO9AY
+id: views_block__blog_block_promoted
+theme: octavia
+region: content
+weight: 6
+provider: null
+plugin: 'views_block:blog-block_promoted'
+settings:
+ id: 'views_block:blog-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
diff --git a/config/sync/block.block.views_block__campaign_block_promoted.yml b/config/sync/block.block.views_block__campaign_block_promoted.yml
new file mode 100644
index 0000000..608b585
--- /dev/null
+++ b/config/sync/block.block.views_block__campaign_block_promoted.yml
@@ -0,0 +1,33 @@
+uuid: 6afc23b2-fa5e-413b-874a-5ee14b9639ac
+langcode: en
+status: true
+dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.campaign
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - octavia
+_core:
+ default_config_hash: UR4KbKgtdT08m5Oq7hBhPvmiBCdKS4QiZuEiI78slhQ
+id: views_block__campaign_block_promoted
+theme: octavia
+region: content
+weight: 8
+provider: null
+plugin: 'views_block:campaign-block_promoted'
+settings:
+ id: 'views_block:campaign-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
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 94%
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..c99b50b 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
@@ -1,4 +1,4 @@
-uuid: 40d7e8f7-b435-4ca8-833c-0765b76c3ab4
+uuid: 5aadb695-cb23-4167-8d5d-0aba65a05c71
langcode: en
status: true
dependencies:
@@ -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 83%
rename from config/block_content.type.basic.yml
rename to config/sync/block_content.type.basic.yml
index d408545..dface3f 100644
--- a/config/block_content.type.basic.yml
+++ b/config/sync/block_content.type.basic.yml
@@ -1,4 +1,4 @@
-uuid: a4c4740d-f4c4-4ebd-b9e1-394d06df5cbb
+uuid: b46dae22-a4b0-4e6c-860b-98bbc17ef890
langcode: en
status: true
dependencies: { }
diff --git a/config/block_content.type.slide.yml b/config/sync/block_content.type.slide.yml
similarity index 79%
rename from config/block_content.type.slide.yml
rename to config/sync/block_content.type.slide.yml
index fa41634..07123eb 100644
--- a/config/block_content.type.slide.yml
+++ b/config/sync/block_content.type.slide.yml
@@ -1,4 +1,4 @@
-uuid: 98c1d298-6c68-4874-9f82-a0cc63bd2d17
+uuid: c8091b3b-d81c-41b5-b9d4-cf335e39a91b
langcode: en
status: true
dependencies: { }
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 90%
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..0fa1b0e 100644
--- a/config/block_visibility_groups.block_visibility_group.article_listing.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml
@@ -1,4 +1,4 @@
-uuid: 273d9b46-3503-4adc-8a26-5d9166ccd7ca
+uuid: dcc4b64b-2961-4c5a-ae21-892d339d6ecc
langcode: en
status: true
dependencies:
@@ -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 90%
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..77f6120 100644
--- a/config/block_visibility_groups.block_visibility_group.blog_listing.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml
@@ -1,4 +1,4 @@
-uuid: 4830cf02-c221-460b-831e-ea0c439c6ef3
+uuid: 2806d523-d64a-4ffa-863d-2384f142a3bf
langcode: en
status: true
dependencies:
@@ -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 90%
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..038b777 100644
--- a/config/block_visibility_groups.block_visibility_group.event_listing.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.event_listing.yml
@@ -1,4 +1,4 @@
-uuid: c2d2aaa1-6f62-47ef-a4ac-82a305c992ab
+uuid: cd45323e-ab1a-4edf-8c10-c54adeff1cc7
langcode: en
status: true
dependencies:
@@ -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 90%
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..228328f 100644
--- a/config/block_visibility_groups.block_visibility_group.home_page.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.home_page.yml
@@ -1,4 +1,4 @@
-uuid: f12eeb46-2ba2-4167-a077-167d08693506
+uuid: d2ab541b-e00d-48a0-bfda-3bf3340ed0f4
langcode: en
status: true
dependencies:
@@ -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 90%
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..976f7dd 100644
--- a/config/block_visibility_groups.block_visibility_group.resource_listing.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.resource_listing.yml
@@ -1,4 +1,4 @@
-uuid: b57186f5-4889-487e-bfc5-f369d012de66
+uuid: 8311391d-1bf4-429d-be0e-e0088685dc80
langcode: en
status: true
dependencies:
@@ -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 89%
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..a317b17 100644
--- a/config/block_visibility_groups.block_visibility_group.search.yml
+++ b/config/sync/block_visibility_groups.block_visibility_group.search.yml
@@ -1,4 +1,4 @@
-uuid: 71ded74e-5337-4c60-8791-51d5d95625cc
+uuid: bd33144c-8b8c-48a6-ac62-b2e680db7417
langcode: en
status: true
dependencies:
@@ -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/comment.type.comment.yml b/config/sync/comment.type.comment.yml
similarity index 84%
rename from config/comment.type.comment.yml
rename to config/sync/comment.type.comment.yml
index e789ed4..7e34ca9 100644
--- a/config/comment.type.comment.yml
+++ b/config/sync/comment.type.comment.yml
@@ -1,4 +1,4 @@
-uuid: 9d4c4780-1d55-4929-bc6b-640539ec2c99
+uuid: 75befff7-9e57-4e79-a783-9b56ffa037e3
langcode: en
status: true
dependencies: { }
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 83%
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
index 82c4904..f009b9a 100644
--- a/config/config_perms.custom_perms_entity.administer_account_settings.yml
+++ b/config/sync/config_perms.custom_perms_entity.administer_account_settings.yml
@@ -1,4 +1,4 @@
-uuid: 68af2bd9-1d8e-454c-91e2-45fa5bc6e2ce
+uuid: 598b5abf-f3fd-42ba-baba-9458025ac894
langcode: en
status: true
dependencies: { }
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 83%
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
index 7adaf80..cc56b23 100644
--- a/config/config_perms.custom_perms_entity.administer_date_time.yml
+++ b/config/sync/config_perms.custom_perms_entity.administer_date_time.yml
@@ -1,4 +1,4 @@
-uuid: f1881465-d888-4e38-95fc-f3139a4b612b
+uuid: 53a7da59-e093-4d20-8b81-c7df8787c854
langcode: en
status: true
dependencies: { }
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 82%
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
index 2f1b520..148b563 100644
--- a/config/config_perms.custom_perms_entity.administer_error_logs.yml
+++ b/config/sync/config_perms.custom_perms_entity.administer_error_logs.yml
@@ -1,4 +1,4 @@
-uuid: 85c914a7-52f0-4a5e-afe9-912f68306bd0
+uuid: f8e66f95-745d-40fc-bbea-e3d2ed75e125
langcode: en
status: true
dependencies: { }
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 83%
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
index 63b0a4f..c4ddb71 100644
--- a/config/config_perms.custom_perms_entity.administer_file_system.yml
+++ b/config/sync/config_perms.custom_perms_entity.administer_file_system.yml
@@ -1,4 +1,4 @@
-uuid: e4bcc94e-0212-4509-9483-b25d9d5519ef
+uuid: 7bbe13d2-b59d-431a-ada8-3114be332e84
langcode: en
status: true
dependencies: { }
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 82%
rename from config/config_perms.custom_perms_entity.administer_groups.yml
rename to config/sync/config_perms.custom_perms_entity.administer_groups.yml
index 748ba18..f989df5 100644
--- a/config/config_perms.custom_perms_entity.administer_groups.yml
+++ b/config/sync/config_perms.custom_perms_entity.administer_groups.yml
@@ -1,4 +1,4 @@
-uuid: ba47f0a3-eaef-421f-adcb-72f659ff45ad
+uuid: 4b7d7d7c-1db2-4524-8a86-d01bfe1b3604
langcode: en
status: true
dependencies: { }
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 84%
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
index e21e32b..e057d39 100644
--- a/config/config_perms.custom_perms_entity.administer_site_information.yml
+++ b/config/sync/config_perms.custom_perms_entity.administer_site_information.yml
@@ -1,4 +1,4 @@
-uuid: 024843c0-c86c-41d3-a76c-02cdd64d86a0
+uuid: 6bbca5c3-d5bc-418f-bfe7-fc4bee395122
langcode: en
status: true
dependencies: { }
diff --git a/config/sync/config_perms.custom_perms_entity.edit_contact_form.yml b/config/sync/config_perms.custom_perms_entity.edit_contact_form.yml
new file mode 100644
index 0000000..8b39e05
--- /dev/null
+++ b/config/sync/config_perms.custom_perms_entity.edit_contact_form.yml
@@ -0,0 +1,9 @@
+uuid: ee9931d9-a6f7-45c0-80a4-b72c904f930c
+langcode: en
+status: true
+dependencies: { }
+_core:
+ default_config_hash: 3s7TZohzg-BSC-XYIYLlT3rdMdr1-VOEbgPyt6z05BI
+id: edit_contact_form
+label: 'Edit contact form'
+route: null
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 82%
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
index 3415706..61eba75 100644
--- a/config/config_snapshot.snapshot.config_sync.module.agaric_migration.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.agaric_migration.yml
@@ -1,4 +1,4 @@
-uuid: 8e381e42-8c89-4683-94aa-a50e8e750ea2
+uuid: 77283b6f-2da6-4836-b171-b5f7513fdb1d
langcode: en
status: true
dependencies:
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 86%
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
index 1fc94b9..9355cc8 100644
--- a/config/config_snapshot.snapshot.config_sync.module.automated_cron.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml
@@ -1,4 +1,4 @@
-uuid: 1bfbc6ea-fa55-45b7-88df-c931b1d36c09
+uuid: 97a7fe63-419e-463b-ade3-d644f8547226
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml
new file mode 100644
index 0000000..900c276
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml
@@ -0,0 +1,46 @@
+uuid: 31847987-c681-4224-a78b-4c249fc5ab2d
+langcode: en
+status: true
+dependencies:
+ module:
+ - block_content
+id: config_sync.module.block_content
+snapshotSet: config_sync
+extensionType: module
+extensionName: block_content
+items:
+ -
+ collection: ''
+ name: core.entity_view_mode.block_content.full
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - block_content
+ id: block_content.full
+ label: Full
+ targetEntityType: block_content
+ cache: true
+ -
+ collection: ''
+ name: field.storage.block_content.body
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - block_content
+ - text
+ id: block_content.body
+ field_name: body
+ entity_type: block_content
+ type: text_with_summary
+ settings: { }
+ module: text
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: true
+ custom_storage: false
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml
new file mode 100644
index 0000000..8c3315e
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml
@@ -0,0 +1,102 @@
+uuid: 1f83f0af-ba16-44c3-b546-9f40f221860b
+langcode: en
+status: true
+dependencies:
+ module:
+ - comment
+id: config_sync.module.comment
+snapshotSet: config_sync
+extensionType: module
+extensionName: comment
+items:
+ -
+ collection: ''
+ name: core.entity_view_mode.comment.full
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - comment
+ id: comment.full
+ label: 'Full comment'
+ targetEntityType: comment
+ cache: true
+ -
+ collection: ''
+ name: field.storage.comment.comment_body
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - comment
+ - text
+ id: comment.comment_body
+ field_name: comment_body
+ entity_type: comment
+ type: text_long
+ settings: { }
+ module: text
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: true
+ custom_storage: false
+ -
+ collection: ''
+ name: system.action.comment_delete_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - comment
+ id: comment_delete_action
+ label: 'Delete comment'
+ type: comment
+ plugin: comment_delete_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.comment_publish_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - comment
+ id: comment_publish_action
+ label: 'Publish comment'
+ type: comment
+ plugin: 'entity:publish_action:comment'
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.comment_save_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - comment
+ id: comment_save_action
+ label: 'Save comment'
+ type: comment
+ plugin: 'entity:save_action:comment'
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.comment_unpublish_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - comment
+ id: comment_unpublish_action
+ label: 'Unpublish comment'
+ type: comment
+ plugin: 'entity:unpublish_action:comment'
+ configuration: { }
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 96%
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
index 3ab5812..7e2131e 100644
--- a/config/config_snapshot.snapshot.config_sync.module.config_perms.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml
@@ -1,4 +1,4 @@
-uuid: 84fb8420-cb84-490c-b59e-d87c87628a4b
+uuid: 462c88dc-7aed-4ed5-a016-f6475f0fb6f6
langcode: en
status: true
dependencies:
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 93%
rename from config/config_snapshot.snapshot.config_sync.module.contact.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.contact.yml
index 8a17cec..e78e208 100644
--- a/config/config_snapshot.snapshot.config_sync.module.contact.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml
@@ -1,4 +1,4 @@
-uuid: a927eabe-d62f-4e5a-82ef-fd5824655aa9
+uuid: c538a2c9-dbb9-4d52-9cf0-c6e079421bd2
langcode: en
status: true
dependencies:
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 98%
rename from config/config_snapshot.snapshot.config_sync.module.dblog.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml
index 46ee519..c20d7b3 100644
--- a/config/config_snapshot.snapshot.config_sync.module.dblog.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml
@@ -1,4 +1,4 @@
-uuid: d97532e0-94fa-4b81-bf36-00dba0bf777d
+uuid: 796153fa-065f-48cf-aa7c-b59a6e26e562
langcode: en
status: true
dependencies:
@@ -672,16 +672,18 @@ items:
footer: { }
empty:
area:
- id: area_text_custom
+ id: area
table: views
- field: area_text_custom
+ field: area
relationship: none
group_type: group
- admin_label: 'No log messages available.'
+ admin_label: ''
empty: true
tokenize: false
- content: 'No log messages available.'
- plugin_id: text_custom
+ content:
+ value: 'No log messages available.'
+ format: basic_html
+ plugin_id: text
relationships:
uid:
id: uid
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml
new file mode 100644
index 0000000..1ab7d03
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml
@@ -0,0 +1,310 @@
+uuid: fca77568-c7dc-40df-91ea-8a526ac672c4
+langcode: en
+status: true
+dependencies:
+ module:
+ - drutopia
+id: config_sync.module.drutopia
+snapshotSet: config_sync
+extensionType: module
+extensionName: drutopia
+items:
+ -
+ collection: ''
+ name: automated_cron.settings
+ data:
+ interval: 10800
+ -
+ collection: ''
+ name: block.block.octavia_footer_menu
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - system.menu.footer
+ module:
+ - system
+ theme:
+ - octavia
+ id: octavia_footer_menu
+ theme: octavia
+ region: footer
+ weight: 0
+ provider: null
+ plugin: 'system_menu_block:footer'
+ settings:
+ id: 'system_menu_block:footer'
+ label: 'Footer menu'
+ provider: system
+ label_display: '0'
+ level: 1
+ depth: 0
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.octavia_local_actions
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ theme:
+ - octavia
+ id: octavia_local_actions
+ theme: octavia
+ region: content
+ weight: -20
+ provider: null
+ plugin: local_actions_block
+ settings:
+ id: local_actions_block
+ label: 'Primary admin actions'
+ provider: core
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.octavia_powered_by_drutopia
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - drutopia
+ theme:
+ - octavia
+ id: octavia_powered_by_drutopia
+ theme: octavia
+ region: footer
+ weight: -7
+ provider: null
+ plugin: drutopia_powered_by_block
+ settings:
+ id: drutopia_powered_by_block
+ label: 'Powered by Drutopia'
+ provider: drutopia
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_breadcrumbs
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - system
+ theme:
+ - seven
+ id: seven_breadcrumbs
+ theme: seven
+ region: breadcrumb
+ weight: 0
+ provider: null
+ plugin: system_breadcrumb_block
+ settings:
+ id: system_breadcrumb_block
+ label: Breadcrumbs
+ provider: system
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_content
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - system
+ theme:
+ - seven
+ id: seven_content
+ theme: seven
+ region: content
+ weight: 0
+ provider: null
+ plugin: system_main_block
+ settings:
+ id: system_main_block
+ label: 'Main page content'
+ provider: system
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_help
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - help
+ theme:
+ - seven
+ id: seven_help
+ theme: seven
+ region: help
+ weight: 0
+ provider: null
+ plugin: help_block
+ settings:
+ id: help_block
+ label: Help
+ provider: help
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_local_actions
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ theme:
+ - seven
+ id: seven_local_actions
+ theme: seven
+ region: content
+ weight: -10
+ provider: null
+ plugin: local_actions_block
+ settings:
+ id: local_actions_block
+ label: 'Primary admin actions'
+ provider: core
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_login
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - user
+ theme:
+ - seven
+ id: seven_login
+ theme: seven
+ region: content
+ weight: 10
+ provider: null
+ plugin: user_login_block
+ settings:
+ id: user_login_block
+ label: 'User login'
+ provider: user
+ label_display: visible
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_messages
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - system
+ theme:
+ - seven
+ id: seven_messages
+ theme: seven
+ region: highlighted
+ weight: 0
+ provider: null
+ plugin: system_messages_block
+ settings:
+ id: system_messages_block
+ label: 'Status messages'
+ provider: system
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_page_title
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ theme:
+ - seven
+ id: seven_page_title
+ theme: seven
+ region: header
+ weight: -30
+ provider: null
+ plugin: page_title_block
+ settings:
+ id: page_title_block
+ label: 'Page title'
+ provider: core
+ label_display: '0'
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_primary_local_tasks
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ theme:
+ - seven
+ id: seven_primary_local_tasks
+ theme: seven
+ region: header
+ weight: 0
+ provider: null
+ plugin: local_tasks_block
+ settings:
+ id: local_tasks_block
+ label: 'Primary tabs'
+ provider: core
+ label_display: '0'
+ primary: true
+ secondary: false
+ visibility: { }
+ -
+ collection: ''
+ name: block.block.seven_secondary_local_tasks
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ theme:
+ - seven
+ id: seven_secondary_local_tasks
+ theme: seven
+ region: pre_content
+ weight: 0
+ provider: null
+ plugin: local_tasks_block
+ settings:
+ id: local_tasks_block
+ label: 'Secondary tabs'
+ provider: core
+ label_display: '0'
+ primary: false
+ secondary: true
+ visibility: { }
+ -
+ collection: ''
+ name: seven.settings
+ data:
+ third_party_settings:
+ shortcut:
+ module_link: true
+ -
+ collection: ''
+ name: system.cron
+ data:
+ threshold:
+ requirements_warning: 172800
+ requirements_error: 1209600
+ -
+ collection: ''
+ name: system.theme
+ data:
+ admin: seven
+ default: octavia
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_action.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_action.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_action.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_action.yml
index 651f5b6..0494997 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_action.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_action.yml
@@ -1,4 +1,4 @@
-uuid: 9554a302-0dbe-490e-b598-1d7c44693014
+uuid: d0bab648-26e9-4806-8796-53882c7030d8
langcode: en
status: true
dependencies:
@@ -206,7 +206,6 @@ items:
- field.field.node.action.field_meta_tags
- field.field.node.action.field_summary
- field.field.node.action.field_tags
- - field.field.node.action.field_topics
- node.type.action
module:
- ds
@@ -268,7 +267,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -681,7 +679,6 @@ items:
- field.field.node.action.field_meta_tags
- field.field.node.action.field_summary
- field.field.node.action.field_tags
- - field.field.node.action.field_topics
- node.type.action
- responsive_image.styles.narrow
module:
@@ -769,7 +766,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -887,7 +883,6 @@ items:
- field.field.node.action.field_meta_tags
- field.field.node.action.field_summary
- field.field.node.action.field_tags
- - field.field.node.action.field_topics
- node.type.action
module:
- ds
@@ -924,7 +919,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -1381,7 +1375,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
field_tags:
label: Tags
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_article.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
index 83c7d06..240fef4 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml
@@ -1,4 +1,4 @@
-uuid: 80a70b0a-6a91-4f08-a8f9-a36768716fb8
+uuid: d303552e-d28e-42e1-b37c-198eef26bad1
langcode: en
status: true
dependencies:
@@ -201,7 +201,6 @@ items:
- field.field.node.article.field_meta_tags
- field.field.node.article.field_summary
- field.field.node.article.field_tags
- - field.field.node.article.field_topics
- node.type.article
module:
- ds
@@ -256,7 +255,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -812,7 +810,6 @@ items:
- field.field.node.article.field_meta_tags
- field.field.node.article.field_summary
- field.field.node.article.field_tags
- - field.field.node.article.field_topics
- node.type.article
module:
- ds
@@ -849,7 +846,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -869,7 +865,6 @@ items:
- field.field.node.article.field_meta_tags
- field.field.node.article.field_summary
- field.field.node.article.field_tags
- - field.field.node.article.field_topics
- node.type.article
- responsive_image.styles.narrow
module:
@@ -957,7 +952,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -1125,7 +1119,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: facets.facet.article_type
@@ -1181,7 +1174,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: field.field.node.article.body
@@ -1320,7 +1312,6 @@ items:
- paragraphs.paragraphs_type.file
- paragraphs.paragraphs_type.image
- paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.video
module:
- entity_reference_revisions
id: node.article.field_body_paragraph
@@ -1341,30 +1332,26 @@ items:
text: text
image: image
file: file
- video: video
faq: faq
target_bundles_drag_drop:
text:
enabled: true
- weight: -15
+ weight: -11
image:
enabled: true
- weight: -14
+ weight: -10
file:
enabled: true
- weight: -13
- video:
- enabled: true
- weight: -12
- faq:
- enabled: true
- weight: -11
+ weight: -9
slide:
- weight: -10
+ weight: -8
enabled: false
update:
- weight: -9
+ weight: -7
enabled: false
+ faq:
+ enabled: true
+ weight: 9
field_type: entity_reference_revisions
-
collection: ''
@@ -1706,7 +1693,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
field_tags:
label: Tags
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
similarity index 98%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
index c90c0a2..bed7d76 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml
@@ -1,4 +1,4 @@
-uuid: 7b1eadff-71d2-423b-9563-f282531fc523
+uuid: a0437a48-6965-4bfe-b59b-1fe1aa036558
langcode: en
status: true
dependencies:
@@ -9,26 +9,6 @@ snapshotSet: config_sync
extensionType: module
extensionName: drutopia_blog
items:
- -
- collection: ''
- name: block_visibility_groups.block_visibility_group.blog_listing
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - system
- id: blog_listing
- label: 'Blog Listing'
- logic: and
- conditions:
- b3c1bb42-5349-4f54-abe9-590277c82bcc:
- id: request_path
- pages: /blog
- negate: false
- context_mapping: { }
- uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc
- allow_other_conditions: false
-
collection: ''
name: core.entity_form_display.node.blog.default
@@ -742,7 +722,6 @@ items:
- field.field.node.blog.field_meta_tags
- field.field.node.blog.field_summary
- field.field.node.blog.field_tags
- - field.field.node.blog.field_topics
- node.type.blog
- responsive_image.styles.narrow
module:
@@ -829,7 +808,6 @@ items:
field_meta_tags: true
field_summary: true
field_tags: true
- field_topics: true
links: true
-
collection: ''
@@ -1002,7 +980,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: field.field.node.blog.body
@@ -1376,7 +1353,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
field_tags:
label: Tags
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml
index 4cc5851..7d1e812 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml
@@ -1,4 +1,4 @@
-uuid: e7d1b7f5-5ea5-438e-8024-2a86baccb866
+uuid: 4ffbbd4a-5983-42cb-a10d-ea48eec35dbc
langcode: en
status: true
dependencies:
@@ -1041,7 +1041,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
created:
label: 'Authored on'
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
similarity index 98%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
index 7b8cec0..f563f3c 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml
@@ -1,4 +1,4 @@
-uuid: fcdf16f8-3bab-4809-8a3c-3baf68528f6b
+uuid: ec93f6d8-cb4e-4637-836b-bba195c4459f
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
similarity index 92%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
index b509de6..55fe277 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml
@@ -1,4 +1,4 @@
-uuid: b4c75d59-a0f8-457a-8152-09cc52cf564e
+uuid: f3193ad5-1a44-428e-a9d6-2d22db39200f
langcode: en
status: true
dependencies:
@@ -28,9 +28,7 @@ items:
dependencies: { }
id: edit_contact_form
label: 'Edit contact form'
- route: |
- entity.contact_form.collection
- entity.contact_form.edit_form
+ path: "entity.contact_form.collection\r\nentity.contact_form.edit_form"
-
collection: ''
name: core.date_format.month_day_year
@@ -251,33 +249,6 @@ items:
created: true
status: true
uid: true
- -
- collection: ''
- name: core.entity_form_display.paragraph.video.default
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.field.paragraph.video.field_video_embed
- - paragraphs.paragraphs_type.video
- module:
- - video_embed_field
- id: paragraph.video.default
- targetEntityType: paragraph
- bundle: video
- mode: default
- content:
- field_video_embed:
- weight: 0
- settings: { }
- third_party_settings: { }
- type: video_embed_field_textfield
- region: content
- hidden:
- created: true
- status: true
- uid: true
-
collection: ''
name: core.entity_view_display.paragraph.faq.default
@@ -552,35 +523,6 @@ items:
type: datetime_default
region: left
hidden: { }
- -
- collection: ''
- name: core.entity_view_display.paragraph.video.default
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.field.paragraph.video.field_video_embed
- - paragraphs.paragraphs_type.video
- module:
- - video_embed_field
- id: paragraph.video.default
- targetEntityType: paragraph
- bundle: video
- mode: default
- content:
- field_video_embed:
- weight: 0
- label: visually_hidden
- settings:
- responsive: true
- width: 854
- height: 480
- autoplay: false
- third_party_settings: { }
- type: video_embed_field_video
- region: content
- hidden: { }
-
collection: ''
name: core.entity_view_mode.block_content.columnar
@@ -960,34 +902,6 @@ items:
default_value_callback: ''
settings: { }
field_type: datetime
- -
- collection: ''
- name: field.field.paragraph.video.field_video_embed
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.paragraph.field_video_embed
- - paragraphs.paragraphs_type.video
- module:
- - video_embed_field
- id: paragraph.video.field_video_embed
- field_name: field_video_embed
- entity_type: paragraph
- bundle: video
- label: 'Video embed'
- description: 'Paste in the embed link from YouTube or Vimeo to embed a video.'
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings:
- allowed_providers:
- vimeo: '0'
- youtube: '0'
- youtube_playlist: '0'
- field_type: video_embed_field
-
collection: ''
name: field.storage.block_content.field_slide
@@ -1311,28 +1225,6 @@ items:
indexes: { }
persist_with_no_fields: true
custom_storage: false
- -
- collection: ''
- name: field.storage.paragraph.field_video_embed
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - paragraphs
- - video_embed_field
- id: paragraph.field_video_embed
- field_name: field_video_embed
- entity_type: paragraph
- type: video_embed_field
- settings: { }
- module: video_embed_field
- locked: false
- cardinality: 1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
-
collection: ''
name: image.style.max_1300x1300
@@ -1434,7 +1326,6 @@ items:
data:
width: 170
height: 170
- anchor: center-center
-
collection: ''
name: image.style.square_thumbnail
@@ -1452,7 +1343,6 @@ items:
data:
width: 100
height: 100
- anchor: center-center
-
collection: ''
name: paragraphs.paragraphs_type.faq
@@ -1525,18 +1415,6 @@ items:
icon_uuid: null
description: null
behavior_plugins: { }
- -
- collection: ''
- name: paragraphs.paragraphs_type.video
- data:
- langcode: en
- status: true
- dependencies: { }
- id: video
- label: Video
- icon_uuid: null
- description: 'For adding an embedded video from YouTube or Vimeo.'
- behavior_plugins: { }
-
collection: ''
name: rdf.mapping.taxonomy_term.tags
@@ -1658,7 +1536,6 @@ items:
autocomplete:
suggest_suffix: true
suggest_words: true
- matching: words
-
collection: ''
name: taxonomy.vocabulary.tags
@@ -1706,10 +1583,10 @@ items:
weight: 2
is_admin: null
permissions:
- - 'access contextual links'
- - 'access in-place editing'
- 'edit terms in tags'
- 'view the administration theme'
+ - 'access contextual links'
+ - 'access in-place editing'
- 'create action content'
- 'delete own action content'
- 'edit own action content'
@@ -1748,12 +1625,6 @@ items:
weight: 3
is_admin: null
permissions:
- - 'access contextual links'
- - 'access in-place editing'
- - 'access toolbar'
- - 'access tour'
- - 'bypass node access'
- - 'create url aliases'
- 'access administration pages'
- 'access content overview'
- 'access files overview'
@@ -1770,6 +1641,12 @@ items:
- 'view own unpublished content'
- 'view the administration theme'
- 'use text format restricted_html'
+ - 'access contextual links'
+ - 'access in-place editing'
+ - 'access toolbar'
+ - 'access tour'
+ - 'bypass node access'
+ - 'create url aliases'
- 'administer comments'
- 'skip comment approval'
- 'create event content'
@@ -1790,16 +1667,6 @@ items:
weight: 4
is_admin: null
permissions:
- - 'access contextual links'
- - 'access in-place editing'
- - 'access toolbar'
- - 'access tour'
- - 'access user contact forms'
- - 'administer url aliases'
- - 'administer eu cookie compliance popup'
- - 'bypass node access'
- - 'create url aliases'
- - 'edit gdpr_checklist checklistapi checklist'
- 'access administration pages'
- 'access content overview'
- 'access files overview'
@@ -1822,6 +1689,14 @@ items:
- 'view the administration theme'
- 'administer meta tags'
- 'use text format restricted_html'
+ - 'access contextual links'
+ - 'access in-place editing'
+ - 'access toolbar'
+ - 'access tour'
+ - 'access user contact forms'
+ - 'administer url aliases'
+ - 'bypass node access'
+ - 'create url aliases'
- 'administer comments'
- 'skip comment approval'
- 'create event content'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_event.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_event.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_event.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_event.yml
index 4e4e886..b853ed1 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_event.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_event.yml
@@ -1,4 +1,4 @@
-uuid: 2d11abdb-fecd-42d3-b8ee-7e2b9c289d19
+uuid: 87dce1a3-9293-4c50-a36b-87c2c97b2155
langcode: en
status: true
dependencies:
@@ -845,7 +845,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: facets.facet.event_type
@@ -907,7 +906,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: field.field.node.event.body
@@ -1361,7 +1359,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
field_tags:
label: Tags
datasource_id: 'entity:node'
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_group.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_group.yml
new file mode 100644
index 0000000..b3a7e01
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_group.yml
@@ -0,0 +1,1788 @@
+uuid: 979dca93-36c8-461d-9716-e4025317b0a5
+langcode: en
+status: true
+dependencies:
+ module:
+ - drutopia_group
+id: config_sync.module.drutopia_group
+snapshotSet: config_sync
+extensionType: module
+extensionName: drutopia_group
+items:
+ -
+ collection: ''
+ name: config_perms.custom_perms_entity.administer_groups
+ data:
+ langcode: en
+ status: true
+ dependencies: { }
+ id: administer_groups
+ label: 'Administer groups'
+ route: entity.group.collection
+ -
+ collection: ''
+ name: core.entity_form_display.group.group.default
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - image.style.thumbnail
+ module:
+ - address
+ - image
+ - link
+ - paragraphs
+ - path
+ - telephone
+ - text
+ id: group.group.default
+ targetEntityType: group
+ bundle: group
+ mode: default
+ content:
+ field_group_address:
+ weight: 10
+ settings:
+ default_country: null
+ third_party_settings: { }
+ type: address_default
+ region: content
+ field_group_description:
+ type: entity_reference_paragraphs
+ weight: 4
+ settings:
+ title: Paragraph
+ title_plural: Paragraphs
+ edit_mode: open
+ add_mode: button
+ form_display_mode: default
+ default_paragraph_type: text
+ third_party_settings: { }
+ region: content
+ field_group_email:
+ weight: 8
+ settings:
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ type: email_default
+ region: content
+ field_group_image:
+ weight: 2
+ settings:
+ progress_indicator: throbber
+ preview_image_style: thumbnail
+ third_party_settings: { }
+ type: image_image
+ region: content
+ field_group_phone:
+ weight: 7
+ settings:
+ placeholder: ''
+ third_party_settings: { }
+ type: telephone_default
+ region: content
+ field_group_summary:
+ weight: 3
+ settings:
+ rows: 5
+ placeholder: ''
+ third_party_settings: { }
+ type: text_textarea
+ region: content
+ field_group_type:
+ weight: 1
+ settings: { }
+ third_party_settings: { }
+ type: options_select
+ region: content
+ field_group_website:
+ weight: 9
+ settings:
+ placeholder_url: ''
+ placeholder_title: ''
+ third_party_settings: { }
+ type: link_default
+ region: content
+ label:
+ type: string_textfield
+ weight: 0
+ settings:
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ region: content
+ path:
+ type: path
+ weight: 10
+ settings: { }
+ third_party_settings: { }
+ region: content
+ hidden:
+ uid: true
+ -
+ collection: ''
+ name: core.entity_form_display.group_content.group-group_membership.default
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.field.group_content.group-group_membership.group_roles
+ - group.content_type.group-group_membership
+ module:
+ - path
+ id: group_content.group-group_membership.default
+ targetEntityType: group_content
+ bundle: group-group_membership
+ mode: default
+ content:
+ entity_id:
+ type: entity_reference_autocomplete
+ weight: 5
+ settings:
+ match_operator: CONTAINS
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ region: content
+ group_roles:
+ type: options_buttons
+ weight: 6
+ settings: { }
+ third_party_settings: { }
+ region: content
+ path:
+ type: path
+ weight: 30
+ region: content
+ settings: { }
+ third_party_settings: { }
+ hidden:
+ uid: true
+ -
+ collection: ''
+ name: core.entity_view_display.group.group.default
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - image.style.large
+ module:
+ - address
+ - ds
+ - entity_reference_revisions
+ - image
+ - link
+ third_party_settings:
+ ds:
+ layout:
+ id: ds_1col
+ library: null
+ disable_css: false
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ ds_content: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ ds_content:
+ - field_group_image
+ - label
+ - field_group_description
+ - field_group_email
+ - field_group_phone
+ - field_group_website
+ - field_group_address
+ - field_group_type
+ id: group.group.default
+ targetEntityType: group
+ bundle: group
+ mode: default
+ content:
+ field_group_address:
+ weight: 6
+ label: above
+ settings: { }
+ third_party_settings: { }
+ type: address_default
+ region: ds_content
+ field_group_description:
+ type: entity_reference_revisions_entity_view
+ weight: 2
+ label: hidden
+ settings:
+ view_mode: default
+ link: ''
+ third_party_settings: { }
+ region: ds_content
+ field_group_email:
+ weight: 3
+ label: inline
+ settings: { }
+ third_party_settings: { }
+ type: email_mailto
+ region: ds_content
+ field_group_image:
+ weight: 0
+ label: visually_hidden
+ settings:
+ image_style: large
+ image_link: ''
+ third_party_settings: { }
+ type: image
+ region: ds_content
+ field_group_phone:
+ weight: 4
+ label: inline
+ settings:
+ link_to_entity: false
+ third_party_settings: { }
+ type: string
+ region: ds_content
+ field_group_type:
+ weight: 7
+ label: inline
+ settings:
+ link: true
+ third_party_settings: { }
+ type: entity_reference_label
+ region: ds_content
+ field_group_website:
+ weight: 5
+ label: inline
+ settings:
+ trim_length: 80
+ url_only: false
+ url_plain: false
+ rel: ''
+ target: ''
+ third_party_settings: { }
+ type: link
+ region: ds_content
+ label:
+ label: hidden
+ type: string
+ weight: 1
+ settings:
+ link_to_entity: true
+ third_party_settings: { }
+ region: ds_content
+ hidden:
+ changed: true
+ created: true
+ field_group_summary: true
+ uid: true
+ -
+ collection: ''
+ name: core.entity_view_display.group.group.full
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - core.entity_view_mode.group.full
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - responsive_image.styles.wide
+ module:
+ - address
+ - ds
+ - entity_reference_revisions
+ - link
+ - responsive_image
+ - telephone
+ third_party_settings:
+ ds:
+ layout:
+ id: ds_3col_stacked
+ library: ds/ds_3col_stacked
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ header: div
+ left: div
+ middle: div
+ right: div
+ footer: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ header:
+ - field_group_image
+ left:
+ - field_group_email
+ - field_group_phone
+ - field_group_website
+ - field_group_address
+ middle:
+ - label
+ - field_group_description
+ - field_group_type
+ id: group.group.full
+ targetEntityType: group
+ bundle: group
+ mode: full
+ content:
+ field_group_address:
+ weight: 4
+ label: above
+ settings: { }
+ third_party_settings: { }
+ type: address_default
+ region: left
+ field_group_description:
+ type: entity_reference_revisions_entity_view
+ weight: 6
+ label: visually_hidden
+ settings:
+ view_mode: default
+ link: ''
+ third_party_settings: { }
+ region: middle
+ field_group_email:
+ weight: 1
+ label: inline
+ settings: { }
+ third_party_settings: { }
+ type: email_mailto
+ region: left
+ field_group_image:
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: wide
+ image_link: ''
+ third_party_settings: { }
+ type: responsive_image
+ region: header
+ field_group_phone:
+ weight: 2
+ label: inline
+ settings:
+ title: ''
+ third_party_settings: { }
+ type: telephone_link
+ region: left
+ field_group_type:
+ type: entity_reference_label
+ weight: 7
+ region: middle
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ field_group_website:
+ weight: 3
+ label: inline
+ settings:
+ trim_length: 80
+ url_only: false
+ url_plain: false
+ rel: ''
+ target: ''
+ third_party_settings: { }
+ type: link_separate
+ region: left
+ label:
+ label: visually_hidden
+ type: string
+ weight: 5
+ settings:
+ link_to_entity: true
+ third_party_settings: { }
+ region: middle
+ hidden:
+ changed: true
+ created: true
+ field_group_summary: true
+ uid: true
+ -
+ collection: ''
+ name: core.entity_view_display.group.group.teaser
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - core.entity_view_mode.group.teaser
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - responsive_image.styles.narrow
+ module:
+ - ds
+ - responsive_image
+ - text
+ third_party_settings:
+ ds:
+ layout:
+ id: ds_2col
+ library: ds/ds_2col
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ left: div
+ right: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ left:
+ - field_group_image
+ right:
+ - label
+ - field_group_summary
+ id: group.group.teaser
+ targetEntityType: group
+ bundle: group
+ mode: teaser
+ content:
+ field_group_image:
+ type: responsive_image
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: narrow
+ image_link: content
+ third_party_settings: { }
+ region: left
+ field_group_summary:
+ type: text_default
+ weight: 2
+ label: visually_hidden
+ settings: { }
+ third_party_settings: { }
+ region: right
+ label:
+ label: visually_hidden
+ type: string
+ weight: 1
+ settings:
+ link_to_entity: true
+ third_party_settings: { }
+ region: right
+ hidden:
+ changed: true
+ created: true
+ field_group_address: true
+ field_group_description: true
+ field_group_email: true
+ field_group_phone: true
+ field_group_type: true
+ field_group_website: true
+ uid: true
+ -
+ collection: ''
+ name: core.entity_view_display.group_content.group-group_membership.default
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.field.group_content.group-group_membership.group_roles
+ - group.content_type.group-group_membership
+ id: group_content.group-group_membership.default
+ targetEntityType: group_content
+ bundle: group-group_membership
+ mode: default
+ content:
+ group_roles:
+ label: above
+ type: entity_reference_label
+ settings:
+ link: false
+ weight: -4
+ third_party_settings: { }
+ region: content
+ hidden:
+ entity_id: true
+ uid: true
+ -
+ collection: ''
+ name: core.entity_view_mode.group.full
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ id: group.full
+ label: 'Full content'
+ targetEntityType: group
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.group.teaser
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ id: group.teaser
+ label: Teaser
+ targetEntityType: group
+ cache: true
+ -
+ collection: ''
+ name: field.field.group.group.field_group_address
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_address
+ - group.type.group
+ module:
+ - address
+ id: group.group.field_group_address
+ field_name: field_group_address
+ entity_type: group
+ bundle: group
+ label: Address
+ description: 'Enter the full address for your group, starting by selecting your country and then complete the remaining fields.'
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings:
+ available_countries: { }
+ fields:
+ administrativeArea: administrativeArea
+ locality: locality
+ dependentLocality: dependentLocality
+ postalCode: postalCode
+ sortingCode: sortingCode
+ addressLine1: addressLine1
+ addressLine2: addressLine2
+ organization: '0'
+ givenName: '0'
+ additionalName: '0'
+ familyName: '0'
+ langcode_override: ''
+ field_type: address
+ -
+ collection: ''
+ name: field.field.group.group.field_group_description
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_description
+ - group.type.group
+ module:
+ - entity_reference_revisions
+ id: group.group.field_group_description
+ field_name: field_group_description
+ entity_type: group
+ bundle: group
+ label: 'Group description'
+ description: 'Start by adding a text paragraph and provide a detailed description of your group. You can also add image and download paragraphs if desired.'
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings:
+ handler: 'default:paragraph'
+ handler_settings:
+ target_bundles: null
+ target_bundles_drag_drop:
+ text:
+ weight: -7
+ enabled: false
+ image:
+ weight: -6
+ enabled: false
+ file:
+ weight: -5
+ enabled: false
+ field_type: entity_reference_revisions
+ -
+ collection: ''
+ name: field.field.group.group.field_group_email
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_email
+ - group.type.group
+ id: group.group.field_group_email
+ field_name: field_group_email
+ entity_type: group
+ bundle: group
+ label: Email
+ description: ''
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings: { }
+ field_type: email
+ -
+ collection: ''
+ name: field.field.group.group.field_group_image
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_image
+ - group.type.group
+ module:
+ - image
+ id: group.group.field_group_image
+ field_name: field_group_image
+ entity_type: group
+ bundle: group
+ label: Image
+ description: ''
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings:
+ file_directory: '[date:custom:Y]-[date:custom:m]'
+ file_extensions: 'png gif jpg jpeg'
+ max_filesize: ''
+ max_resolution: ''
+ min_resolution: ''
+ alt_field: true
+ alt_field_required: true
+ title_field: false
+ title_field_required: false
+ default_image:
+ uuid: ''
+ alt: ''
+ title: ''
+ width: null
+ height: null
+ handler: 'default:file'
+ handler_settings: { }
+ field_type: image
+ -
+ collection: ''
+ name: field.field.group.group.field_group_phone
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_phone
+ - group.type.group
+ module:
+ - telephone
+ id: group.group.field_group_phone
+ field_name: field_group_phone
+ entity_type: group
+ bundle: group
+ label: Phone
+ description: ''
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings: { }
+ field_type: telephone
+ -
+ collection: ''
+ name: field.field.group.group.field_group_summary
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_summary
+ - group.type.group
+ module:
+ - text
+ id: group.group.field_group_summary
+ field_name: field_group_summary
+ entity_type: group
+ bundle: group
+ label: Summary
+ description: 'Add a brief description of your group that will appear on the listing page for all groups.'
+ required: true
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings: { }
+ field_type: text_long
+ -
+ collection: ''
+ name: field.field.group.group.field_group_type
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_type
+ - group.type.group
+ - taxonomy.vocabulary.group_type
+ id: group.group.field_group_type
+ field_name: field_group_type
+ entity_type: group
+ bundle: group
+ label: 'Group type'
+ description: ''
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings:
+ handler: 'default:taxonomy_term'
+ handler_settings:
+ target_bundles:
+ group_type: group_type
+ sort:
+ field: _none
+ auto_create: false
+ auto_create_bundle: ''
+ field_type: entity_reference
+ -
+ collection: ''
+ name: field.field.group.group.field_group_website
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group.field_group_website
+ - group.type.group
+ module:
+ - link
+ id: group.group.field_group_website
+ field_name: field_group_website
+ entity_type: group
+ bundle: group
+ label: Website
+ description: ''
+ required: false
+ translatable: false
+ default_value: { }
+ default_value_callback: ''
+ settings:
+ link_type: 17
+ title: 1
+ field_type: link
+ -
+ collection: ''
+ name: field.field.group_content.group-group_membership.group_roles
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - field.storage.group_content.group_roles
+ - group.content_type.group-group_membership
+ id: group_content.group-group_membership.group_roles
+ field_name: group_roles
+ entity_type: group_content
+ bundle: group-group_membership
+ label: Roles
+ description: ''
+ required: false
+ translatable: true
+ default_value: { }
+ default_value_callback: ''
+ settings:
+ handler: 'group_type:group_role'
+ handler_settings:
+ group_type_id: group
+ field_type: entity_reference
+ -
+ collection: ''
+ name: field.storage.group.field_group_address
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - address
+ - group
+ id: group.field_group_address
+ field_name: field_group_address
+ entity_type: group
+ type: address
+ settings: { }
+ module: address
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_description
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - entity_reference_revisions
+ - group
+ - paragraphs
+ id: group.field_group_description
+ field_name: field_group_description
+ entity_type: group
+ type: entity_reference_revisions
+ settings:
+ target_type: paragraph
+ module: entity_reference_revisions
+ locked: false
+ cardinality: -1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_email
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ id: group.field_group_email
+ field_name: field_group_email
+ entity_type: group
+ type: email
+ settings: { }
+ module: core
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_image
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - file
+ - group
+ - image
+ id: group.field_group_image
+ field_name: field_group_image
+ entity_type: group
+ type: image
+ settings:
+ uri_scheme: public
+ default_image:
+ uuid: ''
+ alt: ''
+ title: ''
+ width: null
+ height: null
+ target_type: file
+ display_field: false
+ display_default: false
+ module: image
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_phone
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ - telephone
+ id: group.field_group_phone
+ field_name: field_group_phone
+ entity_type: group
+ type: telephone
+ settings: { }
+ module: telephone
+ locked: false
+ cardinality: -1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_summary
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ - text
+ id: group.field_group_summary
+ field_name: field_group_summary
+ entity_type: group
+ type: text_long
+ settings: { }
+ module: text
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_type
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ - taxonomy
+ id: group.field_group_type
+ field_name: field_group_type
+ entity_type: group
+ type: entity_reference
+ settings:
+ target_type: taxonomy_term
+ module: core
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: field.storage.group.field_group_website
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ - link
+ id: group.field_group_website
+ field_name: field_group_website
+ entity_type: group
+ type: link
+ settings: { }
+ module: link
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: false
+ custom_storage: false
+ -
+ collection: ''
+ name: group.content_type.group-group_membership
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - group.type.group
+ module:
+ - user
+ id: group-group_membership
+ label: 'Group: Group membership'
+ description: 'Adds users to groups as members.'
+ group_type: group
+ content_plugin: group_membership
+ plugin_config:
+ group_cardinality: 0
+ entity_cardinality: 1
+ -
+ collection: ''
+ name: group.role.group-anonymous
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - group.type.group
+ id: group-anonymous
+ label: Anonymous
+ weight: -102
+ internal: true
+ audience: anonymous
+ group_type: group
+ permissions_ui: true
+ permissions:
+ - 'view group'
+ -
+ collection: ''
+ name: group.role.group-member
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - group.type.group
+ id: group-member
+ label: Member
+ weight: -100
+ internal: true
+ audience: member
+ group_type: group
+ permissions_ui: true
+ permissions:
+ - 'update own group_membership content'
+ - 'leave group'
+ - 'view group'
+ - 'view group_membership content'
+ -
+ collection: ''
+ name: group.role.group-outsider
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - group.type.group
+ id: group-outsider
+ label: Outsider
+ weight: -101
+ internal: true
+ audience: outsider
+ group_type: group
+ permissions_ui: true
+ permissions:
+ - 'join group'
+ - 'view group'
+ -
+ collection: ''
+ name: group.type.group
+ data:
+ langcode: en
+ status: true
+ dependencies: { }
+ id: group
+ label: Group
+ description: 'Basic group type that can be classified by a group type vocabulary.'
+ creator_membership: true
+ creator_wizard: true
+ creator_roles: { }
+ -
+ collection: ''
+ name: pathauto.pattern.group
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - ctools
+ - group
+ id: group
+ label: Group
+ type: 'canonical_entities:group'
+ pattern: 'group/[group:title]'
+ selection_criteria:
+ 3c875db9-3e6b-4959-a2db-70a6f82b75a7:
+ id: 'entity_bundle:group'
+ bundles:
+ group: group
+ negate: false
+ context_mapping:
+ group: group
+ uuid: 3c875db9-3e6b-4959-a2db-70a6f82b75a7
+ selection_logic: and
+ weight: -5
+ relationships: { }
+ -
+ collection: ''
+ name: pathauto.pattern.group_membership
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - ctools
+ - group
+ id: group_membership
+ label: 'Group membership'
+ type: 'canonical_entities:group_content'
+ pattern: 'group/[group_content:group:title]/[group_content:pretty-path-key]/[group_content:id]'
+ selection_criteria:
+ eda525a1-cded-4cea-acdc-dfa809d5255e:
+ id: 'entity_bundle:group_content'
+ bundles:
+ group-group_membership: group-group_membership
+ negate: false
+ context_mapping:
+ group_content: group_content
+ uuid: eda525a1-cded-4cea-acdc-dfa809d5255e
+ selection_logic: and
+ weight: -5
+ relationships: { }
+ -
+ collection: ''
+ name: pathauto.pattern.group_type
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - ctools
+ - taxonomy
+ id: group_type
+ label: 'Group type'
+ type: 'canonical_entities:taxonomy_term'
+ pattern: '[term:vocabulary]/[term:name]'
+ selection_criteria:
+ 71ba3109-32a7-4acd-bac0-f21f16d63506:
+ id: 'entity_bundle:taxonomy_term'
+ bundles:
+ group_type: group_type
+ negate: false
+ context_mapping:
+ taxonomy_term: taxonomy_term
+ uuid: 71ba3109-32a7-4acd-bac0-f21f16d63506
+ selection_logic: and
+ weight: -5
+ relationships: { }
+ -
+ collection: ''
+ name: taxonomy.vocabulary.group_type
+ data:
+ langcode: en
+ status: true
+ dependencies: { }
+ name: 'Group type'
+ vid: group_type
+ description: 'For categorizing groups.'
+ hierarchy: 0
+ weight: 0
+ -
+ collection: ''
+ name: views.view.group
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - core.entity_view_mode.group.teaser
+ - field.storage.group.field_group_summary
+ - group.type.group
+ - system.menu.main
+ module:
+ - ds
+ - group
+ - text
+ - user
+ id: group
+ label: Group
+ module: views
+ description: 'Group listing page.'
+ tag: ''
+ base_table: groups_field_data
+ base_field: id
+ core: 8.x
+ display:
+ default:
+ display_plugin: default
+ id: default
+ display_title: Master
+ position: 0
+ display_options:
+ access:
+ type: perm
+ options:
+ perm: 'access content'
+ cache:
+ type: tag
+ options: { }
+ query:
+ type: views_query
+ options:
+ disable_sql_rewrite: false
+ distinct: false
+ replica: false
+ query_comment: ''
+ query_tags: { }
+ exposed_form:
+ type: basic
+ options:
+ submit_button: Apply
+ reset_button: false
+ reset_button_label: Reset
+ exposed_sorts_label: 'Sort by'
+ expose_sort_order: true
+ sort_asc_label: Asc
+ sort_desc_label: Desc
+ pager:
+ type: mini
+ options:
+ items_per_page: 10
+ offset: 0
+ id: 0
+ total_pages: null
+ expose:
+ items_per_page: false
+ items_per_page_label: 'Items per page'
+ items_per_page_options: '5, 10, 25, 50'
+ items_per_page_options_all: false
+ items_per_page_options_all_label: '- All -'
+ offset: false
+ offset_label: Offset
+ tags:
+ previous: ‹‹
+ next: ››
+ style:
+ type: default
+ options:
+ row_class: ''
+ default_row_class: false
+ uses_fields: false
+ row:
+ type: 'ds_entity:group'
+ options:
+ relationship: none
+ view_mode: teaser
+ alternating_fieldset:
+ alternating: false
+ allpages: false
+ item_0: teaser
+ item_1: teaser
+ item_2: teaser
+ item_3: teaser
+ item_4: teaser
+ item_5: teaser
+ item_6: teaser
+ item_7: teaser
+ item_8: teaser
+ item_9: teaser
+ grouping_fieldset:
+ group: false
+ advanced_fieldset:
+ advanced: false
+ fields:
+ label:
+ id: label
+ table: groups_field_data
+ field: label
+ 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: h2
+ 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: true
+ group_column: value
+ group_columns: { }
+ group_rows: true
+ delta_limit: 0
+ delta_offset: 0
+ delta_reversed: false
+ delta_first_last: false
+ multi_type: separator
+ separator: ', '
+ field_api_classes: false
+ entity_type: null
+ entity_field: label
+ plugin_id: field
+ field_group_summary:
+ id: field_group_summary
+ table: group__field_group_summary
+ field: field_group_summary
+ 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
+ click_sort_column: value
+ type: text_default
+ settings: { }
+ group_column: value
+ group_columns: { }
+ group_rows: true
+ delta_limit: 0
+ delta_offset: 0
+ delta_reversed: false
+ delta_first_last: false
+ multi_type: separator
+ separator: ', '
+ field_api_classes: false
+ plugin_id: field
+ filters:
+ type:
+ id: type
+ table: groups_field_data
+ field: type
+ value:
+ group: group
+ entity_type: group
+ entity_field: type
+ plugin_id: bundle
+ sorts:
+ label:
+ id: label
+ table: groups_field_data
+ field: label
+ relationship: none
+ group_type: group
+ admin_label: ''
+ order: ASC
+ exposed: false
+ expose:
+ label: ''
+ entity_type: group
+ entity_field: label
+ plugin_id: standard
+ title: Groups
+ header: { }
+ footer: { }
+ empty: { }
+ relationships: { }
+ arguments: { }
+ display_extenders: { }
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url.query_args
+ - user.permissions
+ tags:
+ - 'config:field.storage.group.field_group_summary'
+ page_1:
+ display_plugin: page
+ id: page_1
+ display_title: Page
+ position: 1
+ display_options:
+ display_extenders: { }
+ path: group
+ menu:
+ type: normal
+ title: Groups
+ description: 'Find out about our groups.'
+ expanded: false
+ parent: ''
+ weight: 0
+ context: '0'
+ menu_name: main
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_content'
+ - 'languages:language_interface'
+ - url.query_args
+ - user.permissions
+ tags:
+ - 'config:field.storage.group.field_group_summary'
+ -
+ collection: ''
+ name: views.view.group_content
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - core.entity_view_mode.node.teaser
+ module:
+ - gnode
+ - group
+ - node
+ - user
+ id: group_content
+ label: 'Group content'
+ module: gnode
+ description: 'Lists all of the nodes that have been added to a group.'
+ tag: ''
+ base_table: node_field_data
+ base_field: nid
+ core: 8.x
+ display:
+ default:
+ display_plugin: default
+ id: default
+ display_title: Master
+ position: 0
+ display_options:
+ access:
+ type: perm
+ options:
+ perm: 'access content'
+ cache:
+ type: tag
+ options: { }
+ query:
+ type: views_query
+ options:
+ disable_sql_rewrite: false
+ distinct: false
+ replica: false
+ query_comment: ''
+ query_tags: { }
+ exposed_form:
+ type: basic
+ options:
+ submit_button: Apply
+ reset_button: false
+ reset_button_label: Reset
+ exposed_sorts_label: 'Sort by'
+ expose_sort_order: true
+ sort_asc_label: Asc
+ sort_desc_label: Desc
+ pager:
+ type: full
+ options:
+ items_per_page: 20
+ offset: 0
+ id: 0
+ total_pages: null
+ tags:
+ previous: ‹‹
+ next: ››
+ first: '« First'
+ last: 'Last »'
+ expose:
+ items_per_page: false
+ items_per_page_label: 'Items per page'
+ items_per_page_options: '5, 10, 25, 50'
+ items_per_page_options_all: false
+ items_per_page_options_all_label: '- All -'
+ offset: false
+ offset_label: Offset
+ quantity: 9
+ style:
+ type: default
+ options:
+ row_class: ''
+ default_row_class: true
+ row:
+ type: 'entity:node'
+ options:
+ relationship: none
+ view_mode: teaser
+ fields: { }
+ filters:
+ status:
+ id: status
+ table: node_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
+ 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: node
+ entity_field: status
+ plugin_id: boolean
+ sorts:
+ created:
+ id: created
+ table: node_field_data
+ field: created
+ relationship: none
+ group_type: group
+ admin_label: ''
+ order: DESC
+ exposed: false
+ expose:
+ label: ''
+ granularity: second
+ entity_type: node
+ entity_field: created
+ plugin_id: date
+ 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 content available.'
+ plugin_id: text_custom
+ relationships:
+ group_content:
+ id: group_content
+ table: node_field_data
+ field: group_content
+ relationship: none
+ group_type: group
+ admin_label: 'Content relation'
+ required: true
+ group_content_plugins: { }
+ entity_type: node
+ plugin_id: group_content_to_entity_reverse
+ arguments:
+ gid:
+ id: gid
+ table: group_content_field_data
+ field: gid
+ relationship: group_content
+ group_type: group
+ admin_label: ''
+ default_action: 'access denied'
+ exception:
+ value: all
+ title_enable: false
+ title: All
+ title_enable: true
+ title: '{{ arguments.gid|placeholder }} nodes'
+ default_argument_type: fixed
+ default_argument_options:
+ argument: ''
+ default_argument_skip_url: false
+ summary_options:
+ base_path: ''
+ count: true
+ items_per_page: 25
+ override: false
+ summary:
+ sort_order: asc
+ number_of_records: 0
+ format: default_summary
+ specify_validation: false
+ validate:
+ type: none
+ fail: 'not found'
+ validate_options: { }
+ break_phrase: false
+ not: false
+ entity_type: group_content
+ entity_field: gid
+ plugin_id: numeric
+ display_extenders: { }
+ title: 'Group content'
+ filter_groups:
+ operator: AND
+ groups: { }
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_interface'
+ - url
+ - url.query_args
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ block_recent:
+ display_plugin: block
+ id: block_recent
+ display_title: 'Block recent'
+ position: 2
+ display_options:
+ display_extenders: { }
+ title: 'Latest group content'
+ defaults:
+ title: false
+ pager: false
+ use_more: false
+ use_more_always: false
+ use_more_text: false
+ link_display: false
+ link_url: false
+ pager:
+ type: some
+ options:
+ items_per_page: 10
+ offset: 0
+ use_more: true
+ use_more_always: false
+ use_more_text: 'All group content'
+ link_display: page_1
+ link_url: ''
+ display_description: ''
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_interface'
+ - url
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
+ page_1:
+ display_plugin: page
+ id: page_1
+ display_title: Page
+ position: 1
+ display_options:
+ display_extenders: { }
+ path: group/%group/group-content
+ menu:
+ type: tab
+ title: 'Group content'
+ description: ''
+ expanded: false
+ parent: ''
+ weight: 25
+ context: '0'
+ menu_name: main
+ cache_metadata:
+ max-age: -1
+ contexts:
+ - 'languages:language_interface'
+ - url
+ - url.query_args
+ - 'user.node_grants:view'
+ - user.permissions
+ tags: { }
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml
new file mode 100644
index 0000000..65e10f4
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml
@@ -0,0 +1,137 @@
+uuid: f60a9e63-ae7a-4191-93b6-99636cf4b2e6
+langcode: en
+status: true
+dependencies:
+ module:
+ - drutopia_home_page
+id: config_sync.module.drutopia_home_page
+snapshotSet: config_sync
+extensionType: module
+extensionName: drutopia_home_page
+items:
+ -
+ collection: ''
+ name: block.block.home_page_feature
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ module:
+ - block_visibility_groups
+ theme:
+ - octavia
+ enforced:
+ module:
+ - block_content
+ id: home_page_feature
+ theme: octavia
+ region: content
+ weight: 4
+ provider: null
+ plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
+ settings:
+ id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933'
+ label: 'Home page feature'
+ provider: block_content
+ label_display: '0'
+ status: true
+ info: ''
+ view_mode: full
+ visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
+ -
+ collection: ''
+ name: block.block.home_page_hero
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ module:
+ - block_visibility_groups
+ theme:
+ - octavia
+ enforced:
+ module:
+ - block_content
+ id: home_page_hero
+ theme: octavia
+ region: highlighted
+ weight: 0
+ provider: null
+ plugin: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
+ settings:
+ id: 'block_content:9f7eec29-3c40-49f1-b7d9-18ff5c4eb32d'
+ label: 'Home page hero'
+ provider: block_content
+ label_display: '0'
+ status: true
+ info: ''
+ view_mode: full
+ visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
+ -
+ collection: ''
+ name: block.block.views_block__resource_block_promoted
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ config:
+ - block_visibility_groups.block_visibility_group.home_page
+ - views.view.resource
+ module:
+ - block_visibility_groups
+ - views
+ theme:
+ - octavia
+ id: views_block__resource_block_promoted
+ theme: octavia
+ region: content
+ weight: 5
+ provider: null
+ plugin: 'views_block:resource-block_promoted'
+ settings:
+ id: 'views_block:resource-block_promoted'
+ label: ''
+ provider: views
+ label_display: visible
+ views_label: ''
+ items_per_page: none
+ visibility:
+ condition_group:
+ id: condition_group
+ negate: false
+ block_visibility_group: home_page
+ context_mapping: { }
+ -
+ collection: ''
+ name: block_visibility_groups.block_visibility_group.home_page
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - system
+ id: home_page
+ label: 'Home page'
+ logic: and
+ conditions:
+ c14822f9-38fa-4397-a5b6-ba9a6f94138e:
+ id: request_path
+ pages: ''
+ negate: false
+ context_mapping: { }
+ uuid: c14822f9-38fa-4397-a5b6-ba9a6f94138e
+ allow_other_conditions: false
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
index 626dd0a..613c8c7 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml
@@ -1,4 +1,4 @@
-uuid: 858d01ae-4697-4b0c-a11b-4b54ea2aa139
+uuid: 347f651a-1d80-47c8-b638-173063727eee
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
similarity index 97%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
index 9902c94..18fbdd1 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml
@@ -1,4 +1,4 @@
-uuid: 013a4dc7-d148-4321-916b-4905425635cf
+uuid: 983a7104-c4ac-4b50-a8fe-5a65ce7168e9
langcode: en
status: true
dependencies:
@@ -275,7 +275,8 @@ items:
ds:
layout:
id: ds_1col
- library: null
+ path: modules/contrib/ds
+ library: ''
disable_css: false
entity_classes: all_classes
settings:
@@ -291,6 +292,7 @@ items:
ds_content:
- node_title
- field_summary
+ - links
fields:
node_title:
plugin_id: node_title
@@ -313,11 +315,15 @@ items:
settings: { }
third_party_settings: { }
region: ds_content
+ links:
+ weight: 2
+ settings: { }
+ third_party_settings: { }
+ region: ds_content
hidden:
body: true
field_body_paragraph: true
field_meta_tags: true
- links: true
-
collection: ''
name: field.field.node.page.body
@@ -359,7 +365,6 @@ items:
- paragraphs.paragraphs_type.slide
- paragraphs.paragraphs_type.text
- paragraphs.paragraphs_type.update
- - paragraphs.paragraphs_type.video
module:
- entity_reference_revisions
id: node.page.field_body_paragraph
@@ -380,32 +385,28 @@ items:
text: text
image: image
file: file
- video: video
slide: slide
update: update
faq: faq
target_bundles_drag_drop:
text:
enabled: true
- weight: -15
+ weight: -11
image:
enabled: true
- weight: -14
+ weight: -10
file:
enabled: true
- weight: -13
- video:
- enabled: true
- weight: -12
+ weight: -9
slide:
enabled: true
- weight: -11
+ weight: -8
update:
enabled: true
- weight: -10
+ weight: -7
faq:
enabled: true
- weight: -9
+ weight: 9
field_type: entity_reference_revisions
-
collection: ''
@@ -474,7 +475,7 @@ items:
parent: 'main:'
name: 'Basic page'
type: page
- description: "Use basic pages for your static content, such as an 'About us' page."
+ description: 'Use basic pages for your static content, such as an ''About us'' page.'
help: ''
new_revision: true
preview_mode: 1
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml
similarity index 97%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml
index 7419228..2ee9b40 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml
@@ -1,4 +1,4 @@
-uuid: 330161b3-b29d-4c1c-af94-0550b168c2d5
+uuid: 1ef07a9b-7755-4bcd-a930-690252f0ff2b
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_people.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
index 18b6e1f..5db578e 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml
@@ -1,4 +1,4 @@
-uuid: e5307542-9e52-4536-8834-a530f392a477
+uuid: c755e3a8-dcee-4c64-a0e6-6a219db63f27
langcode: en
status: true
dependencies:
@@ -1012,7 +1012,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
created:
label: 'Authored on'
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
similarity index 89%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
index b6409d0..20b7674 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml
@@ -1,4 +1,4 @@
-uuid: 5d7fa79a-9ba4-418a-9ca8-76032eab034b
+uuid: c2dc2e72-7544-46a4-a9a4-22fceb970f65
langcode: en
status: true
dependencies:
@@ -9,40 +9,6 @@ snapshotSet: config_sync
extensionType: module
extensionName: drutopia_related_content
items:
- -
- collection: ''
- name: block.block.views_block__related_content_block_related_content
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - views.view.related_content
- module:
- - block_visibility_groups
- - views
- theme:
- - octavia
- id: views_block__related_content_block_related_content
- theme: octavia
- region: content
- weight: 10
- provider: null
- plugin: 'views_block:related_content-block_related_content'
- settings:
- id: 'views_block:related_content-block_related_content'
- label: ''
- provider: views
- label_display: visible
- views_label: ''
- items_per_page: none
- context_mapping: { }
- visibility:
- condition_group:
- id: condition_group
- negate: false
- block_visibility_group: ''
- context_mapping: { }
-
collection: ''
name: views.view.related_content
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml
similarity index 92%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml
index 1a9db92..960a512 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml
@@ -1,4 +1,4 @@
-uuid: 775e36b4-306c-488b-bd8c-a91515dbd83d
+uuid: 5c7d379c-a84d-4574-b917-4f35fd879e52
langcode: en
status: true
dependencies:
@@ -44,7 +44,6 @@ items:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -58,7 +57,6 @@ items:
- paragraphs
- path
- text
- - video_embed_field
id: node.resource.default
targetEntityType: node
bundle: resource
@@ -66,7 +64,7 @@ items:
content:
created:
type: datetime_timestamp
- weight: 11
+ weight: 10
region: content
settings: { }
third_party_settings: { }
@@ -91,7 +89,7 @@ items:
type: image_image
region: content
field_meta_tags:
- weight: 16
+ weight: 15
settings: { }
third_party_settings: { }
type: metatag_firehose
@@ -117,12 +115,6 @@ items:
third_party_settings: { }
type: options_select
region: content
- field_resource_video:
- weight: 7
- settings: { }
- third_party_settings: { }
- type: video_embed_field_textfield
- region: content
field_summary:
weight: 3
settings:
@@ -132,7 +124,7 @@ items:
type: text_textarea
region: content
field_tags:
- weight: 9
+ weight: 8
settings:
match_operator: CONTAINS
size: 60
@@ -141,14 +133,14 @@ items:
type: entity_reference_autocomplete_tags
region: content
field_topics:
- weight: 8
+ weight: 7
settings: { }
third_party_settings: { }
type: options_select
region: content
path:
type: path
- weight: 14
+ weight: 13
region: content
settings: { }
third_party_settings: { }
@@ -156,21 +148,21 @@ items:
type: boolean_checkbox
settings:
display_label: true
- weight: 12
+ weight: 11
region: content
third_party_settings: { }
status:
type: boolean_checkbox
settings:
display_label: true
- weight: 15
+ weight: 14
region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
settings:
display_label: true
- weight: 13
+ weight: 12
region: content
third_party_settings: { }
title:
@@ -183,7 +175,7 @@ items:
third_party_settings: { }
uid:
type: entity_reference_autocomplete
- weight: 10
+ weight: 9
settings:
match_operator: CONTAINS
size: 60
@@ -208,11 +200,9 @@ items:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
- - image.style.max_325x325
- node.type.resource
- responsive_image.styles.narrow
module:
@@ -223,7 +213,6 @@ items:
- responsive_image
- text
- user
- - video_embed_field
third_party_settings:
ds:
layout:
@@ -243,9 +232,8 @@ items:
regions:
ds_content:
- field_image
- - field_resource_video
- - node_title
- group_card_content
+ - node_title
- field_summary
- field_topics
- field_resource_link
@@ -270,7 +258,7 @@ items:
- field_resource_link
- field_resource_file
parent_name: ''
- weight: 2
+ weight: 1
format_type: html_element
format_settings:
id: ''
@@ -317,17 +305,6 @@ items:
rel: ''
target: ''
third_party_settings: { }
- field_resource_video:
- type: video_embed_field_thumbnail
- weight: 1
- region: ds_content
- label: visually_hidden
- settings:
- image_style: max_325x325
- link_image_to: content
- third_party_settings:
- ds:
- ds_limit: ''
field_summary:
type: text_default
weight: 3
@@ -365,7 +342,6 @@ items:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -403,7 +379,6 @@ items:
field_resource_file: true
field_resource_link: true
field_resource_type: true
- field_resource_video: true
field_summary: true
field_tags: true
field_topics: true
@@ -424,7 +399,6 @@ items:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -437,12 +411,11 @@ items:
- link
- responsive_image
- user
- - video_embed_field
third_party_settings:
ds:
layout:
- id: ds_2col_fluid
- library: ds/ds_2col_fluid
+ id: ds_2col
+ library: ds/ds_2col
disable_css: true
entity_classes: all_classes
settings:
@@ -458,14 +431,13 @@ items:
regions:
left:
- field_image
- - field_resource_video
right:
- field_body_paragraph
+ - field_resource_link
+ - field_resource_file
- field_resource_type
- field_topics
- field_tags
- - field_resource_file
- - field_resource_link
id: node.resource.full
targetEntityType: node
bundle: resource
@@ -473,7 +445,7 @@ items:
content:
field_body_paragraph:
type: entity_reference_revisions_entity_view
- weight: 2
+ weight: 1
region: right
label: visually_hidden
settings:
@@ -491,50 +463,35 @@ items:
third_party_settings: { }
field_resource_file:
type: file_default
- weight: 6
+ weight: 3
region: right
label: visually_hidden
settings:
use_description_as_link_text: true
- third_party_settings:
- ds:
- ds_limit: ''
+ third_party_settings: { }
field_resource_link:
type: link
- weight: 7
+ weight: 2
region: right
label: visually_hidden
settings:
trim_length: 80
url_only: false
url_plain: false
- rel: '0'
- target: '0'
+ rel: ''
+ target: ''
third_party_settings: { }
field_resource_type:
type: entity_reference_label
- weight: 3
+ weight: 4
region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- field_resource_video:
- type: video_embed_field_video
- weight: 1
- region: left
- label: visually_hidden
- settings:
- responsive: true
- width: 854
- height: 480
- autoplay: false
- third_party_settings:
- ds:
- ds_limit: ''
field_tags:
type: entity_reference_label
- weight: 5
+ weight: 6
region: right
label: visually_hidden
settings:
@@ -542,7 +499,7 @@ items:
third_party_settings: { }
field_topics:
type: entity_reference_label
- weight: 4
+ weight: 5
region: right
label: visually_hidden
settings:
@@ -691,11 +648,9 @@ items:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
- - image.style.max_325x325
- node.type.resource
- responsive_image.styles.narrow
module:
@@ -703,7 +658,6 @@ items:
- field_group
- responsive_image
- user
- - video_embed_field
third_party_settings:
ds:
layout:
@@ -723,10 +677,9 @@ items:
regions:
ds_content:
- field_image
- - field_resource_video
+ - group_card_content
- 'bundle_field:node'
- node_title
- - group_card_content
fields:
'bundle_field:node':
plugin_id: 'bundle_field:node'
@@ -749,7 +702,7 @@ items:
- 'bundle_field:node'
- node_title
parent_name: ''
- weight: 2
+ weight: 1
format_type: html_element
format_settings:
id: ''
@@ -776,17 +729,6 @@ items:
responsive_image_style: narrow
image_link: content
third_party_settings: { }
- field_resource_video:
- type: video_embed_field_thumbnail
- weight: 1
- region: ds_content
- label: visually_hidden
- settings:
- image_style: max_325x325
- link_image_to: content
- third_party_settings:
- ds:
- ds_limit: ''
hidden:
body: true
field_body_paragraph: true
@@ -814,7 +756,6 @@ items:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -827,7 +768,6 @@ items:
- responsive_image
- text
- user
- - video_embed_field
third_party_settings:
ds:
layout:
@@ -848,7 +788,6 @@ items:
regions:
left:
- field_image
- - field_resource_video
right:
- node_title
- field_summary
@@ -859,7 +798,7 @@ items:
fields:
node_title:
plugin_id: node_title
- weight: 2
+ weight: 1
label: hidden
formatter: default
settings:
@@ -883,7 +822,7 @@ items:
third_party_settings: { }
field_resource_file:
type: file_default
- weight: 5
+ weight: 4
region: right
label: visually_hidden
settings:
@@ -891,7 +830,7 @@ items:
third_party_settings: { }
field_resource_link:
type: link
- weight: 4
+ weight: 3
region: right
label: visually_hidden
settings:
@@ -903,35 +842,22 @@ items:
third_party_settings: { }
field_resource_type:
type: entity_reference_label
- weight: 6
+ weight: 5
region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- field_resource_video:
- type: video_embed_field_video
- weight: 1
- region: left
- label: visually_hidden
- settings:
- responsive: true
- width: 854
- height: 480
- autoplay: false
- third_party_settings:
- ds:
- ds_limit: ''
field_summary:
type: text_default
- weight: 3
+ weight: 2
region: right
label: visually_hidden
settings: { }
third_party_settings: { }
field_topics:
type: entity_reference_label
- weight: 7
+ weight: 6
region: right
label: visually_hidden
settings:
@@ -998,7 +924,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: facets.facet.resource_type
@@ -1054,7 +979,6 @@ items:
settings: { }
empty_behavior:
behavior: none
- show_title: null
-
collection: ''
name: field.field.node.resource.body
@@ -1093,7 +1017,6 @@ items:
- paragraphs.paragraphs_type.file
- paragraphs.paragraphs_type.image
- paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.video
module:
- entity_reference_revisions
id: node.resource.field_body_paragraph
@@ -1114,7 +1037,6 @@ items:
text: text
image: image
file: file
- video: video
target_bundles_drag_drop:
text:
enabled: true
@@ -1131,18 +1053,6 @@ items:
update:
weight: -7
enabled: false
- faq:
- weight: 10
- enabled: false
- storyline_header:
- weight: 14
- enabled: false
- storyline_item:
- weight: 15
- enabled: false
- video:
- enabled: true
- weight: 18
field_type: entity_reference_revisions
-
collection: ''
@@ -1299,34 +1209,6 @@ items:
auto_create: false
auto_create_bundle: ''
field_type: entity_reference
- -
- collection: ''
- name: field.field.node.resource.field_resource_video
- data:
- langcode: en
- status: true
- dependencies:
- config:
- - field.storage.node.field_resource_video
- - node.type.resource
- module:
- - video_embed_field
- id: node.resource.field_resource_video
- field_name: field_resource_video
- entity_type: node
- bundle: resource
- label: 'Resource video'
- description: 'Paste in the embed link from YouTube or Vimeo to embed a video.'
- required: false
- translatable: false
- default_value: { }
- default_value_callback: ''
- settings:
- allowed_providers:
- vimeo: '0'
- youtube: '0'
- youtube_playlist: '0'
- field_type: video_embed_field
-
collection: ''
name: field.field.node.resource.field_summary
@@ -1486,28 +1368,6 @@ items:
indexes: { }
persist_with_no_fields: false
custom_storage: false
- -
- collection: ''
- name: field.storage.node.field_resource_video
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - node
- - video_embed_field
- id: node.field_resource_video
- field_name: field_resource_video
- entity_type: node
- type: video_embed_field
- settings: { }
- module: video_embed_field
- locked: false
- cardinality: -1
- translatable: true
- indexes: { }
- persist_with_no_fields: false
- custom_storage: false
-
collection: ''
name: node.type.resource
@@ -1599,7 +1459,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
field_tags:
label: Tags
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_search.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
index 4ee6527..1de0037 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml
@@ -1,4 +1,4 @@
-uuid: f75046fa-ff06-44e8-926a-5d889d9980f8
+uuid: 3700e09a-5481-4907-bffb-263d07b15c04
langcode: en
status: true
dependencies:
@@ -79,7 +79,7 @@ items:
datasource_id: 'entity:node'
property_path: title
type: text
- boost: 8.0
+ boost: !!float 8
created:
label: 'Authored on'
datasource_id: 'entity:node'
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
similarity index 94%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
index d18d343..5e4a136 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml
@@ -1,4 +1,4 @@
-uuid: 1ad2b2b0-29b3-4d6d-8f71-7b94bac12092
+uuid: 6eff7b4a-8b9c-4422-8b63-0ca7a3a068b2
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_site.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
index 7cd490d..ae9947e 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml
@@ -1,4 +1,4 @@
-uuid: 0ad88783-316b-4fce-97aa-264184a97f59
+uuid: 424f4d90-ea7e-4f1b-a476-82fd7ea16734
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml
index 47f41d7..3553cc4 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml
@@ -1,4 +1,4 @@
-uuid: bbacab11-36f5-49e2-a4b6-d7edbffb5ab8
+uuid: 961bc4df-db65-4720-aca9-83436c3484fb
langcode: en
status: true
dependencies:
@@ -44,8 +44,8 @@ items:
status: true
dependencies:
config:
- - field.field.paragraph.storyline_item.field_storyline_heading
- field.field.paragraph.storyline_item.field_text
+ - field.field.paragraph.storyline_item.field_storyline_heading
- paragraphs.paragraphs_type.storyline_item
module:
- text
@@ -54,14 +54,6 @@ items:
bundle: storyline_item
mode: default
content:
- field_storyline_heading:
- weight: 0
- settings:
- size: 60
- placeholder: ''
- third_party_settings: { }
- type: string_textfield
- region: content
field_text:
weight: 1
settings:
@@ -70,6 +62,14 @@ items:
third_party_settings: { }
type: text_textarea
region: content
+ field_storyline_heading:
+ weight: 0
+ settings:
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ type: string_textfield
+ region: content
hidden:
created: true
status: true
@@ -106,8 +106,8 @@ items:
status: true
dependencies:
config:
- - field.field.paragraph.storyline_item.field_storyline_heading
- field.field.paragraph.storyline_item.field_text
+ - field.field.paragraph.storyline_item.field_storyline_heading
- paragraphs.paragraphs_type.storyline_item
module:
- field_group
@@ -137,6 +137,13 @@ items:
bundle: storyline_item
mode: default
content:
+ field_text:
+ weight: 2
+ label: visually_hidden
+ settings: { }
+ third_party_settings: { }
+ type: text_default
+ region: content
field_storyline_heading:
weight: 1
label: visually_hidden
@@ -145,13 +152,6 @@ items:
third_party_settings: { }
type: string
region: content
- field_text:
- weight: 2
- label: visually_hidden
- settings: { }
- third_party_settings: { }
- type: text_default
- region: content
hidden: { }
-
collection: ''
diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_user.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_user.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.drutopia_user.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia_user.yml
index 9de8c08..239e1bb 100644
--- a/config/config_snapshot.snapshot.config_sync.module.drutopia_user.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_user.yml
@@ -1,4 +1,4 @@
-uuid: 9677d604-088c-4071-b4ad-df02a2b3ae0a
+uuid: 371960b1-fc2a-47cc-81a6-d0a7f31c40b4
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.ds.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml
similarity index 90%
rename from config/config_snapshot.snapshot.config_sync.module.ds.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.ds.yml
index 52258ba..e062784 100644
--- a/config/config_snapshot.snapshot.config_sync.module.ds.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml
@@ -1,4 +1,4 @@
-uuid: a788af99-d17d-429c-af06-3258af4adbba
+uuid: dc8c9a0b-dc52-47e4-8a14-78fac5553c20
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml b/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
similarity index 91%
rename from config/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
index f9bf237..e43dfbf 100644
--- a/config/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml
@@ -1,4 +1,4 @@
-uuid: 988aa32b-0073-4b2d-9e80-c4e0f717e276
+uuid: 8502cdd1-bc5e-4545-a82c-bd1934b12dcd
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.field.yml b/config/sync/config_snapshot.snapshot.config_sync.module.field.yml
similarity index 85%
rename from config/config_snapshot.snapshot.config_sync.module.field.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.field.yml
index 67386f6..85ec222 100644
--- a/config/config_snapshot.snapshot.config_sync.module.field.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.field.yml
@@ -1,4 +1,4 @@
-uuid: 7f5762dd-cd25-4cdf-a6aa-69db79003ba0
+uuid: cd0f3596-e8a3-4159-a529-02e5dd3e0ac4
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.field_ui.yml b/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml
similarity index 85%
rename from config/config_snapshot.snapshot.config_sync.module.field_ui.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml
index f577ed2..9a4f33f 100644
--- a/config/config_snapshot.snapshot.config_sync.module.field_ui.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml
@@ -1,4 +1,4 @@
-uuid: 80fb3783-d115-4226-ba2e-118336be1946
+uuid: bbb54562-144a-4301-9f9f-892c0e6b0a22
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.file.yml b/config/sync/config_snapshot.snapshot.config_sync.module.file.yml
new file mode 100644
index 0000000..0d770dc
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.file.yml
@@ -0,0 +1,21 @@
+uuid: b8f4fb90-1c89-42f0-8f6c-b9f835952fa2
+langcode: en
+status: true
+dependencies:
+ module:
+ - file
+id: config_sync.module.file
+snapshotSet: config_sync
+extensionType: module
+extensionName: file
+items:
+ -
+ collection: ''
+ name: file.settings
+ data:
+ description:
+ type: textfield
+ length: 128
+ icon:
+ directory: core/modules/file/icons
+ make_unused_managed_files_temporary: false
diff --git a/config/config_snapshot.snapshot.config_sync.module.filter.yml b/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml
similarity index 95%
rename from config/config_snapshot.snapshot.config_sync.module.filter.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.filter.yml
index 368f77e..53b04d7 100644
--- a/config/config_snapshot.snapshot.config_sync.module.filter.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml
@@ -1,4 +1,4 @@
-uuid: 0f80aaeb-6e35-4e76-bb03-9905c7a56c83
+uuid: e17c6a39-b140-4ee5-9ff5-88f8c533a293
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.group.yml b/config/sync/config_snapshot.snapshot.config_sync.module.group.yml
new file mode 100644
index 0000000..7b6f000
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.group.yml
@@ -0,0 +1,39 @@
+uuid: 94ded23f-e5e4-4939-a99e-874b7e1b8ab6
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+id: config_sync.module.group
+snapshotSet: config_sync
+extensionType: module
+extensionName: group
+items:
+ -
+ collection: ''
+ name: field.storage.group_content.group_roles
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - group
+ - options
+ id: group_content.group_roles
+ field_name: group_roles
+ entity_type: group_content
+ type: entity_reference
+ settings:
+ target_type: group_role
+ module: core
+ locked: true
+ cardinality: -1
+ translatable: false
+ indexes: { }
+ persist_with_no_fields: true
+ custom_storage: false
+ -
+ collection: ''
+ name: group.settings
+ data:
+ use_admin_theme: true
diff --git a/config/config_snapshot.snapshot.config_sync.module.hal.yml b/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml
similarity index 86%
rename from config/config_snapshot.snapshot.config_sync.module.hal.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.hal.yml
index fddb43b..218f8c2 100644
--- a/config/config_snapshot.snapshot.config_sync.module.hal.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml
@@ -1,4 +1,4 @@
-uuid: e8814004-5ea8-4970-a5a4-7e49c4a8defc
+uuid: 1aa93631-926d-4460-84f3-c8834b8bae4d
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.image.yml b/config/sync/config_snapshot.snapshot.config_sync.module.image.yml
similarity index 97%
rename from config/config_snapshot.snapshot.config_sync.module.image.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.image.yml
index 531a664..a830f29 100644
--- a/config/config_snapshot.snapshot.config_sync.module.image.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.image.yml
@@ -1,4 +1,4 @@
-uuid: 804f8a1a-b975-418a-89df-281874bf43a2
+uuid: 71d14fce-2a72-46ea-a881-834d62f6d423
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.menu_ui.yml b/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml
similarity index 86%
rename from config/config_snapshot.snapshot.config_sync.module.menu_ui.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml
index 7b13c47..8d3d518 100644
--- a/config/config_snapshot.snapshot.config_sync.module.menu_ui.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml
@@ -1,4 +1,4 @@
-uuid: e0abe845-270f-4972-b8fa-e79d74fd04c6
+uuid: e13a4528-4d5b-4e1a-af94-e1007784156b
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.metatag.yml b/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml
similarity index 95%
rename from config/config_snapshot.snapshot.config_sync.module.metatag.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml
index 70dcf0e..e06a526 100644
--- a/config/config_snapshot.snapshot.config_sync.module.metatag.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml
@@ -1,4 +1,4 @@
-uuid: 20b0eda7-3ca2-4eae-a11e-02a3a0da0db2
+uuid: 053f0f5f-d297-471b-ae4a-d76a63911af8
langcode: en
status: true
dependencies:
@@ -95,4 +95,4 @@ items:
tags:
canonical_url: '[user:url]'
description: '[site:name]'
- title: '[user:display-name] | [site:name]'
+ title: '[user:name] | [site:name]'
diff --git a/config/config_snapshot.snapshot.config_sync.module.migrate.yml b/config/sync/config_snapshot.snapshot.config_sync.module.migrate.yml
similarity index 80%
rename from config/config_snapshot.snapshot.config_sync.module.migrate.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.migrate.yml
index d70778c..37d76fb 100644
--- a/config/config_snapshot.snapshot.config_sync.module.migrate.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.migrate.yml
@@ -1,4 +1,4 @@
-uuid: 241a0c9b-40c2-4ea8-a34c-07b758e45e5e
+uuid: 5cdd41b9-df58-43cf-94f6-baf69f144b25
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
similarity index 90%
rename from config/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
index f1d91fa..1efa1d5 100644
--- a/config/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml
@@ -1,4 +1,4 @@
-uuid: 0ee5c7ee-eb0d-470d-9eb9-6f1f91221cd7
+uuid: 5b507cb8-67b9-40ff-b8f9-a420485291da
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal_multilingual.yml b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal_multilingual.yml
new file mode 100644
index 0000000..21d04bd
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal_multilingual.yml
@@ -0,0 +1,11 @@
+uuid: da54d461-6634-4b68-a53b-20610b3d7dec
+langcode: en
+status: true
+dependencies:
+ module:
+ - migrate_drupal_multilingual
+id: config_sync.module.migrate_drupal_multilingual
+snapshotSet: config_sync
+extensionType: module
+extensionName: migrate_drupal_multilingual
+items: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.migrate_plus.yml b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_plus.yml
similarity index 81%
rename from config/config_snapshot.snapshot.config_sync.module.migrate_plus.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.migrate_plus.yml
index a728fb5..263afa3 100644
--- a/config/config_snapshot.snapshot.config_sync.module.migrate_plus.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_plus.yml
@@ -1,4 +1,4 @@
-uuid: 42ee4dd7-f304-4e95-9d4f-f7c9cfe06722
+uuid: 0c722aaf-9421-4d92-a762-6d990961c8f3
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.migrate_tools.yml b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_tools.yml
similarity index 81%
rename from config/config_snapshot.snapshot.config_sync.module.migrate_tools.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.migrate_tools.yml
index 49d2569..d6c544e 100644
--- a/config/config_snapshot.snapshot.config_sync.module.migrate_tools.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.migrate_tools.yml
@@ -1,4 +1,4 @@
-uuid: 1882bddb-55ad-437c-97da-53ded09d49ae
+uuid: dc036935-2a11-4f5b-880a-82644c8ae3cf
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.node.yml b/config/sync/config_snapshot.snapshot.config_sync.module.node.yml
new file mode 100644
index 0000000..f52cec7
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.node.yml
@@ -0,0 +1,215 @@
+uuid: e165d0fb-06bd-48f7-8e9b-34c2d9b698f8
+langcode: en
+status: true
+dependencies:
+ module:
+ - node
+id: config_sync.module.node
+snapshotSet: config_sync
+extensionType: module
+extensionName: node
+items:
+ -
+ collection: ''
+ name: core.entity_view_mode.node.full
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - node
+ id: node.full
+ label: 'Full content'
+ targetEntityType: node
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.node.rss
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - node
+ id: node.rss
+ label: RSS
+ targetEntityType: node
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.node.search_index
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - node
+ id: node.search_index
+ label: 'Search index'
+ targetEntityType: node
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.node.search_result
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - node
+ id: node.search_result
+ label: 'Search result highlighting input'
+ targetEntityType: node
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.node.teaser
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node.teaser
+ label: Teaser
+ targetEntityType: node
+ cache: true
+ -
+ collection: ''
+ name: field.storage.node.body
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ - text
+ id: node.body
+ field_name: body
+ entity_type: node
+ type: text_with_summary
+ settings: { }
+ module: text
+ locked: false
+ cardinality: 1
+ translatable: true
+ indexes: { }
+ persist_with_no_fields: true
+ custom_storage: false
+ -
+ collection: ''
+ name: node.settings
+ data:
+ use_admin_theme: false
+ -
+ collection: ''
+ name: system.action.node_delete_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_delete_action
+ label: 'Delete content'
+ type: node
+ plugin: node_delete_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_make_sticky_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_make_sticky_action
+ label: 'Make content sticky'
+ type: node
+ plugin: node_make_sticky_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_make_unsticky_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_make_unsticky_action
+ label: 'Make content unsticky'
+ type: node
+ plugin: node_make_unsticky_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_promote_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_promote_action
+ label: 'Promote content to front page'
+ type: node
+ plugin: node_promote_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_publish_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_publish_action
+ label: 'Publish content'
+ type: node
+ plugin: 'entity:publish_action:node'
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_save_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_save_action
+ label: 'Save content'
+ type: node
+ plugin: 'entity:save_action:node'
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_unpromote_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_unpromote_action
+ label: 'Remove content from front page'
+ type: node
+ plugin: node_unpromote_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.node_unpublish_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - node
+ id: node_unpublish_action
+ label: 'Unpublish content'
+ type: node
+ plugin: 'entity:unpublish_action:node'
+ configuration: { }
diff --git a/config/config_snapshot.snapshot.config_sync.module.paragraphs.yml b/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml
similarity index 92%
rename from config/config_snapshot.snapshot.config_sync.module.paragraphs.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml
index 13cb801..b00e03f 100644
--- a/config/config_snapshot.snapshot.config_sync.module.paragraphs.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml
@@ -1,4 +1,4 @@
-uuid: c0ae6212-881b-4368-a288-185a2c4798ec
+uuid: dd518613-5b3d-4ce7-94ca-6c6e6408fbca
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml b/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml
new file mode 100644
index 0000000..9b4f383
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml
@@ -0,0 +1,28 @@
+uuid: 088d9d69-5349-4986-9c8d-a9a68aa74afa
+langcode: en
+status: true
+dependencies:
+ module:
+ - pathauto
+id: config_sync.module.pathauto
+snapshotSet: config_sync
+extensionType: module
+extensionName: pathauto
+items:
+ -
+ collection: ''
+ name: pathauto.settings
+ data:
+ enabled_entity_types:
+ - user
+ punctuation:
+ hyphen: 1
+ verbose: false
+ separator: '-'
+ max_length: 100
+ max_component_length: 100
+ transliterate: true
+ reduce_ascii: false
+ case: true
+ ignore_words: 'a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with'
+ update_action: 2
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml b/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml
new file mode 100644
index 0000000..314a6a8
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml
@@ -0,0 +1,19 @@
+uuid: ac3da565-9a7a-4f2f-a36e-f652d2caa810
+langcode: en
+status: true
+dependencies:
+ module:
+ - search_api
+id: config_sync.module.search_api
+snapshotSet: config_sync
+extensionType: module
+extensionName: search_api
+items:
+ -
+ collection: ''
+ name: search_api.settings
+ data:
+ default_cron_limit: 50
+ cron_worker_runtime: 15
+ default_tracker: default
+ tracking_page_size: 100
diff --git a/config/config_snapshot.snapshot.config_sync.module.search_api_db.yml b/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml
similarity index 87%
rename from config/config_snapshot.snapshot.config_sync.module.search_api_db.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml
index a2f100b..6434704 100644
--- a/config/config_snapshot.snapshot.config_sync.module.search_api_db.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml
@@ -1,4 +1,4 @@
-uuid: 78c984aa-7332-4195-8414-1f19e93cb0bf
+uuid: b7b64f68-b870-4c71-bb2d-b075594f097f
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.serialization.yml b/config/sync/config_snapshot.snapshot.config_sync.module.serialization.yml
similarity index 88%
rename from config/config_snapshot.snapshot.config_sync.module.serialization.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.serialization.yml
index d12ac71..bbb1eee 100644
--- a/config/config_snapshot.snapshot.config_sync.module.serialization.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.serialization.yml
@@ -1,4 +1,4 @@
-uuid: 002007ed-ac2a-47af-9758-620dda60fc62
+uuid: aa1a07a8-46be-472f-8d2a-6e53e27ad353
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.shortcut.yml b/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml
similarity index 88%
rename from config/config_snapshot.snapshot.config_sync.module.shortcut.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml
index 469e349..04e349e 100644
--- a/config/config_snapshot.snapshot.config_sync.module.shortcut.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml
@@ -1,4 +1,4 @@
-uuid: b634081e-14b1-4c64-9778-368d4edc572e
+uuid: 67f0ad7c-2197-4b36-8ba9-77ee2e64647d
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.system.yml b/config/sync/config_snapshot.snapshot.config_sync.module.system.yml
similarity index 96%
rename from config/config_snapshot.snapshot.config_sync.module.system.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.system.yml
index 4445a31..be3626e 100644
--- a/config/config_snapshot.snapshot.config_sync.module.system.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.system.yml
@@ -1,4 +1,4 @@
-uuid: f59bb21b-850e-4f44-b498-c25721d93a21
+uuid: f365cf9e-9039-4e8d-a72a-8d3de52dfafa
langcode: en
status: true
dependencies:
@@ -130,14 +130,6 @@ items:
label: 'Default short date'
locked: false
pattern: 'm/d/Y - H:i'
- -
- collection: ''
- name: system.advisories
- data:
- enabled: true
- interval_hours: 6
- _core:
- default_config_hash: x0FuQ_7Cg81mSDQwG028_Z0CjH3R9ib5IDlHeV2BbAo
-
collection: ''
name: system.authorize
diff --git a/config/config_snapshot.snapshot.config_sync.module.taxonomy.yml b/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.module.taxonomy.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml
index 74428a1..56fbbf9 100644
--- a/config/config_snapshot.snapshot.config_sync.module.taxonomy.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml
@@ -1,4 +1,4 @@
-uuid: be17f3dc-65db-44d7-9dad-174c70480e02
+uuid: 50c1221d-9680-4fae-bb52-d5b9f1c93d77
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.text.yml b/config/sync/config_snapshot.snapshot.config_sync.module.text.yml
similarity index 85%
rename from config/config_snapshot.snapshot.config_sync.module.text.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.text.yml
index c93ba01..756eb65 100644
--- a/config/config_snapshot.snapshot.config_sync.module.text.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.text.yml
@@ -1,4 +1,4 @@
-uuid: 2a048540-77ac-46bc-9a03-59fa9269f7b7
+uuid: 79f06c29-d455-4b70-9bf2-f5ec664c94a4
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.update.yml b/config/sync/config_snapshot.snapshot.config_sync.module.update.yml
similarity index 91%
rename from config/config_snapshot.snapshot.config_sync.module.update.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.update.yml
index ece432e..cc398a5 100644
--- a/config/config_snapshot.snapshot.config_sync.module.update.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.update.yml
@@ -1,4 +1,4 @@
-uuid: 41ffd00a-fdcf-411a-a3b4-78d5468bd36f
+uuid: 93dc3ca3-7160-49d0-8dc2-7317c9c050b2
langcode: en
status: true
dependencies:
diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.user.yml b/config/sync/config_snapshot.snapshot.config_sync.module.user.yml
new file mode 100644
index 0000000..07e28bd
--- /dev/null
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.user.yml
@@ -0,0 +1,187 @@
+uuid: 460c1773-a817-4cbd-a0d1-b098bb4cea5d
+langcode: en
+status: true
+dependencies:
+ module:
+ - user
+id: config_sync.module.user
+snapshotSet: config_sync
+extensionType: module
+extensionName: user
+items:
+ -
+ collection: ''
+ name: core.entity_form_mode.user.register
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - user
+ id: user.register
+ label: Register
+ targetEntityType: user
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.user.compact
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - user
+ id: user.compact
+ label: Compact
+ targetEntityType: user
+ cache: true
+ -
+ collection: ''
+ name: core.entity_view_mode.user.full
+ data:
+ langcode: en
+ status: false
+ dependencies:
+ module:
+ - user
+ id: user.full
+ label: 'User account'
+ targetEntityType: user
+ cache: true
+ -
+ collection: ''
+ name: system.action.user_block_user_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - user
+ id: user_block_user_action
+ label: 'Block the selected user(s)'
+ type: user
+ plugin: user_block_user_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.user_cancel_user_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - user
+ id: user_cancel_user_action
+ label: 'Cancel the selected user account(s)'
+ type: user
+ plugin: user_cancel_user_action
+ configuration: { }
+ -
+ collection: ''
+ name: system.action.user_unblock_user_action
+ data:
+ langcode: en
+ status: true
+ dependencies:
+ module:
+ - user
+ id: user_unblock_user_action
+ label: 'Unblock the selected user(s)'
+ type: user
+ plugin: user_unblock_user_action
+ configuration: { }
+ -
+ collection: ''
+ name: user.flood
+ data:
+ uid_only: false
+ ip_limit: 50
+ ip_window: 3600
+ user_limit: 5
+ user_window: 21600
+ -
+ collection: ''
+ name: user.mail
+ data:
+ cancel_confirm:
+ body: "[user:display-name],\n\nA request to cancel your account has been made at [site:name].\n\nYou may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n\n[user:cancel-url]\n\nNOTE: The cancellation of your account is not reversible.\n\nThis link expires in one day and nothing will happen if it is not used.\n\n-- [site:name] team"
+ subject: 'Account cancellation request for [user:display-name] at [site:name]'
+ password_reset:
+ body: "[user:display-name],\n\nA request to reset the password for your account has been made at [site:name].\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n\n-- [site:name] team"
+ subject: 'Replacement login information for [user:display-name] at [site:name]'
+ register_admin_created:
+ body: "[user:display-name],\n\nA site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n-- [site:name] team"
+ subject: 'An administrator created an account for you at [site:name]'
+ register_no_approval_required:
+ body: "[user:display-name],\n\nThank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:name]\npassword: Your password\n\n-- [site:name] team"
+ subject: 'Account details for [user:display-name] at [site:name]'
+ register_pending_approval:
+ body: "[user:display-name],\n\nThank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n\n\n-- [site:name] team"
+ subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+ register_pending_approval_admin:
+ body: "[user:display-name] has applied for an account.\n\n[user:edit-url]"
+ subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)'
+ status_activated:
+ body: "[user:display-name],\n\nYour account at [site:name] has been activated.\n\nYou may now log in by clicking this link or copying and pasting it into your browser:\n\n[user:one-time-login-url]\n\nThis link can only be used once to log in and will lead you to a page where you can set your password.\n\nAfter setting your password, you will be able to log in at [site:login-url] in the future using:\n\nusername: [user:account-name]\npassword: Your password\n\n-- [site:name] team"
+ subject: 'Account details for [user:display-name] at [site:name] (approved)'
+ status_blocked:
+ body: "[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n-- [site:name] team"
+ subject: 'Account details for [user:display-name] at [site:name] (blocked)'
+ status_canceled:
+ body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n-- [site:name] team"
+ subject: 'Account details for [user:display-name] at [site:name] (canceled)'
+ langcode: en
+ -
+ collection: ''
+ name: user.role.anonymous
+ data:
+ langcode: en
+ status: true
+ dependencies: { }
+ id: anonymous
+ label: 'Anonymous user'
+ weight: 0
+ is_admin: false
+ permissions:
+ - 'use text format restricted_html'
+ - 'access site-wide contact form'
+ - 'access comments'
+ -
+ collection: ''
+ name: user.role.authenticated
+ data:
+ langcode: en
+ status: true
+ dependencies: { }
+ id: authenticated
+ label: 'Authenticated user'
+ weight: 1
+ is_admin: false
+ permissions:
+ - 'cancel account'
+ - 'change own username'
+ - 'use text format basic_html'
+ - 'access shortcuts'
+ - 'access site-wide contact form'
+ - 'access comments'
+ - 'post comments'
+ -
+ collection: ''
+ name: user.settings
+ data:
+ anonymous: Anonymous
+ verify_mail: true
+ notify:
+ cancel_confirm: true
+ password_reset: true
+ status_activated: true
+ status_blocked: false
+ status_canceled: false
+ register_admin_created: true
+ register_no_approval_required: true
+ register_pending_approval: true
+ register: visitors
+ cancel_method: user_cancel_block
+ password_reset_timeout: 86400
+ password_strength: true
+ langcode: en
diff --git a/config/config_snapshot.snapshot.config_sync.module.views.yml b/config/sync/config_snapshot.snapshot.config_sync.module.views.yml
similarity index 96%
rename from config/config_snapshot.snapshot.config_sync.module.views.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.views.yml
index 48ad608..521d7f9 100644
--- a/config/config_snapshot.snapshot.config_sync.module.views.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.views.yml
@@ -1,4 +1,4 @@
-uuid: 2023b83d-8589-4e4f-b706-879cfef2e61a
+uuid: 92ad8524-3554-4f5f-b011-e167118761cb
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.module.views_ui.yml b/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml
similarity index 96%
rename from config/config_snapshot.snapshot.config_sync.module.views_ui.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml
index f4186ac..87ea451 100644
--- a/config/config_snapshot.snapshot.config_sync.module.views_ui.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml
@@ -1,4 +1,4 @@
-uuid: 12d557b7-def5-4e5f-8067-6cea35f44b12
+uuid: 0ba70db0-105d-4133-a6b0-8f512c504adf
langcode: en
status: true
dependencies:
@@ -54,7 +54,7 @@ items:
id: views-ui-format
plugin: text
label: 'Output format'
- body: "Choose how to output results. E.g., choose Content to output each item completely, using your configured display settings. Or choose Fields, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to extend Drupal's base functionality."
+ body: 'Choose how to output results. E.g., choose Content to output each item completely, using your configured display settings. Or choose Fields, which allows you to output only specific fields for each result. Additional formats can be added by installing modules to extend Drupal''s base functionality.'
weight: 4
attributes:
data-class: views-ui-display-tab-bucket.format
diff --git a/config/config_snapshot.snapshot.config_sync.module.webform.yml b/config/sync/config_snapshot.snapshot.config_sync.module.webform.yml
similarity index 86%
rename from config/config_snapshot.snapshot.config_sync.module.webform.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.webform.yml
index 19c3fc5..2eacbdd 100644
--- a/config/config_snapshot.snapshot.config_sync.module.webform.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.webform.yml
@@ -1,4 +1,4 @@
-uuid: b3f5e246-f9c2-489e-bcd9-8ed7c72cbc76
+uuid: ef7164bb-63ab-4121-85c5-e3b3b6bf1369
langcode: en
status: true
dependencies:
@@ -9,89 +9,6 @@ snapshotSet: config_sync
extensionType: module
extensionName: webform
items:
- -
- collection: ''
- name: filter.format.webform_default
- data:
- uuid: null
- langcode: en
- status: true
- dependencies:
- enforced:
- module:
- - webform
- name: 'Webform (Default) - DO NOT EDIT'
- format: webform_default
- weight: 100
- roles:
- - authenticated
- filters: { }
- _core:
- default_config_hash: EeKp_M4Oid3erARiAam9rsgBKR91uEnFkEP3aZS2ol8
- -
- collection: ''
- name: system.action.webform_archive_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - webform
- id: webform_archive_action
- label: 'Archive webform'
- type: webform
- plugin: webform_archive_action
- configuration: { }
- _core:
- default_config_hash: OmnschvBLb9ZJn0iVyBd2odf8U8Nt0INjRbRMixZw9U
- -
- collection: ''
- name: system.action.webform_close_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - webform
- id: webform_close_action
- label: 'Close webform'
- type: webform
- plugin: webform_close_action
- configuration: { }
- _core:
- default_config_hash: Dl-1T9PDkraB7MyMUjTJAioPEx6UNvIB9gqmnB1CRkk
- -
- collection: ''
- name: system.action.webform_delete_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - webform
- id: webform_delete_action
- label: 'Delete webform'
- type: webform
- plugin: webform_delete_action
- configuration: { }
- _core:
- default_config_hash: e1bCTp0ryXZZtnS9nlVAbtoWz3-8fmbNlqKY3GHzbsM
- -
- collection: ''
- name: system.action.webform_open_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - webform
- id: webform_open_action
- label: 'Open webform'
- type: webform
- plugin: webform_open_action
- configuration: { }
- _core:
- default_config_hash: AK83C-dOZEPruvi6GbkuhihWLnO4VtrbesqSC6izf4o
-
collection: ''
name: system.action.webform_submission_delete_action
@@ -162,22 +79,6 @@ items:
type: webform_submission
plugin: webform_submission_make_unsticky_action
configuration: { }
- -
- collection: ''
- name: system.action.webform_unarchive_action
- data:
- langcode: en
- status: true
- dependencies:
- module:
- - webform
- id: webform_unarchive_action
- label: 'Restore webform'
- type: webform
- plugin: webform_unarchive_action
- configuration: { }
- _core:
- default_config_hash: aqi5Ftlnhe9KyOowpK7CanEvJMBBo8xAR1dA99bKOuc
-
collection: ''
name: views.view.webform_submissions
@@ -3372,13 +3273,7 @@ items:
default_form_required: false
default_form_required_label: 'Indicates required field'
default_form_details_toggle: true
- default_form_file_limit: ''
- form_classes: |
- container-inline clearfix
- form--inline clearfix
- messages messages--error
- messages messages--warning
- messages messages--status
+ form_classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n"
button_classes: ''
default_wizard_prev_button_label: '< Previous Page'
default_wizard_next_button_label: 'Next Page >'
@@ -3415,15 +3310,9 @@ items:
default_previous_submission_message: 'You have already submitted this webform. View your previous submission.'
default_previous_submissions_message: 'You have already submitted this webform. View your previous submissions.'
default_autofill_message: 'This submission has been autofilled with your previous submission.'
- preview_classes: |
- messages messages--error
- messages messages--warning
- messages messages--status
- confirmation_classes: |
- messages messages--error
- messages messages--warning
- messages messages--status
- confirmation_back_classes: button
+ preview_classes: "messages messages--error\nmessages messages--warning\nmessages messages--status\n"
+ confirmation_classes: "messages messages--error\nmessages messages--warning\nmessages messages--status\n"
+ confirmation_back_classes: "button\n"
default_limit_total_message: 'No more submissions are permitted.'
default_limit_user_message: 'No more submissions are permitted.'
dialog: false
@@ -3473,28 +3362,9 @@ items:
element:
empty_message: '{Empty}'
allowed_tags: admin
- wrapper_classes: |
- container-inline clearfix
- form--inline clearfix
- messages messages--error
- messages messages--warning
- messages messages--status
- classes: |
- container-inline clearfix
- form--inline clearfix
- messages messages--error
- messages messages--warning
- messages messages--status
- horizontal_rule_classes: |
- webform-horizontal-rule--solid
- webform-horizontal-rule--dashed
- webform-horizontal-rule--dotted
- webform-horizontal-rule--gradient
- webform-horizontal-rule--thin
- webform-horizontal-rule--medium
- webform-horizontal-rule--thick
- webform-horizontal-rule--flaired
- webform-horizontal-rule--glyph
+ wrapper_classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n"
+ classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n"
+ horizontal_rule_classes: "webform-horizontal-rule--solid\nwebform-horizontal-rule--dashed\nwebform-horizontal-rule--dotted\nwebform-horizontal-rule--gradient\nwebform-horizontal-rule--thin\nwebform-horizontal-rule--medium\nwebform-horizontal-rule--thick\nwebform-horizontal-rule--flaired\nwebform-horizontal-rule--glyph\n"
default_description_display: ''
default_more_title: More
default_section_title_tag: h2
@@ -3537,98 +3407,12 @@ items:
default_sender_mail: ''
default_sender_name: ''
default_subject: 'Webform submission from: [webform_submission:source-entity]'
- default_body_text: |
- Submitted on [webform_submission:created]
- Submitted by: [webform_submission:user]
-
- Submitted values are:
- [webform_submission:values]
- default_body_html: |
- Submitted on [webform_submission:created]
- Submitted by: [webform_submission:user]
- Submitted values are:
- [webform_submission:values]
+ default_body_text: "Submitted on [webform_submission:created]\nSubmitted by: [webform_submission:user]\n\nSubmitted values are:\n[webform_submission:values]\n"
+ default_body_html: "Submitted on [webform_submission:created]
\nSubmitted by: [webform_submission:user]
\nSubmitted values are:
\n[webform_submission:values]\n"
roles: { }
test:
- types: |
- checkbox:
- - true
- color:
- - '#ffffcc'
- - '#ffffcc'
- - '#ccffff'
- email:
- - 'example@example.com'
- - 'test@test.com'
- - 'random@random.com'
- language_select:
- - en
- machine_name:
- - 'loremipsum'
- - 'oratione'
- - 'dixisset'
- tel:
- - '123-456-7890'
- - '098-765-4321'
- textarea:
- - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.'
- - 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;'
- - 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.'
- text_format:
- - value: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.
'
- - value: 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;
'
- - value: 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.
'
- url:
- - 'http://example.com'
- - 'http://test.com'
- webform_email_confirm:
- - 'example@example.com'
- - 'test@test.com'
- - 'random@random.com'
- webform_email_multiple:
- - 'example@example.com, test@test.com, random@random.com'
- webform_time:
- - '09:00'
- - '17:00'
- names: |
- first_name:
- - 'John'
- - 'Paul'
- - 'Ringo'
- - 'George'
- last_name:
- - 'Lennon'
- - 'McCartney'
- - 'Starr'
- - 'Harrison'
- address:
- - '10 Main Street'
- - '11 Brook Alley Road. APT 1'
- zip:
- - '11111'
- - '12345'
- - '12345-6789'
- postal_code:
- - '11111'
- - '12345'
- - '12345-6789'
- phone:
- - '123-456-7890'
- - '098-765-4321'
- fax:
- - '123-456-7890'
- - '098-765-4321'
- city:
- - 'Springfield'
- - 'Pleasantville'
- - 'Hill Valley'
- url:
- - 'http://example.com'
- - 'http://test.com'
- default:
- - 'Loremipsum'
- - 'Oratione'
- - 'Dixisset'
+ types: "checkbox:\n - true\ncolor:\n - '#ffffcc'\n - '#ffffcc'\n - '#ccffff'\nemail:\n - 'example@example.com'\n - 'test@test.com'\n - 'random@random.com'\nlanguage_select:\n - en\nmachine_name:\n - 'loremipsum'\n - 'oratione'\n - 'dixisset'\ntel:\n - '123-456-7890'\n - '098-765-4321'\ntextarea:\n - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.'\n - 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;'\n - 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.'\ntext_format:\n - value: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.
'\n - value: 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;
'\n - value: 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.
'\nurl:\n - 'http://example.com'\n - 'http://test.com'\nwebform_email_confirm:\n - 'example@example.com'\n - 'test@test.com'\n - 'random@random.com'\nwebform_email_multiple:\n - 'example@example.com, test@test.com, random@random.com'\nwebform_time:\n - '09:00'\n - '17:00'\n"
+ names: "first_name:\n - 'John'\n - 'Paul'\n - 'Ringo'\n - 'George'\nlast_name:\n - 'Lennon'\n - 'McCartney'\n - 'Starr'\n - 'Harrison'\naddress:\n - '10 Main Street'\n - '11 Brook Alley Road. APT 1'\nzip:\n - '11111'\n - '12345'\n - '12345-6789'\npostal_code:\n - '11111'\n - '12345'\n - '12345-6789'\nphone:\n - '123-456-7890'\n - '098-765-4321'\nfax:\n - '123-456-7890'\n - '098-765-4321'\ncity:\n - 'Springfield'\n - 'Pleasantville'\n - 'Hill Valley'\nurl:\n - 'http://example.com'\n - 'http://test.com'\ndefault:\n - 'Loremipsum'\n - 'Oratione'\n - 'Dixisset'\n"
ui:
video_display: dialog
details_save: true
@@ -3672,31 +3456,7 @@ items:
title: Contact
description: 'Basic email contact webform.'
category: ''
- elements: |
- name:
- '#title': 'Your Name'
- '#type': textfield
- '#required': true
- '#default_value': '[current-user:display-name]'
- email:
- '#title': 'Your Email'
- '#type': email
- '#required': true
- '#default_value': '[current-user:mail]'
- subject:
- '#title': Subject
- '#type': textfield
- '#required': true
- '#test': 'Testing contact webform from [site:name]'
- message:
- '#title': Message
- '#type': textarea
- '#required': true
- '#test': 'Please ignore this email.'
- actions:
- '#type': webform_actions
- '#title': 'Submit button(s)'
- '#submit__label': 'Send message'
+ elements: "name:\n '#title': 'Your Name'\n '#type': textfield\n '#required': true\n '#default_value': '[current-user:display-name]'\nemail:\n '#title': 'Your Email'\n '#type': email\n '#required': true\n '#default_value': '[current-user:mail]'\nsubject:\n '#title': Subject\n '#type': textfield\n '#required': true\n '#test': 'Testing contact webform from [site:name]'\nmessage:\n '#title': Message\n '#type': textarea\n '#required': true\n '#test': 'Please ignore this email.'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Send message'\n"
css: ''
javascript: ''
settings:
@@ -3705,7 +3465,6 @@ items:
page: true
page_submit_path: ''
page_confirm_path: ''
- form_title: source_entity_webform
form_submit_once: false
form_exception_message: ''
form_open_message: ''
@@ -3732,7 +3491,6 @@ items:
form_access_denied_title: ''
form_access_denied_message: ''
form_access_denied_attributes: { }
- form_file_limit: ''
submission_label: ''
submission_log: false
submission_views: { }
@@ -3745,9 +3503,6 @@ items:
submission_access_denied_attributes: { }
submission_exception_message: ''
submission_locked_message: ''
- submission_excluded_elements: { }
- submission_exclude_empty: false
- submission_exclude_empty_checkbox: false
previous_submission_message: ''
previous_submissions_message: ''
autofill: false
@@ -3788,11 +3543,9 @@ items:
limit_total: null
limit_total_interval: null
limit_total_message: ''
- limit_total_unique: false
limit_user: null
limit_user_interval: null
limit_user_message: ''
- limit_user_unique: false
entity_limit_total: null
entity_limit_total_interval: null
entity_limit_user: null
@@ -3874,7 +3627,7 @@ items:
html: true
attachments: false
twig: false
- theme_name: ''
+ theme: ''
debug: false
reply_to: ''
return_path: ''
@@ -3908,7 +3661,7 @@ items:
html: true
attachments: false
twig: false
- theme_name: ''
+ theme: ''
debug: false
reply_to: ''
return_path: ''
@@ -3958,14 +3711,7 @@ items:
label: Days
category: 'Date and time'
likert: false
- options: |
- Sunday: Sunday
- Monday: Monday
- Tuesday: Tuesday
- Wednesday: Wednesday
- Thursday: Thursday
- Friday: Friday
- Saturday: Saturday
+ options: "Sunday: Sunday\nMonday: Monday\nTuesday: Tuesday\nWednesday: Wednesday\nThursday: Thursday\nFriday: Friday\nSaturday: Saturday\n"
-
collection: ''
name: webform.webform_options.education
@@ -3980,11 +3726,7 @@ items:
label: Education
category: Demographic
likert: false
- options: |
- High School: High School
- Associate Degree: Associate Degree
- Graduate or Professional Degree: Graduate or Professional Degree
- Some College: Some College
+ options: "High School: High School\nAssociate Degree: Associate Degree\nGraduate or Professional Degree: Graduate or Professional Degree\nSome College: Some College\n"
-
collection: ''
name: webform.webform_options.employment_status
@@ -3999,12 +3741,7 @@ items:
label: 'Employment status'
category: Demographic
likert: false
- options: |
- 'Full Time': 'Full Time'
- 'Part Time': 'Part Time'
- 'Military': 'Military'
- Unemployed: Unemployed
- Retired: Retired
+ options: "'Full Time': 'Full Time'\n'Part Time': 'Part Time'\n'Military': 'Military'\nUnemployed: Unemployed\nRetired: Retired\n"
-
collection: ''
name: webform.webform_options.ethnicity
@@ -4019,15 +3756,7 @@ items:
label: Ethnicity
category: Demographic
likert: false
- options: |
- Caucasian: Caucasian
- 'Latino/Hispanic': 'Latino/Hispanic'
- 'Middle Eastern': 'Middle Eastern'
- African: African
- Caribbean: Caribbean
- 'South Asian': 'South Asian'
- 'East Asian': 'East Asian'
- Mixed: Mixed
+ options: "Caucasian: Caucasian\n'Latino/Hispanic': 'Latino/Hispanic'\n'Middle Eastern': 'Middle Eastern'\nAfrican: African\nCaribbean: Caribbean\n'South Asian': 'South Asian'\n'East Asian': 'East Asian'\nMixed: Mixed\n"
-
collection: ''
name: webform.webform_options.gender
@@ -4042,9 +3771,7 @@ items:
label: Gender
category: Demographic
likert: false
- options: |
- Male: Male
- Female: Female
+ options: "Male: Male\nFemale: Female\nTransgender: Transgender\n"
-
collection: ''
name: webform.webform_options.industry
@@ -4059,46 +3786,7 @@ items:
label: Industry
category: Demographic
likert: false
- options: |
- Accounting/Finance: Accounting/Finance
- Advertising/Public Relations: Advertising/Public Relations
- Aerospace/Aviation: Aerospace/Aviation
- Arts/Entertainment/Publishing: Arts/Entertainment/Publishing
- Automotive: Automotive
- Banking/Mortgage: Banking/Mortgage
- Business Development: Business Development
- Business Opportunity: Business Opportunity
- Clerical/Administrative: Clerical/Administrative
- Construction/Facilities: Construction/Facilities
- Consumer Goods: Consumer Goods
- Customer Service: Customer Service
- Education/Training: Education/Training
- Energy/Utilities: Energy/Utilities
- Engineering: Engineering
- Government/Military: Government/Military
- Healthcare: Healthcare
- Hospitality/Travel: Hospitality/Travel
- Human Resources: Human Resources
- Installation/Maintenance: Installation/Maintenance
- Insurance: Insurance
- Internet: Internet
- Law Enforcement/Security: Law Enforcement/Security
- Legal: Legal
- Management/Executive: Management/Executive
- Manufacturing/Operations: Manufacturing/Operations
- Marketing: Marketing
- Non-Profit/Volunteer: Non-Profit/Volunteer
- Pharmaceutical/Biotech: Pharmaceutical/Biotech
- Professional Services: Professional Services
- Real Estate: Real Estate
- Restaurant/Food Service: Restaurant/Food Service
- Retail: Retail
- Sales: Sales
- Science/Research: Science/Research
- Skilled Labor: Skilled Labor
- Technology: Technology
- Telecommunications: Telecommunications
- Transportation/Logistics: Transportation/Logistics
+ options: "Accounting/Finance: Accounting/Finance\nAdvertising/Public Relations: Advertising/Public Relations\nAerospace/Aviation: Aerospace/Aviation\nArts/Entertainment/Publishing: Arts/Entertainment/Publishing\nAutomotive: Automotive\nBanking/Mortgage: Banking/Mortgage\nBusiness Development: Business Development\nBusiness Opportunity: Business Opportunity\nClerical/Administrative: Clerical/Administrative\nConstruction/Facilities: Construction/Facilities\nConsumer Goods: Consumer Goods\nCustomer Service: Customer Service\nEducation/Training: Education/Training\nEnergy/Utilities: Energy/Utilities\nEngineering: Engineering\nGovernment/Military: Government/Military\nHealthcare: Healthcare\nHospitality/Travel: Hospitality/Travel\nHuman Resources: Human Resources\nInstallation/Maintenance: Installation/Maintenance\nInsurance: Insurance\nInternet: Internet\nLaw Enforcement/Security: Law Enforcement/Security\nLegal: Legal\nManagement/Executive: Management/Executive\nManufacturing/Operations: Manufacturing/Operations\nMarketing: Marketing\nNon-Profit/Volunteer: Non-Profit/Volunteer\nPharmaceutical/Biotech: Pharmaceutical/Biotech\nProfessional Services: Professional Services\nReal Estate: Real Estate\nRestaurant/Food Service: Restaurant/Food Service\nRetail: Retail\nSales: Sales\nScience/Research: Science/Research\nSkilled Labor: Skilled Labor\nTechnology: Technology\nTelecommunications: Telecommunications\nTransportation/Logistics: Transportation/Logistics\n"
-
collection: ''
name: webform.webform_options.languages
@@ -4128,12 +3816,7 @@ items:
label: 'Likert: Agreement'
category: Likert
likert: true
- options: |
- 1: 'Much Worse'
- 2: 'Somewhat Worse'
- 3: 'About the Same'
- 4: 'Somewhat Better'
- 5: 'Much Better'
+ options: "1: 'Much Worse'\n2: 'Somewhat Worse'\n3: 'About the Same'\n4: 'Somewhat Better'\n5: 'Much Better'\n"
-
collection: ''
name: webform.webform_options.likert_comparison
@@ -4148,12 +3831,7 @@ items:
label: 'Likert: Comparison'
category: Likert
likert: true
- options: |
- 1: Strongly Disagree
- 2: Disagree
- 3: Neutral
- 4: Agree
- 5: Strongly Agree
+ options: "1: Strongly Disagree\n2: Disagree\n3: Neutral\n4: Agree\n5: Strongly Agree\n"
-
collection: ''
name: webform.webform_options.likert_importance
@@ -4168,12 +3846,7 @@ items:
label: 'Likert: Importance'
category: Likert
likert: true
- options: |
- 1: Not at all Important
- 2: Somewhat Important
- 3: Neutral
- 4: Important
- 5: Very Important
+ options: "1: Not at all Important\n2: Somewhat Important\n3: Neutral\n4: Important\n5: Very Important\n"
-
collection: ''
name: webform.webform_options.likert_quality
@@ -4188,12 +3861,7 @@ items:
label: 'Likert: Quality'
category: Likert
likert: true
- options: |
- 1: Poor
- 2: Fair
- 3: Good
- 4: Very good
- 5: Excellent
+ options: "1: Poor\n2: Fair\n3: Good\n4: Very good\n5: Excellent\n"
-
collection: ''
name: webform.webform_options.likert_satisfaction
@@ -4208,12 +3876,7 @@ items:
label: 'Likert: Satisfaction'
category: Likert
likert: true
- options: |
- 1: Very Unsatisfied
- 2: Unsatisfied
- 3: Neutral
- 4: Satisfied
- 5: Very Satisfied
+ options: "1: Very Unsatisfied\n2: Unsatisfied\n3: Neutral\n4: Satisfied\n5: Very Satisfied\n"
-
collection: ''
name: webform.webform_options.likert_ten_scale
@@ -4228,17 +3891,7 @@ items:
label: 'Likert: Ten Scale'
category: Likert
likert: true
- options: |
- 1: 1
- 2: 2
- 3: 3
- 4: 4
- 5: 5
- 6: 6
- 7: 7
- 8: 8
- 9: 9
- 10: 10
+ options: "1: 1\n2: 2\n3: 3\n4: 4\n5: 5\n6: 6\n7: 7\n8: 8\n9: 9\n10: 10\n"
-
collection: ''
name: webform.webform_options.likert_would_you
@@ -4253,12 +3906,7 @@ items:
label: 'Likert: Would You'
category: Likert
likert: true
- options: |
- 1: Definitely Not
- 2: Probably Not
- 3: Not Sure
- 4: Probably
- 5: Definitely
+ options: "1: Definitely Not\n2: Probably Not\n3: Not Sure\n4: Probably\n5: Definitely\n"
-
collection: ''
name: webform.webform_options.marital_status
@@ -4273,11 +3921,7 @@ items:
label: 'Marital status'
category: Demographic
likert: false
- options: |
- Single: Single
- Married: Married
- Divorced: Divorced
- Widowed: Widowed
+ options: "Single: Single\nMarried: Married\nDivorced: Divorced\nWidowed: Widowed\n"
-
collection: ''
name: webform.webform_options.months
@@ -4292,19 +3936,7 @@ items:
label: Months
category: 'Date and time'
likert: false
- options: |
- January: January
- February: February
- March: March
- April: April
- May: May
- June: June
- July: July
- August: August
- September: September
- October: October
- November: November
- December: December
+ options: "January: January\nFebruary: February\nMarch: March\nApril: April\nMay: May\nJune: June\nJuly: July\nAugust: August\nSeptember: September\nOctober: October\nNovember: November\nDecember: December\n"
-
collection: ''
name: webform.webform_options.phone_types
@@ -4319,10 +3951,7 @@ items:
label: 'Phone type'
category: Demographic
likert: false
- options: |
- Home: Home
- Office: Office
- Cell: Cell
+ options: "Home: Home\nOffice: Office\nCell: Cell\n"
-
collection: ''
name: webform.webform_options.relationship
@@ -4337,12 +3966,7 @@ items:
label: Relationship
category: Demographic
likert: false
- options: |
- Parent: Parent
- 'Significant Other': 'Significant Other'
- Sibling: Sibling
- Child: Child
- Friend: Friend
+ options: "Parent: Parent\n'Significant Other': 'Significant Other'\nSibling: Sibling\nChild: Child\nFriend: Friend\n"
-
collection: ''
name: webform.webform_options.size
@@ -4357,12 +3981,7 @@ items:
label: Size
category: General
likert: false
- options: |
- Extra Small: Extra Small
- Small: Small
- Medium: Medium
- Large: Large
- Extra Large: Extra Large
+ options: "Extra Small: Extra Small\nSmall: Small\nMedium: Medium\nLarge: Large\nExtra Large: Extra Large\n"
-
collection: ''
name: webform.webform_options.state_codes
@@ -4377,59 +3996,7 @@ items:
label: 'State codes'
category: Geographic
likert: false
- options: |
- AL: Alabama
- AK: Alaska
- AZ: Arizona
- AR: Arkansas
- CA: California
- CO: Colorado
- CT: Connecticut
- DE: Delaware
- DC: 'District of Columbia'
- FL: Florida
- GA: Georgia
- GU: Guam
- HI: Hawaii
- ID: Idaho
- IL: Illinois
- IN: Indiana
- IA: Iowa
- KS: Kansas
- KY: Kentucky
- LA: Louisiana
- ME: Maine
- MD: Maryland
- MA: Massachusetts
- MI: Michigan
- MN: Minnesota
- MS: Mississippi
- MO: Missouri
- MT: Montana
- NE: Nebraska
- NV: Nevada
- NH: 'New Hampshire'
- NJ: 'New Jersey'
- NM: 'New Mexico'
- NY: 'New York'
- NC: 'North Carolina'
- ND: 'North Dakota'
- OH: Ohio
- OK: Oklahoma
- OR: Oregon
- PA: Pennsylvania
- RI: 'Rhode Island'
- SC: 'South Carolina'
- SD: 'South Dakota'
- TN: Tennessee
- TX: Texas
- UT: Utah
- VT: Vermont
- VA: Virginia
- WA: Washington
- WV: 'West Virginia'
- WI: Wisconsin
- WY: Wyoming
+ options: "AL: Alabama\nAK: Alaska\nAZ: Arizona\nAR: Arkansas\nCA: California\nCO: Colorado\nCT: Connecticut\nDE: Delaware\nDC: 'District of Columbia'\nFL: Florida\nGA: Georgia\nGU: Guam\nHI: Hawaii\nID: Idaho\nIL: Illinois\nIN: Indiana\nIA: Iowa\nKS: Kansas\nKY: Kentucky\nLA: Louisiana\nME: Maine\nMD: Maryland\nMA: Massachusetts\nMI: Michigan\nMN: Minnesota\nMS: Mississippi\nMO: Missouri\nMT: Montana\nNE: Nebraska\nNV: Nevada\nNH: 'New Hampshire'\nNJ: 'New Jersey'\nNM: 'New Mexico'\nNY: 'New York'\nNC: 'North Carolina'\nND: 'North Dakota'\nOH: Ohio\nOK: Oklahoma\nOR: Oregon\nPA: Pennsylvania\nRI: 'Rhode Island'\nSC: 'South Carolina'\nSD: 'South Dakota'\nTN: Tennessee\nTX: Texas\nUT: Utah\nVT: Vermont\nVA: Virginia\nWA: Washington\nWV: 'West Virginia'\nWI: Wisconsin\nWY: Wyoming\n"
-
collection: ''
name: webform.webform_options.state_names
@@ -4444,58 +4011,7 @@ items:
label: 'State names'
category: Geographic
likert: false
- options: |
- Alabama: Alabama
- Alaska: Alaska
- Arizona: Arizona
- Arkansas: Arkansas
- California: California
- Colorado: Colorado
- Connecticut: Connecticut
- Delaware: Delaware
- 'District of Columbia': 'District of Columbia'
- Florida: Florida
- Georgia: Georgia
- Hawaii: Hawaii
- Idaho: Idaho
- Illinois: Illinois
- Indiana: Indiana
- Iowa: Iowa
- Kansas: Kansas
- Kentucky: Kentucky
- Louisiana: Louisiana
- Maine: Maine
- Maryland: Maryland
- Massachusetts: Massachusetts
- Michigan: Michigan
- Minnesota: Minnesota
- Mississippi: Mississippi
- Missouri: Missouri
- Montana: Montana
- Nebraska: Nebraska
- Nevada: Nevada
- 'New Hampshire': 'New Hampshire'
- 'New Jersey': 'New Jersey'
- 'New Mexico': 'New Mexico'
- 'New York': 'New York'
- 'North Carolina': 'North Carolina'
- 'North Dakota': 'North Dakota'
- Ohio: Ohio
- Oklahoma: Oklahoma
- Oregon: Oregon
- Pennsylvania: Pennsylvania
- 'Rhode Island': 'Rhode Island'
- 'South Carolina': 'South Carolina'
- 'South Dakota': 'South Dakota'
- Tennessee: Tennessee
- Texas: Texas
- Utah: Utah
- Vermont: Vermont
- Virginia: Virginia
- Washington: Washington
- 'West Virginia': 'West Virginia'
- Wisconsin: Wisconsin
- Wyoming: Wyoming
+ options: "Alabama: Alabama\nAlaska: Alaska\nArizona: Arizona\nArkansas: Arkansas\nCalifornia: California\nColorado: Colorado\nConnecticut: Connecticut\nDelaware: Delaware\n'District of Columbia': 'District of Columbia'\nFlorida: Florida\nGeorgia: Georgia\nHawaii: Hawaii\nIdaho: Idaho\nIllinois: Illinois\nIndiana: Indiana\nIowa: Iowa\nKansas: Kansas\nKentucky: Kentucky\nLouisiana: Louisiana\nMaine: Maine\nMaryland: Maryland\nMassachusetts: Massachusetts\nMichigan: Michigan\nMinnesota: Minnesota\nMississippi: Mississippi\nMissouri: Missouri\nMontana: Montana\nNebraska: Nebraska\nNevada: Nevada\n'New Hampshire': 'New Hampshire'\n'New Jersey': 'New Jersey'\n'New Mexico': 'New Mexico'\n'New York': 'New York'\n'North Carolina': 'North Carolina'\n'North Dakota': 'North Dakota'\nOhio: Ohio\nOklahoma: Oklahoma\nOregon: Oregon\nPennsylvania: Pennsylvania\n'Rhode Island': 'Rhode Island'\n'South Carolina': 'South Carolina'\n'South Dakota': 'South Dakota'\nTennessee: Tennessee\nTexas: Texas\nUtah: Utah\nVermont: Vermont\nVirginia: Virginia\nWashington: Washington\n'West Virginia': 'West Virginia'\nWisconsin: Wisconsin\nWyoming: Wyoming\n"
-
collection: ''
name: webform.webform_options.state_province_codes
@@ -4510,69 +4026,7 @@ items:
label: 'State/Province codes'
category: Geographic
likert: false
- options: |
- AL: Alabama
- AK: Alaska
- AS: 'American Samoa'
- AZ: Arizona
- AR: Arkansas
- AE: 'Armed Forces (Canada, Europe, Africa, or Middle East'
- AA: 'Armed Forces Americas'
- AP: 'Armed Forces Pacific'
- CA: California
- CO: Colorado
- CT: Connecticut
- DE: Delaware
- DC: 'District of Columbia'
- FM: 'Federated States of Micronesia'
- FL: Florida
- GA: Georgia
- GU: Guam
- HI: Hawaii
- ID: Idaho
- IL: Illinois
- IN: Indiana
- IA: Iowa
- KS: Kansas
- KY: Kentucky
- LA: Louisiana
- ME: Maine
- MH: 'Marshall Islands'
- MD: Maryland
- MA: Massachusetts
- MI: Michigan
- MN: Minnesota
- MS: Mississippi
- MO: Missouri
- MT: Montana
- NE: Nebraska
- NV: Nevada
- NH: 'New Hampshire'
- NJ: 'New Jersey'
- NM: 'New Mexico'
- NY: 'New York'
- NC: 'North Carolina'
- ND: 'North Dakota'
- MP: 'Northern Mariana Islands'
- OH: Ohio
- OK: Oklahoma
- OR: Oregon
- PW: Palau
- PA: Pennsylvania
- PR: 'Puerto Rico'
- RI: 'Rhode Island'
- SC: 'South Carolina'
- SD: 'South Dakota'
- TN: Tennessee
- TX: Texas
- UT: Utah
- VT: Vermont
- VI: 'Virgin Islands'
- VA: Virginia
- WA: Washington
- WV: 'West Virginia'
- WI: Wisconsin
- WY: Wyoming
+ options: "AL: Alabama\nAK: Alaska\nAS: 'American Samoa'\nAZ: Arizona\nAR: Arkansas\nAE: 'Armed Forces (Canada, Europe, Africa, or Middle East'\nAA: 'Armed Forces Americas'\nAP: 'Armed Forces Pacific'\nCA: California\nCO: Colorado\nCT: Connecticut\nDE: Delaware\nDC: 'District of Columbia'\nFM: 'Federated States of Micronesia'\nFL: Florida\nGA: Georgia\nGU: Guam\nHI: Hawaii\nID: Idaho\nIL: Illinois\nIN: Indiana\nIA: Iowa\nKS: Kansas\nKY: Kentucky\nLA: Louisiana\nME: Maine\nMH: 'Marshall Islands'\nMD: Maryland\nMA: Massachusetts\nMI: Michigan\nMN: Minnesota\nMS: Mississippi\nMO: Missouri\nMT: Montana\nNE: Nebraska\nNV: Nevada\nNH: 'New Hampshire'\nNJ: 'New Jersey'\nNM: 'New Mexico'\nNY: 'New York'\nNC: 'North Carolina'\nND: 'North Dakota'\nMP: 'Northern Mariana Islands'\nOH: Ohio\nOK: Oklahoma\nOR: Oregon\nPW: Palau\nPA: Pennsylvania\nPR: 'Puerto Rico'\nRI: 'Rhode Island'\nSC: 'South Carolina'\nSD: 'South Dakota'\nTN: Tennessee\nTX: Texas\nUT: Utah\nVT: Vermont\nVI: 'Virgin Islands'\nVA: Virginia\nWA: Washington\nWV: 'West Virginia'\nWI: Wisconsin\nWY: Wyoming\n"
-
collection: ''
name: webform.webform_options.state_province_names
@@ -4587,69 +4041,7 @@ items:
label: 'State/Province names'
category: Geographic
likert: false
- options: |
- Alabama: Alabama
- Alaska: Alaska
- 'American Samoa': 'American Samoa'
- Arizona: Arizona
- Arkansas: Arkansas
- 'Armed Forces (Canada, Europe, Africa, or Middle East)': 'Armed Forces (Canada, Europe, Africa, or Middle East)'
- 'Armed Forces Americas': 'Armed Forces Americas'
- 'Armed Forces Pacific': 'Armed Forces Pacific'
- California: California
- Colorado: Colorado
- Connecticut: Connecticut
- Delaware: Delaware
- 'District of Columbia': 'District of Columbia'
- 'Federated States of Micronesia': 'Federated States of Micronesia'
- Florida: Florida
- Georgia: Georgia
- Guam: Guam
- Hawaii: Hawaii
- Idaho: Idaho
- Illinois: Illinois
- Indiana: Indiana
- Iowa: Iowa
- Kansas: Kansas
- Kentucky: Kentucky
- Louisiana: Louisiana
- Maine: Maine
- 'Marshall Islands': 'Marshall Islands'
- Maryland: Maryland
- Massachusetts: Massachusetts
- Michigan: Michigan
- Minnesota: Minnesota
- Mississippi: Mississippi
- Missouri: Missouri
- Montana: Montana
- Nebraska: Nebraska
- Nevada: Nevada
- 'New Hampshire': 'New Hampshire'
- 'New Jersey': 'New Jersey'
- 'New Mexico': 'New Mexico'
- 'New York': 'New York'
- 'North Carolina': 'North Carolina'
- 'North Dakota': 'North Dakota'
- 'Northern Mariana Islands': 'Northern Mariana Islands'
- Ohio: Ohio
- Oklahoma: Oklahoma
- Oregon: Oregon
- Palau: Palau
- Pennsylvania: Pennsylvania
- 'Puerto Rico': 'Puerto Rico'
- 'Rhode Island': 'Rhode Island'
- 'South Carolina': 'South Carolina'
- 'South Dakota': 'South Dakota'
- Tennessee: Tennessee
- Texas: Texas
- Utah: Utah
- Vermont: Vermont
- 'Virgin Islands': 'Virgin Islands'
- Virginia: Virginia
- Washington: Washington
- 'West Virginia': 'West Virginia'
- Wisconsin: Wisconsin
- Wyoming: Wyoming
+ options: "Alabama: Alabama\nAlaska: Alaska\n'American Samoa': 'American Samoa'\nArizona: Arizona\nArkansas: Arkansas\n'Armed Forces (Canada, Europe, Africa, or Middle East)': 'Armed Forces (Canada, Europe, Africa, or Middle East)'\n'Armed Forces Americas': 'Armed Forces Americas'\n'Armed Forces Pacific': 'Armed Forces Pacific'\nCalifornia: California\nColorado: Colorado\nConnecticut: Connecticut\nDelaware: Delaware\n'District of Columbia': 'District of Columbia'\n'Federated States of Micronesia': 'Federated States of Micronesia'\nFlorida: Florida\nGeorgia: Georgia\nGuam: Guam\nHawaii: Hawaii\nIdaho: Idaho\nIllinois: Illinois\nIndiana: Indiana\nIowa: Iowa\nKansas: Kansas\nKentucky: Kentucky\nLouisiana: Louisiana\nMaine: Maine\n'Marshall Islands': 'Marshall Islands'\nMaryland: Maryland\nMassachusetts: Massachusetts\nMichigan: Michigan\nMinnesota: Minnesota\nMississippi: Mississippi\nMissouri: Missouri\nMontana: Montana\nNebraska: Nebraska\nNevada: Nevada\n'New Hampshire': 'New Hampshire'\n'New Jersey': 'New Jersey'\n'New Mexico': 'New Mexico'\n'New York': 'New York'\n'North Carolina': 'North Carolina'\n'North Dakota': 'North Dakota'\n'Northern Mariana Islands': 'Northern Mariana Islands'\nOhio: Ohio\nOklahoma: Oklahoma\nOregon: Oregon\nPalau: Palau\nPennsylvania: Pennsylvania\n'Puerto Rico': 'Puerto Rico'\n'Rhode Island': 'Rhode Island'\n'South Carolina': 'South Carolina'\n'South Dakota': 'South Dakota'\nTennessee: Tennessee\nTexas: Texas\nUtah: Utah\nVermont: Vermont\n'Virgin Islands': 'Virgin Islands'\nVirginia: Virginia\nWashington: Washington\n'West Virginia': 'West Virginia'\nWisconsin: Wisconsin\nWyoming: Wyoming\n"
-
collection: ''
name: webform.webform_options.time_zones
@@ -4679,12 +4071,7 @@ items:
label: Titles
category: Demographic
likert: false
- options: |
- Miss: Miss
- Ms: Ms
- Mr: Mr
- Mrs: Mrs
- Dr: Dr
+ options: "Miss: Miss\nMs: Ms\nMr: Mr\nMrs: Mrs\nDr: Dr\n"
-
collection: ''
name: webform.webform_options.yes_no
@@ -4699,6 +4086,4 @@ items:
label: Yes/No
category: General
likert: false
- options: |
- Yes: Yes
- No: No
+ options: "Yes: Yes\nNo: No\n"
diff --git a/config/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml b/config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
similarity index 83%
rename from config/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
rename to config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
index 84ea759..a3a0a41 100644
--- a/config/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml
@@ -1,4 +1,4 @@
-uuid: fb3f7a3d-9ade-44af-a5ed-8ac32d6deb82
+uuid: 48c59c1a-99d8-47e0-b8c2-df03cdff5449
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.theme.bulma.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.theme.bulma.yml
rename to config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml
index 6750c7e..b9018d7 100644
--- a/config/config_snapshot.snapshot.config_sync.theme.bulma.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml
@@ -1,4 +1,4 @@
-uuid: e444e4b1-13f9-443b-89ee-9ac577185b05
+uuid: 4f4f5bd3-cf29-4698-b83e-8c92f7624bda
langcode: en
status: true
dependencies:
diff --git a/config/config_snapshot.snapshot.config_sync.theme.octavia.yml b/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml
similarity index 99%
rename from config/config_snapshot.snapshot.config_sync.theme.octavia.yml
rename to config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml
index 1c9161c..9fac6c6 100644
--- a/config/config_snapshot.snapshot.config_sync.theme.octavia.yml
+++ b/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml
@@ -1,4 +1,4 @@
-uuid: 8182898d-7f3e-4ca7-a35e-2979ae745679
+uuid: 55171b24-36a3-4020-bca4-3fd2bddc2073
langcode: en
status: true
dependencies:
diff --git a/config/sync/contact.form.feedback.yml b/config/sync/contact.form.feedback.yml
new file mode 100644
index 0000000..e03cfbc
--- /dev/null
+++ b/config/sync/contact.form.feedback.yml
@@ -0,0 +1,14 @@
+uuid: e828ae38-64a8-49cc-862a-67a41c80debe
+langcode: en
+status: true
+dependencies: { }
+_core:
+ default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw
+id: feedback
+label: 'Website feedback'
+recipients:
+ - admin@example.com
+reply: ''
+weight: 0
+message: 'Your message has been sent.'
+redirect: ''
diff --git a/config/contact.form.personal.yml b/config/sync/contact.form.personal.yml
similarity index 85%
rename from config/contact.form.personal.yml
rename to config/sync/contact.form.personal.yml
index b6f52c9..448996a 100644
--- a/config/contact.form.personal.yml
+++ b/config/sync/contact.form.personal.yml
@@ -1,4 +1,4 @@
-uuid: ea2f4edc-4a23-4656-bce1-97f8eb219219
+uuid: d0d32b95-7d2a-40d8-a0b4-3b57379d951f
langcode: en
status: true
dependencies: { }
diff --git a/config/contact.settings.yml b/config/sync/contact.settings.yml
similarity index 100%
rename from config/contact.settings.yml
rename to config/sync/contact.settings.yml
index 1c949a6..a2903f5 100644
--- a/config/contact.settings.yml
+++ b/config/sync/contact.settings.yml
@@ -1,7 +1,7 @@
-_core:
- default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
default_form: feedback
flood:
limit: 5
interval: 3600
user_default_enabled: true
+_core:
+ default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8
diff --git a/config/core.base_field_override.node.action.promote.yml b/config/sync/core.base_field_override.node.action.promote.yml
similarity index 86%
rename from config/core.base_field_override.node.action.promote.yml
rename to config/sync/core.base_field_override.node.action.promote.yml
index 79aa790..aff13aa 100644
--- a/config/core.base_field_override.node.action.promote.yml
+++ b/config/sync/core.base_field_override.node.action.promote.yml
@@ -1,4 +1,4 @@
-uuid: 1cc1f690-6058-4cf5-b70e-23f7f672c507
+uuid: 29766663-ef8a-40c7-b8a8-324319648e36
langcode: en
status: true
dependencies:
@@ -13,7 +13,7 @@ bundle: action
label: 'Promoted to front page'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 0
diff --git a/config/core.base_field_override.node.campaign.promote.yml b/config/sync/core.base_field_override.node.campaign.promote.yml
similarity index 86%
rename from config/core.base_field_override.node.campaign.promote.yml
rename to config/sync/core.base_field_override.node.campaign.promote.yml
index e79f134..61c48a7 100644
--- a/config/core.base_field_override.node.campaign.promote.yml
+++ b/config/sync/core.base_field_override.node.campaign.promote.yml
@@ -1,4 +1,4 @@
-uuid: 1774ecbe-efce-46e1-9caf-5791a0ac8337
+uuid: 4530582c-5f4b-4e6b-9170-1288dca9552f
langcode: en
status: true
dependencies:
@@ -13,7 +13,7 @@ bundle: campaign
label: 'Promoted to front page'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 0
diff --git a/config/core.base_field_override.node.event.promote.yml b/config/sync/core.base_field_override.node.event.promote.yml
similarity index 86%
rename from config/core.base_field_override.node.event.promote.yml
rename to config/sync/core.base_field_override.node.event.promote.yml
index 03d2a64..b84e1d1 100644
--- a/config/core.base_field_override.node.event.promote.yml
+++ b/config/sync/core.base_field_override.node.event.promote.yml
@@ -1,4 +1,4 @@
-uuid: 6c5cd503-b547-4ed9-8b69-39b4bb3bbd3d
+uuid: 2f8e83b6-a569-4161-80ad-57426bed1ac5
langcode: en
status: true
dependencies:
@@ -13,7 +13,7 @@ bundle: event
label: 'Promoted to front page'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 1
diff --git a/config/core.base_field_override.node.landing_page.promote.yml b/config/sync/core.base_field_override.node.landing_page.promote.yml
similarity index 87%
rename from config/core.base_field_override.node.landing_page.promote.yml
rename to config/sync/core.base_field_override.node.landing_page.promote.yml
index 37b4ec7..da6efea 100644
--- a/config/core.base_field_override.node.landing_page.promote.yml
+++ b/config/sync/core.base_field_override.node.landing_page.promote.yml
@@ -1,4 +1,4 @@
-uuid: 58ba8c6f-ced4-43e8-a6c4-02f05ecb358f
+uuid: 2425c07f-dee6-40ac-bc75-fc431b0f4459
langcode: en
status: true
dependencies:
@@ -13,7 +13,7 @@ bundle: landing_page
label: 'Promoted to front page'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 0
diff --git a/config/core.base_field_override.node.page.promote.yml b/config/sync/core.base_field_override.node.page.promote.yml
similarity index 90%
rename from config/core.base_field_override.node.page.promote.yml
rename to config/sync/core.base_field_override.node.page.promote.yml
index 817a365..ce926f3 100644
--- a/config/core.base_field_override.node.page.promote.yml
+++ b/config/sync/core.base_field_override.node.page.promote.yml
@@ -1,4 +1,4 @@
-uuid: 6e03376c-4ce6-4ca1-a62d-6724098ce33c
+uuid: 5f53c69e-58be-4021-9420-0999a8401b1f
langcode: en
status: true
dependencies:
diff --git a/config/core.base_field_override.node.people.promote.yml b/config/sync/core.base_field_override.node.people.promote.yml
similarity index 86%
rename from config/core.base_field_override.node.people.promote.yml
rename to config/sync/core.base_field_override.node.people.promote.yml
index ce67868..8049b5c 100644
--- a/config/core.base_field_override.node.people.promote.yml
+++ b/config/sync/core.base_field_override.node.people.promote.yml
@@ -1,4 +1,4 @@
-uuid: db5df58e-13be-40e5-9c05-d6791c359397
+uuid: 85491ae2-11cf-4ad0-be97-b09d9e578509
langcode: en
status: true
dependencies:
@@ -13,7 +13,7 @@ bundle: people
label: 'Promoted to front page'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 0
diff --git a/config/core.base_field_override.node.people.title.yml b/config/sync/core.base_field_override.node.people.title.yml
similarity index 84%
rename from config/core.base_field_override.node.people.title.yml
rename to config/sync/core.base_field_override.node.people.title.yml
index b75937a..e66f707 100644
--- a/config/core.base_field_override.node.people.title.yml
+++ b/config/sync/core.base_field_override.node.people.title.yml
@@ -1,4 +1,4 @@
-uuid: 01d40e6d-ca5d-4dae-ac02-a39f8e9ceaee
+uuid: 89159d94-bd85-49f6-8947-d52411fce9a7
langcode: en
status: true
dependencies:
@@ -13,7 +13,7 @@ bundle: people
label: Name
description: ''
required: true
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/core.date_format.fallback.yml b/config/sync/core.date_format.fallback.yml
similarity index 82%
rename from config/core.date_format.fallback.yml
rename to config/sync/core.date_format.fallback.yml
index 4e263d6..9dd132b 100644
--- a/config/core.date_format.fallback.yml
+++ b/config/sync/core.date_format.fallback.yml
@@ -1,4 +1,4 @@
-uuid: 8ac232c8-fdd7-4155-bc59-cacd53e25c6c
+uuid: 95f1df8f-9dc8-4967-9f0a-28d27e985632
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_date.yml b/config/sync/core.date_format.html_date.yml
similarity index 80%
rename from config/core.date_format.html_date.yml
rename to config/sync/core.date_format.html_date.yml
index 7eec70d..82e66de 100644
--- a/config/core.date_format.html_date.yml
+++ b/config/sync/core.date_format.html_date.yml
@@ -1,4 +1,4 @@
-uuid: 5fc2fd89-8578-4d26-bc59-1b43ee2d7f78
+uuid: de467521-573d-4e64-9d33-e07b3f4f5f37
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_datetime.yml b/config/sync/core.date_format.html_datetime.yml
similarity index 82%
rename from config/core.date_format.html_datetime.yml
rename to config/sync/core.date_format.html_datetime.yml
index 1b1bb3f..3e397e9 100644
--- a/config/core.date_format.html_datetime.yml
+++ b/config/sync/core.date_format.html_datetime.yml
@@ -1,4 +1,4 @@
-uuid: f981001a-bf85-419a-a9b8-7c1659f348ab
+uuid: feb8c087-6b09-4e3c-9b53-6d35b11e3070
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_month.yml b/config/sync/core.date_format.html_month.yml
similarity index 80%
rename from config/core.date_format.html_month.yml
rename to config/sync/core.date_format.html_month.yml
index 478dd42..e5a821b 100644
--- a/config/core.date_format.html_month.yml
+++ b/config/sync/core.date_format.html_month.yml
@@ -1,4 +1,4 @@
-uuid: 1506f481-e41e-464e-af7f-dfdc8e0a16e3
+uuid: e7f7733f-28d2-4cc4-a1c7-a85e5fd08c0f
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_time.yml b/config/sync/core.date_format.html_time.yml
similarity index 80%
rename from config/core.date_format.html_time.yml
rename to config/sync/core.date_format.html_time.yml
index c500482..fa198c9 100644
--- a/config/core.date_format.html_time.yml
+++ b/config/sync/core.date_format.html_time.yml
@@ -1,4 +1,4 @@
-uuid: 11d585de-a7a4-48dd-b75c-7f06bb0a2b4f
+uuid: b30ce1cf-243a-4814-852f-8c9a3339ecbc
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_week.yml b/config/sync/core.date_format.html_week.yml
similarity index 80%
rename from config/core.date_format.html_week.yml
rename to config/sync/core.date_format.html_week.yml
index 8797a02..3bc0315 100644
--- a/config/core.date_format.html_week.yml
+++ b/config/sync/core.date_format.html_week.yml
@@ -1,4 +1,4 @@
-uuid: a6ace082-8c0a-4c1f-b20b-b18c2c1b26fe
+uuid: a41935fd-39c0-4ee3-bc55-9230e43fcea1
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_year.yml b/config/sync/core.date_format.html_year.yml
similarity index 80%
rename from config/core.date_format.html_year.yml
rename to config/sync/core.date_format.html_year.yml
index ffd6e72..5070d34 100644
--- a/config/core.date_format.html_year.yml
+++ b/config/sync/core.date_format.html_year.yml
@@ -1,4 +1,4 @@
-uuid: 7714e34c-073c-45e8-affd-3dc707a8e73f
+uuid: ea0e0777-98cd-413a-a388-7dbacce3b22f
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.html_yearless_date.yml b/config/sync/core.date_format.html_yearless_date.yml
similarity index 82%
rename from config/core.date_format.html_yearless_date.yml
rename to config/sync/core.date_format.html_yearless_date.yml
index 58feca7..04cb625 100644
--- a/config/core.date_format.html_yearless_date.yml
+++ b/config/sync/core.date_format.html_yearless_date.yml
@@ -1,4 +1,4 @@
-uuid: b191eea0-4956-4cb8-98cc-08ea0c46ba7d
+uuid: 5249cf89-b46a-42a7-a0f3-4741032d39d0
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.long.yml b/config/sync/core.date_format.long.yml
similarity index 69%
rename from config/core.date_format.long.yml
rename to config/sync/core.date_format.long.yml
index 81092e3..a85d875 100644
--- a/config/core.date_format.long.yml
+++ b/config/sync/core.date_format.long.yml
@@ -1,4 +1,4 @@
-uuid: 9f4396b0-fdb7-4085-9802-0f2f16c68cc6
+uuid: c5f0c5a8-ec4b-4619-b642-2342af852a68
langcode: en
status: true
dependencies: { }
@@ -7,4 +7,4 @@ _core:
id: long
label: 'Default long date'
locked: false
-pattern: 'Y F d, l, \a\t g:ia'
+pattern: 'l, F j, Y - H:i'
diff --git a/config/core.date_format.medium.yml b/config/sync/core.date_format.medium.yml
similarity index 71%
rename from config/core.date_format.medium.yml
rename to config/sync/core.date_format.medium.yml
index 91e23a3..2be5de2 100644
--- a/config/core.date_format.medium.yml
+++ b/config/sync/core.date_format.medium.yml
@@ -1,4 +1,4 @@
-uuid: 94028904-44b5-4591-8dcd-721e3dd56ac7
+uuid: f38a8c76-f6ef-456f-8338-d3fae9bc6771
langcode: en
status: true
dependencies: { }
@@ -7,4 +7,4 @@ _core:
id: medium
label: 'Default medium date'
locked: false
-pattern: 'Y F d'
+pattern: 'D, m/d/Y - H:i'
diff --git a/config/core.date_format.month_day_year.yml b/config/sync/core.date_format.month_day_year.yml
similarity index 81%
rename from config/core.date_format.month_day_year.yml
rename to config/sync/core.date_format.month_day_year.yml
index 1a47f47..c2b0f3d 100644
--- a/config/core.date_format.month_day_year.yml
+++ b/config/sync/core.date_format.month_day_year.yml
@@ -1,4 +1,4 @@
-uuid: f759e3e5-b1c4-461a-8199-473c7c1d5ac5
+uuid: ddf4e0c1-df70-4229-b071-411bf2288355
langcode: en
status: true
dependencies: { }
diff --git a/config/core.date_format.short.yml b/config/sync/core.date_format.short.yml
similarity index 72%
rename from config/core.date_format.short.yml
rename to config/sync/core.date_format.short.yml
index 2989375..68323b8 100644
--- a/config/core.date_format.short.yml
+++ b/config/sync/core.date_format.short.yml
@@ -1,4 +1,4 @@
-uuid: 855dd010-f861-402f-8a1c-079c4ed809ea
+uuid: 98ad140f-926f-4549-9fee-af653df73e78
langcode: en
status: true
dependencies: { }
@@ -7,4 +7,4 @@ _core:
id: short
label: 'Default short date'
locked: false
-pattern: "'y M d"
+pattern: 'm/d/Y - H:i'
diff --git a/config/core.entity_form_display.block_content.basic.default.yml b/config/sync/core.entity_form_display.block_content.basic.default.yml
similarity index 68%
rename from config/core.entity_form_display.block_content.basic.default.yml
rename to config/sync/core.entity_form_display.block_content.basic.default.yml
index d637c3b..d68b6e0 100644
--- a/config/core.entity_form_display.block_content.basic.default.yml
+++ b/config/sync/core.entity_form_display.block_content.basic.default.yml
@@ -1,4 +1,4 @@
-uuid: 7dcdbd83-329c-46f4-aa6f-8e69ee047eab
+uuid: 4d00d0c0-01fe-466e-9237-e590be1ad564
langcode: en
status: true
dependencies:
@@ -17,31 +17,18 @@ content:
body:
type: text_textarea_with_summary
weight: -4
- region: content
settings:
rows: 9
summary_rows: 3
placeholder: ''
- show_summary: false
third_party_settings: { }
+ region: content
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: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
hidden: { }
diff --git a/config/core.entity_form_display.block_content.slide.default.yml b/config/sync/core.entity_form_display.block_content.slide.default.yml
similarity index 73%
rename from config/core.entity_form_display.block_content.slide.default.yml
rename to config/sync/core.entity_form_display.block_content.slide.default.yml
index f51be79..ef858c4 100644
--- a/config/core.entity_form_display.block_content.slide.default.yml
+++ b/config/sync/core.entity_form_display.block_content.slide.default.yml
@@ -1,4 +1,4 @@
-uuid: 0adfe9f3-9afc-4f98-bebd-ac8a613be0fc
+uuid: 614b089c-0479-4287-8ec9-f4391b412b9a
langcode: en
status: true
dependencies:
@@ -17,7 +17,6 @@ content:
field_slide:
type: entity_reference_paragraphs
weight: 26
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -26,6 +25,7 @@ content:
form_display_mode: default
default_paragraph_type: ''
third_party_settings: { }
+ region: content
info:
type: string_textfield
weight: -5
@@ -34,16 +34,4 @@ content:
size: 60
placeholder: ''
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
- region: content
- settings:
- include_locked: true
- third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
hidden: { }
diff --git a/config/core.entity_form_display.comment.comment.default.yml b/config/sync/core.entity_form_display.comment.comment.default.yml
similarity index 57%
rename from config/core.entity_form_display.comment.comment.default.yml
rename to config/sync/core.entity_form_display.comment.comment.default.yml
index 9aa3378..b195ac6 100644
--- a/config/core.entity_form_display.comment.comment.default.yml
+++ b/config/sync/core.entity_form_display.comment.comment.default.yml
@@ -1,4 +1,4 @@
-uuid: 94b42092-ff54-489f-b396-d5a20196385a
+uuid: 529bf746-09c6-42a5-9fe1-abeea69fb162
langcode: en
status: true
dependencies:
@@ -6,7 +6,6 @@ dependencies:
- comment.type.comment
- field.field.comment.comment.comment_body
module:
- - allowed_formats
- text
_core:
default_config_hash: i9gg03KbztdQ0LmR6WLr5smEj5TBKU12U2X8ZlSpKJA
@@ -16,37 +15,24 @@ bundle: comment
mode: default
content:
author:
- weight: 0
+ weight: -2
region: content
settings: { }
third_party_settings: { }
comment_body:
type: text_textarea
- weight: 1
- region: content
+ weight: 11
settings:
rows: 5
placeholder: ''
- third_party_settings:
- allowed_formats:
- hide_help: '1'
- hide_guidelines: '0'
- comment_notify_settings:
- weight: 1
- region: content
- settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
region: content
- settings:
- include_locked: true
- third_party_settings: { }
- translation:
+ subject:
+ type: string_textfield
weight: 10
- region: content
- settings: { }
+ settings:
+ size: 60
+ placeholder: ''
third_party_settings: { }
-hidden:
- subject: true
+ region: content
+hidden: { }
diff --git a/config/sync/core.entity_form_display.group.group.default.yml b/config/sync/core.entity_form_display.group.group.default.yml
new file mode 100644
index 0000000..8ced1e1
--- /dev/null
+++ b/config/sync/core.entity_form_display.group.group.default.yml
@@ -0,0 +1,110 @@
+uuid: 797fd6b4-96fe-4130-8ce2-23f0c66c8be4
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - image.style.thumbnail
+ module:
+ - address
+ - image
+ - link
+ - paragraphs
+ - path
+ - telephone
+ - text
+_core:
+ default_config_hash: PGQ37YaQuSsJ05Pz03KzE6l2I6Hz2f3_beCY68p_1fE
+id: group.group.default
+targetEntityType: group
+bundle: group
+mode: default
+content:
+ field_group_address:
+ weight: 10
+ settings:
+ default_country: null
+ third_party_settings: { }
+ type: address_default
+ region: content
+ field_group_description:
+ type: entity_reference_paragraphs
+ weight: 4
+ settings:
+ title: Paragraph
+ title_plural: Paragraphs
+ edit_mode: open
+ add_mode: button
+ form_display_mode: default
+ default_paragraph_type: text
+ third_party_settings: { }
+ region: content
+ field_group_email:
+ weight: 8
+ settings:
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ type: email_default
+ region: content
+ field_group_image:
+ weight: 2
+ settings:
+ progress_indicator: throbber
+ preview_image_style: thumbnail
+ third_party_settings: { }
+ type: image_image
+ region: content
+ field_group_phone:
+ weight: 7
+ settings:
+ placeholder: ''
+ third_party_settings: { }
+ type: telephone_default
+ region: content
+ field_group_summary:
+ weight: 3
+ settings:
+ rows: 5
+ placeholder: ''
+ third_party_settings: { }
+ type: text_textarea
+ region: content
+ field_group_type:
+ weight: 1
+ settings: { }
+ third_party_settings: { }
+ type: options_select
+ region: content
+ field_group_website:
+ weight: 9
+ settings:
+ placeholder_url: ''
+ placeholder_title: ''
+ third_party_settings: { }
+ type: link_default
+ region: content
+ label:
+ type: string_textfield
+ weight: 0
+ settings:
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ region: content
+ path:
+ type: path
+ weight: 10
+ settings: { }
+ third_party_settings: { }
+ region: content
+hidden:
+ uid: true
diff --git a/config/sync/core.entity_form_display.group_content.group-group_membership.default.yml b/config/sync/core.entity_form_display.group_content.group-group_membership.default.yml
new file mode 100644
index 0000000..0cf2f1e
--- /dev/null
+++ b/config/sync/core.entity_form_display.group_content.group-group_membership.default.yml
@@ -0,0 +1,39 @@
+uuid: 9baa253f-a5f3-41a1-a019-32c927a309aa
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.field.group_content.group-group_membership.group_roles
+ - group.content_type.group-group_membership
+ module:
+ - path
+_core:
+ default_config_hash: cYqKe4at8YnaZrnD020WxlbdESYBLotrEojvFujwDcY
+id: group_content.group-group_membership.default
+targetEntityType: group_content
+bundle: group-group_membership
+mode: default
+content:
+ entity_id:
+ type: entity_reference_autocomplete
+ weight: 5
+ settings:
+ match_operator: CONTAINS
+ size: 60
+ placeholder: ''
+ third_party_settings: { }
+ region: content
+ group_roles:
+ type: options_buttons
+ weight: 6
+ settings: { }
+ third_party_settings: { }
+ region: content
+ path:
+ type: path
+ weight: 30
+ region: content
+ settings: { }
+ third_party_settings: { }
+hidden:
+ uid: true
diff --git a/config/core.entity_form_display.node.action.default.yml b/config/sync/core.entity_form_display.node.action.default.yml
similarity index 91%
rename from config/core.entity_form_display.node.action.default.yml
rename to config/sync/core.entity_form_display.node.action.default.yml
index 55d000f..a27c2e0 100644
--- a/config/core.entity_form_display.node.action.default.yml
+++ b/config/sync/core.entity_form_display.node.action.default.yml
@@ -1,4 +1,4 @@
-uuid: 65e7f53e-01bb-46a7-aea0-8416d922bd3b
+uuid: e35b7826-2119-48ec-81a4-2a11153a8e04
langcode: en
status: true
dependencies:
@@ -33,33 +33,31 @@ content:
created:
type: datetime_timestamp
weight: 9
- region: content
settings: { }
third_party_settings: { }
+ region: content
field_action_end_date:
- type: datetime_default
weight: 3
- region: content
settings: { }
third_party_settings: { }
- field_action_link:
- type: link_default
- weight: 5
+ type: datetime_default
region: content
+ field_action_link:
+ weight: 5
settings:
placeholder_url: ''
placeholder_title: ''
third_party_settings: { }
- field_action_type:
- type: options_select
- weight: 4
+ type: link_default
region: content
+ field_action_type:
+ weight: 4
settings: { }
third_party_settings: { }
- field_body_paragraph:
- type: entity_reference_paragraphs
- weight: 2
+ type: options_select
region: content
+ field_body_paragraph:
+ weight: 2
settings:
title: Paragraph
title_plural: Paragraphs
@@ -68,100 +66,88 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
- field_image:
- type: image_image
- weight: 7
+ type: entity_reference_paragraphs
region: content
+ field_image:
+ weight: 7
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 26
+ type: image_image
region: content
+ field_meta_tags:
+ weight: 26
settings: { }
third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 1
+ type: metatag_firehose
region: content
+ field_summary:
+ weight: 1
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- field_tags:
- type: entity_reference_autocomplete_tags
- weight: 6
+ type: text_textarea
region: content
+ field_tags:
+ weight: 6
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- field_topics:
- type: options_select
- weight: 121
+ type: entity_reference_autocomplete_tags
region: content
+ field_topics:
+ weight: 121
settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: options_select
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 12
- region: content
settings: { }
third_party_settings: { }
+ region: content
promote:
type: boolean_checkbox
- weight: 10
- region: content
settings:
display_label: true
+ weight: 10
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 120
- region: content
settings:
display_label: true
+ weight: 120
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 11
- region: content
settings:
display_label: true
+ weight: 11
third_party_settings: { }
+ region: content
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
+ region: content
uid:
type: entity_reference_autocomplete
weight: 8
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
- third_party_settings: { }
hidden:
body: true
diff --git a/config/core.entity_form_display.node.article.default.yml b/config/sync/core.entity_form_display.node.article.default.yml
similarity index 90%
rename from config/core.entity_form_display.node.article.default.yml
rename to config/sync/core.entity_form_display.node.article.default.yml
index 6f96ee5..02e3913 100644
--- a/config/core.entity_form_display.node.article.default.yml
+++ b/config/sync/core.entity_form_display.node.article.default.yml
@@ -1,4 +1,4 @@
-uuid: dd07d8b7-9d7b-4091-9448-e70d573ee3be
+uuid: 75175d7d-2e09-46d9-aeaf-6ff3655a26ac
langcode: en
status: true
dependencies:
@@ -32,35 +32,32 @@ content:
comment:
type: comment_default
weight: 12
- region: content
settings: { }
third_party_settings: { }
+ region: content
created:
type: datetime_timestamp
weight: 9
- region: content
settings: { }
third_party_settings: { }
+ region: content
field_article_type:
- type: options_select
weight: 1
- region: content
settings: { }
third_party_settings: { }
+ type: options_select
+ region: content
field_authors:
type: entity_reference_autocomplete
weight: 2
region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
field_body_paragraph:
- type: entity_reference_paragraphs
weight: 5
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -69,100 +66,88 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
+ type: entity_reference_paragraphs
+ region: content
field_image:
type: image_image
weight: 3
- region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 14
region: content
+ field_meta_tags:
+ weight: 14
settings: { }
third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 4
+ type: metatag_firehose
region: content
+ field_summary:
+ weight: 4
settings:
rows: 5
placeholder: ''
third_party_settings: { }
+ type: text_textarea
+ region: content
field_tags:
type: entity_reference_autocomplete_tags
weight: 7
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- field_topics:
- type: options_select
- weight: 6
region: content
+ field_topics:
+ weight: 6
settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: options_select
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 13
- region: content
settings: { }
third_party_settings: { }
+ region: content
promote:
type: boolean_checkbox
- weight: 10
- region: content
settings:
display_label: true
+ weight: 10
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 15
- region: content
settings:
display_label: true
+ weight: 15
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 11
- region: content
settings:
display_label: true
+ weight: 11
third_party_settings: { }
+ region: content
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
+ region: content
uid:
type: entity_reference_autocomplete
weight: 8
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
- third_party_settings: { }
hidden:
body: true
diff --git a/config/core.entity_form_display.node.blog.default.yml b/config/sync/core.entity_form_display.node.blog.default.yml
similarity index 87%
rename from config/core.entity_form_display.node.blog.default.yml
rename to config/sync/core.entity_form_display.node.blog.default.yml
index 1aa01f1..6dfbb4a 100644
--- a/config/core.entity_form_display.node.blog.default.yml
+++ b/config/sync/core.entity_form_display.node.blog.default.yml
@@ -1,4 +1,4 @@
-uuid: edba385e-8ab1-4dd0-b077-0da0b14ecad4
+uuid: 7ecbc652-464d-4d7e-ac0b-1e50187b92c7
langcode: en
status: true
dependencies:
@@ -29,31 +29,28 @@ bundle: blog
mode: default
content:
comment:
- type: comment_default
weight: 12
- region: content
settings: { }
third_party_settings: { }
+ type: comment_default
+ region: content
created:
type: datetime_timestamp
weight: 8
- region: content
settings: { }
third_party_settings: { }
- field_authors:
- type: entity_reference_autocomplete
- weight: 1
region: content
+ field_authors:
+ weight: 1
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- field_body_paragraph:
- type: entity_reference_paragraphs
- weight: 4
+ type: entity_reference_autocomplete
region: content
+ field_body_paragraph:
+ weight: 4
settings:
title: Paragraph
title_plural: Paragraphs
@@ -62,105 +59,88 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
- field_image:
- type: image_image
- weight: 2
+ type: entity_reference_paragraphs
region: content
+ field_image:
+ weight: 2
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 13
+ type: image_image
region: content
+ field_meta_tags:
+ weight: 13
settings: { }
third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 3
+ type: metatag_firehose
region: content
+ field_summary:
+ weight: 3
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- field_tags:
- type: entity_reference_autocomplete_tags
- weight: 6
+ type: text_textarea
region: content
+ field_tags:
+ weight: 6
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- field_topics:
- type: options_select
- weight: 5
+ type: entity_reference_autocomplete_tags
region: content
+ field_topics:
+ weight: 5
settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: options_select
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 11
- region: content
settings: { }
third_party_settings: { }
+ region: content
promote:
type: boolean_checkbox
- weight: 9
- region: content
settings:
display_label: true
+ weight: 9
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 14
- region: content
settings:
display_label: true
+ weight: 14
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 10
- region: content
settings:
display_label: true
+ weight: 10
third_party_settings: { }
+ region: content
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
- translation:
- weight: 10
region: content
- settings: { }
- third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 7
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
- third_party_settings: { }
hidden:
body: true
diff --git a/config/core.entity_form_display.node.campaign.default.yml b/config/sync/core.entity_form_display.node.campaign.default.yml
similarity index 90%
rename from config/core.entity_form_display.node.campaign.default.yml
rename to config/sync/core.entity_form_display.node.campaign.default.yml
index e461390..ef6b4d1 100644
--- a/config/core.entity_form_display.node.campaign.default.yml
+++ b/config/sync/core.entity_form_display.node.campaign.default.yml
@@ -1,4 +1,4 @@
-uuid: 9afdff04-aa77-4185-b21f-f1ded4232c4b
+uuid: a61b0d8a-a6ab-4b0f-9db2-5edbcbbe178a
langcode: en
status: true
dependencies:
@@ -28,13 +28,11 @@ content:
created:
type: datetime_timestamp
weight: 7
- region: content
settings: { }
third_party_settings: { }
- field_body_paragraph:
- type: entity_reference_paragraphs
- weight: 3
region: content
+ field_body_paragraph:
+ weight: 3
settings:
title: Paragraph
title_plural: Paragraphs
@@ -43,10 +41,11 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
+ type: entity_reference_paragraphs
+ region: content
field_campaign_demands:
type: entity_reference_paragraphs
weight: 4
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -55,10 +54,10 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
+ region: content
field_campaign_updates:
type: entity_reference_paragraphs
weight: 5
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -67,84 +66,72 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
- field_image:
- type: image_image
- weight: 1
region: content
+ field_image:
+ weight: 1
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 26
+ type: image_image
region: content
+ field_meta_tags:
+ weight: 26
settings: { }
third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 2
+ type: metatag_firehose
region: content
+ field_summary:
+ weight: 2
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: text_textarea
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 10
- region: content
settings: { }
third_party_settings: { }
+ region: content
promote:
type: boolean_checkbox
- weight: 8
- region: content
settings:
display_label: true
+ weight: 8
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 120
- region: content
settings:
display_label: true
+ weight: 120
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 9
- region: content
settings:
display_label: true
+ weight: 9
third_party_settings: { }
+ region: content
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
+ region: content
uid:
type: entity_reference_autocomplete
weight: 6
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
- third_party_settings: { }
hidden:
body: true
diff --git a/config/core.entity_form_display.node.event.default.yml b/config/sync/core.entity_form_display.node.event.default.yml
similarity index 90%
rename from config/core.entity_form_display.node.event.default.yml
rename to config/sync/core.entity_form_display.node.event.default.yml
index dd66914..f0f0a98 100644
--- a/config/core.entity_form_display.node.event.default.yml
+++ b/config/sync/core.entity_form_display.node.event.default.yml
@@ -1,4 +1,4 @@
-uuid: 02a1b817-a8be-42aa-98d2-10d1c5f91346
+uuid: dd5a5209-1be6-4fe0-9869-5cdafb8fd18c
langcode: en
status: true
dependencies:
@@ -31,13 +31,12 @@ content:
created:
type: datetime_timestamp
weight: 9
- region: content
settings: { }
third_party_settings: { }
+ region: content
field_body_paragraph:
type: entity_reference_paragraphs
weight: 7
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -46,112 +45,99 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
+ region: content
field_event_date:
- type: daterange_default
weight: 1
- region: content
settings: { }
third_party_settings: { }
+ type: daterange_default
+ region: content
field_event_type:
- type: options_select
weight: 2
- region: content
settings: { }
third_party_settings: { }
- field_image:
- type: image_image
- weight: 5
+ type: options_select
region: content
+ field_image:
+ weight: 5
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 13
+ type: image_image
region: content
+ field_meta_tags:
+ weight: 13
settings: { }
third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 6
+ type: metatag_firehose
region: content
+ field_summary:
+ weight: 6
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- field_tags:
- type: entity_reference_autocomplete_tags
- weight: 4
+ type: text_textarea
region: content
+ field_tags:
+ weight: 4
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- field_topics:
- type: options_select
- weight: 3
+ type: entity_reference_autocomplete_tags
region: content
+ field_topics:
+ weight: 3
settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: options_select
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 12
- region: content
settings: { }
third_party_settings: { }
+ region: content
promote:
type: boolean_checkbox
- weight: 10
- region: content
settings:
display_label: true
+ weight: 10
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 14
- region: content
settings:
display_label: true
+ weight: 14
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 11
- region: content
settings:
display_label: true
+ weight: 11
third_party_settings: { }
+ region: content
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
+ region: content
uid:
type: entity_reference_autocomplete
weight: 8
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
- third_party_settings: { }
hidden:
body: true
diff --git a/config/core.entity_form_display.node.landing_page.default.yml b/config/sync/core.entity_form_display.node.landing_page.default.yml
similarity index 70%
rename from config/core.entity_form_display.node.landing_page.default.yml
rename to config/sync/core.entity_form_display.node.landing_page.default.yml
index 2786954..86ac799 100644
--- a/config/core.entity_form_display.node.landing_page.default.yml
+++ b/config/sync/core.entity_form_display.node.landing_page.default.yml
@@ -1,15 +1,12 @@
-uuid: a333b55a-3132-4484-b2bf-c544cadfc6e7
+uuid: 4d3483b4-e2d9-46a6-af9f-0ef13f90ef0d
langcode: en
status: true
dependencies:
config:
- field.field.node.landing_page.field_body_paragraph
- - field.field.node.landing_page.field_image
- field.field.node.landing_page.field_meta_tags
- - image.style.thumbnail
- node.type.landing_page
module:
- - image
- metatag
- paragraphs
- path
@@ -27,9 +24,7 @@ content:
settings: { }
third_party_settings: { }
field_body_paragraph:
- type: entity_reference_paragraphs
weight: 1
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -38,27 +33,14 @@ content:
form_display_mode: default
default_paragraph_type: _none
third_party_settings: { }
- field_image:
- type: image_image
- weight: 51
+ type: entity_reference_paragraphs
region: content
- settings:
- progress_indicator: throbber
- preview_image_style: thumbnail
- third_party_settings: { }
field_meta_tags:
- type: metatag_firehose
weight: 5
- region: content
settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: metatag_firehose
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 4
@@ -67,10 +49,10 @@ content:
third_party_settings: { }
status:
type: boolean_checkbox
- weight: 6
- region: content
settings:
display_label: true
+ weight: 6
+ region: content
third_party_settings: { }
title:
type: string_textfield
@@ -80,25 +62,14 @@ content:
size: 60
placeholder: ''
third_party_settings: { }
- translation:
- weight: 10
- region: content
- settings: { }
- third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 2
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
- third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
third_party_settings: { }
hidden:
promote: true
diff --git a/config/core.entity_form_display.node.page.default.yml b/config/sync/core.entity_form_display.node.page.default.yml
similarity index 85%
rename from config/core.entity_form_display.node.page.default.yml
rename to config/sync/core.entity_form_display.node.page.default.yml
index 60774a5..03be2f3 100644
--- a/config/core.entity_form_display.node.page.default.yml
+++ b/config/sync/core.entity_form_display.node.page.default.yml
@@ -1,15 +1,20 @@
-uuid: 1780231b-bad1-42a9-badb-8e4ce1d03e46
+uuid: 67c1ebf8-66a8-46ee-96f9-6bb28f1c15c7
langcode: en
status: true
dependencies:
config:
- field.field.node.page.body
- field.field.node.page.field_body_paragraph
+ - field.field.node.page.field_file
+ - field.field.node.page.field_image
- field.field.node.page.field_meta_tags
- field.field.node.page.field_storyline
- field.field.node.page.field_summary
+ - image.style.thumbnail
- node.type.page
module:
+ - file
+ - image
- metatag
- paragraphs
- path
@@ -24,13 +29,11 @@ content:
created:
type: datetime_timestamp
weight: 4
- region: content
settings: { }
third_party_settings: { }
- field_body_paragraph:
- type: entity_reference_paragraphs
- weight: 2
region: content
+ field_body_paragraph:
+ weight: 2
settings:
title: Paragraph
title_plural: Paragraphs
@@ -39,16 +42,32 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 6
+ type: entity_reference_paragraphs
region: content
+ field_file:
+ weight: 27
+ settings:
+ progress_indicator: throbber
+ third_party_settings: { }
+ type: file_generic
+ region: content
+ field_image:
+ weight: 26
+ settings:
+ progress_indicator: throbber
+ preview_image_style: thumbnail
+ third_party_settings: { }
+ type: image_image
+ region: content
+ field_meta_tags:
+ weight: 6
settings: { }
third_party_settings: { }
+ type: metatag_firehose
+ region: content
field_storyline:
type: entity_reference_paragraphs
weight: 3
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -57,62 +76,45 @@ content:
form_display_mode: default
default_paragraph_type: storyline_header
third_party_settings: { }
- field_summary:
- type: text_textarea
- weight: 1
region: content
+ field_summary:
+ weight: 1
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: text_textarea
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
weight: 5
- region: content
settings: { }
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 7
- region: content
settings:
display_label: true
+ weight: 7
+ region: content
third_party_settings: { }
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
- translation:
- weight: 10
region: content
- settings: { }
- third_party_settings: { }
uid:
type: entity_reference_autocomplete
weight: 3
- region: content
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
- third_party_settings: { }
hidden:
body: true
promote: true
diff --git a/config/core.entity_form_display.node.people.default.yml b/config/sync/core.entity_form_display.node.people.default.yml
similarity index 69%
rename from config/core.entity_form_display.node.people.default.yml
rename to config/sync/core.entity_form_display.node.people.default.yml
index 3a11804..306abe1 100644
--- a/config/core.entity_form_display.node.people.default.yml
+++ b/config/sync/core.entity_form_display.node.people.default.yml
@@ -1,24 +1,19 @@
-uuid: 439cbcec-37f7-4dda-b883-416c13efed8a
+uuid: c1ac88b9-2dd0-4de2-adf2-0d193477b3e2
langcode: en
status: true
dependencies:
config:
+ - field.field.node.people.body
- field.field.node.people.field_body_paragraph
- field.field.node.people.field_image
- field.field.node.people.field_meta_tags
- - field.field.node.people.field_people_email
- field.field.node.people.field_people_position
- - field.field.node.people.field_people_public_gpg_key
- - field.field.node.people.field_people_social_media
- field.field.node.people.field_people_type
- field.field.node.people.field_summary
- image.style.thumbnail
- node.type.people
module:
- - allowed_formats
- - file
- image
- - link
- metatag
- paragraphs
- path
@@ -32,14 +27,12 @@ mode: default
content:
created:
type: datetime_timestamp
- weight: 10
- region: content
+ weight: 7
settings: { }
third_party_settings: { }
- field_body_paragraph:
- type: entity_reference_paragraphs
- weight: 5
region: content
+ field_body_paragraph:
+ weight: 5
settings:
title: Paragraph
title_plural: Paragraphs
@@ -48,123 +41,87 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
- field_image:
- type: image_image
- weight: 3
+ type: entity_reference_paragraphs
region: content
+ field_image:
+ weight: 3
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
+ type: image_image
+ region: content
field_meta_tags:
+ weight: 26
+ settings: { }
+ third_party_settings: { }
type: metatag_firehose
- weight: 14
region: content
- settings: { }
- third_party_settings: { }
- field_people_email:
- type: email_default
- weight: 6
- region: content
- settings:
- placeholder: ''
- size: 60
- third_party_settings: { }
field_people_position:
- type: string_textfield
weight: 1
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
- field_people_public_gpg_key:
- type: file_generic
- weight: 8
+ type: string_textfield
region: content
- settings:
- progress_indicator: throbber
- third_party_settings: { }
- field_people_social_media:
- type: link_default
- weight: 7
- region: content
- settings:
- placeholder_url: ''
- placeholder_title: ''
- third_party_settings: { }
field_people_type:
- type: options_select
weight: 2
- region: content
settings: { }
third_party_settings: { }
+ type: options_select
+ region: content
field_summary:
- type: text_textarea
weight: 4
- region: content
settings:
- rows: 4
+ rows: 5
placeholder: ''
- third_party_settings:
- allowed_formats:
- hide_help: '1'
- hide_guidelines: '1'
- langcode:
- type: language_select
- weight: 2
- region: content
- settings:
- include_locked: true
third_party_settings: { }
+ type: text_textarea
+ region: content
path:
type: path
- weight: 13
- region: content
+ weight: 10
settings: { }
third_party_settings: { }
+ region: content
promote:
type: boolean_checkbox
- weight: 11
- region: content
settings:
display_label: true
+ weight: 8
third_party_settings: { }
+ region: content
status:
type: boolean_checkbox
- weight: 16
- region: content
settings:
display_label: true
+ weight: 120
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 12
- region: content
settings:
display_label: true
+ weight: 9
third_party_settings: { }
+ region: content
title:
type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
+ region: content
uid:
type: entity_reference_autocomplete
- weight: 9
- region: content
+ weight: 6
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- url_redirects:
- weight: 15
region: content
- settings: { }
- third_party_settings: { }
-hidden: { }
+hidden:
+ body: true
diff --git a/config/core.entity_form_display.node.resource.default.yml b/config/sync/core.entity_form_display.node.resource.default.yml
similarity index 84%
rename from config/core.entity_form_display.node.resource.default.yml
rename to config/sync/core.entity_form_display.node.resource.default.yml
index 742bf2b..71e2c05 100644
--- a/config/core.entity_form_display.node.resource.default.yml
+++ b/config/sync/core.entity_form_display.node.resource.default.yml
@@ -1,4 +1,4 @@
-uuid: 8a1610ac-5107-4eaa-9225-3a309776dabb
+uuid: 9ad88c1d-4630-4e51-8173-818fd9bc17d1
langcode: en
status: true
dependencies:
@@ -10,7 +10,6 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -24,9 +23,8 @@ dependencies:
- paragraphs
- path
- text
- - video_embed_field
_core:
- default_config_hash: adHXLsoN8_-ZzTJ0f9rP4dNjoVr9w28OQWoMenFvVuw
+ default_config_hash: dD5zXOYJlGWJaKev1OaXpX9UpROPtfHxW7ko6m-7g84
id: node.resource.default
targetEntityType: node
bundle: resource
@@ -34,14 +32,12 @@ mode: default
content:
created:
type: datetime_timestamp
- weight: 11
+ weight: 10
region: content
settings: { }
third_party_settings: { }
field_body_paragraph:
- type: entity_reference_paragraphs
weight: 4
- region: content
settings:
title: Paragraph
title_plural: Paragraphs
@@ -50,104 +46,92 @@ content:
form_display_mode: default
default_paragraph_type: text
third_party_settings: { }
- field_image:
- type: image_image
- weight: 2
+ type: entity_reference_paragraphs
region: content
+ field_image:
+ weight: 2
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_meta_tags:
- type: metatag_firehose
- weight: 16
+ type: image_image
region: content
+ field_meta_tags:
+ weight: 15
settings: { }
third_party_settings: { }
- field_resource_file:
- type: file_generic
- weight: 6
+ type: metatag_firehose
region: content
+ field_resource_file:
+ weight: 6
settings:
progress_indicator: throbber
third_party_settings: { }
- field_resource_link:
- type: link_default
- weight: 5
+ type: file_generic
region: content
+ field_resource_link:
+ weight: 5
settings:
placeholder_url: ''
placeholder_title: ''
third_party_settings: { }
+ type: link_default
+ region: content
field_resource_type:
- type: options_select
weight: 1
- region: content
settings: { }
third_party_settings: { }
- field_resource_video:
- type: video_embed_field_textfield
- weight: 7
+ type: options_select
region: content
- settings: { }
- third_party_settings: { }
field_summary:
- type: text_textarea
weight: 3
- region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- field_tags:
- type: entity_reference_autocomplete_tags
- weight: 9
+ type: text_textarea
region: content
+ field_tags:
+ weight: 8
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
third_party_settings: { }
- field_topics:
- type: options_select
- weight: 8
+ type: entity_reference_autocomplete_tags
region: content
+ field_topics:
+ weight: 7
settings: { }
third_party_settings: { }
- langcode:
- type: language_select
- weight: 2
+ type: options_select
region: content
- settings:
- include_locked: true
- third_party_settings: { }
path:
type: path
- weight: 14
+ weight: 13
region: content
settings: { }
third_party_settings: { }
promote:
type: boolean_checkbox
- weight: 12
- region: content
settings:
display_label: true
+ weight: 11
+ region: content
third_party_settings: { }
status:
type: boolean_checkbox
- weight: 15
- region: content
settings:
display_label: true
+ weight: 14
+ region: content
third_party_settings: { }
sticky:
type: boolean_checkbox
- weight: 13
- region: content
settings:
display_label: true
+ weight: 12
+ region: content
third_party_settings: { }
title:
type: string_textfield
@@ -159,18 +143,12 @@ content:
third_party_settings: { }
uid:
type: entity_reference_autocomplete
- weight: 10
- region: content
+ weight: 9
settings:
match_operator: CONTAINS
- match_limit: 10
size: 60
placeholder: ''
- third_party_settings: { }
- url_redirects:
- weight: 50
region: content
- settings: { }
third_party_settings: { }
hidden:
body: true
diff --git a/config/core.entity_form_display.paragraph.faq.default.yml b/config/sync/core.entity_form_display.paragraph.faq.default.yml
similarity index 82%
rename from config/core.entity_form_display.paragraph.faq.default.yml
rename to config/sync/core.entity_form_display.paragraph.faq.default.yml
index b40b1e0..284ee7d 100644
--- a/config/core.entity_form_display.paragraph.faq.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.faq.default.yml
@@ -1,4 +1,4 @@
-uuid: 5e7d65b6-d959-48aa-bf5f-6948ac06bb03
+uuid: a173dae6-cfb9-4e39-9e2b-9eaca38bc7ae
langcode: en
status: true
dependencies:
@@ -15,9 +15,7 @@ bundle: faq
mode: default
content:
field_faq:
- type: faqfield_default
weight: 0
- region: content
settings:
answer_widget: text_format
question_title: Question
@@ -28,11 +26,8 @@ content:
question_rows: 0
answer_rows: 3
third_party_settings: { }
- translation:
- weight: 10
+ type: faqfield_default
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/core.entity_form_display.paragraph.file.default.yml b/config/sync/core.entity_form_display.paragraph.file.default.yml
similarity index 78%
rename from config/core.entity_form_display.paragraph.file.default.yml
rename to config/sync/core.entity_form_display.paragraph.file.default.yml
index 6968e33..e635ca2 100644
--- a/config/core.entity_form_display.paragraph.file.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.file.default.yml
@@ -1,4 +1,4 @@
-uuid: 9fab2f03-309c-404c-a4a0-2fbf882c5391
+uuid: 5644d956-b1d5-43fb-8a16-8f5d2e656f1f
langcode: en
status: true
dependencies:
@@ -15,17 +15,12 @@ bundle: file
mode: default
content:
field_file:
- type: file_generic
weight: 0
- region: content
settings:
progress_indicator: throbber
third_party_settings: { }
- translation:
- weight: 10
+ type: file_generic
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/core.entity_form_display.paragraph.image.default.yml b/config/sync/core.entity_form_display.paragraph.image.default.yml
similarity index 80%
rename from config/core.entity_form_display.paragraph.image.default.yml
rename to config/sync/core.entity_form_display.paragraph.image.default.yml
index bd91989..ab8c87f 100644
--- a/config/core.entity_form_display.paragraph.image.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.image.default.yml
@@ -1,4 +1,4 @@
-uuid: a6a5a650-4236-460a-b792-d50a821e804d
+uuid: 2944a9a5-00ce-4083-b16f-4e80ffc69f76
langcode: en
status: true
dependencies:
@@ -16,18 +16,13 @@ bundle: image
mode: default
content:
field_image:
- type: image_image
weight: 0
- region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- translation:
- weight: 10
+ type: image_image
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/core.entity_form_display.paragraph.slide.default.yml b/config/sync/core.entity_form_display.paragraph.slide.default.yml
similarity index 87%
rename from config/core.entity_form_display.paragraph.slide.default.yml
rename to config/sync/core.entity_form_display.paragraph.slide.default.yml
index cd7e1b4..fcb2d9f 100644
--- a/config/core.entity_form_display.paragraph.slide.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.slide.default.yml
@@ -1,4 +1,4 @@
-uuid: 1adeca12-6da1-4efa-906a-44bfc0cca56c
+uuid: 440e136b-8eaa-4e8b-aa2e-b37904c6bed9
langcode: en
status: true
dependencies:
@@ -20,34 +20,29 @@ bundle: slide
mode: default
content:
field_image:
- type: image_image
weight: 5
- region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
- field_link:
- type: link_default
- weight: 4
+ type: image_image
region: content
+ field_link:
+ weight: 4
settings:
placeholder_url: ''
placeholder_title: ''
third_party_settings: { }
- field_text:
- type: text_textarea
- weight: 6
+ type: link_default
region: content
+ field_text:
+ weight: 6
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- translation:
- weight: 10
+ type: text_textarea
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/core.entity_form_display.paragraph.storyline_header.default.yml b/config/sync/core.entity_form_display.paragraph.storyline_header.default.yml
similarity index 80%
rename from config/core.entity_form_display.paragraph.storyline_header.default.yml
rename to config/sync/core.entity_form_display.paragraph.storyline_header.default.yml
index 7616802..a675f32 100644
--- a/config/core.entity_form_display.paragraph.storyline_header.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.storyline_header.default.yml
@@ -1,4 +1,4 @@
-uuid: bc8f7e72-71c5-4b01-9b57-665b50e039fa
+uuid: 46ada9d8-c335-4206-8988-59f79067fe73
langcode: en
status: true
dependencies:
@@ -13,18 +13,13 @@ bundle: storyline_header
mode: default
content:
field_storyline_header:
- type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
- translation:
- weight: 10
+ type: string_textfield
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/core.entity_form_display.paragraph.storyline_item.default.yml b/config/sync/core.entity_form_display.paragraph.storyline_item.default.yml
similarity index 77%
rename from config/core.entity_form_display.paragraph.storyline_item.default.yml
rename to config/sync/core.entity_form_display.paragraph.storyline_item.default.yml
index 6829981..f0aa966 100644
--- a/config/core.entity_form_display.paragraph.storyline_item.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.storyline_item.default.yml
@@ -1,4 +1,4 @@
-uuid: b1bdf8e1-192e-4c66-a4fc-5fb92cabf0ba
+uuid: c4fd7979-47a6-4daa-a65c-e144a751d0f6
langcode: en
status: true
dependencies:
@@ -9,33 +9,28 @@ dependencies:
module:
- text
_core:
- default_config_hash: gbCVsGeAIveXk6z01iAbcmwxUQw4kB2UiNouYBiM9Ik
+ default_config_hash: Xr178Q_5B_TfIDlPKPyFgN2mVIjgIeWpVffc0595BXc
id: paragraph.storyline_item.default
targetEntityType: paragraph
bundle: storyline_item
mode: default
content:
field_storyline_heading:
- type: string_textfield
weight: 0
- region: content
settings:
size: 60
placeholder: ''
third_party_settings: { }
- field_text:
- type: text_textarea
- weight: 1
+ type: string_textfield
region: content
+ field_text:
+ weight: 1
settings:
rows: 5
placeholder: ''
third_party_settings: { }
- translation:
- weight: 10
+ type: text_textarea
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/sync/core.entity_form_display.paragraph.text.default.yml b/config/sync/core.entity_form_display.paragraph.text.default.yml
new file mode 100644
index 0000000..c970643
--- /dev/null
+++ b/config/sync/core.entity_form_display.paragraph.text.default.yml
@@ -0,0 +1,28 @@
+uuid: f98bca54-abb7-44ca-b964-259b3e67758f
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.field.paragraph.text.field_text
+ - paragraphs.paragraphs_type.text
+ module:
+ - text
+_core:
+ default_config_hash: HcHUk34p8VqAF8IVnIOT1SpvhP1C7UmNlFz8jHIDwE0
+id: paragraph.text.default
+targetEntityType: paragraph
+bundle: text
+mode: default
+content:
+ field_text:
+ weight: 0
+ settings:
+ rows: 5
+ placeholder: ''
+ third_party_settings: { }
+ type: text_textarea
+ region: content
+hidden:
+ created: true
+ status: true
+ uid: true
diff --git a/config/core.entity_form_display.paragraph.update.default.yml b/config/sync/core.entity_form_display.paragraph.update.default.yml
similarity index 83%
rename from config/core.entity_form_display.paragraph.update.default.yml
rename to config/sync/core.entity_form_display.paragraph.update.default.yml
index f9769fb..173aa24 100644
--- a/config/core.entity_form_display.paragraph.update.default.yml
+++ b/config/sync/core.entity_form_display.paragraph.update.default.yml
@@ -1,4 +1,4 @@
-uuid: d2ac246b-813e-45e7-97b7-e847e8fa8cf5
+uuid: 869b7c19-2e45-4369-920d-3bdc532de588
langcode: en
status: true
dependencies:
@@ -17,24 +17,19 @@ bundle: update
mode: default
content:
field_text:
- type: text_textarea
weight: 1
- region: content
settings:
rows: 5
placeholder: ''
third_party_settings: { }
+ type: text_textarea
+ region: content
field_update_date:
- type: datetime_default
weight: 0
- region: content
settings: { }
third_party_settings: { }
- translation:
- weight: 10
+ type: datetime_default
region: content
- settings: { }
- third_party_settings: { }
hidden:
created: true
status: true
diff --git a/config/core.entity_form_display.user.user.default.yml b/config/sync/core.entity_form_display.user.user.default.yml
similarity index 72%
rename from config/core.entity_form_display.user.user.default.yml
rename to config/sync/core.entity_form_display.user.user.default.yml
index a43ce52..7bc2774 100644
--- a/config/core.entity_form_display.user.user.default.yml
+++ b/config/sync/core.entity_form_display.user.user.default.yml
@@ -1,13 +1,17 @@
-uuid: d072a9cd-b6c2-43d9-acf3-0392f6c76a80
+uuid: 64046021-ce04-45d5-82a4-5105ea39f4ac
langcode: en
status: true
dependencies:
config:
+ - field.field.user.user.field_bio
+ - field.field.user.user.field_gpg_public_key
- field.field.user.user.user_picture
- image.style.thumbnail
module:
+ - file
- image
- path
+ - text
- user
_core:
default_config_hash: cAoTuTfmGrGB_89qPV_cTRlA7NXOWtLCLePKVX4SO3A
@@ -21,21 +25,27 @@ content:
region: content
settings: { }
third_party_settings: { }
- comment_notify_settings:
- weight: 4
- region: content
- settings: { }
- third_party_settings: { }
contact:
weight: 5
region: content
settings: { }
third_party_settings: { }
- google_analytics:
- weight: 3
- region: content
- settings: { }
+ field_bio:
+ weight: 32
+ settings:
+ rows: 9
+ summary_rows: 3
+ placeholder: ''
third_party_settings: { }
+ type: text_textarea_with_summary
+ region: content
+ field_gpg_public_key:
+ weight: 31
+ settings:
+ progress_indicator: throbber
+ third_party_settings: { }
+ type: file_generic
+ region: content
language:
weight: 0
region: content
@@ -54,11 +64,10 @@ content:
third_party_settings: { }
user_picture:
type: image_image
- weight: -1
- region: content
settings:
progress_indicator: throbber
preview_image_style: thumbnail
third_party_settings: { }
-hidden:
- langcode: true
+ weight: -1
+ region: content
+hidden: { }
diff --git a/config/core.entity_form_mode.user.register.yml b/config/sync/core.entity_form_mode.user.register.yml
similarity index 77%
rename from config/core.entity_form_mode.user.register.yml
rename to config/sync/core.entity_form_mode.user.register.yml
index 363631e..465a31d 100644
--- a/config/core.entity_form_mode.user.register.yml
+++ b/config/sync/core.entity_form_mode.user.register.yml
@@ -1,4 +1,4 @@
-uuid: cadb4783-7ce4-4116-ad03-5f416c4d9b07
+uuid: 3fb20f80-fd7a-40f0-8110-451a0d33b0e7
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: flXhTcp55yLcyy7ZLOhPGKGZobZQJdkAFVWV3LseiuI
id: user.register
label: Register
-description: ''
targetEntityType: user
cache: true
diff --git a/config/core.entity_view_display.block_content.basic.default.yml b/config/sync/core.entity_view_display.block_content.basic.default.yml
similarity index 86%
rename from config/core.entity_view_display.block_content.basic.default.yml
rename to config/sync/core.entity_view_display.block_content.basic.default.yml
index ed66669..00f95ae 100644
--- a/config/core.entity_view_display.block_content.basic.default.yml
+++ b/config/sync/core.entity_view_display.block_content.basic.default.yml
@@ -1,4 +1,4 @@
-uuid: 0a659783-f82e-49a7-94df-333d824beb17
+uuid: 1b9677a6-d4d8-4913-ab46-8879aea23030
langcode: en
status: true
dependencies:
@@ -15,11 +15,10 @@ bundle: basic
mode: default
content:
body:
- type: text_default
label: hidden
+ type: text_default
+ weight: 0
settings: { }
third_party_settings: { }
- weight: 0
region: content
-hidden:
- langcode: true
+hidden: { }
diff --git a/config/core.entity_view_display.block_content.slide.columnar.yml b/config/sync/core.entity_view_display.block_content.slide.columnar.yml
similarity index 90%
rename from config/core.entity_view_display.block_content.slide.columnar.yml
rename to config/sync/core.entity_view_display.block_content.slide.columnar.yml
index fc41a21..3b78184 100644
--- a/config/core.entity_view_display.block_content.slide.columnar.yml
+++ b/config/sync/core.entity_view_display.block_content.slide.columnar.yml
@@ -1,4 +1,4 @@
-uuid: 091c9bd8-41c9-4915-861a-06eed7e1b996
+uuid: 9df2a305-4e56-4eeb-9607-38ba22242d8a
langcode: en
status: true
dependencies:
@@ -18,6 +18,7 @@ mode: columnar
content:
field_slide:
type: entity_reference_revisions_entity_view
+ weight: 0
label: visually_hidden
settings:
view_mode: columnar
@@ -25,7 +26,5 @@ content:
third_party_settings:
ds:
ds_limit: ''
- weight: 0
region: content
-hidden:
- langcode: true
+hidden: { }
diff --git a/config/core.entity_view_display.block_content.slide.default.yml b/config/sync/core.entity_view_display.block_content.slide.default.yml
similarity index 89%
rename from config/core.entity_view_display.block_content.slide.default.yml
rename to config/sync/core.entity_view_display.block_content.slide.default.yml
index 907fd43..f2d2fe4 100644
--- a/config/core.entity_view_display.block_content.slide.default.yml
+++ b/config/sync/core.entity_view_display.block_content.slide.default.yml
@@ -1,4 +1,4 @@
-uuid: 51b90700-c692-44ff-8152-8da4e881e7e4
+uuid: c8437df9-c6b5-4055-9f8b-16d030d7da8f
langcode: en
status: true
dependencies:
@@ -16,12 +16,11 @@ mode: default
content:
field_slide:
type: entity_reference_revisions_entity_view
+ weight: 0
label: visually_hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 0
region: content
-hidden:
- langcode: true
+hidden: { }
diff --git a/config/core.entity_view_display.comment.comment.default.yml b/config/sync/core.entity_view_display.comment.comment.default.yml
similarity index 78%
rename from config/core.entity_view_display.comment.comment.default.yml
rename to config/sync/core.entity_view_display.comment.comment.default.yml
index 8595199..2d4b49d 100644
--- a/config/core.entity_view_display.comment.comment.default.yml
+++ b/config/sync/core.entity_view_display.comment.comment.default.yml
@@ -1,4 +1,4 @@
-uuid: 3459e62a-6f54-474c-ad9f-622ba1a2a05d
+uuid: f7126cd4-1c4f-4f02-895e-f0f022fccf67
langcode: en
status: true
dependencies:
@@ -15,16 +15,15 @@ bundle: comment
mode: default
content:
comment_body:
- type: text_default
label: hidden
+ type: text_default
+ weight: 0
settings: { }
third_party_settings: { }
- weight: 0
region: content
links:
weight: 100
region: content
-hidden:
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
+ settings: { }
+ third_party_settings: { }
+hidden: { }
diff --git a/config/sync/core.entity_view_display.group.group.default.yml b/config/sync/core.entity_view_display.group.group.default.yml
new file mode 100644
index 0000000..e658d79
--- /dev/null
+++ b/config/sync/core.entity_view_display.group.group.default.yml
@@ -0,0 +1,127 @@
+uuid: 80f6bc7d-f6a6-41e8-945c-e89c12bbb12d
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - image.style.large
+ module:
+ - address
+ - ds
+ - entity_reference_revisions
+ - image
+ - link
+third_party_settings:
+ ds:
+ layout:
+ id: ds_1col
+ library: null
+ disable_css: false
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ ds_content: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ ds_content:
+ - field_group_image
+ - label
+ - field_group_description
+ - field_group_email
+ - field_group_phone
+ - field_group_website
+ - field_group_address
+ - field_group_type
+_core:
+ default_config_hash: UUzWtWc9dsYu2qXr3WAwPBu23xH4fiCf-at0McnKjlI
+id: group.group.default
+targetEntityType: group
+bundle: group
+mode: default
+content:
+ field_group_address:
+ weight: 6
+ label: above
+ settings: { }
+ third_party_settings: { }
+ type: address_default
+ region: ds_content
+ field_group_description:
+ type: entity_reference_revisions_entity_view
+ weight: 2
+ label: hidden
+ settings:
+ view_mode: default
+ link: ''
+ third_party_settings: { }
+ region: ds_content
+ field_group_email:
+ weight: 3
+ label: inline
+ settings: { }
+ third_party_settings: { }
+ type: email_mailto
+ region: ds_content
+ field_group_image:
+ weight: 0
+ label: visually_hidden
+ settings:
+ image_style: large
+ image_link: ''
+ third_party_settings: { }
+ type: image
+ region: ds_content
+ field_group_phone:
+ weight: 4
+ label: inline
+ settings:
+ link_to_entity: false
+ third_party_settings: { }
+ type: string
+ region: ds_content
+ field_group_type:
+ weight: 7
+ label: inline
+ settings:
+ link: true
+ third_party_settings: { }
+ type: entity_reference_label
+ region: ds_content
+ field_group_website:
+ weight: 5
+ label: inline
+ settings:
+ trim_length: 80
+ url_only: false
+ url_plain: false
+ rel: ''
+ target: ''
+ third_party_settings: { }
+ type: link
+ region: ds_content
+ label:
+ label: hidden
+ type: string
+ weight: 1
+ settings:
+ link_to_entity: true
+ third_party_settings: { }
+ region: ds_content
+hidden:
+ changed: true
+ created: true
+ field_group_summary: true
+ uid: true
diff --git a/config/sync/core.entity_view_display.group.group.full.yml b/config/sync/core.entity_view_display.group.group.full.yml
new file mode 100644
index 0000000..a6e9e3d
--- /dev/null
+++ b/config/sync/core.entity_view_display.group.group.full.yml
@@ -0,0 +1,135 @@
+uuid: 06933360-ccc2-45cf-a1a7-064c37e61aa9
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.group.full
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - responsive_image.styles.wide
+ module:
+ - address
+ - ds
+ - entity_reference_revisions
+ - link
+ - responsive_image
+ - telephone
+third_party_settings:
+ ds:
+ layout:
+ id: ds_3col_stacked
+ library: ds/ds_3col_stacked
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ header: div
+ left: div
+ middle: div
+ right: div
+ footer: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ header:
+ - field_group_image
+ left:
+ - field_group_email
+ - field_group_phone
+ - field_group_website
+ - field_group_address
+ middle:
+ - label
+ - field_group_description
+ - field_group_type
+_core:
+ default_config_hash: XLzQS8IJ8pXh7XwJ7nJ4qmbsRFGZHdw4JiN6g9NeWMY
+id: group.group.full
+targetEntityType: group
+bundle: group
+mode: full
+content:
+ field_group_address:
+ weight: 4
+ label: above
+ settings: { }
+ third_party_settings: { }
+ type: address_default
+ region: left
+ field_group_description:
+ type: entity_reference_revisions_entity_view
+ weight: 6
+ label: visually_hidden
+ settings:
+ view_mode: default
+ link: ''
+ third_party_settings: { }
+ region: middle
+ field_group_email:
+ weight: 1
+ label: inline
+ settings: { }
+ third_party_settings: { }
+ type: email_mailto
+ region: left
+ field_group_image:
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: wide
+ image_link: ''
+ third_party_settings: { }
+ type: responsive_image
+ region: header
+ field_group_phone:
+ weight: 2
+ label: inline
+ settings:
+ title: ''
+ third_party_settings: { }
+ type: telephone_link
+ region: left
+ field_group_type:
+ type: entity_reference_label
+ weight: 7
+ region: middle
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ field_group_website:
+ weight: 3
+ label: inline
+ settings:
+ trim_length: 80
+ url_only: false
+ url_plain: false
+ rel: ''
+ target: ''
+ third_party_settings: { }
+ type: link_separate
+ region: left
+ label:
+ label: visually_hidden
+ type: string
+ weight: 5
+ settings:
+ link_to_entity: true
+ third_party_settings: { }
+ region: middle
+hidden:
+ changed: true
+ created: true
+ field_group_summary: true
+ uid: true
diff --git a/config/sync/core.entity_view_display.group.group.teaser.yml b/config/sync/core.entity_view_display.group.group.teaser.yml
new file mode 100644
index 0000000..efb7ecd
--- /dev/null
+++ b/config/sync/core.entity_view_display.group.group.teaser.yml
@@ -0,0 +1,84 @@
+uuid: 5a395d42-85c2-431e-88a1-bd7cd45d7e72
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.group.teaser
+ - field.field.group.group.field_group_address
+ - field.field.group.group.field_group_description
+ - field.field.group.group.field_group_email
+ - field.field.group.group.field_group_image
+ - field.field.group.group.field_group_phone
+ - field.field.group.group.field_group_summary
+ - field.field.group.group.field_group_type
+ - field.field.group.group.field_group_website
+ - group.type.group
+ - responsive_image.styles.narrow
+ module:
+ - ds
+ - responsive_image
+ - text
+third_party_settings:
+ ds:
+ layout:
+ id: ds_2col
+ library: ds/ds_2col
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ left: div
+ right: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ left:
+ - field_group_image
+ right:
+ - label
+ - field_group_summary
+_core:
+ default_config_hash: gZzSW-EBwcddUIOJQsalGIoeAo0KoScOIibf3HFF0hA
+id: group.group.teaser
+targetEntityType: group
+bundle: group
+mode: teaser
+content:
+ field_group_image:
+ type: responsive_image
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: narrow
+ image_link: content
+ third_party_settings: { }
+ region: left
+ field_group_summary:
+ type: text_default
+ weight: 2
+ label: visually_hidden
+ settings: { }
+ third_party_settings: { }
+ region: right
+ label:
+ label: visually_hidden
+ type: string
+ weight: 1
+ settings:
+ link_to_entity: true
+ third_party_settings: { }
+ region: right
+hidden:
+ changed: true
+ created: true
+ field_group_address: true
+ field_group_description: true
+ field_group_email: true
+ field_group_phone: true
+ field_group_type: true
+ field_group_website: true
+ uid: true
diff --git a/config/sync/core.entity_view_display.group_content.group-group_membership.default.yml b/config/sync/core.entity_view_display.group_content.group-group_membership.default.yml
new file mode 100644
index 0000000..5e922ae
--- /dev/null
+++ b/config/sync/core.entity_view_display.group_content.group-group_membership.default.yml
@@ -0,0 +1,25 @@
+uuid: 8765f87d-2943-4886-8d14-be88f91cc41f
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.field.group_content.group-group_membership.group_roles
+ - group.content_type.group-group_membership
+_core:
+ default_config_hash: QxxRPMjXOLOICwQjE0XLb6qlgOAuk0Umd98Ck62Em8s
+id: group_content.group-group_membership.default
+targetEntityType: group_content
+bundle: group-group_membership
+mode: default
+content:
+ group_roles:
+ label: above
+ type: entity_reference_label
+ settings:
+ link: false
+ weight: -4
+ third_party_settings: { }
+ region: content
+hidden:
+ entity_id: true
+ uid: true
diff --git a/config/core.entity_view_display.node.action.box.yml b/config/sync/core.entity_view_display.node.action.box.yml
similarity index 87%
rename from config/core.entity_view_display.node.action.box.yml
rename to config/sync/core.entity_view_display.node.action.box.yml
index 224051e..54c2ac4 100644
--- a/config/core.entity_view_display.node.action.box.yml
+++ b/config/sync/core.entity_view_display.node.action.box.yml
@@ -1,4 +1,4 @@
-uuid: accacf9d-3482-4ede-a0fc-0289645ab71d
+uuid: 0acb49b2-09ef-4f5e-ba6a-3aac8291a950
langcode: en
status: true
dependencies:
@@ -27,14 +27,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- node_title
@@ -50,7 +50,7 @@ third_party_settings:
wrapper: h2
class: ''
_core:
- default_config_hash: GzJYs54IW0EEuJFZhOdDvlaTSdokmRNdzkRgaw7JkJU
+ default_config_hash: YYJntcscxh2nMA55jfiROlp306wm1gM8ZFySUKwGrPg
id: node.action.box
targetEntityType: node
bundle: action
@@ -58,6 +58,8 @@ mode: box
content:
field_action_link:
type: link
+ weight: 1
+ region: ds_content
label: visually_hidden
settings:
trim_length: 18
@@ -66,8 +68,6 @@ content:
rel: '0'
target: '0'
third_party_settings: { }
- weight: 1
- region: ds_content
hidden:
body: true
field_action_end_date: true
@@ -78,9 +78,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.action.card.yml b/config/sync/core.entity_view_display.node.action.card.yml
similarity index 92%
rename from config/core.entity_view_display.node.action.card.yml
rename to config/sync/core.entity_view_display.node.action.card.yml
index efd0fba..a7b9b81 100644
--- a/config/core.entity_view_display.node.action.card.yml
+++ b/config/sync/core.entity_view_display.node.action.card.yml
@@ -1,4 +1,4 @@
-uuid: ad6c086c-1112-45fe-a9cf-adc54c6f8a6c
+uuid: 4ee209b6-e211-4778-a36b-e072ade6538a
langcode: en
status: true
dependencies:
@@ -30,14 +30,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -61,20 +61,20 @@ third_party_settings:
- field_topics
- node_title
- field_action_link
- label: 'Card content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
default_config_hash: SGSget3rQlorV6XZjpuFqyiHVj9ALt4xGoRLhNzR5x0
id: node.action.card
@@ -84,6 +84,8 @@ mode: card
content:
field_action_link:
type: link
+ weight: 11
+ region: ds_content
label: visually_hidden
settings:
trim_length: 18
@@ -92,27 +94,23 @@ content:
rel: '0'
target: '0'
third_party_settings: { }
- weight: 11
- region: ds_content
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_topics:
type: entity_reference_label
+ weight: 9
+ region: ds_content
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 9
- region: ds_content
hidden:
body: true
field_action_end_date: true
@@ -121,9 +119,4 @@ hidden:
field_meta_tags: true
field_summary: true
field_tags: 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.node.action.default.yml b/config/sync/core.entity_view_display.node.action.default.yml
similarity index 83%
rename from config/core.entity_view_display.node.action.default.yml
rename to config/sync/core.entity_view_display.node.action.default.yml
index ce192c4..295f85c 100644
--- a/config/core.entity_view_display.node.action.default.yml
+++ b/config/sync/core.entity_view_display.node.action.default.yml
@@ -1,4 +1,4 @@
-uuid: 44d12157-f2b2-4130-b3b5-22c906530a32
+uuid: 4c757c4a-8d21-4891-9847-da66a0c026d0
langcode: en
status: true
dependencies:
@@ -34,9 +34,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.action.full.yml b/config/sync/core.entity_view_display.node.action.full.yml
similarity index 92%
rename from config/core.entity_view_display.node.action.full.yml
rename to config/sync/core.entity_view_display.node.action.full.yml
index fdb2d24..9621048 100644
--- a/config/core.entity_view_display.node.action.full.yml
+++ b/config/sync/core.entity_view_display.node.action.full.yml
@@ -1,4 +1,4 @@
-uuid: a467625c-a92d-4231-b449-c59cbe8b78f6
+uuid: 395a6c8b-35c1-4825-ba1a-74f60edfcacd
langcode: en
status: true
dependencies:
@@ -31,8 +31,6 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
header: div
left: div
@@ -43,6 +41,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
header:
- field_image
@@ -64,15 +64,16 @@ mode: full
content:
field_action_end_date:
type: datetime_default
+ weight: 1
label: above
settings:
timezone_override: ''
format_type: month_day_year
third_party_settings: { }
- weight: 1
region: left
field_action_link:
type: link
+ weight: 6
label: hidden
settings:
trim_length: 80
@@ -81,59 +82,51 @@ content:
rel: ''
target: ''
third_party_settings: { }
- weight: 6
region: right
field_action_type:
type: entity_reference_label
+ weight: 5
+ region: middle
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 5
- region: middle
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 2
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 2
region: middle
field_image:
type: responsive_image
+ weight: 0
+ region: header
label: visually_hidden
settings:
responsive_image_style: wide
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: header
field_tags:
type: entity_reference_label
+ weight: 4
label: hidden
settings:
link: true
third_party_settings: { }
- weight: 4
region: middle
field_topics:
type: entity_reference_label
+ weight: 3
+ region: middle
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: middle
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.node.action.search_index.yml b/config/sync/core.entity_view_display.node.action.search_index.yml
similarity index 90%
rename from config/core.entity_view_display.node.action.search_index.yml
rename to config/sync/core.entity_view_display.node.action.search_index.yml
index b43cb3b..922ecfc 100644
--- a/config/core.entity_view_display.node.action.search_index.yml
+++ b/config/sync/core.entity_view_display.node.action.search_index.yml
@@ -1,4 +1,4 @@
-uuid: 6945f9dc-8cc2-4b6e-866d-59787baa1061
+uuid: d6318584-2f9b-45de-9484-70840433e962
langcode: en
status: true
dependencies:
@@ -30,15 +30,17 @@ mode: search_index
content:
field_action_end_date:
type: datetime_default
+ weight: 2
+ region: content
label: hidden
settings:
timezone_override: ''
format_type: month_day_year
third_party_settings: { }
- weight: 2
- region: content
field_action_link:
type: link
+ weight: 3
+ region: content
label: hidden
settings:
trim_length: 80
@@ -47,59 +49,50 @@ content:
rel: ''
target: ''
third_party_settings: { }
- weight: 3
- region: content
field_action_type:
type: entity_reference_label
+ weight: 4
+ region: content
label: hidden
settings:
link: true
third_party_settings: { }
- weight: 4
- region: content
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 1
+ region: content
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 1
- region: content
field_image:
type: responsive_image
- label: hidden
- settings:
- responsive_image_style: ''
- image_link: ''
- image_loading:
- attribute: eager
- third_party_settings: { }
weight: 0
region: content
+ label: hidden
+ settings:
+ image_link: ''
+ responsive_image_style: ''
+ third_party_settings: { }
field_tags:
type: entity_reference_label
- label: hidden
- settings:
- link: true
- third_party_settings: { }
weight: 6
region: content
- field_topics:
- type: entity_reference_label
label: hidden
settings:
link: true
third_party_settings: { }
+ field_topics:
+ type: entity_reference_label
weight: 5
region: content
+ label: hidden
+ settings:
+ link: true
+ third_party_settings: { }
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.node.action.simple_card.yml b/config/sync/core.entity_view_display.node.action.simple_card.yml
similarity index 89%
rename from config/core.entity_view_display.node.action.simple_card.yml
rename to config/sync/core.entity_view_display.node.action.simple_card.yml
index 562f078..726d5a1 100644
--- a/config/core.entity_view_display.node.action.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.action.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: e8ca79d7-f3f2-4fb6-991a-bd29c350fdeb
+uuid: b559adaa-b64f-4fc8-aadd-d48572934460
langcode: en
status: true
dependencies:
@@ -27,20 +27,20 @@ third_party_settings:
children:
- 'bundle_field:node'
- node_title
- label: 'Card content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
ds:
layout:
id: ds_1col
@@ -48,14 +48,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -79,7 +79,7 @@ third_party_settings:
class: ''
exclude_node_title: '1'
_core:
- default_config_hash: pavRjvy4BxZcpRZhVCe_2AQhabVIzqj5SQCjjsaJglg
+ default_config_hash: d68BPx-j2fYXkmSUO2IS4d5P-akVjjo5kcfh2q45j5o
id: node.action.simple_card
targetEntityType: node
bundle: action
@@ -87,15 +87,13 @@ mode: simple_card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
hidden:
body: true
field_action_end_date: true
@@ -106,9 +104,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.action.teaser.yml b/config/sync/core.entity_view_display.node.action.teaser.yml
similarity index 90%
rename from config/core.entity_view_display.node.action.teaser.yml
rename to config/sync/core.entity_view_display.node.action.teaser.yml
index 0033632..ff9b72d 100644
--- a/config/core.entity_view_display.node.action.teaser.yml
+++ b/config/sync/core.entity_view_display.node.action.teaser.yml
@@ -1,4 +1,4 @@
-uuid: 9e95cb88-cf66-470d-8d2d-cefafe9c0234
+uuid: 269e997a-2163-4dec-9026-330bcca9f01e
langcode: en
status: true
dependencies:
@@ -29,8 +29,6 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
left: div
right: div
@@ -38,6 +36,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
left:
- field_image
@@ -64,30 +64,28 @@ mode: teaser
content:
field_image:
type: responsive_image
+ weight: 0
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
region: left
field_summary:
type: text_default
+ weight: 2
label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 2
region: right
field_topics:
type: entity_reference_label
+ weight: 3
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: right
hidden:
body: true
field_action_end_date: true
@@ -96,9 +94,4 @@ hidden:
field_body_paragraph: true
field_meta_tags: true
field_tags: 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.node.action.tile.yml b/config/sync/core.entity_view_display.node.action.tile.yml
similarity index 83%
rename from config/core.entity_view_display.node.action.tile.yml
rename to config/sync/core.entity_view_display.node.action.tile.yml
index d2e35aa..408b855 100644
--- a/config/core.entity_view_display.node.action.tile.yml
+++ b/config/sync/core.entity_view_display.node.action.tile.yml
@@ -1,4 +1,4 @@
-uuid: 5ced9338-e2e4-4b3e-8e95-f2033a29cf11
+uuid: 053ea926-4dab-4b78-b0ef-a8449a42ff08
langcode: en
status: false
dependencies:
@@ -26,17 +26,17 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions: { }
_core:
- default_config_hash: 80HOEYSKl4yWYmtQgvRUFrgW7IbLp_WhY700sqiVA7A
+ default_config_hash: Ner6Si4Dk9CHX4M8iRzdeTp9vQ-tBaYRLMtP4hH2hGc
id: node.action.tile
targetEntityType: node
bundle: action
@@ -53,9 +53,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.article.box.yml b/config/sync/core.entity_view_display.node.article.box.yml
similarity index 86%
rename from config/core.entity_view_display.node.article.box.yml
rename to config/sync/core.entity_view_display.node.article.box.yml
index 3decd32..769fd68 100644
--- a/config/core.entity_view_display.node.article.box.yml
+++ b/config/sync/core.entity_view_display.node.article.box.yml
@@ -1,4 +1,4 @@
-uuid: 28738618-cf9a-4238-8294-42dc9df4d757
+uuid: b559b31f-8a2c-4896-938f-e4189f251531
langcode: en
status: true
dependencies:
@@ -26,14 +26,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- node_title
@@ -54,7 +54,7 @@ third_party_settings:
wrapper: h2
class: ''
_core:
- default_config_hash: bBVcPRbyg59JWGNU9MZKR1U4vJXPigsSw4GloKbRnxc
+ default_config_hash: OcRSN1-I_grG1lqpAr230n8Q4BPcIpbsxXC5Bo-V1io
id: node.article.box
targetEntityType: node
bundle: article
@@ -71,9 +71,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.article.card.yml b/config/sync/core.entity_view_display.node.article.card.yml
similarity index 92%
rename from config/core.entity_view_display.node.article.card.yml
rename to config/sync/core.entity_view_display.node.article.card.yml
index 473791f..08e4178 100644
--- a/config/core.entity_view_display.node.article.card.yml
+++ b/config/sync/core.entity_view_display.node.article.card.yml
@@ -1,4 +1,4 @@
-uuid: e2cd4e18-fc4c-46d6-a1ac-1b74fdd5877b
+uuid: 4e79861e-9fd7-40c1-8e2f-edb210a7f9e2
langcode: en
status: true
dependencies:
@@ -30,14 +30,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -68,20 +68,20 @@ third_party_settings:
- node_title
- field_summary
- field_topics
- label: 'Card content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
default_config_hash: p6e_07jFYgDYzfPzft22FzzqyvPqhEUyM-XdQCUljIY
id: node.article.card
@@ -91,33 +91,31 @@ mode: card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_summary:
type: text_trimmed
+ weight: 5
+ region: ds_content
label: visually_hidden
settings:
trim_length: 180
third_party_settings: { }
- weight: 5
- region: ds_content
field_topics:
type: entity_reference_label
+ weight: 6
+ region: ds_content
label: visually_hidden
settings:
link: true
third_party_settings:
ds:
ds_limit: ''
- weight: 6
- region: ds_content
hidden:
body: true
comment: true
@@ -126,9 +124,4 @@ hidden:
field_body_paragraph: true
field_meta_tags: true
field_tags: 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.node.article.default.yml b/config/sync/core.entity_view_display.node.article.default.yml
similarity index 82%
rename from config/core.entity_view_display.node.article.default.yml
rename to config/sync/core.entity_view_display.node.article.default.yml
index 2ad9055..4fd9b4d 100644
--- a/config/core.entity_view_display.node.article.default.yml
+++ b/config/sync/core.entity_view_display.node.article.default.yml
@@ -1,4 +1,4 @@
-uuid: b2ec8306-375d-45df-8ae1-86be6aa1bbae
+uuid: a90f34b5-8157-498d-810d-25190472cff7
langcode: en
status: true
dependencies:
@@ -34,9 +34,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.article.full.yml b/config/sync/core.entity_view_display.node.article.full.yml
similarity index 83%
rename from config/core.entity_view_display.node.article.full.yml
rename to config/sync/core.entity_view_display.node.article.full.yml
index 239c88d..045a57a 100644
--- a/config/core.entity_view_display.node.article.full.yml
+++ b/config/sync/core.entity_view_display.node.article.full.yml
@@ -1,4 +1,4 @@
-uuid: cd572059-d69f-4ccd-a709-91fe21087461
+uuid: 814ba5fc-5757-4e3f-a66e-651b2770ad7a
langcode: en
status: true
dependencies:
@@ -31,8 +31,6 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
header: div
left: div
@@ -43,7 +41,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
- label: ''
+ classes:
+ layout_class: { }
regions:
header:
- field_image
@@ -57,10 +56,6 @@ third_party_settings:
- field_tags
- comment
- links
- footer:
- - indieweb_syndication
- - indieweb_bridgypublishtwitter
- - indieweb_bridgypublishmastodon
fields:
node_post_date:
plugin_id: node_post_date
@@ -75,91 +70,72 @@ bundle: article
mode: full
content:
comment:
- type: comment_default
label: above
- settings:
- view_mode: default
- pager_id: 0
- third_party_settings: { }
+ type: comment_default
weight: 7
+ settings:
+ pager_id: 0
+ view_mode: default
+ third_party_settings: { }
region: middle
field_article_type:
- type: entity_reference_label
+ weight: 4
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 4
+ type: entity_reference_label
region: middle
field_authors:
type: entity_reference_label
+ weight: 2
+ region: left
label: visually_hidden
settings:
link: true
third_party_settings:
ds:
ds_limit: ''
- weight: 2
- region: left
field_body_paragraph:
- type: entity_reference_revisions_entity_view
+ weight: 3
label: visually_hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 3
+ type: entity_reference_revisions_entity_view
region: middle
field_image:
type: responsive_image
- label: visually_hidden
+ weight: 0
settings:
responsive_image_style: wide
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
+ label: visually_hidden
region: header
field_tags:
type: entity_reference_label
+ weight: 6
label: hidden
settings:
link: true
third_party_settings: { }
- weight: 6
region: middle
field_topics:
type: entity_reference_label
+ weight: 5
+ region: middle
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 5
- region: middle
- indieweb_bridgypublishmastodon:
- settings: { }
- third_party_settings: { }
- weight: 11
- region: footer
- indieweb_bridgypublishtwitter:
- settings: { }
- third_party_settings: { }
- weight: 10
- region: footer
- indieweb_syndication:
- settings: { }
- third_party_settings: { }
- weight: 9
- region: footer
links:
- settings: { }
- third_party_settings: { }
weight: 8
region: middle
+ settings: { }
+ third_party_settings: { }
hidden:
body: true
field_meta_tags: true
field_summary: true
- langcode: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.article.media.yml b/config/sync/core.entity_view_display.node.article.media.yml
similarity index 92%
rename from config/core.entity_view_display.node.article.media.yml
rename to config/sync/core.entity_view_display.node.article.media.yml
index 2693fc2..791c465 100644
--- a/config/core.entity_view_display.node.article.media.yml
+++ b/config/sync/core.entity_view_display.node.article.media.yml
@@ -1,4 +1,4 @@
-uuid: 68d5e310-7ee1-439b-abbb-373f6f2efb5c
+uuid: 47e1c16f-9ff1-4bac-a718-79a5ac3a5ae3
langcode: en
status: true
dependencies:
@@ -29,14 +29,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- group_media_left
@@ -59,37 +59,37 @@ third_party_settings:
children:
- node_title
- field_topics
- label: 'Media content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Media content'
+ region: hidden
group_media_left:
children:
- field_image
- label: 'Media left'
parent_name: ''
- region: hidden
weight: 0
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Media left'
+ region: hidden
_core:
default_config_hash: pHHfXZyyi7wI5eBxiS_wqW988jhenUljfftdaOuSuGk
id: node.article.media
@@ -99,23 +99,21 @@ mode: media
content:
field_image:
type: image
- label: visually_hidden
- settings:
- image_link: content
- image_style: square_thumbnail
- image_loading:
- attribute: lazy
- third_party_settings: { }
weight: 0
region: ds_content
+ label: visually_hidden
+ settings:
+ image_style: square_thumbnail
+ image_link: content
+ third_party_settings: { }
field_topics:
type: entity_reference_label
+ weight: 3
+ region: ds_content
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: ds_content
hidden:
body: true
comment: true
@@ -125,9 +123,4 @@ hidden:
field_meta_tags: true
field_summary: true
field_tags: 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.node.article.rss.yml b/config/sync/core.entity_view_display.node.article.rss.yml
similarity index 90%
rename from config/core.entity_view_display.node.article.rss.yml
rename to config/sync/core.entity_view_display.node.article.rss.yml
index bebb432..2047abc 100644
--- a/config/core.entity_view_display.node.article.rss.yml
+++ b/config/sync/core.entity_view_display.node.article.rss.yml
@@ -1,4 +1,4 @@
-uuid: 4d25c21a-4227-444c-a187-3112a2c235b1
+uuid: fbee21a7-ae91-42d0-9086-69d9e033d9c4
langcode: en
status: true
dependencies:
@@ -30,14 +30,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -64,34 +64,32 @@ mode: rss
content:
field_image:
type: image
+ weight: 0
label: hidden
settings:
- image_link: ''
image_style: small_square
- image_loading:
- attribute: lazy
+ image_link: ''
third_party_settings: { }
- weight: 0
region: ds_content
field_summary:
type: text_default
+ weight: 2
label: hidden
settings: { }
third_party_settings: { }
- weight: 2
region: ds_content
field_topics:
type: entity_reference_rss_category
+ weight: 3
+ region: ds_content
label: inline
settings: { }
third_party_settings: { }
- weight: 3
- region: ds_content
links:
- settings: { }
- third_party_settings: { }
weight: 4
region: ds_content
+ settings: { }
+ third_party_settings: { }
hidden:
body: true
comment: true
@@ -100,8 +98,3 @@ hidden:
field_body_paragraph: true
field_meta_tags: true
field_tags: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.article.search_index.yml b/config/sync/core.entity_view_display.node.article.search_index.yml
similarity index 83%
rename from config/core.entity_view_display.node.article.search_index.yml
rename to config/sync/core.entity_view_display.node.article.search_index.yml
index c867465..e8d4cba 100644
--- a/config/core.entity_view_display.node.article.search_index.yml
+++ b/config/sync/core.entity_view_display.node.article.search_index.yml
@@ -1,4 +1,4 @@
-uuid: 3a0b851e-c012-4d73-a28f-4af4ff29d79a
+uuid: 05d7c8a8-5b1d-4daf-aa94-0630c0283a49
langcode: en
status: true
dependencies:
@@ -26,17 +26,17 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions: { }
_core:
- default_config_hash: 8-HxvvBWiVYkvNtPMVDWOwjON2LI08t4U-Gouf6MOA4
+ default_config_hash: v3Lfclv0L-DGkdhOK1qoJwVDXXNvnwQ2JyIPQ6S1HCw
id: node.article.search_index
targetEntityType: node
bundle: article
@@ -53,9 +53,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.article.simple_card.yml b/config/sync/core.entity_view_display.node.article.simple_card.yml
similarity index 88%
rename from config/core.entity_view_display.node.article.simple_card.yml
rename to config/sync/core.entity_view_display.node.article.simple_card.yml
index 869fbdc..13de06b 100644
--- a/config/core.entity_view_display.node.article.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.article.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: 136d4953-62e4-4e35-b7b4-4ae46cac7c9b
+uuid: c2378b05-831a-4ded-a260-39cee8dc9d8b
langcode: en
status: true
dependencies:
@@ -29,14 +29,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -64,22 +64,22 @@ third_party_settings:
children:
- 'bundle_field:node'
- node_title
- label: 'Card content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
- default_config_hash: 9VKribt4b49hO1yfd4qsunZ-1wi3LabVys-CdFmVrQ4
+ default_config_hash: RO7jL2MVKlWm4O_pUAP74JwGJfi7zq58muyaj2ZNQTY
id: node.article.simple_card
targetEntityType: node
bundle: article
@@ -87,15 +87,13 @@ mode: simple_card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
hidden:
body: true
comment: true
@@ -106,9 +104,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.article.teaser.yml b/config/sync/core.entity_view_display.node.article.teaser.yml
similarity index 91%
rename from config/core.entity_view_display.node.article.teaser.yml
rename to config/sync/core.entity_view_display.node.article.teaser.yml
index af218d1..d4fae97 100644
--- a/config/core.entity_view_display.node.article.teaser.yml
+++ b/config/sync/core.entity_view_display.node.article.teaser.yml
@@ -1,4 +1,4 @@
-uuid: adae1a50-db40-4166-bb08-c101fa731cfe
+uuid: a3adf38b-b6c8-49f4-b30e-1ba385a71729
langcode: en
status: true
dependencies:
@@ -28,8 +28,6 @@ third_party_settings:
disable_css: true
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
left: div
right: div
@@ -37,6 +35,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
left:
- field_image
@@ -70,38 +70,36 @@ mode: teaser
content:
field_authors:
type: entity_reference_label
+ weight: 3
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: right
field_image:
type: responsive_image
- label: visually_hidden
- settings:
- responsive_image_style: ''
- image_link: content
- image_loading:
- attribute: eager
- third_party_settings: { }
weight: 0
+ settings:
+ image_link: content
+ responsive_image_style: ''
+ third_party_settings: { }
+ label: visually_hidden
region: left
field_summary:
type: text_default
+ weight: 4
label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 4
region: right
field_topics:
type: entity_reference_label
+ weight: 5
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 5
- region: right
hidden:
body: true
comment: true
@@ -109,9 +107,4 @@ hidden:
field_body_paragraph: true
field_meta_tags: true
field_tags: 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.node.blog.card.yml b/config/sync/core.entity_view_display.node.blog.card.yml
similarity index 50%
rename from config/core.entity_view_display.node.blog.card.yml
rename to config/sync/core.entity_view_display.node.blog.card.yml
index e78fceb..525433b 100644
--- a/config/core.entity_view_display.node.blog.card.yml
+++ b/config/sync/core.entity_view_display.node.blog.card.yml
@@ -1,4 +1,4 @@
-uuid: e708902b-b353-477f-a76c-aeb8e1ec6396
+uuid: 3c97b770-9b09-4786-b132-94d0b9aa508c
langcode: en
status: true
dependencies:
@@ -14,7 +14,7 @@ dependencies:
- field.field.node.blog.field_tags
- field.field.node.blog.field_topics
- node.type.blog
- - responsive_image.styles.wide
+ - responsive_image.styles.narrow
module:
- ds
- field_group
@@ -22,23 +22,60 @@ dependencies:
- text
- user
third_party_settings:
+ ds:
+ layout:
+ id: ds_1col
+ library: null
+ disable_css: false
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ ds_content: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ ds_content:
+ - field_image
+ - group_card_content
+ - node_title
+ - field_authors
+ - field_summary
+ - field_topics
+ fields:
+ node_title:
+ plugin_id: node_title
+ weight: 3
+ label: hidden
+ formatter: default
+ settings:
+ link: true
+ wrapper: h2
+ class: ''
field_group:
group_card_content:
- children: { }
- label: 'Card content'
+ children:
+ - node_title
+ - field_authors
+ - field_summary
+ - field_topics
parent_name: ''
- region: hidden
- weight: 10
+ weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
default_config_hash: XYwyKKa3-njRWSk_M5xND_313C_fphpvWjlySBpNcxY
id: node.blog.card
@@ -48,43 +85,40 @@ mode: card
content:
field_authors:
type: entity_reference_label
- label: hidden
+ weight: 4
+ region: ds_content
+ label: visually_hidden
settings:
- link: false
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
+ link: true
+ third_party_settings: { }
field_image:
type: responsive_image
- label: hidden
+ weight: 0
+ region: ds_content
+ label: visually_hidden
settings:
- responsive_image_style: wide
- image_link: ''
- image_loading:
- attribute: eager
+ responsive_image_style: narrow
+ image_link: content
third_party_settings: { }
- weight: 1
- region: content
field_summary:
- type: text_trimmed
- label: hidden
- settings:
- trim_length: 600
+ type: text_default
+ weight: 5
+ region: ds_content
+ label: visually_hidden
+ settings: { }
+ third_party_settings: { }
+ field_topics:
+ type: entity_reference_label
+ weight: 6
+ region: ds_content
+ label: visually_hidden
+ settings:
+ link: true
third_party_settings: { }
- weight: 2
- region: content
hidden:
body: true
comment: true
field_body_paragraph: true
field_meta_tags: true
field_tags: true
- field_topics: 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.node.blog.default.yml b/config/sync/core.entity_view_display.node.blog.default.yml
similarity index 85%
rename from config/core.entity_view_display.node.blog.default.yml
rename to config/sync/core.entity_view_display.node.blog.default.yml
index ce02edd..8697462 100644
--- a/config/core.entity_view_display.node.blog.default.yml
+++ b/config/sync/core.entity_view_display.node.blog.default.yml
@@ -1,4 +1,4 @@
-uuid: 0fdf568d-8e31-4026-a744-58d0e8b3e45f
+uuid: 0d4fcfdb-04b0-4447-afed-92d39bbd6b7d
langcode: en
status: true
dependencies:
@@ -24,15 +24,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
- label: ''
+ classes:
+ layout_class: { }
regions: { }
_core:
default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM
@@ -51,9 +50,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
links: true
- search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.full.yml b/config/sync/core.entity_view_display.node.blog.full.yml
new file mode 100644
index 0000000..e46e2b3
--- /dev/null
+++ b/config/sync/core.entity_view_display.node.blog.full.yml
@@ -0,0 +1,132 @@
+uuid: 1914839e-7257-4b86-abb6-c30439f0e550
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_display.comment.comment.default
+ - core.entity_view_mode.node.full
+ - field.field.node.blog.body
+ - field.field.node.blog.comment
+ - field.field.node.blog.field_authors
+ - field.field.node.blog.field_body_paragraph
+ - field.field.node.blog.field_image
+ - field.field.node.blog.field_meta_tags
+ - field.field.node.blog.field_summary
+ - field.field.node.blog.field_tags
+ - field.field.node.blog.field_topics
+ - node.type.blog
+ - responsive_image.styles.wide
+ module:
+ - comment
+ - ds
+ - entity_reference_revisions
+ - responsive_image
+ - user
+third_party_settings:
+ ds:
+ layout:
+ id: ds_3col_stacked
+ library: ds/ds_3col_stacked
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ header: div
+ left: div
+ middle: div
+ right: div
+ footer: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ header:
+ - field_image
+ left:
+ - field_authors
+ middle:
+ - node_post_date
+ - field_body_paragraph
+ - field_topics
+ - field_tags
+ - node_links
+ - comment
+ fields:
+ node_post_date:
+ plugin_id: node_post_date
+ weight: 2
+ label: hidden
+ formatter: ds_post_date_month_day_year
+ node_links:
+ plugin_id: node_links
+ weight: 6
+ label: hidden
+ formatter: default
+_core:
+ default_config_hash: eLe_jwnmC3YVxzxyG5O3Vc3cB-yoH17iuPzsEFt3TDM
+id: node.blog.full
+targetEntityType: node
+bundle: blog
+mode: full
+content:
+ comment:
+ weight: 7
+ label: above
+ settings:
+ pager_id: 0
+ view_mode: default
+ third_party_settings: { }
+ type: comment_default
+ region: middle
+ field_authors:
+ type: entity_reference_label
+ weight: 1
+ region: left
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings:
+ ds:
+ ds_limit: ''
+ field_body_paragraph:
+ weight: 3
+ label: visually_hidden
+ settings:
+ view_mode: default
+ link: ''
+ third_party_settings: { }
+ type: entity_reference_revisions_entity_view
+ region: middle
+ field_image:
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: wide
+ image_link: ''
+ third_party_settings: { }
+ type: responsive_image
+ region: header
+ field_tags:
+ weight: 5
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ type: entity_reference_label
+ region: middle
+ field_topics:
+ type: entity_reference_label
+ weight: 4
+ region: middle
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+hidden:
+ body: true
+ field_meta_tags: true
+ field_summary: true
+ links: true
diff --git a/config/core.entity_view_display.node.blog.media.yml b/config/sync/core.entity_view_display.node.blog.media.yml
similarity index 92%
rename from config/core.entity_view_display.node.blog.media.yml
rename to config/sync/core.entity_view_display.node.blog.media.yml
index dcd0924..d21e94d 100644
--- a/config/core.entity_view_display.node.blog.media.yml
+++ b/config/sync/core.entity_view_display.node.blog.media.yml
@@ -1,4 +1,4 @@
-uuid: 84fc9f02-870a-47fa-a777-136a5dbecf31
+uuid: 88b97788-8c2b-4416-9336-e0f528ab58a1
langcode: en
status: true
dependencies:
@@ -28,14 +28,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- group_media_left
@@ -57,39 +57,39 @@ third_party_settings:
group_media_left:
children:
- field_image
- label: 'Media left'
parent_name: ''
- region: hidden
weight: 0
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Media left'
+ region: hidden
group_media_content:
children:
- node_title
- field_topics
- label: 'Media content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
label: 'Media content'
- classes: ''
- id: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ id: ''
+ classes: ''
+ label: 'Media content'
+ region: hidden
_core:
default_config_hash: Rj3ojtU612xgYn4zfkX4bS8c3ONib2NditNp_5QsD48
id: node.blog.media
@@ -99,23 +99,21 @@ mode: media
content:
field_image:
type: image
- label: visually_hidden
- settings:
- image_link: content
- image_style: square_thumbnail
- image_loading:
- attribute: lazy
- third_party_settings: { }
weight: 2
region: ds_content
+ label: visually_hidden
+ settings:
+ image_style: square_thumbnail
+ image_link: content
+ third_party_settings: { }
field_topics:
type: entity_reference_label
+ weight: 3
+ region: ds_content
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: ds_content
hidden:
body: true
comment: true
@@ -124,9 +122,4 @@ hidden:
field_meta_tags: true
field_summary: true
field_tags: 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.node.blog.search_index.yml b/config/sync/core.entity_view_display.node.blog.search_index.yml
similarity index 91%
rename from config/core.entity_view_display.node.blog.search_index.yml
rename to config/sync/core.entity_view_display.node.blog.search_index.yml
index a69bf2e..aaf99c5 100644
--- a/config/core.entity_view_display.node.blog.search_index.yml
+++ b/config/sync/core.entity_view_display.node.blog.search_index.yml
@@ -1,4 +1,4 @@
-uuid: 7f117391-180a-49d2-8e0c-ec7575cef408
+uuid: bdfd2124-2a30-4e02-a0a8-2704963df230
langcode: en
status: true
dependencies:
@@ -27,14 +27,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -58,60 +58,53 @@ mode: search_index
content:
field_authors:
type: entity_reference_label
+ weight: 1
+ region: ds_content
label: hidden
settings:
link: true
third_party_settings:
ds:
ds_limit: ''
- weight: 1
- region: ds_content
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 3
+ region: ds_content
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 3
- region: ds_content
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: hidden
settings:
responsive_image_style: ''
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_tags:
type: entity_reference_label
+ weight: 5
+ region: ds_content
label: hidden
settings:
link: true
third_party_settings:
ds:
ds_limit: ''
- weight: 5
- region: ds_content
field_topics:
type: entity_reference_label
+ weight: 4
+ region: ds_content
label: hidden
settings:
link: true
third_party_settings: { }
- weight: 4
- region: ds_content
hidden:
body: true
comment: true
field_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.node.blog.simple_card.yml b/config/sync/core.entity_view_display.node.blog.simple_card.yml
similarity index 68%
rename from config/core.entity_view_display.node.blog.simple_card.yml
rename to config/sync/core.entity_view_display.node.blog.simple_card.yml
index 93ccb8a..73e3b0e 100644
--- a/config/core.entity_view_display.node.blog.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.blog.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: 3b1c1658-f348-4f5b-92af-274d35a086a1
+uuid: 2051cd89-e1d4-43b7-bc51-eac14dc4a27a
langcode: en
status: true
dependencies:
@@ -23,64 +23,62 @@ dependencies:
third_party_settings:
ds:
layout:
- id: ds_2col
- library: ds/ds_2col
+ id: ds_1col
+ library: null
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
- left: div
- right: div
+ ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
- left:
- - node_post_date
- - group_date
- - node_title
- right:
+ ds_content:
- field_image
+ - group_card_content
+ - 'bundle_field:node'
+ - node_title
fields:
- node_post_date:
- plugin_id: node_post_date
- weight: 0
+ 'bundle_field:node':
+ plugin_id: 'bundle_field:node'
+ weight: 2
label: hidden
- formatter: ds_post_date_short
+ formatter: default
node_title:
plugin_id: node_title
- weight: 2
+ weight: 3
label: hidden
formatter: default
settings:
link: true
wrapper: h2
- class: 'title is-size-3-desktop is-size-4-tablet is-size-5-mobile'
- exclude_node_title: '0'
+ class: ''
+ exclude_node_title: '1'
field_group:
- group_date:
+ group_card_content:
children:
- - node_post_date
- label: Date
+ - 'bundle_field:node'
+ - node_title
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: subtitle
id: ''
- element: p
+ classes: ''
+ element: div
show_label: false
label_element: h3
- label_element_classes: ''
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
- default_config_hash: wUTdzmd_uDUyf43YNRpJ7ic0Yg9me0T6jp-MTE2t874
+ default_config_hash: ZyO9h-SROlzBIFc6wN_1lDhhdQ76kuWUcaYs2rD_xxQ
id: node.blog.simple_card
targetEntityType: node
bundle: blog
@@ -88,15 +86,13 @@ mode: simple_card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 3
- region: right
hidden:
body: true
comment: true
@@ -106,9 +102,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
links: true
- search_api_excerpt: true
diff --git a/config/sync/core.entity_view_display.node.blog.teaser.yml b/config/sync/core.entity_view_display.node.blog.teaser.yml
new file mode 100644
index 0000000..f32e384
--- /dev/null
+++ b/config/sync/core.entity_view_display.node.blog.teaser.yml
@@ -0,0 +1,109 @@
+uuid: 8800e7cf-9860-47dc-a8d9-1cb9e5a0dcb7
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.node.teaser
+ - field.field.node.blog.body
+ - field.field.node.blog.comment
+ - field.field.node.blog.field_authors
+ - field.field.node.blog.field_body_paragraph
+ - field.field.node.blog.field_image
+ - field.field.node.blog.field_meta_tags
+ - field.field.node.blog.field_summary
+ - field.field.node.blog.field_tags
+ - field.field.node.blog.field_topics
+ - node.type.blog
+ - responsive_image.styles.narrow
+ module:
+ - ds
+ - responsive_image
+ - text
+ - user
+third_party_settings:
+ ds:
+ layout:
+ id: ds_2col
+ library: ds/ds_2col
+ disable_css: false
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ left: div
+ right: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ left:
+ - field_image
+ right:
+ - node_post_date
+ - node_title
+ - field_authors
+ - field_summary
+ - field_topics
+ fields:
+ node_post_date:
+ plugin_id: node_post_date
+ weight: 1
+ label: hidden
+ formatter: ds_post_date_month_day_year
+ node_title:
+ plugin_id: node_title
+ weight: 2
+ label: hidden
+ formatter: default
+ settings:
+ link: true
+ wrapper: h2
+ class: ''
+_core:
+ default_config_hash: bIW-s9Bo_W7omXxAG4XHIq96IyNJEbhcATZv9TBQqNU
+id: node.blog.teaser
+targetEntityType: node
+bundle: blog
+mode: teaser
+content:
+ field_authors:
+ type: entity_reference_label
+ weight: 3
+ region: right
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ field_image:
+ type: responsive_image
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: narrow
+ image_link: content
+ third_party_settings: { }
+ region: left
+ field_summary:
+ type: text_default
+ weight: 4
+ label: visually_hidden
+ settings: { }
+ third_party_settings: { }
+ region: right
+ field_topics:
+ type: entity_reference_label
+ weight: 5
+ region: right
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+hidden:
+ body: true
+ comment: true
+ field_body_paragraph: true
+ field_meta_tags: true
+ field_tags: true
+ links: true
diff --git a/config/core.entity_view_display.node.campaign.card.yml b/config/sync/core.entity_view_display.node.campaign.card.yml
similarity index 89%
rename from config/core.entity_view_display.node.campaign.card.yml
rename to config/sync/core.entity_view_display.node.campaign.card.yml
index d17bd46..cf60fa1 100644
--- a/config/core.entity_view_display.node.campaign.card.yml
+++ b/config/sync/core.entity_view_display.node.campaign.card.yml
@@ -1,4 +1,4 @@
-uuid: 278fd052-b495-4c1f-adc7-a60141ce8bce
+uuid: 5fc3f367-b733-4842-9124-05832e6beba4
langcode: en
status: true
dependencies:
@@ -27,14 +27,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -56,20 +56,19 @@ third_party_settings:
children:
- node_title
- field_summary
- label: 'Card content'
parent_name: ''
- region: content
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
_core:
default_config_hash: 2zR5T3bcB1XVeDU_TuI9dS8JpOHxzQcYcF-IxQXcOcM
id: node.campaign.card
@@ -79,32 +78,25 @@ mode: card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_summary:
type: text_trimmed
+ weight: 3
+ region: ds_content
label: visually_hidden
settings:
trim_length: 180
third_party_settings: { }
- weight: 3
- region: ds_content
hidden:
body: true
field_body_paragraph: true
field_campaign_demands: true
field_campaign_updates: true
field_meta_tags: 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.node.campaign.default.yml b/config/sync/core.entity_view_display.node.campaign.default.yml
similarity index 80%
rename from config/core.entity_view_display.node.campaign.default.yml
rename to config/sync/core.entity_view_display.node.campaign.default.yml
index d796557..06eff01 100644
--- a/config/core.entity_view_display.node.campaign.default.yml
+++ b/config/sync/core.entity_view_display.node.campaign.default.yml
@@ -1,4 +1,4 @@
-uuid: bff062a9-c1a5-464e-9949-e245d2d76a6e
+uuid: a0bc7906-e899-492b-97bd-de44bb97653c
langcode: en
status: true
dependencies:
@@ -28,9 +28,4 @@ hidden:
field_image: 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.node.campaign.full.yml b/config/sync/core.entity_view_display.node.campaign.full.yml
similarity index 90%
rename from config/core.entity_view_display.node.campaign.full.yml
rename to config/sync/core.entity_view_display.node.campaign.full.yml
index 4ffc41e..9f1543b 100644
--- a/config/core.entity_view_display.node.campaign.full.yml
+++ b/config/sync/core.entity_view_display.node.campaign.full.yml
@@ -1,4 +1,4 @@
-uuid: 998dfc1e-89aa-499a-9385-8cf3d0820ac7
+uuid: 0964e134-0bc0-4da3-b12b-a539d9a835b3
langcode: en
status: true
dependencies:
@@ -26,14 +26,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -49,25 +49,26 @@ bundle: campaign
mode: full
content:
field_body_paragraph:
- type: entity_reference_revisions_entity_view
+ weight: 1
label: visually_hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 1
+ type: entity_reference_revisions_entity_view
region: ds_content
field_campaign_demands:
type: entity_reference_revisions_entity_view
+ weight: 2
label: above
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 2
region: ds_content
field_campaign_updates:
type: entity_reference_revisions_entity_view
+ weight: 3
label: above
settings:
view_mode: default
@@ -75,30 +76,22 @@ content:
third_party_settings:
ds:
ds_limit: ''
- weight: 3
region: ds_content
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: wide
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
links:
- settings: { }
- third_party_settings: { }
weight: 4
region: ds_content
+ settings: { }
+ third_party_settings: { }
hidden:
body: true
field_meta_tags: true
field_summary: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.campaign.search_index.yml b/config/sync/core.entity_view_display.node.campaign.search_index.yml
similarity index 89%
rename from config/core.entity_view_display.node.campaign.search_index.yml
rename to config/sync/core.entity_view_display.node.campaign.search_index.yml
index 5c79d17..e427ff8 100644
--- a/config/core.entity_view_display.node.campaign.search_index.yml
+++ b/config/sync/core.entity_view_display.node.campaign.search_index.yml
@@ -1,4 +1,4 @@
-uuid: e5cacb72-b00e-4974-8b9c-fc9257153d64
+uuid: 08133167-8a4d-49a8-a249-9e1055c454b5
langcode: en
status: true
dependencies:
@@ -25,14 +25,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -48,43 +48,36 @@ mode: search_index
content:
field_body_paragraph:
type: paragraph_summary
- label: hidden
- settings: { }
- third_party_settings: { }
weight: 1
region: ds_content
+ label: hidden
+ settings: { }
+ third_party_settings: { }
field_campaign_demands:
type: paragraph_summary
- label: hidden
- settings: { }
- third_party_settings: { }
weight: 2
region: ds_content
- field_campaign_updates:
- type: paragraph_summary
label: hidden
settings: { }
third_party_settings: { }
+ field_campaign_updates:
+ type: paragraph_summary
weight: 3
region: ds_content
+ label: hidden
+ settings: { }
+ third_party_settings: { }
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: hidden
settings:
responsive_image_style: ''
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- 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.node.campaign.simple_card.yml b/config/sync/core.entity_view_display.node.campaign.simple_card.yml
similarity index 90%
rename from config/core.entity_view_display.node.campaign.simple_card.yml
rename to config/sync/core.entity_view_display.node.campaign.simple_card.yml
index 323992b..a8185f0 100644
--- a/config/core.entity_view_display.node.campaign.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.campaign.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: 2f42fadf-9766-4503-a4ea-a98c38e728c9
+uuid: 9f598ea5-6e8f-46ac-aeb7-e88dc74c1bdb
langcode: en
status: true
dependencies:
@@ -26,14 +26,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -61,20 +61,20 @@ third_party_settings:
children:
- 'bundle_field:node'
- node_title
- label: 'Card content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
default_config_hash: JbAQRO1TewlD61cpDxe2kkCEbqep6XX5MYG_3ZciHP0
id: node.campaign.simple_card
@@ -84,15 +84,13 @@ mode: simple_card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
hidden:
body: true
field_body_paragraph: true
@@ -100,9 +98,4 @@ hidden:
field_campaign_updates: 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.node.campaign.teaser.yml b/config/sync/core.entity_view_display.node.campaign.teaser.yml
similarity index 89%
rename from config/core.entity_view_display.node.campaign.teaser.yml
rename to config/sync/core.entity_view_display.node.campaign.teaser.yml
index adebd7b..3cd1584 100644
--- a/config/core.entity_view_display.node.campaign.teaser.yml
+++ b/config/sync/core.entity_view_display.node.campaign.teaser.yml
@@ -1,4 +1,4 @@
-uuid: 4ecd85c5-2bae-4d94-9986-07b9afabc025
+uuid: 78c16bda-e7be-4013-a74f-7184b22153fe
langcode: en
status: true
dependencies:
@@ -24,14 +24,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- node_title
@@ -55,10 +55,10 @@ mode: teaser
content:
field_summary:
type: text_default
+ weight: 1
label: hidden
settings: { }
third_party_settings: { }
- weight: 1
region: ds_content
hidden:
body: true
@@ -67,9 +67,4 @@ hidden:
field_campaign_updates: true
field_image: true
field_meta_tags: 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.node.event.default.yml b/config/sync/core.entity_view_display.node.event.default.yml
similarity index 86%
rename from config/core.entity_view_display.node.event.default.yml
rename to config/sync/core.entity_view_display.node.event.default.yml
index 499c8ab..aa7e527 100644
--- a/config/core.entity_view_display.node.event.default.yml
+++ b/config/sync/core.entity_view_display.node.event.default.yml
@@ -1,4 +1,4 @@
-uuid: 416d2ae0-ad2b-428f-b195-45b4463c0b19
+uuid: a25e5e42-840e-4207-addc-82f583ec6b0b
langcode: en
status: true
dependencies:
@@ -24,14 +24,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions: { }
_core:
default_config_hash: pXaSXjtXHgTxcNHm07rucpzd_-LQkaf1Eb4LS8lSkgM
@@ -50,9 +50,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.event.full.yml b/config/sync/core.entity_view_display.node.event.full.yml
similarity index 92%
rename from config/core.entity_view_display.node.event.full.yml
rename to config/sync/core.entity_view_display.node.event.full.yml
index 6fab74d..0f67e66 100644
--- a/config/core.entity_view_display.node.event.full.yml
+++ b/config/sync/core.entity_view_display.node.event.full.yml
@@ -1,4 +1,4 @@
-uuid: 03314319-b261-4974-8990-09cbacc03878
+uuid: bd588a25-2cdd-434f-b294-3ee7e39bd595
langcode: en
status: true
dependencies:
@@ -29,8 +29,6 @@ third_party_settings:
disable_css: true
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
header: div
left: div
@@ -41,6 +39,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
header:
- field_image
@@ -61,69 +61,62 @@ mode: full
content:
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 3
label: visually_hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 3
region: middle
field_event_date:
type: daterange_default
+ weight: 0
+ region: left
label: above
settings:
timezone_override: ''
format_type: long
separator: '-'
third_party_settings: { }
- weight: 0
- region: left
field_event_type:
- type: entity_reference_label
+ weight: 4
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 4
+ type: entity_reference_label
region: middle
field_image:
- type: responsive_image
+ weight: 0
label: hidden
settings:
responsive_image_style: wide
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
+ type: responsive_image
region: header
field_tags:
type: entity_reference_label
- label: visually_hidden
- settings:
- link: true
- third_party_settings: { }
weight: 5
region: middle
- field_topics:
- type: entity_reference_label
label: visually_hidden
settings:
link: true
third_party_settings: { }
+ field_topics:
+ type: entity_reference_label
weight: 2
region: left
- links:
- settings: { }
+ label: visually_hidden
+ settings:
+ link: true
third_party_settings: { }
+ links:
weight: 6
region: middle
+ settings: { }
+ third_party_settings: { }
hidden:
body: true
field_meta_tags: true
field_summary: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
- langcode: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.event.micro.yml b/config/sync/core.entity_view_display.node.event.micro.yml
similarity index 90%
rename from config/core.entity_view_display.node.event.micro.yml
rename to config/sync/core.entity_view_display.node.event.micro.yml
index c68d808..355bae1 100644
--- a/config/core.entity_view_display.node.event.micro.yml
+++ b/config/sync/core.entity_view_display.node.event.micro.yml
@@ -1,4 +1,4 @@
-uuid: b4b2e373-bf43-4c6a-a930-dcc105c97645
+uuid: 1581a2ff-9b9b-40f0-94cb-e6be996a25e0
langcode: en
status: true
dependencies:
@@ -26,14 +26,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- node_title
@@ -57,14 +57,14 @@ mode: micro
content:
field_event_date:
type: daterange_default
- label: visually_hidden
- settings:
- timezone_override: ''
- format_type: medium
- separator: '-'
- third_party_settings: { }
weight: 1
region: ds_content
+ label: visually_hidden
+ settings:
+ separator: '-'
+ timezone_override: ''
+ format_type: medium
+ third_party_settings: { }
hidden:
body: true
field_body_paragraph: true
@@ -74,9 +74,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.event.search_index.yml b/config/sync/core.entity_view_display.node.event.search_index.yml
similarity index 91%
rename from config/core.entity_view_display.node.event.search_index.yml
rename to config/sync/core.entity_view_display.node.event.search_index.yml
index 6c506f4a..c57d368 100644
--- a/config/core.entity_view_display.node.event.search_index.yml
+++ b/config/sync/core.entity_view_display.node.event.search_index.yml
@@ -1,4 +1,4 @@
-uuid: 4bd3a59a-5e05-4523-98b0-cd15f226bae5
+uuid: 789e6c40-5eef-47c3-9be5-8426475fabaa
langcode: en
status: true
dependencies:
@@ -28,14 +28,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -53,65 +53,58 @@ mode: search_index
content:
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 2
+ region: ds_content
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 2
- region: ds_content
field_event_date:
type: daterange_custom
- label: hidden
- settings:
- timezone_override: ''
- date_format: 'Y-m-d\TH:i:s'
- separator: '-'
- third_party_settings: { }
weight: 1
region: ds_content
+ label: hidden
+ settings:
+ separator: '-'
+ date_format: 'Y-m-d\TH:i:s'
+ timezone_override: ''
+ third_party_settings: { }
field_event_type:
type: entity_reference_label
+ weight: 3
+ region: ds_content
label: hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: ds_content
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: hidden
settings:
responsive_image_style: ''
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_tags:
type: entity_reference_label
- label: hidden
- settings:
- link: true
- third_party_settings: { }
weight: 5
region: ds_content
- field_topics:
- type: entity_reference_label
label: hidden
settings:
link: true
third_party_settings: { }
+ field_topics:
+ type: entity_reference_label
weight: 4
region: ds_content
+ label: hidden
+ settings:
+ link: true
+ third_party_settings: { }
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.node.event.simple_card.yml b/config/sync/core.entity_view_display.node.event.simple_card.yml
similarity index 91%
rename from config/core.entity_view_display.node.event.simple_card.yml
rename to config/sync/core.entity_view_display.node.event.simple_card.yml
index f27d02f..4506fdb 100644
--- a/config/core.entity_view_display.node.event.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.event.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: 3013a7a0-6bb3-4666-8f1a-06bcfc0b993d
+uuid: c2bf2850-eacf-4b12-a6b9-5d14d88f3c5e
langcode: en
status: true
dependencies:
@@ -28,14 +28,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -63,20 +63,20 @@ third_party_settings:
children:
- 'bundle_field:node'
- node_title
- label: 'Card content'
parent_name: ''
- region: hidden
weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
default_config_hash: ldtXmbJcPLJtE_LBq65vuL2UPkCyQK6z1MTmFrESGaE
id: node.event.simple_card
@@ -86,15 +86,13 @@ mode: simple_card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
hidden:
body: true
field_body_paragraph: true
@@ -104,9 +102,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.event.teaser.yml b/config/sync/core.entity_view_display.node.event.teaser.yml
similarity index 91%
rename from config/core.entity_view_display.node.event.teaser.yml
rename to config/sync/core.entity_view_display.node.event.teaser.yml
index d297e92..1f9130a 100644
--- a/config/core.entity_view_display.node.event.teaser.yml
+++ b/config/sync/core.entity_view_display.node.event.teaser.yml
@@ -1,4 +1,4 @@
-uuid: c8abc132-69a9-425f-83e5-4d4e37534734
+uuid: 1eb45624-16cc-4b65-9f33-9d8ab1153941
langcode: en
status: true
dependencies:
@@ -28,8 +28,6 @@ third_party_settings:
disable_css: true
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
left: div
right: div
@@ -37,6 +35,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
left:
- field_image
@@ -65,56 +65,49 @@ mode: teaser
content:
field_event_date:
type: daterange_default
- label: visually_hidden
- settings:
- timezone_override: ''
- format_type: medium
- separator: '-'
- third_party_settings: { }
weight: 2
region: right
+ label: visually_hidden
+ settings:
+ separator: '-'
+ timezone_override: ''
+ format_type: medium
+ third_party_settings: { }
field_event_type:
type: entity_reference_label
+ weight: 4
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 4
- region: right
field_image:
type: responsive_image
+ weight: 0
label: hidden
settings:
- responsive_image_style: ''
image_link: content
- image_loading:
- attribute: eager
+ responsive_image_style: ''
third_party_settings: { }
- weight: 0
region: left
field_summary:
type: text_default
+ weight: 3
label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 3
region: right
field_topics:
type: entity_reference_label
+ weight: 5
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 5
- region: right
hidden:
body: true
field_body_paragraph: true
field_meta_tags: true
field_tags: 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.node.landing_page.default.yml b/config/sync/core.entity_view_display.node.landing_page.default.yml
similarity index 63%
rename from config/core.entity_view_display.node.landing_page.default.yml
rename to config/sync/core.entity_view_display.node.landing_page.default.yml
index ef1fae9..e33b73f 100644
--- a/config/core.entity_view_display.node.landing_page.default.yml
+++ b/config/sync/core.entity_view_display.node.landing_page.default.yml
@@ -1,10 +1,9 @@
-uuid: 570af5b5-1604-4eee-8103-247b9a7088f3
+uuid: b5717639-ca59-4480-b6ee-8d0ca2fbacf9
langcode: en
status: true
dependencies:
config:
- field.field.node.landing_page.field_body_paragraph
- - field.field.node.landing_page.field_image
- field.field.node.landing_page.field_meta_tags
- node.type.landing_page
module:
@@ -18,11 +17,5 @@ mode: default
content: { }
hidden:
field_body_paragraph: true
- field_image: true
field_meta_tags: 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.node.landing_page.full.yml b/config/sync/core.entity_view_display.node.landing_page.full.yml
similarity index 54%
rename from config/core.entity_view_display.node.landing_page.full.yml
rename to config/sync/core.entity_view_display.node.landing_page.full.yml
index 61071f7..2dc1893 100644
--- a/config/core.entity_view_display.node.landing_page.full.yml
+++ b/config/sync/core.entity_view_display.node.landing_page.full.yml
@@ -1,17 +1,35 @@
-uuid: cbe6d605-e8ee-4266-8f72-b7d6513fd26c
+uuid: 06c24906-25eb-4653-b40f-28a808396e7f
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.full
- field.field.node.landing_page.field_body_paragraph
- - field.field.node.landing_page.field_image
- field.field.node.landing_page.field_meta_tags
- node.type.landing_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:
+ wrappers:
+ ds_content: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ ds_content:
+ - field_body_paragraph
_core:
default_config_hash: tf5HX48OUBJfLFIGGe79En5nUTNVRQiHp0F3KOQB8ts
id: node.landing_page.full
@@ -20,22 +38,14 @@ bundle: landing_page
mode: full
content:
field_body_paragraph:
- type: entity_reference_revisions_entity_view
- label: hidden
+ weight: 0
+ label: visually_hidden
settings:
view_mode: default
link: ''
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 0
- region: content
+ third_party_settings: { }
+ type: entity_reference_revisions_entity_view
+ region: ds_content
hidden:
- field_image: true
field_meta_tags: 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.node.landing_page.teaser.yml b/config/sync/core.entity_view_display.node.landing_page.teaser.yml
similarity index 65%
rename from config/core.entity_view_display.node.landing_page.teaser.yml
rename to config/sync/core.entity_view_display.node.landing_page.teaser.yml
index fd9a968..d99e9c4 100644
--- a/config/core.entity_view_display.node.landing_page.teaser.yml
+++ b/config/sync/core.entity_view_display.node.landing_page.teaser.yml
@@ -1,11 +1,10 @@
-uuid: 94fb9b25-a679-44f3-a9a1-9ba854a6994a
+uuid: 4522b232-5a91-497c-baa3-07f1e64bf169
langcode: en
status: false
dependencies:
config:
- core.entity_view_mode.node.teaser
- field.field.node.landing_page.field_body_paragraph
- - field.field.node.landing_page.field_image
- field.field.node.landing_page.field_meta_tags
- node.type.landing_page
module:
@@ -19,11 +18,5 @@ mode: teaser
content: { }
hidden:
field_body_paragraph: true
- field_image: true
field_meta_tags: 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.node.page.default.yml b/config/sync/core.entity_view_display.node.page.default.yml
similarity index 68%
rename from config/core.entity_view_display.node.page.default.yml
rename to config/sync/core.entity_view_display.node.page.default.yml
index 8ba1384..9ad788f 100644
--- a/config/core.entity_view_display.node.page.default.yml
+++ b/config/sync/core.entity_view_display.node.page.default.yml
@@ -1,16 +1,20 @@
-uuid: 84f9c158-7d88-407f-a2bb-7a5da3b1b7d9
+uuid: 2c967fbd-f533-4a5d-af96-14abbdf7af96
langcode: en
status: true
dependencies:
config:
- field.field.node.page.body
- field.field.node.page.field_body_paragraph
+ - field.field.node.page.field_file
+ - field.field.node.page.field_image
- field.field.node.page.field_meta_tags
- field.field.node.page.field_storyline
- field.field.node.page.field_summary
- node.type.page
module:
- ds
+ - file
+ - image
- user
third_party_settings:
ds:
@@ -20,18 +24,15 @@ third_party_settings:
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:
- - langcode
+ classes:
+ layout_class: { }
+ regions: { }
_core:
default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg
id: node.page.default
@@ -39,23 +40,27 @@ targetEntityType: node
bundle: page
mode: default
content:
- langcode:
- type: language
- label: inline
+ field_file:
+ weight: 2
+ label: above
settings:
- link_to_entity: false
- native_language: false
+ use_description_as_link_text: true
third_party_settings: { }
- weight: 0
- region: ds_content
+ type: file_default
+ region: content
+ field_image:
+ weight: 1
+ label: above
+ settings:
+ image_style: ''
+ image_link: ''
+ third_party_settings: { }
+ type: image
+ region: content
hidden:
body: true
field_body_paragraph: true
field_meta_tags: true
field_storyline: true
field_summary: true
- indieweb_bridgypublishmastodon: true
- indieweb_bridgypublishtwitter: true
- indieweb_syndication: true
links: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.node.page.embedded.yml b/config/sync/core.entity_view_display.node.page.full.yml
similarity index 66%
rename from config/core.entity_view_display.node.page.embedded.yml
rename to config/sync/core.entity_view_display.node.page.full.yml
index ac532e9..52d41a4 100644
--- a/config/core.entity_view_display.node.page.embedded.yml
+++ b/config/sync/core.entity_view_display.node.page.full.yml
@@ -1,9 +1,9 @@
-uuid: d2637080-7971-4471-abf0-bc6939e755d9
+uuid: f31f8ab0-aa06-4eb4-93db-bc9300ff9668
langcode: en
status: true
dependencies:
config:
- - core.entity_view_mode.node.embedded
+ - core.entity_view_mode.node.full
- field.field.node.page.body
- field.field.node.page.field_body_paragraph
- field.field.node.page.field_meta_tags
@@ -18,67 +18,55 @@ third_party_settings:
ds:
layout:
id: ds_1col
- library: null
+ path: modules/contrib/ds
+ library: ''
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
- label: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- - node_title
- field_body_paragraph
+ - links
- 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
+ default_config_hash: ejxo55vENzO8ZHuGrkj_Np-soJ-olS86ZhSc2taHa2I
+id: node.page.full
targetEntityType: node
bundle: page
-mode: embedded
+mode: full
content:
field_body_paragraph:
- type: entity_reference_revisions_entity_view
+ weight: 1
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 1
+ type: entity_reference_revisions_entity_view
region: ds_content
field_storyline:
type: entity_reference_revisions_entity_view
+ weight: 1
+ region: ds_content
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
+ links:
weight: 2
+ settings: { }
+ third_party_settings: { }
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/sync/core.entity_view_display.node.page.teaser.yml b/config/sync/core.entity_view_display.node.page.teaser.yml
new file mode 100644
index 0000000..c7978c6
--- /dev/null
+++ b/config/sync/core.entity_view_display.node.page.teaser.yml
@@ -0,0 +1,73 @@
+uuid: 990510a8-b4a6-4c85-86b8-9ec5a5825039
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.node.teaser
+ - field.field.node.page.body
+ - field.field.node.page.field_body_paragraph
+ - field.field.node.page.field_meta_tags
+ - field.field.node.page.field_summary
+ - node.type.page
+ module:
+ - ds
+ - text
+ - user
+third_party_settings:
+ ds:
+ layout:
+ id: ds_1col
+ path: modules/contrib/ds
+ library: ''
+ disable_css: false
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ ds_content: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ ds_content:
+ - node_title
+ - field_summary
+ - links
+ fields:
+ node_title:
+ plugin_id: node_title
+ weight: 0
+ label: hidden
+ formatter: default
+ settings:
+ link: true
+ wrapper: h2
+ class: ''
+_core:
+ default_config_hash: VVwoPunt_ircb4XkmOu0gIlvK_n6A6MD9hm5fh-LM3w
+id: node.page.teaser
+targetEntityType: node
+bundle: page
+mode: teaser
+content:
+ field_summary:
+ type: text_default
+ weight: 1
+ label: hidden
+ settings: { }
+ third_party_settings: { }
+ region: ds_content
+ links:
+ weight: 2
+ settings: { }
+ third_party_settings: { }
+ region: ds_content
+hidden:
+ body: true
+ field_body_paragraph: true
+ field_file: true
+ field_image: true
+ field_meta_tags: true
+ field_storyline: true
diff --git a/config/core.entity_view_display.node.people.default.yml b/config/sync/core.entity_view_display.node.people.default.yml
similarity index 70%
rename from config/core.entity_view_display.node.people.default.yml
rename to config/sync/core.entity_view_display.node.people.default.yml
index cae9433..2e096df 100644
--- a/config/core.entity_view_display.node.people.default.yml
+++ b/config/sync/core.entity_view_display.node.people.default.yml
@@ -1,15 +1,13 @@
-uuid: c6345183-53d0-4614-8c12-b640f571ff75
+uuid: 6135703a-2134-45dd-aee4-229343ca1e31
langcode: en
status: true
dependencies:
config:
+ - field.field.node.people.body
- field.field.node.people.field_body_paragraph
- field.field.node.people.field_image
- field.field.node.people.field_meta_tags
- - field.field.node.people.field_people_email
- field.field.node.people.field_people_position
- - field.field.node.people.field_people_public_gpg_key
- - field.field.node.people.field_people_social_media
- field.field.node.people.field_people_type
- field.field.node.people.field_summary
- node.type.people
@@ -24,14 +22,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions: { }
_core:
default_config_hash: PcM71wVDAKyWoQ4OFb7991GgWRB9kh4ZBoyqhQ5aHeU
@@ -41,18 +39,11 @@ bundle: people
mode: default
content: { }
hidden:
+ body: true
field_body_paragraph: true
field_image: true
field_meta_tags: true
- field_people_email: true
field_people_position: true
- field_people_public_gpg_key: true
- field_people_social_media: true
field_people_type: 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/sync/core.entity_view_display.node.people.full.yml b/config/sync/core.entity_view_display.node.people.full.yml
new file mode 100644
index 0000000..3261024
--- /dev/null
+++ b/config/sync/core.entity_view_display.node.people.full.yml
@@ -0,0 +1,95 @@
+uuid: 42453035-1952-46b5-b2b9-70776bc6ebe0
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.node.full
+ - field.field.node.people.body
+ - field.field.node.people.field_body_paragraph
+ - field.field.node.people.field_image
+ - field.field.node.people.field_meta_tags
+ - field.field.node.people.field_people_position
+ - field.field.node.people.field_people_type
+ - field.field.node.people.field_summary
+ - node.type.people
+ - responsive_image.styles.narrow
+ module:
+ - ds
+ - entity_reference_revisions
+ - responsive_image
+ - user
+third_party_settings:
+ ds:
+ layout:
+ id: ds_2col
+ library: ds/ds_2col
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ left: div
+ right: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ left:
+ - field_image
+ right:
+ - field_people_position
+ - field_body_paragraph
+ - field_people_type
+ - links
+_core:
+ default_config_hash: mOqGMXhG-1WYGi-yooQwPMMtw5QzRZL_TSWW_NQhow0
+id: node.people.full
+targetEntityType: node
+bundle: people
+mode: full
+content:
+ field_body_paragraph:
+ weight: 2
+ label: hidden
+ settings:
+ view_mode: default
+ link: ''
+ third_party_settings: { }
+ type: entity_reference_revisions_entity_view
+ region: right
+ field_image:
+ weight: 0
+ label: hidden
+ settings:
+ responsive_image_style: narrow
+ image_link: ''
+ third_party_settings: { }
+ type: responsive_image
+ region: left
+ field_people_position:
+ type: string
+ weight: 1
+ label: hidden
+ settings:
+ link_to_entity: false
+ third_party_settings: { }
+ region: right
+ field_people_type:
+ weight: 3
+ label: hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ type: entity_reference_label
+ region: right
+ links:
+ weight: 4
+ region: right
+ settings: { }
+ third_party_settings: { }
+hidden:
+ body: true
+ field_meta_tags: true
+ field_summary: true
diff --git a/config/core.entity_view_display.node.people.search_index.yml b/config/sync/core.entity_view_display.node.people.search_index.yml
similarity index 79%
rename from config/core.entity_view_display.node.people.search_index.yml
rename to config/sync/core.entity_view_display.node.people.search_index.yml
index bb2ab47..5ffd979 100644
--- a/config/core.entity_view_display.node.people.search_index.yml
+++ b/config/sync/core.entity_view_display.node.people.search_index.yml
@@ -1,16 +1,14 @@
-uuid: eaf5ec09-b2d1-40ec-94c8-8153112aed08
+uuid: 1cb7f21e-0b79-4ca8-8cad-f7af8ad45702
langcode: en
status: true
dependencies:
config:
- core.entity_view_mode.node.search_index
+ - field.field.node.people.body
- field.field.node.people.field_body_paragraph
- field.field.node.people.field_image
- field.field.node.people.field_meta_tags
- - field.field.node.people.field_people_email
- field.field.node.people.field_people_position
- - field.field.node.people.field_people_public_gpg_key
- - field.field.node.people.field_people_social_media
- field.field.node.people.field_people_type
- field.field.node.people.field_summary
- node.type.people
@@ -27,14 +25,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -50,49 +48,40 @@ mode: search_index
content:
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 2
+ region: ds_content
label: hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 2
- region: ds_content
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: hidden
settings:
responsive_image_style: ''
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_people_position:
type: string
+ weight: 1
+ region: ds_content
label: hidden
settings:
link_to_entity: false
third_party_settings: { }
- weight: 1
- region: ds_content
field_people_type:
type: entity_reference_label
+ weight: 3
+ region: ds_content
label: hidden
settings:
link: true
third_party_settings: { }
- weight: 3
- region: ds_content
hidden:
+ body: true
field_meta_tags: true
- field_people_email: true
- field_people_public_gpg_key: true
- field_people_social_media: 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/sync/core.entity_view_display.node.people.small_card.yml b/config/sync/core.entity_view_display.node.people.small_card.yml
new file mode 100644
index 0000000..9dc6b14
--- /dev/null
+++ b/config/sync/core.entity_view_display.node.people.small_card.yml
@@ -0,0 +1,101 @@
+uuid: 735ffe44-f682-4f58-aaf6-81609397b49f
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.node.small_card
+ - field.field.node.people.body
+ - field.field.node.people.field_body_paragraph
+ - field.field.node.people.field_image
+ - field.field.node.people.field_meta_tags
+ - field.field.node.people.field_people_position
+ - field.field.node.people.field_people_type
+ - field.field.node.people.field_summary
+ - node.type.people
+ - responsive_image.styles.narrow
+ module:
+ - ds
+ - field_group
+ - responsive_image
+ - user
+third_party_settings:
+ ds:
+ layout:
+ id: ds_1col
+ library: null
+ disable_css: false
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ ds_content: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ ds_content:
+ - field_image
+ - group_card_content
+ - node_title
+ - field_people_position
+ fields:
+ node_title:
+ plugin_id: node_title
+ weight: 1
+ label: hidden
+ formatter: default
+ settings:
+ link: true
+ wrapper: h2
+ class: ''
+ field_group:
+ group_card_content:
+ children:
+ - node_title
+ - field_people_position
+ parent_name: ''
+ weight: 1
+ format_type: html_element
+ format_settings:
+ id: ''
+ classes: ''
+ element: div
+ show_label: false
+ label_element: h3
+ attributes: ''
+ effect: none
+ speed: fast
+ label: 'Card content'
+_core:
+ default_config_hash: z1inMX04WqMLNtcIhFzhHwZW_utfrkMPfyPscbBo4WQ
+id: node.people.small_card
+targetEntityType: node
+bundle: people
+mode: small_card
+content:
+ field_image:
+ type: responsive_image
+ weight: 0
+ region: ds_content
+ label: visually_hidden
+ settings:
+ responsive_image_style: narrow
+ image_link: content
+ third_party_settings: { }
+ field_people_position:
+ type: string
+ weight: 2
+ region: ds_content
+ label: visually_hidden
+ settings:
+ link_to_entity: false
+ third_party_settings: { }
+hidden:
+ body: true
+ field_body_paragraph: true
+ field_meta_tags: true
+ field_people_type: true
+ field_summary: true
+ links: true
diff --git a/config/sync/core.entity_view_display.node.people.teaser.yml b/config/sync/core.entity_view_display.node.people.teaser.yml
new file mode 100644
index 0000000..3bc1a07
--- /dev/null
+++ b/config/sync/core.entity_view_display.node.people.teaser.yml
@@ -0,0 +1,91 @@
+uuid: 097681e5-a892-4062-a88c-6607c93365f3
+langcode: en
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.node.teaser
+ - field.field.node.people.body
+ - field.field.node.people.field_body_paragraph
+ - field.field.node.people.field_image
+ - field.field.node.people.field_meta_tags
+ - field.field.node.people.field_people_position
+ - field.field.node.people.field_people_type
+ - field.field.node.people.field_summary
+ - node.type.people
+ - responsive_image.styles.narrow
+ module:
+ - ds
+ - responsive_image
+ - text
+ - user
+third_party_settings:
+ ds:
+ layout:
+ id: ds_2col
+ library: ds/ds_2col
+ disable_css: true
+ entity_classes: all_classes
+ settings:
+ wrappers:
+ left: div
+ right: div
+ outer_wrapper: div
+ attributes: ''
+ link_attribute: ''
+ link_custom: ''
+ classes:
+ layout_class: { }
+ regions:
+ left:
+ - field_image
+ right:
+ - node_title
+ - field_people_position
+ - field_summary
+ fields:
+ node_title:
+ plugin_id: node_title
+ weight: 1
+ label: hidden
+ formatter: default
+ settings:
+ link: true
+ wrapper: h2
+ class: ''
+_core:
+ default_config_hash: gCkJOlEwJlVhfOrZ9tg-TRlQAaIiOeJVH-yWVceuQgc
+id: node.people.teaser
+targetEntityType: node
+bundle: people
+mode: teaser
+content:
+ field_image:
+ type: responsive_image
+ weight: 0
+ label: visually_hidden
+ settings:
+ responsive_image_style: narrow
+ image_link: content
+ third_party_settings: { }
+ region: left
+ field_people_position:
+ type: string
+ weight: 2
+ label: hidden
+ settings:
+ link_to_entity: false
+ third_party_settings: { }
+ region: right
+ field_summary:
+ type: text_default
+ weight: 3
+ label: hidden
+ settings: { }
+ third_party_settings: { }
+ region: right
+hidden:
+ body: true
+ field_body_paragraph: true
+ field_meta_tags: true
+ field_people_type: true
+ links: true
diff --git a/config/core.entity_view_display.node.resource.card.yml b/config/sync/core.entity_view_display.node.resource.card.yml
similarity index 81%
rename from config/core.entity_view_display.node.resource.card.yml
rename to config/sync/core.entity_view_display.node.resource.card.yml
index 286b3ab..0ef5bc6 100644
--- a/config/core.entity_view_display.node.resource.card.yml
+++ b/config/sync/core.entity_view_display.node.resource.card.yml
@@ -1,4 +1,4 @@
-uuid: 6de1abb8-1282-4859-9216-e04c05bf5199
+uuid: 80feef4d-fc0d-45fa-9a22-e8ab0b9e7762
langcode: en
status: true
dependencies:
@@ -11,11 +11,9 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
- - image.style.max_325x325
- node.type.resource
- responsive_image.styles.narrow
module:
@@ -26,7 +24,6 @@ dependencies:
- responsive_image
- text
- user
- - video_embed_field
third_party_settings:
ds:
layout:
@@ -35,20 +32,19 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
- - field_resource_video
- - node_title
- group_card_content
+ - node_title
- field_summary
- field_topics
- field_resource_link
@@ -72,22 +68,22 @@ third_party_settings:
- field_topics
- field_resource_link
- field_resource_file
- label: 'Card content'
parent_name: ''
- region: hidden
- weight: 2
+ weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
- default_config_hash: BWkEiubMnutaqiKxIBEgUfV4G63iPECWRppEkfAyeiw
+ default_config_hash: QciQWHhD8M7tcxRMSkX5Aq3vVfRwdFmTR9Pu5tby6ao
id: node.resource.card
targetEntityType: node
bundle: resource
@@ -95,25 +91,25 @@ mode: card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_resource_file:
type: file_default
+ weight: 6
+ region: ds_content
label: visually_hidden
settings:
use_description_as_link_text: true
third_party_settings: { }
- weight: 6
- region: ds_content
field_resource_link:
type: link
+ weight: 5
+ region: ds_content
label: visually_hidden
settings:
trim_length: 80
@@ -122,43 +118,25 @@ content:
rel: ''
target: ''
third_party_settings: { }
- weight: 5
- region: ds_content
- field_resource_video:
- type: video_embed_field_thumbnail
- label: visually_hidden
- settings:
- image_style: max_325x325
- link_image_to: content
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 1
- region: ds_content
field_summary:
type: text_default
+ weight: 3
+ region: ds_content
label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 3
- region: ds_content
field_topics:
type: entity_reference_label
+ weight: 4
+ region: ds_content
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 4
- region: ds_content
hidden:
body: true
field_body_paragraph: true
field_meta_tags: true
field_resource_type: true
field_tags: 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.node.resource.default.yml b/config/sync/core.entity_view_display.node.resource.default.yml
similarity index 79%
rename from config/core.entity_view_display.node.resource.default.yml
rename to config/sync/core.entity_view_display.node.resource.default.yml
index d93782a..b3a834c 100644
--- a/config/core.entity_view_display.node.resource.default.yml
+++ b/config/sync/core.entity_view_display.node.resource.default.yml
@@ -1,4 +1,4 @@
-uuid: 9e703b30-6a5b-40bd-bf70-518ce91cdec9
+uuid: 3a531308-fcd8-4572-bafe-139ccb767492
langcode: en
status: true
dependencies:
@@ -10,7 +10,6 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -26,17 +25,17 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions: { }
_core:
- default_config_hash: H9QyLUku-PR3bQ9StDDUqXEJ-2WpgOWxW9PMxoeXLYY
+ default_config_hash: TmajfQcZt7kWIavXe78ud2_Z09ma24Yt99XleMv3TLU
id: node.resource.default
targetEntityType: node
bundle: resource
@@ -50,13 +49,7 @@ hidden:
field_resource_file: true
field_resource_link: true
field_resource_type: true
- field_resource_video: true
field_summary: true
field_tags: true
field_topics: 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.node.resource.full.yml b/config/sync/core.entity_view_display.node.resource.full.yml
similarity index 76%
rename from config/core.entity_view_display.node.resource.full.yml
rename to config/sync/core.entity_view_display.node.resource.full.yml
index b8bbca8..3c4abb5 100644
--- a/config/core.entity_view_display.node.resource.full.yml
+++ b/config/sync/core.entity_view_display.node.resource.full.yml
@@ -1,4 +1,4 @@
-uuid: 224330de-d158-4744-92fe-7a483138a125
+uuid: 6625e195-0e16-4be2-8d7a-23b757f330e0
langcode: en
status: true
dependencies:
@@ -11,7 +11,6 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -24,17 +23,14 @@ dependencies:
- link
- responsive_image
- user
- - video_embed_field
third_party_settings:
ds:
layout:
- id: ds_2col_fluid
- library: ds/ds_2col_fluid
+ id: ds_2col
+ library: ds/ds_2col
disable_css: true
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
left: div
right: div
@@ -42,19 +38,20 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
left:
- field_image
- - field_resource_video
right:
- field_body_paragraph
+ - field_resource_link
+ - field_resource_file
- field_resource_type
- field_topics
- field_tags
- - field_resource_file
- - field_resource_link
_core:
- default_config_hash: lXYgohS4v-heVTyrI1fMRSwCqeETFqQ__0qBw7-JhyQ
+ default_config_hash: 1hQ7NnKMLMmRLsnrxFjP8n2HrsJTFM9dIe-oSdMU1AI
id: node.resource.full
targetEntityType: node
bundle: resource
@@ -62,90 +59,68 @@ mode: full
content:
field_body_paragraph:
type: entity_reference_revisions_entity_view
+ weight: 1
+ region: right
label: visually_hidden
settings:
view_mode: default
link: ''
third_party_settings: { }
- weight: 2
- region: right
field_image:
type: responsive_image
+ weight: 0
+ region: left
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: left
field_resource_file:
type: file_default
+ weight: 3
+ region: right
label: visually_hidden
settings:
use_description_as_link_text: true
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 6
- region: right
+ third_party_settings: { }
field_resource_link:
type: link
+ weight: 2
+ region: right
label: visually_hidden
settings:
trim_length: 80
url_only: false
url_plain: false
- rel: '0'
- target: '0'
+ rel: ''
+ target: ''
third_party_settings: { }
- weight: 7
- region: right
field_resource_type:
type: entity_reference_label
- label: visually_hidden
- settings:
- link: true
- third_party_settings: { }
- weight: 3
- region: right
- field_resource_video:
- type: video_embed_field_video
- label: visually_hidden
- settings:
- autoplay: false
- responsive: true
- width: 854
- height: 480
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 1
- region: left
- field_tags:
- type: entity_reference_label
- label: visually_hidden
- settings:
- link: true
- third_party_settings: { }
- weight: 5
- region: right
- field_topics:
- type: entity_reference_label
- label: visually_hidden
- settings:
- link: true
- third_party_settings: { }
weight: 4
region: right
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ field_tags:
+ type: entity_reference_label
+ weight: 6
+ region: right
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
+ field_topics:
+ type: entity_reference_label
+ weight: 5
+ region: right
+ label: visually_hidden
+ settings:
+ link: true
+ third_party_settings: { }
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.node.resource.search_index.yml b/config/sync/core.entity_view_display.node.resource.search_index.yml
similarity index 89%
rename from config/core.entity_view_display.node.resource.search_index.yml
rename to config/sync/core.entity_view_display.node.resource.search_index.yml
index cb7e7c3..2a90a23 100644
--- a/config/core.entity_view_display.node.resource.search_index.yml
+++ b/config/sync/core.entity_view_display.node.resource.search_index.yml
@@ -1,4 +1,4 @@
-uuid: d4f1f9b7-9b3f-40d5-9c35-fa8652270533
+uuid: 13b57c00-97ba-4363-b146-c3d9b61a36e7
langcode: en
status: true
dependencies:
@@ -11,7 +11,6 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -31,14 +30,14 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
@@ -57,74 +56,66 @@ mode: search_index
content:
field_body_paragraph:
type: paragraph_summary
+ weight: 1
+ region: ds_content
label: hidden
settings: { }
third_party_settings: { }
- weight: 1
- region: ds_content
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: hidden
settings:
responsive_image_style: ''
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
field_resource_file:
type: file_default
+ weight: 3
+ region: ds_content
label: hidden
settings:
use_description_as_link_text: true
third_party_settings: { }
- weight: 3
- region: ds_content
field_resource_link:
type: link_separate
+ weight: 2
+ region: ds_content
label: hidden
settings:
trim_length: 80
- url_only: false
- url_plain: false
rel: ''
target: ''
+ url_only: false
+ url_plain: false
third_party_settings: { }
- weight: 2
- region: ds_content
field_resource_type:
type: entity_reference_label
- label: hidden
- settings:
- link: true
- third_party_settings: { }
weight: 4
region: ds_content
+ label: hidden
+ settings:
+ link: true
+ third_party_settings: { }
field_tags:
type: entity_reference_label
- label: hidden
- settings:
- link: true
- third_party_settings: { }
weight: 6
region: ds_content
- field_topics:
- type: entity_reference_label
label: hidden
settings:
link: true
third_party_settings: { }
+ field_topics:
+ type: entity_reference_label
weight: 5
region: ds_content
+ label: hidden
+ settings:
+ link: true
+ third_party_settings: { }
hidden:
body: true
field_meta_tags: true
- field_resource_video: 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.node.resource.simple_card.yml b/config/sync/core.entity_view_display.node.resource.simple_card.yml
similarity index 77%
rename from config/core.entity_view_display.node.resource.simple_card.yml
rename to config/sync/core.entity_view_display.node.resource.simple_card.yml
index 67adbf8..df7ae16 100644
--- a/config/core.entity_view_display.node.resource.simple_card.yml
+++ b/config/sync/core.entity_view_display.node.resource.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: 8fe37864-7b13-4369-b868-ffe2259cdbcd
+uuid: 0d0eada1-c2b1-4507-af54-fede2e03b4dc
langcode: en
status: true
dependencies:
@@ -11,11 +11,9 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
- - image.style.max_325x325
- node.type.resource
- responsive_image.styles.narrow
module:
@@ -23,7 +21,6 @@ dependencies:
- field_group
- responsive_image
- user
- - video_embed_field
third_party_settings:
ds:
layout:
@@ -32,21 +29,20 @@ third_party_settings:
disable_css: false
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
ds_content: div
outer_wrapper: div
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
ds_content:
- field_image
- - field_resource_video
+ - group_card_content
- 'bundle_field:node'
- node_title
- - group_card_content
fields:
'bundle_field:node':
plugin_id: 'bundle_field:node'
@@ -68,22 +64,22 @@ third_party_settings:
children:
- 'bundle_field:node'
- node_title
- label: 'Card content'
parent_name: ''
- region: hidden
- weight: 2
+ weight: 1
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'Card content'
+ region: hidden
_core:
- default_config_hash: aJse_9xcX-XdPRr8lpbqlxMmSP8lMBOaKA94eOJ_EBY
+ default_config_hash: CQfHth5bcdHJJkfov5Tz83AletF_Sxqg97NbMOI1M_c
id: node.resource.simple_card
targetEntityType: node
bundle: resource
@@ -91,26 +87,13 @@ mode: simple_card
content:
field_image:
type: responsive_image
+ weight: 0
+ region: ds_content
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: ds_content
- field_resource_video:
- type: video_embed_field_thumbnail
- label: visually_hidden
- settings:
- image_style: max_325x325
- link_image_to: content
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 1
- region: ds_content
hidden:
body: true
field_body_paragraph: true
@@ -121,9 +104,4 @@ hidden:
field_summary: true
field_tags: true
field_topics: 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.node.resource.teaser.yml b/config/sync/core.entity_view_display.node.resource.teaser.yml
similarity index 79%
rename from config/core.entity_view_display.node.resource.teaser.yml
rename to config/sync/core.entity_view_display.node.resource.teaser.yml
index 560c126..de55532 100644
--- a/config/core.entity_view_display.node.resource.teaser.yml
+++ b/config/sync/core.entity_view_display.node.resource.teaser.yml
@@ -1,4 +1,4 @@
-uuid: f43c4f23-3434-4782-b20d-5ade35e63f2f
+uuid: 9e7dc15e-95bd-4984-b93a-bfb7bfa25617
langcode: en
status: true
dependencies:
@@ -11,7 +11,6 @@ dependencies:
- field.field.node.resource.field_resource_file
- field.field.node.resource.field_resource_link
- field.field.node.resource.field_resource_type
- - field.field.node.resource.field_resource_video
- field.field.node.resource.field_summary
- field.field.node.resource.field_tags
- field.field.node.resource.field_topics
@@ -24,7 +23,6 @@ dependencies:
- responsive_image
- text
- user
- - video_embed_field
third_party_settings:
ds:
layout:
@@ -33,8 +31,6 @@ third_party_settings:
disable_css: true
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
left: div
right: div
@@ -42,10 +38,11 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
left:
- field_image
- - field_resource_video
right:
- node_title
- field_summary
@@ -56,7 +53,7 @@ third_party_settings:
fields:
node_title:
plugin_id: node_title
- weight: 2
+ weight: 1
label: hidden
formatter: default
settings:
@@ -65,7 +62,7 @@ third_party_settings:
class: ''
exclude_node_title: '0'
_core:
- default_config_hash: dTKjGI-TK4KQFkyWEgGqgUXGJd1bSUWUjmaOFu-1bWQ
+ default_config_hash: uPI7jv9RHK8PqqnNIlevf23JWBXH-wNMGedESc8V7sM
id: node.resource.teaser
targetEntityType: node
bundle: resource
@@ -73,79 +70,59 @@ mode: teaser
content:
field_image:
type: responsive_image
+ weight: 0
+ region: left
label: visually_hidden
settings:
responsive_image_style: narrow
image_link: content
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
- region: left
field_resource_file:
type: file_default
+ weight: 4
+ region: right
label: visually_hidden
settings:
use_description_as_link_text: true
third_party_settings: { }
- weight: 5
- region: right
field_resource_link:
type: link
+ weight: 3
+ region: right
label: visually_hidden
settings:
trim_length: 80
- url_only: false
- url_plain: false
rel: ''
target: ''
+ url_only: false
+ url_plain: false
third_party_settings: { }
- weight: 4
- region: right
field_resource_type:
type: entity_reference_label
+ weight: 5
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 6
- region: right
- field_resource_video:
- type: video_embed_field_video
- label: visually_hidden
- settings:
- autoplay: false
- responsive: true
- width: 854
- height: 480
- third_party_settings:
- ds:
- ds_limit: ''
- weight: 1
- region: left
field_summary:
type: text_default
+ weight: 2
+ region: right
label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 3
- region: right
field_topics:
type: entity_reference_label
+ weight: 6
+ region: right
label: visually_hidden
settings:
link: true
third_party_settings: { }
- weight: 7
- region: right
hidden:
body: true
field_body_paragraph: true
field_meta_tags: true
field_tags: 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.faq.default.yml b/config/sync/core.entity_view_display.paragraph.faq.default.yml
similarity index 93%
rename from config/core.entity_view_display.paragraph.faq.default.yml
rename to config/sync/core.entity_view_display.paragraph.faq.default.yml
index 496596f..e718451 100644
--- a/config/core.entity_view_display.paragraph.faq.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.faq.default.yml
@@ -1,4 +1,4 @@
-uuid: 863f0a2a-c3eb-4c13-b681-1374e9a16e7c
+uuid: 378e9717-e093-4878-b4c9-3a544ec426d6
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: faq
mode: default
content:
field_faq:
- type: faqfield_accordion
+ weight: 0
label: visually_hidden
settings:
active: null
@@ -24,11 +24,11 @@ content:
collapsible: true
event: click
animate:
- easing: linear
duration: 200
+ easing: linear
third_party_settings:
ds:
ds_limit: ''
- weight: 0
+ type: faqfield_accordion
region: content
hidden: { }
diff --git a/config/core.entity_view_display.paragraph.file.default.yml b/config/sync/core.entity_view_display.paragraph.file.default.yml
similarity index 91%
rename from config/core.entity_view_display.paragraph.file.default.yml
rename to config/sync/core.entity_view_display.paragraph.file.default.yml
index 4b483e0..9ed7f56 100644
--- a/config/core.entity_view_display.paragraph.file.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.file.default.yml
@@ -1,4 +1,4 @@
-uuid: 95bc5d55-f7d3-41ce-aba2-ccd1f080e1db
+uuid: eefe7400-8277-461e-9be3-76d86721de46
langcode: en
status: true
dependencies:
@@ -15,10 +15,10 @@ bundle: file
mode: default
content:
field_file:
- type: file_default
+ weight: 0
label: hidden
settings: { }
third_party_settings: { }
- weight: 0
+ type: file_default
region: content
hidden: { }
diff --git a/config/core.entity_view_display.paragraph.image.default.yml b/config/sync/core.entity_view_display.paragraph.image.default.yml
similarity index 71%
rename from config/core.entity_view_display.paragraph.image.default.yml
rename to config/sync/core.entity_view_display.paragraph.image.default.yml
index 30fea51..c303dee 100644
--- a/config/core.entity_view_display.paragraph.image.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.image.default.yml
@@ -1,10 +1,10 @@
-uuid: ae2d6d8e-5817-4aa3-8640-1189738320d7
+uuid: 87299009-4cbc-4c7c-9ab1-d86b75e54e7b
langcode: en
status: true
dependencies:
config:
- field.field.paragraph.image.field_image
- - image.style.max_1300x1300
+ - image.style.large
- paragraphs.paragraphs_type.image
module:
- image
@@ -16,15 +16,12 @@ bundle: image
mode: default
content:
field_image:
- type: image
+ weight: 0
label: hidden
settings:
+ image_style: large
image_link: ''
- image_style: max_1300x1300
- image_loading:
- attribute: lazy
third_party_settings: { }
- weight: 0
+ type: image
region: content
-hidden:
- search_api_excerpt: true
+hidden: { }
diff --git a/config/core.entity_view_display.paragraph.slide.columnar.yml b/config/sync/core.entity_view_display.paragraph.slide.columnar.yml
similarity index 78%
rename from config/core.entity_view_display.paragraph.slide.columnar.yml
rename to config/sync/core.entity_view_display.paragraph.slide.columnar.yml
index ac21b7b..bf92b56 100644
--- a/config/core.entity_view_display.paragraph.slide.columnar.yml
+++ b/config/sync/core.entity_view_display.paragraph.slide.columnar.yml
@@ -1,4 +1,4 @@
-uuid: 0dd78ee8-a315-4b01-b943-545af5cb7a1f
+uuid: 262e5b8b-7fb2-4b58-a16a-a829708c9854
langcode: en
status: true
dependencies:
@@ -21,34 +21,31 @@ bundle: slide
mode: columnar
content:
field_image:
- type: responsive_image
- label: hidden
+ weight: 0
+ label: visually_hidden
settings:
responsive_image_style: narrow
image_link: ''
- image_loading:
- attribute: eager
third_party_settings: { }
- weight: 0
+ type: responsive_image
region: content
field_link:
- type: link_separate
- label: hidden
+ weight: 1
+ label: visually_hidden
settings:
- trim_length: null
+ trim_length: 80
url_only: false
url_plain: false
- rel: '0'
- target: '0'
+ rel: ''
+ target: ''
third_party_settings: { }
- weight: 1
+ type: link
region: content
field_text:
- type: text_default
- label: hidden
+ weight: 2
+ label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 2
+ type: text_default
region: content
-hidden:
- search_api_excerpt: true
+hidden: { }
diff --git a/config/core.entity_view_display.paragraph.slide.default.yml b/config/sync/core.entity_view_display.paragraph.slide.default.yml
similarity index 74%
rename from config/core.entity_view_display.paragraph.slide.default.yml
rename to config/sync/core.entity_view_display.paragraph.slide.default.yml
index 05c1c42..54b6808 100644
--- a/config/core.entity_view_display.paragraph.slide.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.slide.default.yml
@@ -1,4 +1,4 @@
-uuid: b2b531b8-1eb7-46d5-9a75-ae9230cd122c
+uuid: 1f6b3d8f-b31d-45e6-acaa-5f1235762016
langcode: en
status: true
dependencies:
@@ -20,34 +20,30 @@ bundle: slide
mode: default
content:
field_image:
- type: image
- label: hidden
- settings:
- image_link: ''
- image_style: max_2600x2600
- image_loading:
- attribute: lazy
- third_party_settings: { }
weight: 0
+ label: visually_hidden
+ settings:
+ image_style: max_2600x2600
+ third_party_settings: { }
+ type: image_url
region: content
field_link:
- type: link_separate
- label: hidden
+ weight: 2
+ label: visually_hidden
settings:
- trim_length: null
+ trim_length: 80
url_only: false
url_plain: false
- rel: '0'
- target: '0'
+ rel: ''
+ target: ''
third_party_settings: { }
- weight: 2
+ type: link
region: content
field_text:
- type: text_default
- label: hidden
+ weight: 1
+ label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 1
+ type: text_default
region: content
-hidden:
- search_api_excerpt: true
+hidden: { }
diff --git a/config/core.entity_view_display.paragraph.storyline_header.default.yml b/config/sync/core.entity_view_display.paragraph.storyline_header.default.yml
similarity index 92%
rename from config/core.entity_view_display.paragraph.storyline_header.default.yml
rename to config/sync/core.entity_view_display.paragraph.storyline_header.default.yml
index 2ad76bc..cafb20d 100644
--- a/config/core.entity_view_display.paragraph.storyline_header.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.storyline_header.default.yml
@@ -1,4 +1,4 @@
-uuid: 888f8895-db4c-4ae9-a5ba-5ad315da49f1
+uuid: 51526588-c7f8-4c08-aa40-ae7b606abb2f
langcode: en
status: true
dependencies:
@@ -13,11 +13,11 @@ bundle: storyline_header
mode: default
content:
field_storyline_header:
- type: string
+ weight: 0
label: visually_hidden
settings:
link_to_entity: false
third_party_settings: { }
- weight: 0
+ type: string
region: content
hidden: { }
diff --git a/config/core.entity_view_display.paragraph.storyline_item.default.yml b/config/sync/core.entity_view_display.paragraph.storyline_item.default.yml
similarity index 91%
rename from config/core.entity_view_display.paragraph.storyline_item.default.yml
rename to config/sync/core.entity_view_display.paragraph.storyline_item.default.yml
index 6225277..023db0f 100644
--- a/config/core.entity_view_display.paragraph.storyline_item.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.storyline_item.default.yml
@@ -1,4 +1,4 @@
-uuid: 747217b8-48d5-4393-b75d-f94b4c37bb9d
+uuid: 755d5185-2b0a-40cc-9ea6-bea048e7169d
langcode: en
status: true
dependencies:
@@ -15,40 +15,40 @@ third_party_settings:
children:
- field_storyline_heading
- field_text
- label: 'storyline content'
parent_name: ''
- region: content
weight: 0
format_type: html_element
format_settings:
- classes: ''
id: ''
+ classes: ''
element: div
show_label: false
label_element: h3
attributes: ''
effect: none
speed: fast
+ label: 'storyline content'
+ region: content
_core:
- default_config_hash: f_Ja3ESH_o4m1svKL5vwSc-sU1ZcdUtQpGirti8GDFY
+ default_config_hash: aRBOdyQhOeZDfRz5nkfTDzVNvC2diLvLUlx52yQkl5k
id: paragraph.storyline_item.default
targetEntityType: paragraph
bundle: storyline_item
mode: default
content:
field_storyline_heading:
- type: string
+ weight: 1
label: visually_hidden
settings:
link_to_entity: false
third_party_settings: { }
- weight: 1
+ type: string
region: content
field_text:
- type: text_default
+ weight: 2
label: visually_hidden
settings: { }
third_party_settings: { }
- weight: 2
+ type: text_default
region: content
hidden: { }
diff --git a/config/core.entity_view_display.paragraph.text.default.yml b/config/sync/core.entity_view_display.paragraph.text.default.yml
similarity index 67%
rename from config/core.entity_view_display.paragraph.text.default.yml
rename to config/sync/core.entity_view_display.paragraph.text.default.yml
index e7d5d71..9e779b3 100644
--- a/config/core.entity_view_display.paragraph.text.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.text.default.yml
@@ -1,10 +1,8 @@
-uuid: 1bdf2692-42ae-4178-85d3-98d4de48e241
+uuid: 8392c32a-e11d-4b3f-a8b2-28b01cfb3f3c
langcode: en
status: true
dependencies:
config:
- - field.field.paragraph.text.field_style_classes
- - field.field.paragraph.text.field_style_escape_flow
- field.field.paragraph.text.field_text
- paragraphs.paragraphs_type.text
module:
@@ -17,12 +15,10 @@ bundle: text
mode: default
content:
field_text:
- type: text_default
+ weight: 0
label: hidden
settings: { }
third_party_settings: { }
- weight: 0
+ type: text_default
region: content
-hidden:
- field_style_classes: true
- field_style_escape_flow: true
+hidden: { }
diff --git a/config/core.entity_view_display.paragraph.update.default.yml b/config/sync/core.entity_view_display.paragraph.update.default.yml
similarity index 96%
rename from config/core.entity_view_display.paragraph.update.default.yml
rename to config/sync/core.entity_view_display.paragraph.update.default.yml
index 07263e4..43efcfa 100644
--- a/config/core.entity_view_display.paragraph.update.default.yml
+++ b/config/sync/core.entity_view_display.paragraph.update.default.yml
@@ -1,4 +1,4 @@
-uuid: fc0fd071-7864-4048-914d-9735907c7cae
+uuid: e036848e-6752-4a29-a930-c26e1676934a
langcode: en
status: true
dependencies:
@@ -18,8 +18,6 @@ third_party_settings:
disable_css: true
entity_classes: all_classes
settings:
- classes:
- layout_class: { }
wrappers:
left: div
right: div
@@ -27,6 +25,8 @@ third_party_settings:
attributes: ''
link_attribute: ''
link_custom: ''
+ classes:
+ layout_class: { }
regions:
left:
- field_update_date
@@ -40,19 +40,19 @@ bundle: update
mode: default
content:
field_text:
- type: text_default
+ weight: 1
label: hidden
settings: { }
third_party_settings: { }
- weight: 1
+ type: text_default
region: right
field_update_date:
- type: datetime_default
+ weight: 0
label: hidden
settings:
timezone_override: ''
format_type: month_day_year
third_party_settings: { }
- weight: 0
+ type: datetime_default
region: left
hidden: { }
diff --git a/config/core.entity_view_display.user.user.compact.yml b/config/sync/core.entity_view_display.user.user.compact.yml
similarity index 80%
rename from config/core.entity_view_display.user.user.compact.yml
rename to config/sync/core.entity_view_display.user.user.compact.yml
index 4daa373..15ebad9 100644
--- a/config/core.entity_view_display.user.user.compact.yml
+++ b/config/sync/core.entity_view_display.user.user.compact.yml
@@ -1,4 +1,4 @@
-uuid: 8a0f9910-cc13-425f-9366-5de1d8ca2bee
+uuid: 37ee9f87-2306-453d-b779-a08ee013eb0d
langcode: en
status: true
dependencies:
@@ -18,16 +18,12 @@ mode: compact
content:
user_picture:
type: image
- label: hidden
- settings:
- image_link: content
- image_style: thumbnail
- image_loading:
- attribute: lazy
- third_party_settings: { }
weight: 0
+ settings:
+ image_style: thumbnail
+ image_link: content
+ third_party_settings: { }
+ label: hidden
region: content
hidden:
- langcode: true
member_for: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_display.user.user.default.yml b/config/sync/core.entity_view_display.user.user.default.yml
similarity index 52%
rename from config/core.entity_view_display.user.user.default.yml
rename to config/sync/core.entity_view_display.user.user.default.yml
index c86580d..b6673e5 100644
--- a/config/core.entity_view_display.user.user.default.yml
+++ b/config/sync/core.entity_view_display.user.user.default.yml
@@ -1,12 +1,16 @@
-uuid: 6d7f5daf-c97a-42e4-9db4-007863d0e0d7
+uuid: b60b4dc5-67d1-4b01-8c64-399e45fc2522
langcode: en
status: true
dependencies:
config:
+ - field.field.user.user.field_bio
+ - field.field.user.user.field_gpg_public_key
- field.field.user.user.user_picture
- image.style.thumbnail
module:
+ - file
- image
+ - text
- user
_core:
default_config_hash: '-spcniWjm5Ez6YM3ccxk3ocvsn52jkdaGEgp0xzPYU8'
@@ -15,18 +19,29 @@ targetEntityType: user
bundle: user
mode: default
content:
+ field_bio:
+ weight: 2
+ label: above
+ settings: { }
+ third_party_settings: { }
+ type: text_default
+ region: content
+ field_gpg_public_key:
+ weight: 1
+ label: above
+ settings:
+ use_description_as_link_text: true
+ third_party_settings: { }
+ type: file_default
+ region: content
user_picture:
type: image
- label: hidden
- settings:
- image_link: content
- image_style: thumbnail
- image_loading:
- attribute: lazy
- third_party_settings: { }
weight: 0
+ settings:
+ image_style: thumbnail
+ image_link: content
+ third_party_settings: { }
+ label: hidden
region: content
hidden:
- langcode: true
member_for: true
- search_api_excerpt: true
diff --git a/config/core.entity_view_mode.block.token.yml b/config/sync/core.entity_view_mode.block.token.yml
similarity index 68%
rename from config/core.entity_view_mode.block.token.yml
rename to config/sync/core.entity_view_mode.block.token.yml
index b264497..3458a92 100644
--- a/config/core.entity_view_mode.block.token.yml
+++ b/config/sync/core.entity_view_mode.block.token.yml
@@ -1,4 +1,4 @@
-uuid: 84ea1f90-27e9-4c82-b452-39d665dd8251
+uuid: 3ecfddd0-525e-4970-a587-73deeac79c33
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- block
id: block.token
label: Token
-description: ''
targetEntityType: block
cache: true
diff --git a/config/core.entity_view_mode.block_content.columnar.yml b/config/sync/core.entity_view_mode.block_content.columnar.yml
similarity index 79%
rename from config/core.entity_view_mode.block_content.columnar.yml
rename to config/sync/core.entity_view_mode.block_content.columnar.yml
index 949ec09..a34b5a3 100644
--- a/config/core.entity_view_mode.block_content.columnar.yml
+++ b/config/sync/core.entity_view_mode.block_content.columnar.yml
@@ -1,4 +1,4 @@
-uuid: 4e6b37e6-af63-4f33-861e-e585c4303e72
+uuid: 0cf75950-a1cf-423e-b5ea-5f05a56c7548
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: QqgQqXTAzP3BZhl5XLw2R5EE1BsJTCwptXnMkjY8xZw
id: block_content.columnar
label: Columnar
-description: ''
targetEntityType: block_content
cache: true
diff --git a/config/core.entity_view_mode.block_content.full.yml b/config/sync/core.entity_view_mode.block_content.full.yml
similarity index 79%
rename from config/core.entity_view_mode.block_content.full.yml
rename to config/sync/core.entity_view_mode.block_content.full.yml
index be2cfaa..4c2f2af 100644
--- a/config/core.entity_view_mode.block_content.full.yml
+++ b/config/sync/core.entity_view_mode.block_content.full.yml
@@ -1,4 +1,4 @@
-uuid: 81961e70-546c-4545-a48c-a710ee262927
+uuid: 73c6ac3a-1304-412e-93d2-20a82bf32c17
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: 4tedlMuvQjDOdvHdw86_e-2Rt78aR7TGFMfOK8Ejppg
id: block_content.full
label: Full
-description: ''
targetEntityType: block_content
cache: true
diff --git a/config/core.entity_view_mode.block_content.token.yml b/config/sync/core.entity_view_mode.block_content.token.yml
similarity index 71%
rename from config/core.entity_view_mode.block_content.token.yml
rename to config/sync/core.entity_view_mode.block_content.token.yml
index 0fc6b6c..5765ebe 100644
--- a/config/core.entity_view_mode.block_content.token.yml
+++ b/config/sync/core.entity_view_mode.block_content.token.yml
@@ -1,4 +1,4 @@
-uuid: 44ddf19a-4c1a-4415-afb9-42aca8fb9de9
+uuid: 2e3bfef9-5b6b-4b71-a23e-8d0cad52260d
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- block_content
id: block_content.token
label: Token
-description: ''
targetEntityType: block_content
cache: true
diff --git a/config/core.entity_view_mode.comment.full.yml b/config/sync/core.entity_view_mode.comment.full.yml
similarity index 78%
rename from config/core.entity_view_mode.comment.full.yml
rename to config/sync/core.entity_view_mode.comment.full.yml
index 2453acf..23e164d 100644
--- a/config/core.entity_view_mode.comment.full.yml
+++ b/config/sync/core.entity_view_mode.comment.full.yml
@@ -1,4 +1,4 @@
-uuid: 11ece83d-69e4-44ee-930e-6952baea5701
+uuid: 0dd79f56-5a52-447d-baa5-9b84552ea26c
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: K7eNlfU7NEUajz01wItywZklr2oaPgL6s1_97fmDXLA
id: comment.full
label: 'Full comment'
-description: ''
targetEntityType: comment
cache: true
diff --git a/config/core.entity_view_mode.comment.token.yml b/config/sync/core.entity_view_mode.comment.token.yml
similarity index 69%
rename from config/core.entity_view_mode.comment.token.yml
rename to config/sync/core.entity_view_mode.comment.token.yml
index 3454c4f..24f6884 100644
--- a/config/core.entity_view_mode.comment.token.yml
+++ b/config/sync/core.entity_view_mode.comment.token.yml
@@ -1,4 +1,4 @@
-uuid: 9c9c0da4-d269-4210-b7b9-fe2170111b12
+uuid: 07122042-f61f-40f5-b0cc-09dead11559e
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- comment
id: comment.token
label: Token
-description: ''
targetEntityType: comment
cache: true
diff --git a/config/core.entity_view_mode.contact_message.token.yml b/config/sync/core.entity_view_mode.contact_message.token.yml
similarity index 71%
rename from config/core.entity_view_mode.contact_message.token.yml
rename to config/sync/core.entity_view_mode.contact_message.token.yml
index fdd0fe6..11dc77c 100644
--- a/config/core.entity_view_mode.contact_message.token.yml
+++ b/config/sync/core.entity_view_mode.contact_message.token.yml
@@ -1,4 +1,4 @@
-uuid: a6b5a7bf-7c3d-4b2e-bb40-f65c529f0831
+uuid: 86214710-30ae-4f32-9003-f29a04efa241
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- contact
id: contact_message.token
label: Token
-description: ''
targetEntityType: contact_message
cache: true
diff --git a/config/core.entity_view_mode.file.token.yml b/config/sync/core.entity_view_mode.file.token.yml
similarity index 67%
rename from config/core.entity_view_mode.file.token.yml
rename to config/sync/core.entity_view_mode.file.token.yml
index 958d4bf..741d036 100644
--- a/config/core.entity_view_mode.file.token.yml
+++ b/config/sync/core.entity_view_mode.file.token.yml
@@ -1,4 +1,4 @@
-uuid: e5df3d04-ce32-4e01-89a1-443a67f6a7ee
+uuid: e7de89a2-1d30-4eae-87d0-1e91ad061fad
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- file
id: file.token
label: Token
-description: ''
targetEntityType: file
cache: true
diff --git a/config/sync/core.entity_view_mode.group.full.yml b/config/sync/core.entity_view_mode.group.full.yml
new file mode 100644
index 0000000..aaba4ac
--- /dev/null
+++ b/config/sync/core.entity_view_mode.group.full.yml
@@ -0,0 +1,12 @@
+uuid: b98206e4-ba4b-42c8-833d-42ab7827136c
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+_core:
+ default_config_hash: UWSWpjm_Ly72amVd7ejQdvsEE4tr6Sicrm6jD-ydA1U
+id: group.full
+label: 'Full content'
+targetEntityType: group
+cache: true
diff --git a/config/sync/core.entity_view_mode.group.teaser.yml b/config/sync/core.entity_view_mode.group.teaser.yml
new file mode 100644
index 0000000..30e0521
--- /dev/null
+++ b/config/sync/core.entity_view_mode.group.teaser.yml
@@ -0,0 +1,12 @@
+uuid: cd2051b5-75d9-4b06-9b7d-73a5f776d4b8
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+_core:
+ default_config_hash: YXlikPyGTT4Ozc42C7qAGkMEreAc7X4yfCg6B16lH2I
+id: group.teaser
+label: Teaser
+targetEntityType: group
+cache: true
diff --git a/config/core.entity_view_mode.node.box.yml b/config/sync/core.entity_view_mode.node.box.yml
similarity index 76%
rename from config/core.entity_view_mode.node.box.yml
rename to config/sync/core.entity_view_mode.node.box.yml
index b3ab216..8887ca7 100644
--- a/config/core.entity_view_mode.node.box.yml
+++ b/config/sync/core.entity_view_mode.node.box.yml
@@ -1,4 +1,4 @@
-uuid: 0164ea32-0a9b-4535-bb3c-bda04d7ce183
+uuid: f72442dc-2cdd-4d61-8b1f-9e575bf0bf80
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: 72C_fCp3_JLorvt4YLz5w9UeUuor4vY465KrhUFEBxM
id: node.box
label: Box
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.card.yml b/config/sync/core.entity_view_mode.node.card.yml
similarity index 76%
rename from config/core.entity_view_mode.node.card.yml
rename to config/sync/core.entity_view_mode.node.card.yml
index c2d8e56..38dad45 100644
--- a/config/core.entity_view_mode.node.card.yml
+++ b/config/sync/core.entity_view_mode.node.card.yml
@@ -1,4 +1,4 @@
-uuid: 945d01b4-1cd7-4806-a1bd-f53a423151ef
+uuid: d71ffb70-24df-49db-95eb-2a859db9e68c
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: z6QSG0XSjPK_V4notuY8MaeIAO_QnwfvuH825TyLiHg
id: node.card
label: Card
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.full.yml b/config/sync/core.entity_view_mode.node.full.yml
similarity index 77%
rename from config/core.entity_view_mode.node.full.yml
rename to config/sync/core.entity_view_mode.node.full.yml
index 9d1b268..dfd6497 100644
--- a/config/core.entity_view_mode.node.full.yml
+++ b/config/sync/core.entity_view_mode.node.full.yml
@@ -1,4 +1,4 @@
-uuid: 1b0107d4-6f5e-4fc2-8a8d-54a5902887cb
+uuid: cfecbf7f-a674-4017-b510-4d62d7a49d28
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: ElrtInxGjZd7GaapJ5O9n-ugi2hG2IxFivtgn0tHOsk
id: node.full
label: 'Full content'
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.media.yml b/config/sync/core.entity_view_mode.node.media.yml
similarity index 77%
rename from config/core.entity_view_mode.node.media.yml
rename to config/sync/core.entity_view_mode.node.media.yml
index 0e1465c..b342842 100644
--- a/config/core.entity_view_mode.node.media.yml
+++ b/config/sync/core.entity_view_mode.node.media.yml
@@ -1,4 +1,4 @@
-uuid: a1a51e1f-a0d6-477b-b43b-6383db6c46c9
+uuid: 77c62a74-1a1d-4ff4-939a-a76a092f5d66
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: zCJHOoAhXJBG7URAzV10-MNcnU7eNX9VTz4LvWS625I
id: node.media
label: 'Media object'
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.micro.yml b/config/sync/core.entity_view_mode.node.micro.yml
similarity index 77%
rename from config/core.entity_view_mode.node.micro.yml
rename to config/sync/core.entity_view_mode.node.micro.yml
index df3fbda..ce58ed3 100644
--- a/config/core.entity_view_mode.node.micro.yml
+++ b/config/sync/core.entity_view_mode.node.micro.yml
@@ -1,4 +1,4 @@
-uuid: 9e91efe3-467e-4a36-87b2-fbfcef807143
+uuid: 9962b8ec-b3c1-4c53-9227-18484fc42f52
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: REKLyEtFZOM1LgQ-KVSwvqkcwNlS7EvkWbdV12zinFw
id: node.micro
label: Micro
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.rss.yml b/config/sync/core.entity_view_mode.node.rss.yml
similarity index 76%
rename from config/core.entity_view_mode.node.rss.yml
rename to config/sync/core.entity_view_mode.node.rss.yml
index 1da10c6..5803de1 100644
--- a/config/core.entity_view_mode.node.rss.yml
+++ b/config/sync/core.entity_view_mode.node.rss.yml
@@ -1,4 +1,4 @@
-uuid: 8c97c0c9-fa91-41ef-930f-fe85323c17fe
+uuid: a932be95-e2db-4051-984c-36eb69bd9842
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: vlYzr-rp2f9NMp-Qlr4sFjlqRq-90mco5-afLNGwCrU
id: node.rss
label: RSS
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.search_index.yml b/config/sync/core.entity_view_mode.node.search_index.yml
similarity index 78%
rename from config/core.entity_view_mode.node.search_index.yml
rename to config/sync/core.entity_view_mode.node.search_index.yml
index cf89f20..9cb5eb8 100644
--- a/config/core.entity_view_mode.node.search_index.yml
+++ b/config/sync/core.entity_view_mode.node.search_index.yml
@@ -1,4 +1,4 @@
-uuid: 1c2a0e1b-4789-4522-94e1-221e67bb8d31
+uuid: dbe3f174-0a6e-46ea-9097-9ba37e81cc8a
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: fVFfJv_GzBRE-wpRHbfD5a3VjnhbEOXG6lvRd3uaccY
id: node.search_index
label: 'Search index'
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.search_result.yml b/config/sync/core.entity_view_mode.node.search_result.yml
similarity index 80%
rename from config/core.entity_view_mode.node.search_result.yml
rename to config/sync/core.entity_view_mode.node.search_result.yml
index cdd94dd..ef2080f 100644
--- a/config/core.entity_view_mode.node.search_result.yml
+++ b/config/sync/core.entity_view_mode.node.search_result.yml
@@ -1,4 +1,4 @@
-uuid: 7b7529e9-c1c0-4203-b636-05aede567c72
+uuid: af6cdf78-37ad-4a5e-b1d4-de5ec11c2f21
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: 6GCOQ-jP2RbdbHA5YWQ6bT8CfGbqrBYKOSC_XY4E3ZM
id: node.search_result
label: 'Search result highlighting input'
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.simple_card.yml b/config/sync/core.entity_view_mode.node.simple_card.yml
similarity index 78%
rename from config/core.entity_view_mode.node.simple_card.yml
rename to config/sync/core.entity_view_mode.node.simple_card.yml
index 02c4ce7..70e0518 100644
--- a/config/core.entity_view_mode.node.simple_card.yml
+++ b/config/sync/core.entity_view_mode.node.simple_card.yml
@@ -1,4 +1,4 @@
-uuid: 26090297-2d86-42fe-929e-4716fee93dfe
+uuid: f2549fa3-bb22-4545-84f4-b256103278a0
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: Crt6i6j8yM0YLdbxgS7BCzDtadVne43fhOy0WVkoB1o
id: node.simple_card
label: 'Simple card'
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.small_card.yml b/config/sync/core.entity_view_mode.node.small_card.yml
similarity index 78%
rename from config/core.entity_view_mode.node.small_card.yml
rename to config/sync/core.entity_view_mode.node.small_card.yml
index 007076d..4851667 100644
--- a/config/core.entity_view_mode.node.small_card.yml
+++ b/config/sync/core.entity_view_mode.node.small_card.yml
@@ -1,4 +1,4 @@
-uuid: fd452934-1c47-47cf-bec6-8395342ad04d
+uuid: fc92fb5a-14a3-404a-b6f7-e892212160cd
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: I68oVlHUQbsqRH-WCvFJRANAwaYqU1nl3ZHVstUkWkg
id: node.small_card
label: 'Small card'
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.teaser.yml b/config/sync/core.entity_view_mode.node.teaser.yml
similarity index 77%
rename from config/core.entity_view_mode.node.teaser.yml
rename to config/sync/core.entity_view_mode.node.teaser.yml
index 7f0932d..45f4f2a 100644
--- a/config/core.entity_view_mode.node.teaser.yml
+++ b/config/sync/core.entity_view_mode.node.teaser.yml
@@ -1,4 +1,4 @@
-uuid: 8ff4bf3b-a440-40ff-9231-7b3ad8cce3f6
+uuid: ca854eb5-2bb5-46d4-a243-099201ea3574
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: Mz9qWr1kUYK0mjRAGDsr5XS6PvtZ24en_7ndt-pyWe4
id: node.teaser
label: Teaser
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.tile.yml b/config/sync/core.entity_view_mode.node.tile.yml
similarity index 76%
rename from config/core.entity_view_mode.node.tile.yml
rename to config/sync/core.entity_view_mode.node.tile.yml
index 7bb8e1c..7a0139c 100644
--- a/config/core.entity_view_mode.node.tile.yml
+++ b/config/sync/core.entity_view_mode.node.tile.yml
@@ -1,4 +1,4 @@
-uuid: 9ea510f7-bc8c-470b-b71f-38da166e74cd
+uuid: 36b2b202-dc24-423e-9243-8a97e2fb14ab
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: nfevs6UIIvKBEKDLqjESVCx8H-owjCTzCHcyb398q3w
id: node.tile
label: Tile
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.node.token.yml b/config/sync/core.entity_view_mode.node.token.yml
similarity index 67%
rename from config/core.entity_view_mode.node.token.yml
rename to config/sync/core.entity_view_mode.node.token.yml
index e3a492f..278a60d 100644
--- a/config/core.entity_view_mode.node.token.yml
+++ b/config/sync/core.entity_view_mode.node.token.yml
@@ -1,4 +1,4 @@
-uuid: 4790c2d7-fc15-4f4a-8981-13e4969e79a9
+uuid: 9435a190-198e-4048-8a08-7be80498f5cf
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- node
id: node.token
label: Token
-description: ''
targetEntityType: node
cache: true
diff --git a/config/core.entity_view_mode.paragraph.columnar.yml b/config/sync/core.entity_view_mode.paragraph.columnar.yml
similarity index 78%
rename from config/core.entity_view_mode.paragraph.columnar.yml
rename to config/sync/core.entity_view_mode.paragraph.columnar.yml
index 8cc7ddf..89211ff 100644
--- a/config/core.entity_view_mode.paragraph.columnar.yml
+++ b/config/sync/core.entity_view_mode.paragraph.columnar.yml
@@ -1,4 +1,4 @@
-uuid: d8d097d7-b4aa-4ba9-8dd8-1181a407b950
+uuid: 825c23a0-61af-4bd6-8785-476e3de02b0b
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: hFG3sm7kkwkMu9ruyw2Ys51J421IyluY9DhnSsT6tMM
id: paragraph.columnar
label: Columnar
-description: ''
targetEntityType: paragraph
cache: true
diff --git a/config/core.entity_view_mode.paragraph.preview.yml b/config/sync/core.entity_view_mode.paragraph.preview.yml
similarity index 78%
rename from config/core.entity_view_mode.paragraph.preview.yml
rename to config/sync/core.entity_view_mode.paragraph.preview.yml
index f65f8dc..bbf6886 100644
--- a/config/core.entity_view_mode.paragraph.preview.yml
+++ b/config/sync/core.entity_view_mode.paragraph.preview.yml
@@ -1,4 +1,4 @@
-uuid: a5e3df72-f69c-4f1f-a88e-786768bf16ea
+uuid: 18ba8f7a-9e14-469a-ab5a-b418184558b9
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: fAWHL-ZbCR4HOdE03GYzQfiMYfEvVhTWNBHWcU_pa18
id: paragraph.preview
label: Preview
-description: ''
targetEntityType: paragraph
cache: true
diff --git a/config/core.entity_view_mode.taxonomy_term.full.yml b/config/sync/core.entity_view_mode.taxonomy_term.full.yml
similarity index 80%
rename from config/core.entity_view_mode.taxonomy_term.full.yml
rename to config/sync/core.entity_view_mode.taxonomy_term.full.yml
index 991f15c..f56cb52 100644
--- a/config/core.entity_view_mode.taxonomy_term.full.yml
+++ b/config/sync/core.entity_view_mode.taxonomy_term.full.yml
@@ -1,4 +1,4 @@
-uuid: c69e5c8f-f36b-4814-9240-a75c66b8cbe2
+uuid: 86142a06-06b4-4c83-8c08-fcd8cbd1a769
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: '-PPKjsNQPvoIDjOuUAvlLocYD976MNjb9Zpgyz5_BWE'
id: taxonomy_term.full
label: 'Taxonomy term page'
-description: ''
targetEntityType: taxonomy_term
cache: true
diff --git a/config/core.entity_view_mode.user.compact.yml b/config/sync/core.entity_view_mode.user.compact.yml
similarity index 77%
rename from config/core.entity_view_mode.user.compact.yml
rename to config/sync/core.entity_view_mode.user.compact.yml
index fd7a02b..ec7da28 100644
--- a/config/core.entity_view_mode.user.compact.yml
+++ b/config/sync/core.entity_view_mode.user.compact.yml
@@ -1,4 +1,4 @@
-uuid: d675a60e-d161-4727-a302-717c10b9ab61
+uuid: d515c474-0e68-4074-a816-5255137b5b47
langcode: en
status: true
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: 71CSAr_LNPcgu6D6jI4INl1KATkahmeyUFBETAWya8g
id: user.compact
label: Compact
-description: ''
targetEntityType: user
cache: true
diff --git a/config/core.entity_view_mode.user.full.yml b/config/sync/core.entity_view_mode.user.full.yml
similarity index 77%
rename from config/core.entity_view_mode.user.full.yml
rename to config/sync/core.entity_view_mode.user.full.yml
index d68b1a7..a9c33a7 100644
--- a/config/core.entity_view_mode.user.full.yml
+++ b/config/sync/core.entity_view_mode.user.full.yml
@@ -1,4 +1,4 @@
-uuid: 5523dfcf-eae5-4e10-b27b-87253add7754
+uuid: 5ba5335d-f75d-48b4-b730-f581b2949c23
langcode: en
status: false
dependencies:
@@ -8,6 +8,5 @@ _core:
default_config_hash: mQIF_foYjmnVSr9MpcD4CTaJE_FpO1AyDd_DskztGhM
id: user.full
label: 'User account'
-description: ''
targetEntityType: user
cache: true
diff --git a/config/core.entity_view_mode.user.token.yml b/config/sync/core.entity_view_mode.user.token.yml
similarity index 67%
rename from config/core.entity_view_mode.user.token.yml
rename to config/sync/core.entity_view_mode.user.token.yml
index 35aef80..f6cb4b4 100644
--- a/config/core.entity_view_mode.user.token.yml
+++ b/config/sync/core.entity_view_mode.user.token.yml
@@ -1,4 +1,4 @@
-uuid: f0eeb301-25a5-4ae3-9af1-59dfd747887d
+uuid: ddb5249e-b97a-4400-8381-f43366bce817
langcode: en
status: true
dependencies:
@@ -6,6 +6,5 @@ dependencies:
- user
id: user.token
label: Token
-description: ''
targetEntityType: user
cache: true
diff --git a/config/core.extension.yml b/config/sync/core.extension.yml
similarity index 53%
rename from config/core.extension.yml
rename to config/sync/core.extension.yml
index fef2c64..0f6fd51 100644
--- a/config/core.extension.yml
+++ b/config/sync/core.extension.yml
@@ -1,58 +1,44 @@
-_core:
- default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
module:
address: 0
+ admin_links_access_filter: 0
admin_toolbar: 0
- admin_toolbar_links_access_filter: 0
- admin_toolbar_search: 0
admin_toolbar_tools: 0
agaric_migration: 0
- allowed_formats: 0
automated_cron: 0
- autosave_form: 0
+ better_normalizers: 0
block: 0
block_content: 0
block_visibility_groups: 0
breakpoint: 0
- captcha: 0
ckeditor: 0
- ckeditor5: 0
- ckeditor_markdown: 0
- coffee: 0
+ color: 0
comment: 0
components: 0
config: 0
config_actions: 0
config_actions_provider: 0
config_distro: 0
- config_distro_filter: 0
config_filter: 0
config_merge: 0
- config_normalizer: 0
config_perms: 0
config_snapshot: 0
config_sync: 0
- config_translation: 0
config_update: 0
contact: 0
contextual: 0
- crop: 0
ctools: 0
- customerror: 0
datetime: 0
datetime_range: 0
dblog: 0
- diff: 0
- dropdown_language: 0
+ default_content: 0
drutopia_action: 0
drutopia_article: 0
drutopia_blog: 0
drutopia_campaign: 0
- drutopia_case_study: 0
drutopia_comment: 0
drutopia_core: 0
- drutopia_creative_license: 0
drutopia_event: 0
+ drutopia_group: 0
drutopia_home_page: 0
drutopia_landing_page: 0
drutopia_page: 0
@@ -66,10 +52,8 @@ module:
drutopia_social: 0
drutopia_storyline: 0
drutopia_user: 0
- dynamic_entity_reference: 0
dynamic_page_cache: 0
editor: 0
- entity: 0
entity_reference_revisions: 0
exclude_node_title: 0
facets: 0
@@ -79,118 +63,60 @@ module:
field_ui: 0
file: 0
filter: 0
- filter_perms: 0
- focal_point: 0
- gin_toolbar: 0
- google_analytics: 0
+ gnode: 0
+ group: 0
hal: 0
help: 0
history: 0
- honeypot: 0
- http_client_error_status: 0
image: 0
- image_widget_crop: 0
- indieweb: 0
- indieweb_context: 0
- indieweb_feed: 0
- indieweb_webmention: 0
- inotherwords: 0
- language: 0
layout_discovery: 0
link: 0
- locale: 0
- mailchimp: 0
- markdown: 0
- media: 0
- media_library: 0
- media_library_media_modify: 0
- media_responsive_thumbnail: 0
- menu_block: 0
- menu_trail_by_path: 0
menu_ui: 0
metatag: 0
- metatag_facebook: 0
- metatag_open_graph: 0
- metatag_twitter_cards: 0
migrate: 0
migrate_drupal: 0
+ migrate_drupal_multilingual: 0
migrate_plus: 0
migrate_tools: 0
- minimalhtml: 0
- minimalhtmltitle: 0
- mysql: 0
node: 0
options: 0
page_cache: 0
- paragraphs_features: 0
path: 0
- path_alias: 0
- phpass: 0
- plausible: 0
- preview_link: 0
quickedit: 0
rdf: 0
- redirect: 0
- redirect_404: 0
- regionincontent: 0
responsive_image: 0
- riddler: 0
- role_delegation: 0
- scn: 0
search_api: 0
search_api_db: 0
serialization: 0
shortcut: 0
similarterms: 0
- skins: 0
social_media_links: 0
- statistics: 0
- stripe: 0
- stripe_webform: 0
- syslog: 0
system: 0
taxonomy: 0
telephone: 0
text: 0
- textarea_widget_for_text: 0
token: 0
toolbar: 0
tour: 0
- ui_patterns: 0
- ui_patterns_ds: 0
- ui_patterns_layouts: 0
- ui_patterns_library: 0
update: 0
user: 0
- variationcache: 0
- video_embed_field: 0
- views_plain: 0
views_ui: 0
- viewsreference: 0
webform: 0
- webform_mailchimp: 0
- webform_scheduled_email: 0
- webform_submission_log: 0
- webform_ui: 0
wysiwyg_linebreaks: 0
ds: 1
- menu_admin_per_menu: 1
menu_link_content: 1
pathauto: 1
- comment_notify: 10
- content_translation: 10
- indieweb_microformat: 10
views: 10
paragraphs: 11
config_provider: 100
- twigsuggest: 100
drutopia: 1000
theme:
+ stable: 0
+ classy: 0
seven: 0
bulma: 0
octavia: 0
agarica: 0
- claro: 0
- gin: 0
- stable9: 0
profile: drutopia
+_core:
+ default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc
diff --git a/config/core.menu.static_menu_link_overrides.yml b/config/sync/core.menu.static_menu_link_overrides.yml
similarity index 90%
rename from config/core.menu.static_menu_link_overrides.yml
rename to config/sync/core.menu.static_menu_link_overrides.yml
index 891b232..8624258 100644
--- a/config/core.menu.static_menu_link_overrides.yml
+++ b/config/sync/core.menu.static_menu_link_overrides.yml
@@ -1,9 +1,9 @@
-_core:
- default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
definitions:
contact__site_page:
+ enabled: true
menu_name: footer
parent: ''
weight: 0
expanded: false
- enabled: false
+_core:
+ default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM
diff --git a/config/dblog.settings.yml b/config/sync/dblog.settings.yml
similarity index 100%
rename from config/dblog.settings.yml
rename to config/sync/dblog.settings.yml
index fbd17ea..cf06e3f 100644
--- a/config/dblog.settings.yml
+++ b/config/sync/dblog.settings.yml
@@ -1,3 +1,3 @@
+row_limit: 1000
_core:
default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58
-row_limit: 1000
diff --git a/config/sync/ds.settings.yml b/config/sync/ds.settings.yml
new file mode 100644
index 0000000..d1e4b0b
--- /dev/null
+++ b/config/sync/ds.settings.yml
@@ -0,0 +1,10 @@
+disabled: false
+field_template: false
+ft-default: default
+ft-show-colon: false
+classes:
+ region: { }
+ field: { }
+use_field_names: true
+_core:
+ default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY
diff --git a/config/editor.editor.basic_html.yml b/config/sync/editor.editor.basic_html.yml
similarity index 80%
rename from config/editor.editor.basic_html.yml
rename to config/sync/editor.editor.basic_html.yml
index 09692f7..7987413 100644
--- a/config/editor.editor.basic_html.yml
+++ b/config/sync/editor.editor.basic_html.yml
@@ -1,4 +1,4 @@
-uuid: 3c712744-1e92-4192-b577-117e3e23079b
+uuid: e99e34d1-3a3a-4522-a0ab-eed91788ec19
langcode: en
status: true
dependencies:
@@ -38,16 +38,15 @@ settings:
name: 'Block Formatting'
items:
- Format
- - Styles
-
name: Tools
items:
- Source
- - ShowBlocks
- - Maximize
plugins:
+ language:
+ language_list: un
stylescombo:
- styles: "p.subtitle.is-mono.is-4|Mono subtitle\r\np.title.is-5.is-spaced|Small title\r\np.subtitle.is-6|Small subtitle\r\n"
+ styles: ''
linebreaks:
method: force
image_upload:
diff --git a/config/editor.editor.full_html.yml b/config/sync/editor.editor.full_html.yml
similarity index 91%
rename from config/editor.editor.full_html.yml
rename to config/sync/editor.editor.full_html.yml
index 6f9082b..9dd93d1 100644
--- a/config/editor.editor.full_html.yml
+++ b/config/sync/editor.editor.full_html.yml
@@ -1,4 +1,4 @@
-uuid: 698d319b-fc0f-4e9c-9576-d259c8a01296
+uuid: e65ef6b3-f0e5-4f47-bc36-bb398a4d1605
langcode: en
status: true
dependencies:
@@ -17,7 +17,6 @@ settings:
-
name: Formatting
items:
- - Markdown
- Bold
- Italic
- Strike
@@ -52,6 +51,10 @@ settings:
- ShowBlocks
- Source
plugins:
+ language:
+ language_list: un
+ stylescombo:
+ styles: ''
linebreaks:
method: force
image_upload:
diff --git a/config/exclude_node_title.settings.yml b/config/sync/exclude_node_title.settings.yml
similarity index 90%
rename from config/exclude_node_title.settings.yml
rename to config/sync/exclude_node_title.settings.yml
index 0c6d662..c8a6750 100644
--- a/config/exclude_node_title.settings.yml
+++ b/config/sync/exclude_node_title.settings.yml
@@ -1,10 +1,9 @@
-_core:
- default_config_hash: tFcyNjovmdPA1ZVm7j2Iymt809j-r2F5uSDJAOI_QV8
nid_list:
- 1: 280
+ - 28
translation_sync: true
search: false
-type: remove
+_core:
+ default_config_hash: tFcyNjovmdPA1ZVm7j2Iymt809j-r2F5uSDJAOI_QV8
content_types:
landing_page: user
content_type_modes:
diff --git a/config/facets.facet.article_topics.yml b/config/sync/facets.facet.article_topics.yml
similarity index 83%
rename from config/facets.facet.article_topics.yml
rename to config/sync/facets.facet.article_topics.yml
index 1ab67a3..3ae8526 100644
--- a/config/facets.facet.article_topics.yml
+++ b/config/sync/facets.facet.article_topics.yml
@@ -1,4 +1,4 @@
-uuid: 9473e275-17ad-480c-83a2-2f58d5ce235a
+uuid: ec6c1ae4-5c72-4c74-aaa4-a7bb6800b962
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: dTU5sKNgp-tIPvV40sH74giQMQUzlrDLl7dYn91JmVc
+ default_config_hash: 9I6C3XdNelsyC5TFJgOA8Kad4uXG7AnRSPrhZ8rbe6o
id: article_topics
name: 'Article Topics'
+url_alias: article_topics
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: article_topics
-facet_source_id: 'search_api:views_page__article__page_listing'
+show_only_one_result: false
field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__article__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/facets.facet.article_type.yml b/config/sync/facets.facet.article_type.yml
similarity index 83%
rename from config/facets.facet.article_type.yml
rename to config/sync/facets.facet.article_type.yml
index 95cf213..87dca5e 100644
--- a/config/facets.facet.article_type.yml
+++ b/config/sync/facets.facet.article_type.yml
@@ -1,4 +1,4 @@
-uuid: e6142c06-d8bf-4f7d-a5b8-c25aeb961e76
+uuid: 15b78680-8448-4dad-938d-6f19eba0a881
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: sO7FteotwDBR81JcEyIL4pVftUp0-K2mK3_X0A6csS8
+ default_config_hash: lsOS78CQK0P3N-bgFEY0s6qQNVJrea4R3yINmcQ34Y8
id: article_type
name: 'Article Type'
+url_alias: article_type
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: article_type
-facet_source_id: 'search_api:views_page__article__page_listing'
+show_only_one_result: false
field_identifier: field_article_type
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__article__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/facets.facet.blog_topics.yml b/config/sync/facets.facet.blog_topics.yml
similarity index 84%
rename from config/facets.facet.blog_topics.yml
rename to config/sync/facets.facet.blog_topics.yml
index 1550357..f5fd7e5 100644
--- a/config/facets.facet.blog_topics.yml
+++ b/config/sync/facets.facet.blog_topics.yml
@@ -1,4 +1,4 @@
-uuid: b27533a8-5830-4afe-9ddf-4efced432399
+uuid: 1e9ef80f-4ec0-4da7-8043-f6b64902d65f
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: LF3dKWzK-V3XRA53prLyLAWwNxKkERhljA_HCNedonI
+ default_config_hash: MyjAY-2UzOiNgr4iNvJj5oZ1CvYyP8kdXZLw843xlRc
id: blog_topics
name: 'Blog Topics'
+url_alias: blog_topics
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: blog_topics
-facet_source_id: 'search_api:views_page__blog__page_listing'
+show_only_one_result: false
field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__blog__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -65,3 +56,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/facets.facet.event_topics.yml b/config/sync/facets.facet.event_topics.yml
similarity index 84%
rename from config/facets.facet.event_topics.yml
rename to config/sync/facets.facet.event_topics.yml
index e89755e..6fa0d9f 100644
--- a/config/facets.facet.event_topics.yml
+++ b/config/sync/facets.facet.event_topics.yml
@@ -1,4 +1,4 @@
-uuid: cd6e1846-52f4-4df1-81c9-f9f91ae4f0a5
+uuid: 87de9f58-08db-4d16-9d59-8049a7779d52
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: XQzUxYcX_ECM94u5v-OTXsgFtwEjbyRmzY-D_PxsGqM
+ default_config_hash: kqeVDRaBYiarD8v3EJBKOWaoRHYzl5LcY7QlXGHWc5k
id: event_topics
name: 'Event Topics'
+url_alias: event_topics
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: event_topics
-facet_source_id: 'search_api:views_page__event__page_listing'
+show_only_one_result: false
field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__event__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -65,3 +56,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/facets.facet.event_type.yml b/config/sync/facets.facet.event_type.yml
similarity index 84%
rename from config/facets.facet.event_type.yml
rename to config/sync/facets.facet.event_type.yml
index 7986842..a3de392 100644
--- a/config/facets.facet.event_type.yml
+++ b/config/sync/facets.facet.event_type.yml
@@ -1,4 +1,4 @@
-uuid: 3e39a682-ee7e-4d1b-8b07-5b68d8686728
+uuid: c4c1bf54-dfd8-4bda-944f-f033561e320f
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: kE25UNBZHvRyjg351sVKYFkq7OOQKn3qNYzBiWaeiz8
+ default_config_hash: xx7eKUcU6CgwxJyqaaW6ejdtFwaM31wFKFt2vQHf1UU
id: event_type
name: 'Event type'
+url_alias: event_type
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: event_type
-facet_source_id: 'search_api:views_page__event__page_listing'
+show_only_one_result: false
field_identifier: field_event_type
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__event__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -65,3 +56,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/facets.facet.resource_topics.yml b/config/sync/facets.facet.resource_topics.yml
similarity index 83%
rename from config/facets.facet.resource_topics.yml
rename to config/sync/facets.facet.resource_topics.yml
index 8b9c656..665fce2 100644
--- a/config/facets.facet.resource_topics.yml
+++ b/config/sync/facets.facet.resource_topics.yml
@@ -1,4 +1,4 @@
-uuid: a549a62e-82a6-4366-8ba0-bed5da401f5a
+uuid: ed3964e0-26d2-466f-8451-707a6cf3685e
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: IvtNPikEqWqteA2ShK97SiLcQmpwbNCV1y5JX5PBnCg
+ default_config_hash: d0quczNxNbwfBxOLRMJyE0zt3FZaKwuPueTZKglsGrQ
id: resource_topics
name: 'Resource Topics'
+url_alias: resource_topics
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: resource_topics
-facet_source_id: 'search_api:views_page__resource__page_listing'
+show_only_one_result: false
field_identifier: field_topics
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__resource__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/facets.facet.resource_type.yml b/config/sync/facets.facet.resource_type.yml
similarity index 83%
rename from config/facets.facet.resource_type.yml
rename to config/sync/facets.facet.resource_type.yml
index 3ec15d4..636d46c 100644
--- a/config/facets.facet.resource_type.yml
+++ b/config/sync/facets.facet.resource_type.yml
@@ -1,4 +1,4 @@
-uuid: 586a374d-6c21-4d16-8777-d00213470810
+uuid: feb7800c-9a1e-4ff8-972e-190add135565
langcode: en
status: true
dependencies:
@@ -8,26 +8,15 @@ dependencies:
module:
- search_api
_core:
- default_config_hash: M4w4qruChjiuXlZnQm9tlawCcs72T3LUt3N5iEXAPSI
+ default_config_hash: dWiTObVbkzZ7rYdfE5F0PLz49Z7dQbuxaTa-kfpkdA0
id: resource_type
name: 'Resource type'
+url_alias: resource_type
weight: 0
min_count: 1
-missing: false
-missing_label: others
-url_alias: resource_type
-facet_source_id: 'search_api:views_page__resource__page_listing'
+show_only_one_result: false
field_identifier: field_resource_type
-query_operator: or
-hard_limit: 0
-exclude: false
-use_hierarchy: false
-keep_hierarchy_parents_active: false
-hierarchy:
- type: taxonomy
- config: { }
-expand_hierarchy: false
-enable_parent_when_child_gets_disabled: true
+facet_source_id: 'search_api:views_page__resource__page_listing'
widget:
type: checkbox
config:
@@ -36,11 +25,13 @@ widget:
soft_limit_settings:
show_less_label: 'Show fewer'
show_more_label: 'Show more'
-empty_behavior:
- behavior: none
+query_operator: or
+use_hierarchy: false
+expand_hierarchy: false
+enable_parent_when_child_gets_disabled: true
+hard_limit: 0
+exclude: false
only_visible_when_facet_source_is_visible: true
-show_only_one_result: false
-show_title: null
processor_configs:
display_value_widget_order:
processor_id: display_value_widget_order
@@ -59,3 +50,6 @@ processor_configs:
pre_query: -10
build: -10
settings: { }
+empty_behavior:
+ behavior: none
+show_title: null
diff --git a/config/field.field.block_content.basic.body.yml b/config/sync/field.field.block_content.basic.body.yml
similarity index 87%
rename from config/field.field.block_content.basic.body.yml
rename to config/sync/field.field.block_content.basic.body.yml
index 246bdcb..a53c7b1 100644
--- a/config/field.field.block_content.basic.body.yml
+++ b/config/sync/field.field.block_content.basic.body.yml
@@ -1,4 +1,4 @@
-uuid: 7e5c8823-9b16-4e22-903c-7435abd45ed5
+uuid: 699e1fbd-0c14-4794-913d-e6b83836bd71
langcode: en
status: true
dependencies:
@@ -21,5 +21,4 @@ default_value: { }
default_value_callback: ''
settings:
display_summary: false
- required_summary: false
field_type: text_with_summary
diff --git a/config/field.field.block_content.slide.field_slide.yml b/config/sync/field.field.block_content.slide.field_slide.yml
similarity index 95%
rename from config/field.field.block_content.slide.field_slide.yml
rename to config/sync/field.field.block_content.slide.field_slide.yml
index 763680f..444ba93 100644
--- a/config/field.field.block_content.slide.field_slide.yml
+++ b/config/sync/field.field.block_content.slide.field_slide.yml
@@ -1,4 +1,4 @@
-uuid: 3a1f1b11-ae07-41f5-9cae-de764eec9196
+uuid: b4985f0e-5ba8-40c7-a2c0-1196744e3df2
langcode: en
status: true
dependencies:
@@ -33,8 +33,8 @@ settings:
weight: 7
enabled: false
slide:
- weight: 8
enabled: true
+ weight: 8
text:
weight: 9
enabled: false
diff --git a/config/field.field.comment.comment.comment_body.yml b/config/sync/field.field.comment.comment.comment_body.yml
similarity index 76%
rename from config/field.field.comment.comment.comment_body.yml
rename to config/sync/field.field.comment.comment.comment_body.yml
index 19de05c..7c3f284 100644
--- a/config/field.field.comment.comment.comment_body.yml
+++ b/config/sync/field.field.comment.comment.comment_body.yml
@@ -1,4 +1,4 @@
-uuid: 0e5deabf-53f0-4f5a-985f-c25157261c3e
+uuid: bd005719-f3a7-4962-9953-54ceac200862
langcode: en
status: true
dependencies:
@@ -6,12 +6,7 @@ dependencies:
- comment.type.comment
- field.storage.comment.comment_body
module:
- - allowed_formats
- text
-third_party_settings:
- allowed_formats:
- allowed_formats:
- - markdown
_core:
default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs
id: comment.comment.comment_body
diff --git a/config/sync/field.field.group.group.field_group_address.yml b/config/sync/field.field.group.group.field_group_address.yml
new file mode 100644
index 0000000..edae4fd
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_address.yml
@@ -0,0 +1,38 @@
+uuid: e6e1f5f1-69f6-42e4-bbe5-ac66ddde21d7
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_address
+ - group.type.group
+ module:
+ - address
+_core:
+ default_config_hash: YV69ZGMVHWXLP4cFdmrxd67jPDJxRETyyU6Pn29VAcs
+id: group.group.field_group_address
+field_name: field_group_address
+entity_type: group
+bundle: group
+label: Address
+description: 'Enter the full address for your group, starting by selecting your country and then complete the remaining fields.'
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings:
+ available_countries: { }
+ fields:
+ administrativeArea: administrativeArea
+ locality: locality
+ dependentLocality: dependentLocality
+ postalCode: postalCode
+ sortingCode: sortingCode
+ addressLine1: addressLine1
+ addressLine2: addressLine2
+ organization: '0'
+ givenName: '0'
+ additionalName: '0'
+ familyName: '0'
+ langcode_override: ''
+ field_overrides: { }
+field_type: address
diff --git a/config/sync/field.field.group.group.field_group_description.yml b/config/sync/field.field.group.group.field_group_description.yml
new file mode 100644
index 0000000..bb298aa
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_description.yml
@@ -0,0 +1,36 @@
+uuid: 08d6d7e7-e688-48d8-a29a-bd88a37b1da8
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_description
+ - group.type.group
+ module:
+ - entity_reference_revisions
+_core:
+ default_config_hash: rS6rvm5AcSWung7T3MIg1x-1gsajWAY0JdYT776JHwc
+id: group.group.field_group_description
+field_name: field_group_description
+entity_type: group
+bundle: group
+label: 'Group description'
+description: 'Start by adding a text paragraph and provide a detailed description of your group. You can also add image and download paragraphs if desired.'
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings:
+ handler: 'default:paragraph'
+ handler_settings:
+ target_bundles: null
+ target_bundles_drag_drop:
+ text:
+ weight: -7
+ enabled: false
+ image:
+ weight: -6
+ enabled: false
+ file:
+ weight: -5
+ enabled: false
+field_type: entity_reference_revisions
diff --git a/config/sync/field.field.group.group.field_group_email.yml b/config/sync/field.field.group.group.field_group_email.yml
new file mode 100644
index 0000000..c2cbabb
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_email.yml
@@ -0,0 +1,21 @@
+uuid: 0ad7fd88-45e7-46c7-8295-adfa3a0179d0
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_email
+ - group.type.group
+_core:
+ default_config_hash: 60nrGVycL4_JSR1c4DmjspMsnL6LiJj7yk0nqw06Z-8
+id: group.group.field_group_email
+field_name: field_group_email
+entity_type: group
+bundle: group
+label: Email
+description: ''
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings: { }
+field_type: email
diff --git a/web/modules/custom/drutopia_creative_license/config/install/field.field.taxonomy_term.license.field_license_icon.yml b/config/sync/field.field.group.group.field_group_image.yml
similarity index 66%
rename from web/modules/custom/drutopia_creative_license/config/install/field.field.taxonomy_term.license.field_license_icon.yml
rename to config/sync/field.field.group.group.field_group_image.yml
index 77d8d51..f41271c 100644
--- a/web/modules/custom/drutopia_creative_license/config/install/field.field.taxonomy_term.license.field_license_icon.yml
+++ b/config/sync/field.field.group.group.field_group_image.yml
@@ -1,16 +1,19 @@
+uuid: 1fa70cfb-373c-431a-a639-bf69ae2d0812
langcode: en
status: true
dependencies:
config:
- - field.storage.taxonomy_term.field_license_icon
- - taxonomy.vocabulary.license
+ - field.storage.group.field_group_image
+ - group.type.group
module:
- image
-id: taxonomy_term.license.field_license_icon
-field_name: field_license_icon
-entity_type: taxonomy_term
-bundle: license
-label: Icon
+_core:
+ default_config_hash: KSAvOEJLJ6t207pUp9Tmzc5GzO5dTsYMZKhKcqE-1kU
+id: group.group.field_group_image
+field_name: field_group_image
+entity_type: group
+bundle: group
+label: Image
description: ''
required: false
translatable: false
diff --git a/config/sync/field.field.group.group.field_group_phone.yml b/config/sync/field.field.group.group.field_group_phone.yml
new file mode 100644
index 0000000..9c6ac15
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_phone.yml
@@ -0,0 +1,23 @@
+uuid: f3f85a15-f6ba-49fc-a49e-d74f5391a3cf
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_phone
+ - group.type.group
+ module:
+ - telephone
+_core:
+ default_config_hash: Fsn_e5Qr5WprC_joy07dXNIEA_SQ_yUYOXNHFPDxYUQ
+id: group.group.field_group_phone
+field_name: field_group_phone
+entity_type: group
+bundle: group
+label: Phone
+description: ''
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings: { }
+field_type: telephone
diff --git a/config/sync/field.field.group.group.field_group_summary.yml b/config/sync/field.field.group.group.field_group_summary.yml
new file mode 100644
index 0000000..0f04df1
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_summary.yml
@@ -0,0 +1,23 @@
+uuid: 7af4e709-8375-428d-aaf3-a12f10130558
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_summary
+ - group.type.group
+ module:
+ - text
+_core:
+ default_config_hash: 7TKUMBmS6z0QB6KOz9_H_BDWDD0suh-RclwqNRorvHw
+id: group.group.field_group_summary
+field_name: field_group_summary
+entity_type: group
+bundle: group
+label: Summary
+description: 'Add a brief description of your group that will appear on the listing page for all groups.'
+required: true
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings: { }
+field_type: text_long
diff --git a/config/sync/field.field.group.group.field_group_type.yml b/config/sync/field.field.group.group.field_group_type.yml
new file mode 100644
index 0000000..c73bc70
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_type.yml
@@ -0,0 +1,30 @@
+uuid: c0bb6e49-b221-46c4-a2b1-77d273234524
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_type
+ - group.type.group
+ - taxonomy.vocabulary.group_type
+_core:
+ default_config_hash: N-hIzyE1pPLM9rcFC_atXjWbeWA25Te2m1GBP5sUp1M
+id: group.group.field_group_type
+field_name: field_group_type
+entity_type: group
+bundle: group
+label: 'Group type'
+description: ''
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings:
+ handler: 'default:taxonomy_term'
+ handler_settings:
+ target_bundles:
+ group_type: group_type
+ sort:
+ field: _none
+ auto_create: false
+ auto_create_bundle: ''
+field_type: entity_reference
diff --git a/config/sync/field.field.group.group.field_group_website.yml b/config/sync/field.field.group.group.field_group_website.yml
new file mode 100644
index 0000000..01d1a3f
--- /dev/null
+++ b/config/sync/field.field.group.group.field_group_website.yml
@@ -0,0 +1,25 @@
+uuid: c5e38e5d-9580-4f5d-a01c-e8e3ff76b6c7
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group.field_group_website
+ - group.type.group
+ module:
+ - link
+_core:
+ default_config_hash: NLlzz0AluEgpBVlYb8urHlnOdDmLhQcfCw65aoXWxto
+id: group.group.field_group_website
+field_name: field_group_website
+entity_type: group
+bundle: group
+label: Website
+description: ''
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings:
+ link_type: 17
+ title: 1
+field_type: link
diff --git a/config/sync/field.field.group_content.group-group_membership.group_roles.yml b/config/sync/field.field.group_content.group-group_membership.group_roles.yml
new file mode 100644
index 0000000..c3a8fed
--- /dev/null
+++ b/config/sync/field.field.group_content.group-group_membership.group_roles.yml
@@ -0,0 +1,24 @@
+uuid: 2c41c204-9bd3-47a9-9e3b-68c8404fbeb8
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.group_content.group_roles
+ - group.content_type.group-group_membership
+_core:
+ default_config_hash: wQMaiWUVvlE0sqOWMjp1e94Tk5CS42kew4h91KoiMxY
+id: group_content.group-group_membership.group_roles
+field_name: group_roles
+entity_type: group_content
+bundle: group-group_membership
+label: Roles
+description: ''
+required: false
+translatable: true
+default_value: { }
+default_value_callback: ''
+settings:
+ handler: 'group_type:group_role'
+ handler_settings:
+ group_type_id: group
+field_type: entity_reference
diff --git a/config/field.field.node.action.body.yml b/config/sync/field.field.node.action.body.yml
similarity index 82%
rename from config/field.field.node.action.body.yml
rename to config/sync/field.field.node.action.body.yml
index f20d063..c7ff2c9 100644
--- a/config/field.field.node.action.body.yml
+++ b/config/sync/field.field.node.action.body.yml
@@ -1,4 +1,4 @@
-uuid: 283ef4e6-a792-416d-8013-f2367a82a13c
+uuid: c8b58f1a-1fd3-45d8-ab22-61f71af8e183
langcode: en
status: true
dependencies:
@@ -16,10 +16,9 @@ bundle: action
label: Body
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/config/field.field.node.action.field_action_end_date.yml b/config/sync/field.field.node.action.field_action_end_date.yml
similarity index 92%
rename from config/field.field.node.action.field_action_end_date.yml
rename to config/sync/field.field.node.action.field_action_end_date.yml
index 9415527..ba828f6 100644
--- a/config/field.field.node.action.field_action_end_date.yml
+++ b/config/sync/field.field.node.action.field_action_end_date.yml
@@ -1,4 +1,4 @@
-uuid: 351c7425-448d-40b6-9103-495cfc3a4295
+uuid: 2f3a3c1c-c1f2-4e8a-a857-658c3c277d56
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.action.field_action_link.yml b/config/sync/field.field.node.action.field_action_link.yml
similarity index 93%
rename from config/field.field.node.action.field_action_link.yml
rename to config/sync/field.field.node.action.field_action_link.yml
index eca5eac..c0ad147 100644
--- a/config/field.field.node.action.field_action_link.yml
+++ b/config/sync/field.field.node.action.field_action_link.yml
@@ -1,4 +1,4 @@
-uuid: 99d17adb-df99-48d7-b5eb-9ce41a9eff4a
+uuid: 6f56fea9-0824-4123-87c3-948263f9f93a
langcode: en
status: true
dependencies:
@@ -20,6 +20,6 @@ translatable: false
default_value: { }
default_value_callback: ''
settings:
- title: 1
link_type: 17
+ title: 1
field_type: link
diff --git a/config/field.field.node.action.field_action_type.yml b/config/sync/field.field.node.action.field_action_type.yml
similarity index 95%
rename from config/field.field.node.action.field_action_type.yml
rename to config/sync/field.field.node.action.field_action_type.yml
index a260624..491a16a 100644
--- a/config/field.field.node.action.field_action_type.yml
+++ b/config/sync/field.field.node.action.field_action_type.yml
@@ -1,4 +1,4 @@
-uuid: 3279b00d-9830-4119-b9b6-59bd1a3ef3b9
+uuid: 9bebbc48-d30e-4b6b-9348-c766e4036034
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.action.field_body_paragraph.yml b/config/sync/field.field.node.action.field_body_paragraph.yml
similarity index 92%
rename from config/field.field.node.action.field_body_paragraph.yml
rename to config/sync/field.field.node.action.field_body_paragraph.yml
index 7687c3f..06a1689 100644
--- a/config/field.field.node.action.field_body_paragraph.yml
+++ b/config/sync/field.field.node.action.field_body_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: 6c766b71-ec0d-439e-bef7-6ead0784225e
+uuid: 84f3a51d-d22b-4f7d-afe5-8a2e322c2c35
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: action
label: 'Body paragraph'
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
@@ -24,13 +24,13 @@ settings:
handler_settings:
target_bundles: null
target_bundles_drag_drop:
- file:
+ text:
weight: -7
enabled: false
image:
weight: -7
enabled: false
- text:
+ file:
weight: -7
enabled: false
field_type: entity_reference_revisions
diff --git a/config/field.field.node.action.field_image.yml b/config/sync/field.field.node.action.field_image.yml
similarity index 92%
rename from config/field.field.node.action.field_image.yml
rename to config/sync/field.field.node.action.field_image.yml
index b1d39d1..42b5765 100644
--- a/config/field.field.node.action.field_image.yml
+++ b/config/sync/field.field.node.action.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 8018a86e-5c06-4de7-b1bf-9954910bb8e2
+uuid: 65891756-41ea-467b-a810-cd7e2f124121
langcode: en
status: true
dependencies:
@@ -16,12 +16,10 @@ bundle: action
label: Image
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -37,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.action.field_meta_tags.yml b/config/sync/field.field.node.action.field_meta_tags.yml
similarity index 87%
rename from config/field.field.node.action.field_meta_tags.yml
rename to config/sync/field.field.node.action.field_meta_tags.yml
index e44db51..429bf6a 100644
--- a/config/field.field.node.action.field_meta_tags.yml
+++ b/config/sync/field.field.node.action.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 33e610b2-5d67-481e-bce5-d0142499ed39
+uuid: f3b3380c-38a5-4b6d-9bff-39fff72da3c9
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: action
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.action.field_summary.yml b/config/sync/field.field.node.action.field_summary.yml
similarity index 89%
rename from config/field.field.node.action.field_summary.yml
rename to config/sync/field.field.node.action.field_summary.yml
index a0f40e4..629a260 100644
--- a/config/field.field.node.action.field_summary.yml
+++ b/config/sync/field.field.node.action.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: 03f69e4f-5d5b-41d9-be33-7637d30e1d62
+uuid: 2e36be75-0458-4952-af42-326838c71495
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: action
label: Summary
description: 'Enter a short description of what this Action is about. The summary is displayed on Action teasers, such as on the Actions page. '
required: true
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.action.field_tags.yml b/config/sync/field.field.node.action.field_tags.yml
similarity index 90%
rename from config/field.field.node.action.field_tags.yml
rename to config/sync/field.field.node.action.field_tags.yml
index 5e3b964..9ab17c9 100644
--- a/config/field.field.node.action.field_tags.yml
+++ b/config/sync/field.field.node.action.field_tags.yml
@@ -1,4 +1,4 @@
-uuid: 1d282cc4-ec9a-46fc-98d0-5904f0d7ec56
+uuid: 1b5d0829-89ed-40b9-85f8-2aef2d927653
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: action
label: Tags
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.node.action.field_topics.yml b/config/sync/field.field.node.action.field_topics.yml
similarity index 90%
rename from config/field.field.node.action.field_topics.yml
rename to config/sync/field.field.node.action.field_topics.yml
index eb8bcc8..1575518 100644
--- a/config/field.field.node.action.field_topics.yml
+++ b/config/sync/field.field.node.action.field_topics.yml
@@ -1,4 +1,4 @@
-uuid: 462b55b5-3207-4ce0-8d18-32fe31f90456
+uuid: f002bbf1-b6f5-4933-9813-08c070452a33
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: action
label: Topics
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.node.article.body.yml b/config/sync/field.field.node.article.body.yml
similarity index 82%
rename from config/field.field.node.article.body.yml
rename to config/sync/field.field.node.article.body.yml
index dc5084b..f62bbd0 100644
--- a/config/field.field.node.article.body.yml
+++ b/config/sync/field.field.node.article.body.yml
@@ -1,4 +1,4 @@
-uuid: ee1ac27b-4714-4b50-833e-1cea7d1f32d0
+uuid: 73db9661-ce3c-4184-aea7-0cad292d6da0
langcode: en
status: true
dependencies:
@@ -16,10 +16,9 @@ bundle: article
label: Body
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/config/field.field.node.article.comment.yml b/config/sync/field.field.node.article.comment.yml
similarity index 90%
rename from config/field.field.node.article.comment.yml
rename to config/sync/field.field.node.article.comment.yml
index 4664baa..48dfaa6 100644
--- a/config/field.field.node.article.comment.yml
+++ b/config/sync/field.field.node.article.comment.yml
@@ -1,4 +1,4 @@
-uuid: 8dc12d0c-c55b-42ad-a003-9025972cdce4
+uuid: 59c41d5d-2e7f-4817-bc00-071db62e4964
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: article
label: Comments
description: ''
required: true
-translatable: false
+translatable: true
default_value:
-
status: 2
diff --git a/config/field.field.node.article.field_article_type.yml b/config/sync/field.field.node.article.field_article_type.yml
similarity index 95%
rename from config/field.field.node.article.field_article_type.yml
rename to config/sync/field.field.node.article.field_article_type.yml
index c9272e1..e92c3c3 100644
--- a/config/field.field.node.article.field_article_type.yml
+++ b/config/sync/field.field.node.article.field_article_type.yml
@@ -1,4 +1,4 @@
-uuid: 2b10b817-c448-4b3f-b1ac-c4174125d51c
+uuid: a29c44d8-42a7-4b91-b500-6f339755165c
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.article.field_authors.yml b/config/sync/field.field.node.article.field_authors.yml
similarity index 94%
rename from config/field.field.node.article.field_authors.yml
rename to config/sync/field.field.node.article.field_authors.yml
index eddab42..8578cb9 100644
--- a/config/field.field.node.article.field_authors.yml
+++ b/config/sync/field.field.node.article.field_authors.yml
@@ -1,4 +1,4 @@
-uuid: 53751c7b-e7f1-47f1-a40a-14eca94e5e54
+uuid: 1d6cf852-97b0-4406-94ec-c74633bcf874
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.article.field_body_paragraph.yml b/config/sync/field.field.node.article.field_body_paragraph.yml
similarity index 77%
rename from config/field.field.node.article.field_body_paragraph.yml
rename to config/sync/field.field.node.article.field_body_paragraph.yml
index 012a193..df549db 100644
--- a/config/field.field.node.article.field_body_paragraph.yml
+++ b/config/sync/field.field.node.article.field_body_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: 319cc662-6c5f-49d2-91f7-3b790b6210f5
+uuid: 08974b56-3dc2-4316-b991-2b650dff672c
langcode: en
status: true
dependencies:
@@ -9,11 +9,10 @@ dependencies:
- paragraphs.paragraphs_type.file
- paragraphs.paragraphs_type.image
- paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.video
module:
- entity_reference_revisions
_core:
- default_config_hash: zmbXArDMaD7OI9uW7TPK5-yqjX542fQ1zyARsCDKR58
+ default_config_hash: YuJh246GH9Tx1o7df3kXIVP4HK7b7ls2IZCzl_jDKII
id: node.article.field_body_paragraph
field_name: field_body_paragraph
entity_type: node
@@ -21,39 +20,35 @@ bundle: article
label: 'Body paragraph'
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
handler: 'default:paragraph'
handler_settings:
+ negate: 0
target_bundles:
text: text
image: image
file: file
- video: video
faq: faq
- negate: 0
target_bundles_drag_drop:
- faq:
- weight: -11
- enabled: true
- file:
- weight: -13
- enabled: true
- image:
- weight: -14
- enabled: true
- slide:
- weight: -10
- enabled: false
text:
- weight: -15
enabled: true
- update:
+ weight: -11
+ image:
+ enabled: true
+ weight: -10
+ file:
+ enabled: true
weight: -9
+ slide:
+ weight: -8
enabled: false
- video:
- weight: -12
+ update:
+ weight: -7
+ enabled: false
+ faq:
enabled: true
+ weight: 9
field_type: entity_reference_revisions
diff --git a/config/field.field.node.article.field_image.yml b/config/sync/field.field.node.article.field_image.yml
similarity index 92%
rename from config/field.field.node.article.field_image.yml
rename to config/sync/field.field.node.article.field_image.yml
index 63a9fdc..3d33a15 100644
--- a/config/field.field.node.article.field_image.yml
+++ b/config/sync/field.field.node.article.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 04e3f259-4b5e-4064-97ef-15a8e82359e1
+uuid: d5154686-ea88-4ded-9237-031127c2048d
langcode: en
status: true
dependencies:
@@ -16,20 +16,18 @@ bundle: article
label: Image
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
max_resolution: ''
min_resolution: ''
alt_field: true
- alt_field_required: true
title_field: false
+ alt_field_required: true
title_field_required: false
default_image:
uuid: null
@@ -37,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.article.field_meta_tags.yml b/config/sync/field.field.node.article.field_meta_tags.yml
similarity index 87%
rename from config/field.field.node.article.field_meta_tags.yml
rename to config/sync/field.field.node.article.field_meta_tags.yml
index 0ea5c0f..9cbc5fe 100644
--- a/config/field.field.node.article.field_meta_tags.yml
+++ b/config/sync/field.field.node.article.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 58b83dbd-df76-4a24-ba85-906c3297b183
+uuid: 03441842-7bfa-4faf-877e-7cfffdbcaf68
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: article
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 'a:0:{}'
diff --git a/config/field.field.node.article.field_summary.yml b/config/sync/field.field.node.article.field_summary.yml
similarity index 89%
rename from config/field.field.node.article.field_summary.yml
rename to config/sync/field.field.node.article.field_summary.yml
index afd379e..62a27d1 100644
--- a/config/field.field.node.article.field_summary.yml
+++ b/config/sync/field.field.node.article.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: dfe14e8d-d137-40b2-8d40-6284ccb8f56a
+uuid: 0492a670-9d78-415f-946a-fa62829f341d
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: article
label: Summary
description: 'Enter a short description of what this article is about. The summary is displayed on Article teasers, such as on the Articles page. '
required: true
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.article.field_tags.yml b/config/sync/field.field.node.article.field_tags.yml
similarity index 91%
rename from config/field.field.node.article.field_tags.yml
rename to config/sync/field.field.node.article.field_tags.yml
index f95a124..502b4db 100644
--- a/config/field.field.node.article.field_tags.yml
+++ b/config/sync/field.field.node.article.field_tags.yml
@@ -1,4 +1,4 @@
-uuid: 1749b3ab-14c0-4801-864e-2ffbf32ab0d3
+uuid: 3df7d320-7cbd-440d-a59a-41c05427b72d
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: article
label: Tags
description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"'
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.node.article.field_topics.yml b/config/sync/field.field.node.article.field_topics.yml
similarity index 92%
rename from config/field.field.node.article.field_topics.yml
rename to config/sync/field.field.node.article.field_topics.yml
index f1f031a..1c1804c 100644
--- a/config/field.field.node.article.field_topics.yml
+++ b/config/sync/field.field.node.article.field_topics.yml
@@ -1,4 +1,4 @@
-uuid: 4b1a1486-57bf-4035-80dd-75b0b0fe05a2
+uuid: cde6d17d-1f33-4859-af3c-dfc98fa7aad0
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: article
label: Topics
description: 'Choose one or more high-level topics to categorize your content across multiple content types.'
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.node.blog.body.yml b/config/sync/field.field.node.blog.body.yml
similarity index 86%
rename from config/field.field.node.blog.body.yml
rename to config/sync/field.field.node.blog.body.yml
index 9f5d6c7..c87a80b 100644
--- a/config/field.field.node.blog.body.yml
+++ b/config/sync/field.field.node.blog.body.yml
@@ -1,4 +1,4 @@
-uuid: 2ac9c607-2431-450f-8998-a6668f45c9ed
+uuid: 496292a6-b589-44ab-b11e-01a42cb8ed1b
langcode: en
status: true
dependencies:
@@ -21,5 +21,4 @@ default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/config/field.field.node.blog.comment.yml b/config/sync/field.field.node.blog.comment.yml
similarity index 83%
rename from config/field.field.node.blog.comment.yml
rename to config/sync/field.field.node.blog.comment.yml
index 45d2891..42e8430 100644
--- a/config/field.field.node.blog.comment.yml
+++ b/config/sync/field.field.node.blog.comment.yml
@@ -1,4 +1,4 @@
-uuid: 0a4ef9fa-57a1-4aaf-a938-e8f993f7532d
+uuid: 8c494b1a-6cb0-4e09-b26b-fd22d5046ac7
langcode: en
status: true
dependencies:
@@ -27,9 +27,9 @@ default_value:
comment_count: 0
default_value_callback: ''
settings:
- default_mode: 0
+ default_mode: 1
per_page: 50
- anonymous: 2
- form_location: true
- preview: 0
+ anonymous: 0
+ form_location: false
+ preview: 1
field_type: comment
diff --git a/config/field.field.node.blog.field_authors.yml b/config/sync/field.field.node.blog.field_authors.yml
similarity index 94%
rename from config/field.field.node.blog.field_authors.yml
rename to config/sync/field.field.node.blog.field_authors.yml
index f0f0650..1d9b9f2 100644
--- a/config/field.field.node.blog.field_authors.yml
+++ b/config/sync/field.field.node.blog.field_authors.yml
@@ -1,4 +1,4 @@
-uuid: 84bc2622-a124-4f41-b150-ab6dea294cef
+uuid: d34c967b-36b8-4699-8eb5-c374c7340afd
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.blog.field_body_paragraph.yml b/config/sync/field.field.node.blog.field_body_paragraph.yml
similarity index 50%
rename from config/field.field.node.blog.field_body_paragraph.yml
rename to config/sync/field.field.node.blog.field_body_paragraph.yml
index 7f13429..a8b3b56 100644
--- a/config/field.field.node.blog.field_body_paragraph.yml
+++ b/config/sync/field.field.node.blog.field_body_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: 884c9a63-1bfc-4640-b76e-c2243e91ef4b
+uuid: bcd3b3a8-6a0d-4071-9d10-7fe0a58d4b58
langcode: en
status: true
dependencies:
@@ -16,55 +16,21 @@ bundle: blog
label: 'Body paragraph'
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
handler: 'default:paragraph'
handler_settings:
target_bundles: null
- negate: 0
target_bundles_drag_drop:
- content_reference:
- weight: 15
- enabled: false
- faq:
- weight: 16
- enabled: false
- file:
+ text:
weight: -7
enabled: false
image:
weight: -7
enabled: false
- quotation_with_image:
- weight: 19
- enabled: false
- slide:
- weight: 20
- enabled: false
- storyline_header:
- weight: 21
- enabled: false
- storyline_item:
- weight: 22
- enabled: false
- text:
+ file:
weight: -7
enabled: false
- title:
- weight: 24
- enabled: false
- update:
- weight: 25
- enabled: false
- video:
- weight: 26
- enabled: false
- view:
- weight: 27
- enabled: false
- webform:
- weight: 28
- enabled: false
field_type: entity_reference_revisions
diff --git a/config/field.field.node.blog.field_image.yml b/config/sync/field.field.node.blog.field_image.yml
similarity index 81%
rename from config/field.field.node.blog.field_image.yml
rename to config/sync/field.field.node.blog.field_image.yml
index 1586beb..b9961bd 100644
--- a/config/field.field.node.blog.field_image.yml
+++ b/config/sync/field.field.node.blog.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 06d86a51-c4d8-4325-8728-23aaca6670bc
+uuid: e4dc51c7-dd0f-4032-bfed-5b19556722c2
langcode: en
status: true
dependencies:
@@ -6,14 +6,7 @@ dependencies:
- field.storage.node.field_image
- node.type.blog
module:
- - content_translation
- image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
_core:
default_config_hash: KPa9MXneq-CbAUQ62RWaehWwyDzjxtYbcSFrY5m6wNQ
id: node.blog.field_image
@@ -27,8 +20,6 @@ translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -44,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.blog.field_meta_tags.yml b/config/sync/field.field.node.blog.field_meta_tags.yml
similarity index 91%
rename from config/field.field.node.blog.field_meta_tags.yml
rename to config/sync/field.field.node.blog.field_meta_tags.yml
index 8a00234..314a863 100644
--- a/config/field.field.node.blog.field_meta_tags.yml
+++ b/config/sync/field.field.node.blog.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 5e0a1112-daa8-41c5-9a11-c3bd49c583b2
+uuid: 875a51df-a832-4d81-8337-cbaccbbbbf09
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.blog.field_summary.yml b/config/sync/field.field.node.blog.field_summary.yml
similarity index 93%
rename from config/field.field.node.blog.field_summary.yml
rename to config/sync/field.field.node.blog.field_summary.yml
index 696f266..5e2c816 100644
--- a/config/field.field.node.blog.field_summary.yml
+++ b/config/sync/field.field.node.blog.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: b6daf6fe-f0e0-448a-9bc7-a7b52840c985
+uuid: a3644191-96b9-46b7-a765-77417a2ed610
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.blog.field_tags.yml b/config/sync/field.field.node.blog.field_tags.yml
similarity index 93%
rename from config/field.field.node.blog.field_tags.yml
rename to config/sync/field.field.node.blog.field_tags.yml
index a0712d3..b1036b1 100644
--- a/config/field.field.node.blog.field_tags.yml
+++ b/config/sync/field.field.node.blog.field_tags.yml
@@ -1,4 +1,4 @@
-uuid: 4add46da-c6b0-4e8b-94e6-351fd871f86d
+uuid: ff879eec-8723-46fe-868f-bc854f2870cc
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.blog.field_topics.yml b/config/sync/field.field.node.blog.field_topics.yml
similarity index 94%
rename from config/field.field.node.blog.field_topics.yml
rename to config/sync/field.field.node.blog.field_topics.yml
index 82ee58c..c94e313 100644
--- a/config/field.field.node.blog.field_topics.yml
+++ b/config/sync/field.field.node.blog.field_topics.yml
@@ -1,4 +1,4 @@
-uuid: 17b1c2cb-c32b-4a5c-a1ee-ae275c711468
+uuid: e2cbad9d-2c20-458f-8c13-4e6b2f50d223
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.campaign.body.yml b/config/sync/field.field.node.campaign.body.yml
similarity index 82%
rename from config/field.field.node.campaign.body.yml
rename to config/sync/field.field.node.campaign.body.yml
index 1040863..00bee10 100644
--- a/config/field.field.node.campaign.body.yml
+++ b/config/sync/field.field.node.campaign.body.yml
@@ -1,4 +1,4 @@
-uuid: dac7624d-a1e9-43de-96a0-63c2fc83f29c
+uuid: b8c2abf8-8f96-42ac-9d04-01e5d094f964
langcode: en
status: true
dependencies:
@@ -16,10 +16,9 @@ bundle: campaign
label: Body
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/config/sync/field.field.node.campaign.field_body_paragraph.yml b/config/sync/field.field.node.campaign.field_body_paragraph.yml
new file mode 100644
index 0000000..a27139d
--- /dev/null
+++ b/config/sync/field.field.node.campaign.field_body_paragraph.yml
@@ -0,0 +1,45 @@
+uuid: 20e2b8f9-445d-4050-97e7-cad3ff468112
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.node.field_body_paragraph
+ - node.type.campaign
+ - paragraphs.paragraphs_type.file
+ - paragraphs.paragraphs_type.image
+ - paragraphs.paragraphs_type.text
+ module:
+ - entity_reference_revisions
+_core:
+ default_config_hash: eQ5Jp9J4OVS6YUsxeBfWQx6E-qgMTADFYWPtEZnV7oM
+id: node.campaign.field_body_paragraph
+field_name: field_body_paragraph
+entity_type: node
+bundle: campaign
+label: Background
+description: ''
+required: false
+translatable: true
+default_value: { }
+default_value_callback: ''
+settings:
+ handler: 'default:paragraph'
+ handler_settings:
+ target_bundles:
+ file: file
+ image: image
+ text: text
+ target_bundles_drag_drop:
+ file:
+ enabled: true
+ weight: -7
+ image:
+ enabled: true
+ weight: -7
+ text:
+ enabled: true
+ weight: -7
+ update:
+ weight: 8
+ enabled: false
+field_type: entity_reference_revisions
diff --git a/config/field.field.node.campaign.field_campaign_demands.yml b/config/sync/field.field.node.campaign.field_campaign_demands.yml
similarity index 95%
rename from config/field.field.node.campaign.field_campaign_demands.yml
rename to config/sync/field.field.node.campaign.field_campaign_demands.yml
index ee4b171..88cf8f3 100644
--- a/config/field.field.node.campaign.field_campaign_demands.yml
+++ b/config/sync/field.field.node.campaign.field_campaign_demands.yml
@@ -1,4 +1,4 @@
-uuid: 4340efc1-4734-4122-909e-66f723de389d
+uuid: a7b7ab26-dc5e-4706-a8e6-3be18155cf9c
langcode: en
status: true
dependencies:
@@ -26,13 +26,13 @@ settings:
target_bundles:
text: text
target_bundles_drag_drop:
+ text:
+ enabled: true
+ weight: -9
file:
weight: -8
enabled: false
image:
weight: -7
enabled: false
- text:
- weight: -9
- enabled: true
field_type: entity_reference_revisions
diff --git a/config/field.field.node.campaign.field_campaign_updates.yml b/config/sync/field.field.node.campaign.field_campaign_updates.yml
similarity index 95%
rename from config/field.field.node.campaign.field_campaign_updates.yml
rename to config/sync/field.field.node.campaign.field_campaign_updates.yml
index 1cca044..dc08186 100644
--- a/config/field.field.node.campaign.field_campaign_updates.yml
+++ b/config/sync/field.field.node.campaign.field_campaign_updates.yml
@@ -1,4 +1,4 @@
-uuid: b76c04b3-391f-42db-8c14-8f4159f130b1
+uuid: 37729a38-3b74-4d8a-b176-30ef5874517f
langcode: en
status: true
dependencies:
@@ -26,16 +26,16 @@ settings:
target_bundles:
update: update
target_bundles_drag_drop:
+ text:
+ weight: -9
+ enabled: false
file:
weight: -8
enabled: false
image:
weight: -7
enabled: false
- text:
- weight: -9
- enabled: false
update:
- weight: 8
enabled: true
+ weight: 8
field_type: entity_reference_revisions
diff --git a/config/field.field.node.campaign.field_image.yml b/config/sync/field.field.node.campaign.field_image.yml
similarity index 92%
rename from config/field.field.node.campaign.field_image.yml
rename to config/sync/field.field.node.campaign.field_image.yml
index 959ca4d..6837299 100644
--- a/config/field.field.node.campaign.field_image.yml
+++ b/config/sync/field.field.node.campaign.field_image.yml
@@ -1,4 +1,4 @@
-uuid: f30ca93f-9aa1-4aca-9b76-a240eedc4f5b
+uuid: ad226edf-359e-4d1c-837c-031297d09dc9
langcode: en
status: true
dependencies:
@@ -16,12 +16,10 @@ bundle: campaign
label: Image
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -37,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.campaign.field_meta_tags.yml b/config/sync/field.field.node.campaign.field_meta_tags.yml
similarity index 88%
rename from config/field.field.node.campaign.field_meta_tags.yml
rename to config/sync/field.field.node.campaign.field_meta_tags.yml
index 4c224ac..e763a5a 100644
--- a/config/field.field.node.campaign.field_meta_tags.yml
+++ b/config/sync/field.field.node.campaign.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 1b0ab8da-6a6a-4487-9923-1a4248396821
+uuid: 9a875fe9-7098-4d80-906c-12b2329c63ff
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: campaign
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 'a:0:{}'
diff --git a/config/field.field.node.campaign.field_summary.yml b/config/sync/field.field.node.campaign.field_summary.yml
similarity index 90%
rename from config/field.field.node.campaign.field_summary.yml
rename to config/sync/field.field.node.campaign.field_summary.yml
index 306ac5e..4589bf5 100644
--- a/config/field.field.node.campaign.field_summary.yml
+++ b/config/sync/field.field.node.campaign.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: 46a57f86-4a0a-44f7-9074-2c26a9c8b8ec
+uuid: 05b19669-0e70-4202-aeac-308ef9d35eb4
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: campaign
label: Summary
description: 'Enter a short description (one or two sentences) of what this campaign is about. The summary is displayed on Campaign teasers, such as on the Campaigns page. '
required: true
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.event.body.yml b/config/sync/field.field.node.event.body.yml
similarity index 82%
rename from config/field.field.node.event.body.yml
rename to config/sync/field.field.node.event.body.yml
index cc09005..5659231 100644
--- a/config/field.field.node.event.body.yml
+++ b/config/sync/field.field.node.event.body.yml
@@ -1,4 +1,4 @@
-uuid: 126399a6-dacb-40a0-ae31-3992ef737e44
+uuid: e2174de7-51a9-4878-8887-950561613993
langcode: en
status: true
dependencies:
@@ -16,10 +16,9 @@ bundle: event
label: Body
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/config/field.field.node.event.field_body_paragraph.yml b/config/sync/field.field.node.event.field_body_paragraph.yml
similarity index 96%
rename from config/field.field.node.event.field_body_paragraph.yml
rename to config/sync/field.field.node.event.field_body_paragraph.yml
index 8346420..33e1902 100644
--- a/config/field.field.node.event.field_body_paragraph.yml
+++ b/config/sync/field.field.node.event.field_body_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: 3bd5f083-14d1-439f-b7a7-4bd4d1ae9244
+uuid: bc89e121-e48a-44ab-b702-e35f31e87130
langcode: en
status: true
dependencies:
@@ -30,18 +30,18 @@ settings:
image: image
file: file
target_bundles_drag_drop:
- file:
- weight: -9
+ text:
enabled: true
+ weight: -11
image:
- weight: -10
enabled: true
+ weight: -10
+ file:
+ enabled: true
+ weight: -9
slide:
weight: -8
enabled: false
- text:
- weight: -11
- enabled: true
update:
weight: -7
enabled: false
diff --git a/config/field.field.node.event.field_event_date.yml b/config/sync/field.field.node.event.field_event_date.yml
similarity index 93%
rename from config/field.field.node.event.field_event_date.yml
rename to config/sync/field.field.node.event.field_event_date.yml
index 44cd783..6330a94 100644
--- a/config/field.field.node.event.field_event_date.yml
+++ b/config/sync/field.field.node.event.field_event_date.yml
@@ -1,4 +1,4 @@
-uuid: 30a8e624-0c0e-4c3f-a946-a2e43bcb1c4a
+uuid: 28838ee1-743f-4591-8860-10fa3d1cb170
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.event.field_event_type.yml b/config/sync/field.field.node.event.field_event_type.yml
similarity index 95%
rename from config/field.field.node.event.field_event_type.yml
rename to config/sync/field.field.node.event.field_event_type.yml
index c8fc120..32c27c6 100644
--- a/config/field.field.node.event.field_event_type.yml
+++ b/config/sync/field.field.node.event.field_event_type.yml
@@ -1,4 +1,4 @@
-uuid: 6b3a8073-7c38-4746-9761-1eb0f250d7b1
+uuid: 39bd0d21-4779-487a-881e-0a4105e7b2d9
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.event.field_image.yml b/config/sync/field.field.node.event.field_image.yml
similarity index 92%
rename from config/field.field.node.event.field_image.yml
rename to config/sync/field.field.node.event.field_image.yml
index 08c4a7b..7811aa1 100644
--- a/config/field.field.node.event.field_image.yml
+++ b/config/sync/field.field.node.event.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 76a87482-9cb5-4a28-88a1-3011db355e08
+uuid: bf14068d-377d-4fc2-b2fb-ea60ac140497
langcode: en
status: true
dependencies:
@@ -16,12 +16,10 @@ bundle: event
label: Image
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -37,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.event.field_meta_tags.yml b/config/sync/field.field.node.event.field_meta_tags.yml
similarity index 87%
rename from config/field.field.node.event.field_meta_tags.yml
rename to config/sync/field.field.node.event.field_meta_tags.yml
index 7931c6d..b14102f 100644
--- a/config/field.field.node.event.field_meta_tags.yml
+++ b/config/sync/field.field.node.event.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 8ac7d457-76c8-4fd5-8ff0-f5ea48f09381
+uuid: e168d6e4-2061-4560-8957-a926662df06b
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: event
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 'a:0:{}'
diff --git a/config/field.field.node.event.field_summary.yml b/config/sync/field.field.node.event.field_summary.yml
similarity index 93%
rename from config/field.field.node.event.field_summary.yml
rename to config/sync/field.field.node.event.field_summary.yml
index 2974c95..0aae2d6 100644
--- a/config/field.field.node.event.field_summary.yml
+++ b/config/sync/field.field.node.event.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: ef61ae3c-2859-4673-9e92-da8a261e2786
+uuid: 4728b395-539a-427e-babf-e2644e84dc4c
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.event.field_tags.yml b/config/sync/field.field.node.event.field_tags.yml
similarity index 91%
rename from config/field.field.node.event.field_tags.yml
rename to config/sync/field.field.node.event.field_tags.yml
index 5914336..6683ceb 100644
--- a/config/field.field.node.event.field_tags.yml
+++ b/config/sync/field.field.node.event.field_tags.yml
@@ -1,4 +1,4 @@
-uuid: c0a1ccff-99d8-4e6b-9b35-8f4f9be904f5
+uuid: 8fdee041-de4a-40fa-a256-59bc32aff35c
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: event
label: Tags
description: 'Enter a comma separated list. Try to use existing terms which will be suggested as you type.'
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.node.event.field_topics.yml b/config/sync/field.field.node.event.field_topics.yml
similarity index 90%
rename from config/field.field.node.event.field_topics.yml
rename to config/sync/field.field.node.event.field_topics.yml
index b2aa038..ae3d7ab 100644
--- a/config/field.field.node.event.field_topics.yml
+++ b/config/sync/field.field.node.event.field_topics.yml
@@ -1,4 +1,4 @@
-uuid: eedcb340-8c03-4d9f-a895-117b03b85d22
+uuid: 4a3651f6-c6ee-4a2b-b319-119ecdd4b80c
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: event
label: Topics
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/sync/field.field.node.landing_page.field_body_paragraph.yml b/config/sync/field.field.node.landing_page.field_body_paragraph.yml
new file mode 100644
index 0000000..22672c2
--- /dev/null
+++ b/config/sync/field.field.node.landing_page.field_body_paragraph.yml
@@ -0,0 +1,50 @@
+uuid: 652c58f8-2ed8-453d-bff7-a0649b1826d0
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.node.field_body_paragraph
+ - node.type.landing_page
+ - paragraphs.paragraphs_type.file
+ - paragraphs.paragraphs_type.image
+ - paragraphs.paragraphs_type.slide
+ - paragraphs.paragraphs_type.text
+ module:
+ - entity_reference_revisions
+_core:
+ default_config_hash: SY6szifQZxW4ucxM-P_RlOcopaMTOymNXiEZPLSvDec
+id: node.landing_page.field_body_paragraph
+field_name: field_body_paragraph
+entity_type: node
+bundle: landing_page
+label: 'Body paragraph'
+description: ''
+required: false
+translatable: true
+default_value: { }
+default_value_callback: ''
+settings:
+ handler: 'default:paragraph'
+ handler_settings:
+ target_bundles:
+ text: text
+ file: file
+ image: image
+ slide: slide
+ target_bundles_drag_drop:
+ text:
+ enabled: true
+ weight: -9
+ file:
+ enabled: true
+ weight: -8
+ image:
+ enabled: true
+ weight: -7
+ update:
+ weight: -6
+ enabled: false
+ slide:
+ enabled: true
+ weight: 8
+field_type: entity_reference_revisions
diff --git a/config/field.field.node.landing_page.field_meta_tags.yml b/config/sync/field.field.node.landing_page.field_meta_tags.yml
similarity index 91%
rename from config/field.field.node.landing_page.field_meta_tags.yml
rename to config/sync/field.field.node.landing_page.field_meta_tags.yml
index 81073c8..9601845 100644
--- a/config/field.field.node.landing_page.field_meta_tags.yml
+++ b/config/sync/field.field.node.landing_page.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: fdadfcfa-6b69-4065-a3ef-422753cb21ea
+uuid: 8455d375-73b7-426c-bee4-823c0dbd6085
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.page.body.yml b/config/sync/field.field.node.page.body.yml
similarity index 86%
rename from config/field.field.node.page.body.yml
rename to config/sync/field.field.node.page.body.yml
index 48a1be3..f5b2a3f 100644
--- a/config/field.field.node.page.body.yml
+++ b/config/sync/field.field.node.page.body.yml
@@ -1,4 +1,4 @@
-uuid: 64e5b50d-f710-4f12-87fd-fe44594f7c15
+uuid: 928b8f63-0d55-47ba-afe2-f16608124664
langcode: en
status: true
dependencies:
@@ -21,5 +21,4 @@ default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.field_body_paragraph.yml b/config/sync/field.field.node.page.field_body_paragraph.yml
similarity index 65%
rename from web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.field_body_paragraph.yml
rename to config/sync/field.field.node.page.field_body_paragraph.yml
index ccb826c..14384e2 100644
--- a/web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.field_body_paragraph.yml
+++ b/config/sync/field.field.node.page.field_body_paragraph.yml
@@ -1,25 +1,27 @@
+uuid: eff2eb03-8134-489f-8e8f-921a4303fd87
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_body_paragraph
- - node.type.case_study
+ - node.type.page
+ - paragraphs.paragraphs_type.faq
- paragraphs.paragraphs_type.file
- paragraphs.paragraphs_type.image
- paragraphs.paragraphs_type.slide
- - paragraphs.paragraphs_type.storyline_header
- - paragraphs.paragraphs_type.storyline_item
- paragraphs.paragraphs_type.text
- paragraphs.paragraphs_type.update
module:
- entity_reference_revisions
-id: node.case_study.field_body_paragraph
+_core:
+ default_config_hash: pzHKcTxgY8UnpROWkLq7oO4li5xwB71u0em_dj6yVaU
+id: node.page.field_body_paragraph
field_name: field_body_paragraph
entity_type: node
-bundle: case_study
+bundle: page
label: 'Body paragraph'
description: ''
-required: true
+required: false
translatable: true
default_value: { }
default_value_callback: ''
@@ -28,36 +30,29 @@ settings:
handler_settings:
negate: 0
target_bundles:
- file: file
- image: image
- slide: slide
- storyline_header: storyline_header
- storyline_item: storyline_item
text: text
+ image: image
+ file: file
+ slide: slide
update: update
+ faq: faq
target_bundles_drag_drop:
- faq:
- weight: 9
- enabled: false
- file:
- enabled: true
- weight: 10
- image:
- enabled: true
- weight: 11
- slide:
- enabled: true
- weight: 12
- storyline_header:
- enabled: true
- weight: 13
- storyline_item:
- enabled: true
- weight: 14
text:
enabled: true
- weight: 15
+ weight: -11
+ image:
+ enabled: true
+ weight: -10
+ file:
+ enabled: true
+ weight: -9
+ slide:
+ enabled: true
+ weight: -8
update:
enabled: true
- weight: 16
+ weight: -7
+ faq:
+ enabled: true
+ weight: 9
field_type: entity_reference_revisions
diff --git a/config/field.field.node.people.field_people_public_gpg_key.yml b/config/sync/field.field.node.page.field_file.yml
similarity index 53%
rename from config/field.field.node.people.field_people_public_gpg_key.yml
rename to config/sync/field.field.node.page.field_file.yml
index 84af0d6..f1c58e3 100644
--- a/config/field.field.node.people.field_people_public_gpg_key.yml
+++ b/config/sync/field.field.node.page.field_file.yml
@@ -1,27 +1,27 @@
-uuid: d2dd2b85-18ec-42d5-8340-47d89e136125
+uuid: f2978e92-efe9-45a5-b412-5e3e5ac98681
langcode: en
status: true
dependencies:
config:
- - field.storage.node.field_people_public_gpg_key
- - node.type.people
+ - field.storage.node.field_file
+ - node.type.page
module:
- file
-id: node.people.field_people_public_gpg_key
-field_name: field_people_public_gpg_key
+id: node.page.field_file
+field_name: field_file
entity_type: node
-bundle: people
-label: 'Public GPG Key'
+bundle: page
+label: file
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings:
+ file_directory: '[date:custom:Y]-[date:custom:m]'
+ file_extensions: 'txt pdf svg rtf odt odp ppt'
+ max_filesize: ''
+ description_field: false
handler: 'default:file'
handler_settings: { }
- file_directory: '[date:custom:Y]-[date:custom:m]'
- file_extensions: asc
- max_filesize: ''
- description_field: true
field_type: file
diff --git a/web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.field_image.yml b/config/sync/field.field.node.page.field_image.yml
similarity index 86%
rename from web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.field_image.yml
rename to config/sync/field.field.node.page.field_image.yml
index b3fe1c0..8d66b2c 100644
--- a/web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.field_image.yml
+++ b/config/sync/field.field.node.page.field_image.yml
@@ -1,15 +1,16 @@
+uuid: 16782cd7-a9f3-4cf1-8e5b-eba74b6f239c
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_image
- - node.type.case_study
+ - node.type.page
module:
- image
-id: node.case_study.field_image
+id: node.page.field_image
field_name: field_image
entity_type: node
-bundle: case_study
+bundle: page
label: Image
description: ''
required: false
diff --git a/config/field.field.node.page.field_meta_tags.yml b/config/sync/field.field.node.page.field_meta_tags.yml
similarity index 87%
rename from config/field.field.node.page.field_meta_tags.yml
rename to config/sync/field.field.node.page.field_meta_tags.yml
index aa3178a..84625c9 100644
--- a/config/field.field.node.page.field_meta_tags.yml
+++ b/config/sync/field.field.node.page.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 61e848f0-50de-478d-8d76-f0fd4bc66efb
+uuid: acdfef75-ff0a-4e24-9598-c9a6fa862e6c
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: page
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 'a:0:{}'
diff --git a/config/field.field.node.page.field_storyline.yml b/config/sync/field.field.node.page.field_storyline.yml
similarity index 94%
rename from config/field.field.node.page.field_storyline.yml
rename to config/sync/field.field.node.page.field_storyline.yml
index 0a36591..fe49599 100644
--- a/config/field.field.node.page.field_storyline.yml
+++ b/config/sync/field.field.node.page.field_storyline.yml
@@ -1,4 +1,4 @@
-uuid: c51cc9ff-e3ca-4c1d-b2b3-3c32b21a5476
+uuid: 7aa72f38-e28f-4cf0-8fe5-109b53a9206d
langcode: en
status: true
dependencies:
@@ -18,16 +18,16 @@ bundle: page
label: storyline
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings:
handler: 'default:paragraph'
handler_settings:
+ negate: 0
target_bundles:
storyline_header: storyline_header
storyline_item: storyline_item
- negate: 0
target_bundles_drag_drop:
file:
weight: 8
@@ -38,15 +38,15 @@ settings:
slide:
weight: 10
enabled: false
- storyline_header:
- weight: 12
- enabled: true
- storyline_item:
- weight: 13
- enabled: true
text:
weight: 11
enabled: false
+ storyline_header:
+ enabled: true
+ weight: 12
+ storyline_item:
+ enabled: true
+ weight: 13
update:
weight: 14
enabled: false
diff --git a/config/field.field.node.page.field_summary.yml b/config/sync/field.field.node.page.field_summary.yml
similarity index 92%
rename from config/field.field.node.page.field_summary.yml
rename to config/sync/field.field.node.page.field_summary.yml
index 73f6cc3..f159ac3 100644
--- a/config/field.field.node.page.field_summary.yml
+++ b/config/sync/field.field.node.page.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: 5d8c9bde-c60e-400c-ab6f-c7be4f654147
+uuid: 2be57134-d054-41c9-b7d4-e76f889d22bb
langcode: en
status: true
dependencies:
diff --git a/web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.body.yml b/config/sync/field.field.node.people.body.yml
similarity index 63%
rename from web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.body.yml
rename to config/sync/field.field.node.people.body.yml
index 089fd6b..5cc4e9c 100644
--- a/web/modules/custom/drutopia_case_study/config/install/field.field.node.case_study.body.yml
+++ b/config/sync/field.field.node.people.body.yml
@@ -1,15 +1,18 @@
+uuid: 94b12d74-6538-41e9-8745-998d580995d7
langcode: en
status: true
dependencies:
config:
- field.storage.node.body
- - node.type.case_study
+ - node.type.people
module:
- text
-id: node.case_study.body
+_core:
+ default_config_hash: PQrxAoR4WjWtMMi0DJ3U_Ig_xJiK4fUi3gguwvrIkh0
+id: node.people.body
field_name: body
entity_type: node
-bundle: case_study
+bundle: people
label: Body
description: ''
required: false
diff --git a/config/sync/field.field.node.people.field_body_paragraph.yml b/config/sync/field.field.node.people.field_body_paragraph.yml
new file mode 100644
index 0000000..59555f9
--- /dev/null
+++ b/config/sync/field.field.node.people.field_body_paragraph.yml
@@ -0,0 +1,49 @@
+uuid: 87561bdd-c913-4969-80d5-91abfb408fce
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.node.field_body_paragraph
+ - node.type.people
+ - paragraphs.paragraphs_type.file
+ - paragraphs.paragraphs_type.image
+ - paragraphs.paragraphs_type.text
+ module:
+ - entity_reference_revisions
+_core:
+ default_config_hash: 0bKKOd0u6BWVA8_qN4zyQ9RnJerQ1i_ojb8vX7xsS-c
+id: node.people.field_body_paragraph
+field_name: field_body_paragraph
+entity_type: node
+bundle: people
+label: Bio
+description: ''
+required: false
+translatable: true
+default_value: { }
+default_value_callback: ''
+settings:
+ handler: 'default:paragraph'
+ handler_settings:
+ negate: 0
+ target_bundles:
+ file: file
+ image: image
+ text: text
+ target_bundles_drag_drop:
+ file:
+ enabled: true
+ weight: -7
+ image:
+ enabled: true
+ weight: -7
+ text:
+ enabled: true
+ weight: -7
+ slide:
+ weight: 8
+ enabled: false
+ update:
+ weight: 10
+ enabled: false
+field_type: entity_reference_revisions
diff --git a/config/field.field.node.people.field_image.yml b/config/sync/field.field.node.people.field_image.yml
similarity index 92%
rename from config/field.field.node.people.field_image.yml
rename to config/sync/field.field.node.people.field_image.yml
index 1a275fc..b39158d 100644
--- a/config/field.field.node.people.field_image.yml
+++ b/config/sync/field.field.node.people.field_image.yml
@@ -1,4 +1,4 @@
-uuid: dba68e5f-c225-417b-96f3-a65776f30701
+uuid: 08329354-968c-4625-8200-ca9f697e85dc
langcode: en
status: true
dependencies:
@@ -16,12 +16,10 @@ bundle: people
label: Image
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -37,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.people.field_meta_tags.yml b/config/sync/field.field.node.people.field_meta_tags.yml
similarity index 87%
rename from config/field.field.node.people.field_meta_tags.yml
rename to config/sync/field.field.node.people.field_meta_tags.yml
index 5ade33f..e0a166c 100644
--- a/config/field.field.node.people.field_meta_tags.yml
+++ b/config/sync/field.field.node.people.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 4ea6e1c1-99b0-49ae-a734-b81616c8b467
+uuid: 8edfaefb-7fb1-4b17-924b-d6158bb80938
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: people
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.people.field_people_position.yml b/config/sync/field.field.node.people.field_people_position.yml
similarity index 91%
rename from config/field.field.node.people.field_people_position.yml
rename to config/sync/field.field.node.people.field_people_position.yml
index 595eaeb..c037a46 100644
--- a/config/field.field.node.people.field_people_position.yml
+++ b/config/sync/field.field.node.people.field_people_position.yml
@@ -1,4 +1,4 @@
-uuid: ff25ca23-c364-4d29-9070-fad433822684
+uuid: 7b7957b0-203e-4293-8648-db0d42ad4f9b
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.people.field_people_type.yml b/config/sync/field.field.node.people.field_people_type.yml
similarity index 95%
rename from config/field.field.node.people.field_people_type.yml
rename to config/sync/field.field.node.people.field_people_type.yml
index df91f27..48333fc 100644
--- a/config/field.field.node.people.field_people_type.yml
+++ b/config/sync/field.field.node.people.field_people_type.yml
@@ -1,4 +1,4 @@
-uuid: de682cd4-4c4d-41b8-8d2d-065b110a079d
+uuid: 3a4c2e9c-7f84-427b-a910-866c54a11cb0
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.people.field_summary.yml b/config/sync/field.field.node.people.field_summary.yml
similarity index 76%
rename from config/field.field.node.people.field_summary.yml
rename to config/sync/field.field.node.people.field_summary.yml
index 210a612..67cf9ac 100644
--- a/config/field.field.node.people.field_summary.yml
+++ b/config/sync/field.field.node.people.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: 7e1a3e8d-1d46-4951-bce6-f76465cc9394
+uuid: b70fe223-41b2-43c6-aaef-8b2cd931285d
langcode: en
status: true
dependencies:
@@ -6,12 +6,7 @@ dependencies:
- field.storage.node.field_summary
- node.type.people
module:
- - allowed_formats
- text
-third_party_settings:
- allowed_formats:
- allowed_formats:
- - minimalhtmltitle
_core:
default_config_hash: EXOljgShOmy983x8K_RBAJkJ2cWknYTQvOdpbfg3EC4
id: node.people.field_summary
@@ -21,7 +16,7 @@ bundle: people
label: Summary
description: 'Enter a short description of what this person is about. The summary is displayed on People teasers, such as on the Staff page. '
required: true
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.resource.body.yml b/config/sync/field.field.node.resource.body.yml
similarity index 82%
rename from config/field.field.node.resource.body.yml
rename to config/sync/field.field.node.resource.body.yml
index 4aa1039..f467145 100644
--- a/config/field.field.node.resource.body.yml
+++ b/config/sync/field.field.node.resource.body.yml
@@ -1,4 +1,4 @@
-uuid: 8cc76121-ea59-4966-a561-e818e4470137
+uuid: b6a7d4ee-66bb-4c61-b79c-5ed97d73877b
langcode: en
status: true
dependencies:
@@ -16,10 +16,9 @@ bundle: resource
label: Body
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
display_summary: true
- required_summary: false
field_type: text_with_summary
diff --git a/config/field.field.node.resource.field_body_paragraph.yml b/config/sync/field.field.node.resource.field_body_paragraph.yml
similarity index 69%
rename from config/field.field.node.resource.field_body_paragraph.yml
rename to config/sync/field.field.node.resource.field_body_paragraph.yml
index b3c34e6..5c423f1 100644
--- a/config/field.field.node.resource.field_body_paragraph.yml
+++ b/config/sync/field.field.node.resource.field_body_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: ca6088f3-a488-4687-9097-9cf059337950
+uuid: 9b6ef057-0e2b-49b9-94e0-73b00182f9e0
langcode: en
status: true
dependencies:
@@ -8,11 +8,10 @@ dependencies:
- paragraphs.paragraphs_type.file
- paragraphs.paragraphs_type.image
- paragraphs.paragraphs_type.text
- - paragraphs.paragraphs_type.video
module:
- entity_reference_revisions
_core:
- default_config_hash: siryhbL2rc18PtxYb8zFwiKvgPt5Ljp7XOvRBtROql4
+ default_config_hash: UVin-7DNHk5YXirhvh20x3Pn4VulkP4J2mcSVFMVXfA
id: node.resource.field_body_paragraph
field_name: field_body_paragraph
entity_type: node
@@ -20,44 +19,31 @@ bundle: resource
label: 'Body paragraph'
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
handler: 'default:paragraph'
handler_settings:
+ negate: 0
target_bundles:
text: text
image: image
file: file
- video: video
- negate: 0
target_bundles_drag_drop:
- faq:
- weight: 10
- enabled: false
- file:
- weight: -9
+ text:
enabled: true
+ weight: -11
image:
- weight: -10
enabled: true
+ weight: -10
+ file:
+ enabled: true
+ weight: -9
slide:
weight: -8
enabled: false
- storyline_header:
- weight: 14
- enabled: false
- storyline_item:
- weight: 15
- enabled: false
- text:
- weight: -11
- enabled: true
update:
weight: -7
enabled: false
- video:
- weight: 18
- enabled: true
field_type: entity_reference_revisions
diff --git a/config/field.field.node.resource.field_image.yml b/config/sync/field.field.node.resource.field_image.yml
similarity index 92%
rename from config/field.field.node.resource.field_image.yml
rename to config/sync/field.field.node.resource.field_image.yml
index 480ff81..1c70902 100644
--- a/config/field.field.node.resource.field_image.yml
+++ b/config/sync/field.field.node.resource.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 3751140f-80ea-4a78-92ec-385686957979
+uuid: 56469414-3507-45b9-a35f-144445b58e0c
langcode: en
status: true
dependencies:
@@ -16,12 +16,10 @@ bundle: resource
label: Image
description: ''
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -37,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.node.resource.field_meta_tags.yml b/config/sync/field.field.node.resource.field_meta_tags.yml
similarity index 88%
rename from config/field.field.node.resource.field_meta_tags.yml
rename to config/sync/field.field.node.resource.field_meta_tags.yml
index 6b67cb1..2400b11 100644
--- a/config/field.field.node.resource.field_meta_tags.yml
+++ b/config/sync/field.field.node.resource.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 7909ddd5-bb97-4222-8eb9-ec471bc66e94
+uuid: e2a46acd-640e-477d-80bd-84e6b43bcc52
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: resource
label: 'Meta tags'
description: ''
required: false
-translatable: false
+translatable: true
default_value:
-
value: 'a:0:{}'
diff --git a/config/field.field.node.resource.field_resource_file.yml b/config/sync/field.field.node.resource.field_resource_file.yml
similarity index 93%
rename from config/field.field.node.resource.field_resource_file.yml
rename to config/sync/field.field.node.resource.field_resource_file.yml
index 846987c..fbad58b 100644
--- a/config/field.field.node.resource.field_resource_file.yml
+++ b/config/sync/field.field.node.resource.field_resource_file.yml
@@ -1,4 +1,4 @@
-uuid: 32b961ce-43e9-4a00-b61d-e4c3bed2f50f
+uuid: 6f5c3938-d06b-4f4e-8577-5b3c27327610
langcode: en
status: true
dependencies:
@@ -20,10 +20,10 @@ translatable: false
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'txt pdf odt doc docx'
max_filesize: ''
description_field: true
+ handler: 'default:file'
+ handler_settings: { }
field_type: file
diff --git a/config/field.field.node.resource.field_resource_link.yml b/config/sync/field.field.node.resource.field_resource_link.yml
similarity index 92%
rename from config/field.field.node.resource.field_resource_link.yml
rename to config/sync/field.field.node.resource.field_resource_link.yml
index 9e4855d..406ac44 100644
--- a/config/field.field.node.resource.field_resource_link.yml
+++ b/config/sync/field.field.node.resource.field_resource_link.yml
@@ -1,4 +1,4 @@
-uuid: fdb1a9e0-fd1f-4d37-b574-6ae6b6857342
+uuid: a075c311-3b0c-423b-96df-d336b8990635
langcode: en
status: true
dependencies:
@@ -20,6 +20,6 @@ translatable: false
default_value: { }
default_value_callback: ''
settings:
- title: 1
link_type: 17
+ title: 1
field_type: link
diff --git a/config/field.field.node.resource.field_resource_type.yml b/config/sync/field.field.node.resource.field_resource_type.yml
similarity index 94%
rename from config/field.field.node.resource.field_resource_type.yml
rename to config/sync/field.field.node.resource.field_resource_type.yml
index 77c0ffd..60b5138 100644
--- a/config/field.field.node.resource.field_resource_type.yml
+++ b/config/sync/field.field.node.resource.field_resource_type.yml
@@ -1,4 +1,4 @@
-uuid: e0ebe99e-2e61-4b58-a524-0db03a3bdf1e
+uuid: 5c81e872-714c-4ff5-ab47-a836c7115149
langcode: en
status: true
dependencies:
diff --git a/config/field.field.node.resource.field_summary.yml b/config/sync/field.field.node.resource.field_summary.yml
similarity index 90%
rename from config/field.field.node.resource.field_summary.yml
rename to config/sync/field.field.node.resource.field_summary.yml
index c2d5519..c183d56 100644
--- a/config/field.field.node.resource.field_summary.yml
+++ b/config/sync/field.field.node.resource.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: 952a0644-2ec1-462e-b669-f3c7b2348a53
+uuid: 0381888d-6a8f-4598-acc8-cfb232caab04
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: resource
label: Summary
description: 'Enter a short description (one or two sentences) of what this Resource is about. The summary is displayed on Resource teasers, such as on the Resources page. '
required: true
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.node.resource.field_tags.yml b/config/sync/field.field.node.resource.field_tags.yml
similarity index 91%
rename from config/field.field.node.resource.field_tags.yml
rename to config/sync/field.field.node.resource.field_tags.yml
index f6634e1..a1c1294 100644
--- a/config/field.field.node.resource.field_tags.yml
+++ b/config/sync/field.field.node.resource.field_tags.yml
@@ -1,4 +1,4 @@
-uuid: 4a0013a9-a054-4a9f-89d9-371be13b2657
+uuid: 2f1c833c-e973-4ebd-9409-59f0b35d45ee
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: resource
label: Tags
description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"'
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.node.resource.field_topics.yml b/config/sync/field.field.node.resource.field_topics.yml
similarity index 92%
rename from config/field.field.node.resource.field_topics.yml
rename to config/sync/field.field.node.resource.field_topics.yml
index 958f9b4..57b6339 100644
--- a/config/field.field.node.resource.field_topics.yml
+++ b/config/sync/field.field.node.resource.field_topics.yml
@@ -1,4 +1,4 @@
-uuid: 745d07f3-4518-47eb-8c11-5ea8e029e275
+uuid: c7d3f079-0e4c-49f9-acda-a6e223ea6cc0
langcode: en
status: true
dependencies:
@@ -15,7 +15,7 @@ bundle: resource
label: Topics
description: 'Choose one or more high-level topics to categorize your content across multiple content types.'
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.paragraph.faq.field_faq.yml b/config/sync/field.field.paragraph.faq.field_faq.yml
similarity index 87%
rename from config/field.field.paragraph.faq.field_faq.yml
rename to config/sync/field.field.paragraph.faq.field_faq.yml
index 8093298..8580181 100644
--- a/config/field.field.paragraph.faq.field_faq.yml
+++ b/config/sync/field.field.paragraph.faq.field_faq.yml
@@ -1,4 +1,4 @@
-uuid: 6ca5fc97-9318-4a2a-bfdb-f8381b7fdc08
+uuid: 074a077b-6539-4e95-944e-c409bfa43792
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: faq
label: FAQ
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings:
diff --git a/config/field.field.paragraph.file.field_file.yml b/config/sync/field.field.paragraph.file.field_file.yml
similarity index 83%
rename from config/field.field.paragraph.file.field_file.yml
rename to config/sync/field.field.paragraph.file.field_file.yml
index 6af82fe..27b3012 100644
--- a/config/field.field.paragraph.file.field_file.yml
+++ b/config/sync/field.field.paragraph.file.field_file.yml
@@ -1,4 +1,4 @@
-uuid: b60bf2ec-6a0c-48ce-9a19-8ffa1606dda0
+uuid: 9bbbd1e0-5ee7-40b8-9dac-e368fe4d7683
langcode: en
status: true
dependencies:
@@ -16,14 +16,14 @@ bundle: file
label: File
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
- file_extensions: 'txt pdf odt doc docx json xml'
+ file_extensions: 'txt pdf odt doc docx'
max_filesize: ''
description_field: true
+ handler: 'default:file'
+ handler_settings: { }
field_type: file
diff --git a/config/field.field.paragraph.image.field_image.yml b/config/sync/field.field.paragraph.image.field_image.yml
similarity index 80%
rename from config/field.field.paragraph.image.field_image.yml
rename to config/sync/field.field.paragraph.image.field_image.yml
index 52101ee..309de44 100644
--- a/config/field.field.paragraph.image.field_image.yml
+++ b/config/sync/field.field.paragraph.image.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 9c1fbbf5-707a-40d2-8e28-7012afaf3f85
+uuid: 3dc1a324-a24b-4fdc-9c10-c6c2f5a30e52
langcode: en
status: true
dependencies:
@@ -6,14 +6,7 @@ dependencies:
- field.storage.paragraph.field_image
- paragraphs.paragraphs_type.image
module:
- - content_translation
- image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
_core:
default_config_hash: NS4XfuPJbhkGOp_KnO16fbWbcxRoDln_7HMLTkxTRn8
id: paragraph.image.field_image
@@ -23,12 +16,10 @@ bundle: image
label: Image
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -44,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.paragraph.slide.field_image.yml b/config/sync/field.field.paragraph.slide.field_image.yml
similarity index 81%
rename from config/field.field.paragraph.slide.field_image.yml
rename to config/sync/field.field.paragraph.slide.field_image.yml
index 8b8fc6a..29680b5 100644
--- a/config/field.field.paragraph.slide.field_image.yml
+++ b/config/sync/field.field.paragraph.slide.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 1e7283a0-c7b4-47ad-b0b6-8a2a6e8a29ea
+uuid: e4045ea7-5a3c-438c-ade8-adbb83b0a57c
langcode: en
status: true
dependencies:
@@ -6,14 +6,7 @@ dependencies:
- field.storage.paragraph.field_image
- paragraphs.paragraphs_type.slide
module:
- - content_translation
- image
-third_party_settings:
- content_translation:
- translation_sync:
- alt: alt
- title: title
- file: '0'
_core:
default_config_hash: UPqViFD1k8_sEfDdjk3x1c_IrqBW8NOZyf1dkqPc-UI
id: paragraph.slide.field_image
@@ -27,8 +20,6 @@ translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
file_directory: '[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
@@ -44,4 +35,6 @@ settings:
title: ''
width: null
height: null
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.field.paragraph.slide.field_link.yml b/config/sync/field.field.paragraph.slide.field_link.yml
similarity index 85%
rename from config/field.field.paragraph.slide.field_link.yml
rename to config/sync/field.field.paragraph.slide.field_link.yml
index de8c8b5..2597dd8 100644
--- a/config/field.field.paragraph.slide.field_link.yml
+++ b/config/sync/field.field.paragraph.slide.field_link.yml
@@ -1,4 +1,4 @@
-uuid: e3c43928-2410-4b8a-9fc9-3c6bf4fdabad
+uuid: 85c4e058-e8ba-46b3-882c-43740ff15bf3
langcode: en
status: true
dependencies:
@@ -16,10 +16,10 @@ bundle: slide
label: Link
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings:
- title: 0
link_type: 17
+ title: 1
field_type: link
diff --git a/config/field.field.paragraph.slide.field_text.yml b/config/sync/field.field.paragraph.slide.field_text.yml
similarity index 91%
rename from config/field.field.paragraph.slide.field_text.yml
rename to config/sync/field.field.paragraph.slide.field_text.yml
index 47d5b9b..910dbcb 100644
--- a/config/field.field.paragraph.slide.field_text.yml
+++ b/config/sync/field.field.paragraph.slide.field_text.yml
@@ -1,4 +1,4 @@
-uuid: 4c651989-9b45-4e4c-a85c-66dce6de265f
+uuid: 8c459830-8073-4284-a1a5-831644d48b65
langcode: en
status: true
dependencies:
diff --git a/config/field.field.paragraph.storyline_header.field_storyline_header.yml b/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml
similarity index 88%
rename from config/field.field.paragraph.storyline_header.field_storyline_header.yml
rename to config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml
index 9258560..888a52c 100644
--- a/config/field.field.paragraph.storyline_header.field_storyline_header.yml
+++ b/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml
@@ -1,4 +1,4 @@
-uuid: cfc3a2b4-ca5d-4744-bfc0-431834340905
+uuid: bd952f76-2a4e-4c76-b2a3-b33ab477fad3
langcode: en
status: true
dependencies:
@@ -14,7 +14,7 @@ bundle: storyline_header
label: 'Storyline header'
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.paragraph.storyline_item.field_storyline_heading.yml b/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml
similarity index 88%
rename from config/field.field.paragraph.storyline_item.field_storyline_heading.yml
rename to config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml
index f239105..1a2d4c8 100644
--- a/config/field.field.paragraph.storyline_item.field_storyline_heading.yml
+++ b/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml
@@ -1,4 +1,4 @@
-uuid: e4e4c572-3bc5-4de9-876b-b90fcb1edbf1
+uuid: dfb43bc1-9abf-4956-b3e3-e8218b6dccf4
langcode: en
status: true
dependencies:
@@ -14,7 +14,7 @@ bundle: storyline_item
label: Heading
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.paragraph.storyline_item.field_text.yml b/config/sync/field.field.paragraph.storyline_item.field_text.yml
similarity index 91%
rename from config/field.field.paragraph.storyline_item.field_text.yml
rename to config/sync/field.field.paragraph.storyline_item.field_text.yml
index d8ed6cf..7ad46aa 100644
--- a/config/field.field.paragraph.storyline_item.field_text.yml
+++ b/config/sync/field.field.paragraph.storyline_item.field_text.yml
@@ -1,4 +1,4 @@
-uuid: d43fa308-41a3-4edc-98bf-9f16aa2c33b0
+uuid: 51ff19bf-ef2d-4470-8630-b57d31d3b864
langcode: en
status: true
dependencies:
diff --git a/config/field.field.paragraph.text.field_text.yml b/config/sync/field.field.paragraph.text.field_text.yml
similarity index 87%
rename from config/field.field.paragraph.text.field_text.yml
rename to config/sync/field.field.paragraph.text.field_text.yml
index 3aedb1f..b9e4e1d 100644
--- a/config/field.field.paragraph.text.field_text.yml
+++ b/config/sync/field.field.paragraph.text.field_text.yml
@@ -1,4 +1,4 @@
-uuid: 07b96b41-50f8-414d-a059-7f53d3947610
+uuid: 16719087-b701-4243-a890-73e6eb1cc399
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: text
label: Text
description: ''
required: false
-translatable: true
+translatable: false
default_value: { }
default_value_callback: ''
settings: { }
diff --git a/config/field.field.paragraph.update.field_text.yml b/config/sync/field.field.paragraph.update.field_text.yml
similarity index 91%
rename from config/field.field.paragraph.update.field_text.yml
rename to config/sync/field.field.paragraph.update.field_text.yml
index 412334d..1488d87 100644
--- a/config/field.field.paragraph.update.field_text.yml
+++ b/config/sync/field.field.paragraph.update.field_text.yml
@@ -1,4 +1,4 @@
-uuid: 013e5fae-abcd-49fe-ae6d-e3967114ecc4
+uuid: 0ac29e70-b014-425b-80e4-52e33aef2cc3
langcode: en
status: true
dependencies:
diff --git a/config/field.field.paragraph.update.field_update_date.yml b/config/sync/field.field.paragraph.update.field_update_date.yml
similarity index 89%
rename from config/field.field.paragraph.update.field_update_date.yml
rename to config/sync/field.field.paragraph.update.field_update_date.yml
index 45d405b..f5fb17f 100644
--- a/config/field.field.paragraph.update.field_update_date.yml
+++ b/config/sync/field.field.paragraph.update.field_update_date.yml
@@ -1,4 +1,4 @@
-uuid: a9410a8a-4b39-4522-a8e0-9e6cf635d2da
+uuid: 4db98e3e-6a69-4342-9c1d-ccd09b3564f2
langcode: en
status: true
dependencies:
@@ -16,7 +16,7 @@ bundle: update
label: 'Update date'
description: ''
required: false
-translatable: true
+translatable: false
default_value:
-
default_date_type: now
diff --git a/config/sync/field.field.user.user.field_bio.yml b/config/sync/field.field.user.user.field_bio.yml
new file mode 100644
index 0000000..7ca2a72
--- /dev/null
+++ b/config/sync/field.field.user.user.field_bio.yml
@@ -0,0 +1,22 @@
+uuid: 9c991ded-e9f0-469c-a68f-c15f7f2ba9cb
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.user.field_bio
+ module:
+ - text
+ - user
+id: user.user.field_bio
+field_name: field_bio
+entity_type: user
+bundle: user
+label: Bio
+description: ''
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings:
+ display_summary: false
+field_type: text_with_summary
diff --git a/config/sync/field.field.user.user.field_gpg_public_key.yml b/config/sync/field.field.user.user.field_gpg_public_key.yml
new file mode 100644
index 0000000..d456d61
--- /dev/null
+++ b/config/sync/field.field.user.user.field_gpg_public_key.yml
@@ -0,0 +1,27 @@
+uuid: 6fab4262-f202-461f-adb6-16e8b786fc27
+langcode: en
+status: true
+dependencies:
+ config:
+ - field.storage.user.field_gpg_public_key
+ module:
+ - file
+ - user
+id: user.user.field_gpg_public_key
+field_name: field_gpg_public_key
+entity_type: user
+bundle: user
+label: 'GPG public key'
+description: ''
+required: false
+translatable: false
+default_value: { }
+default_value_callback: ''
+settings:
+ file_directory: ''
+ file_extensions: asc
+ max_filesize: ''
+ description_field: false
+ handler: 'default:file'
+ handler_settings: { }
+field_type: file
diff --git a/config/field.field.user.user.user_picture.yml b/config/sync/field.field.user.user.user_picture.yml
similarity index 83%
rename from config/field.field.user.user.user_picture.yml
rename to config/sync/field.field.user.user.user_picture.yml
index 4f4c4e0..0d94fa3 100644
--- a/config/field.field.user.user.user_picture.yml
+++ b/config/sync/field.field.user.user.user_picture.yml
@@ -1,4 +1,4 @@
-uuid: 1fbbdaa1-16dd-4a9d-bfc3-fcd2d2e8ca8f
+uuid: 62bc0d28-b863-4407-a5db-ed05c53a1955
langcode: en
status: true
dependencies:
@@ -16,25 +16,25 @@ bundle: user
label: Picture
description: 'Your virtual face or picture.'
required: false
-translatable: false
+translatable: true
default_value: { }
default_value_callback: ''
settings:
- handler: 'default:file'
- handler_settings: { }
- file_directory: 'pictures/[date:custom:Y]-[date:custom:m]'
file_extensions: 'png gif jpg jpeg'
- max_filesize: ''
- max_resolution: ''
- min_resolution: ''
- alt_field: true
- alt_field_required: false
+ file_directory: 'pictures/[date:custom:Y]-[date:custom:m]'
+ max_filesize: '30 KB'
+ alt_field: false
title_field: false
- title_field_required: false
+ max_resolution: 85x85
+ min_resolution: ''
default_image:
- uuid: ''
+ uuid: null
alt: ''
title: ''
width: null
height: null
+ alt_field_required: false
+ title_field_required: false
+ handler: 'default:file'
+ handler_settings: { }
field_type: image
diff --git a/config/field.settings.yml b/config/sync/field.settings.yml
similarity index 100%
rename from config/field.settings.yml
rename to config/sync/field.settings.yml
index 2225b8f..95c042d 100644
--- a/config/field.settings.yml
+++ b/config/sync/field.settings.yml
@@ -1,3 +1,3 @@
+purge_batch_size: 50
_core:
default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0
-purge_batch_size: 50
diff --git a/config/field.storage.block_content.body.yml b/config/sync/field.storage.block_content.body.yml
similarity index 90%
rename from config/field.storage.block_content.body.yml
rename to config/sync/field.storage.block_content.body.yml
index 25b6ace..b2e6591 100644
--- a/config/field.storage.block_content.body.yml
+++ b/config/sync/field.storage.block_content.body.yml
@@ -1,4 +1,4 @@
-uuid: bbcef32a-d9a6-4f5a-8dad-31aec99134d1
+uuid: d2e320c2-eadb-46ad-bdf2-59e931206615
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.block_content.field_slide.yml b/config/sync/field.storage.block_content.field_slide.yml
similarity index 91%
rename from config/field.storage.block_content.field_slide.yml
rename to config/sync/field.storage.block_content.field_slide.yml
index 6903866..5fc54f5 100644
--- a/config/field.storage.block_content.field_slide.yml
+++ b/config/sync/field.storage.block_content.field_slide.yml
@@ -1,4 +1,4 @@
-uuid: 417bbb80-2e8e-4382-b804-403e60e1353e
+uuid: 5d76f374-ecfe-4138-b8a1-cef0746c67f4
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.comment.comment_body.yml b/config/sync/field.storage.comment.comment_body.yml
similarity index 89%
rename from config/field.storage.comment.comment_body.yml
rename to config/sync/field.storage.comment.comment_body.yml
index 561e7c4..d28568b 100644
--- a/config/field.storage.comment.comment_body.yml
+++ b/config/sync/field.storage.comment.comment_body.yml
@@ -1,4 +1,4 @@
-uuid: 07d7b295-76a7-4e25-b0e0-04804199685b
+uuid: ce60fc76-1b12-4fa7-b155-2f08ac7ea750
langcode: en
status: true
dependencies:
diff --git a/config/sync/field.storage.group.field_group_address.yml b/config/sync/field.storage.group.field_group_address.yml
new file mode 100644
index 0000000..c81593a
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_address.yml
@@ -0,0 +1,21 @@
+uuid: feb59113-f95b-4b3b-923c-ed3fe57e7683
+langcode: en
+status: true
+dependencies:
+ module:
+ - address
+ - group
+_core:
+ default_config_hash: SThhVdsoT2cGEl1WixzKDeTriPp9zTmXWBNcUrUwIgs
+id: group.field_group_address
+field_name: field_group_address
+entity_type: group
+type: address
+settings: { }
+module: address
+locked: false
+cardinality: 1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.group.field_group_description.yml b/config/sync/field.storage.group.field_group_description.yml
new file mode 100644
index 0000000..5b85167
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_description.yml
@@ -0,0 +1,23 @@
+uuid: 087634ff-e081-4c31-bac0-7c256080111a
+langcode: en
+status: true
+dependencies:
+ module:
+ - entity_reference_revisions
+ - group
+ - paragraphs
+_core:
+ default_config_hash: 4s3mw-BJxYy_aatNicAVRmgnW2XcEAnwi8R-CLs0yz0
+id: group.field_group_description
+field_name: field_group_description
+entity_type: group
+type: entity_reference_revisions
+settings:
+ target_type: paragraph
+module: entity_reference_revisions
+locked: false
+cardinality: -1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.group.field_group_email.yml b/config/sync/field.storage.group.field_group_email.yml
new file mode 100644
index 0000000..1bd6821
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_email.yml
@@ -0,0 +1,20 @@
+uuid: 61ba0f97-ab63-4410-b3c9-277756c13dc1
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+_core:
+ default_config_hash: Ak5JGkPREYUbREw60JRqUxFYWeYL4aGjh5cWys21oKg
+id: group.field_group_email
+field_name: field_group_email
+entity_type: group
+type: email
+settings: { }
+module: core
+locked: false
+cardinality: 1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.group.field_group_image.yml b/config/sync/field.storage.group.field_group_image.yml
new file mode 100644
index 0000000..d89d7c8
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_image.yml
@@ -0,0 +1,32 @@
+uuid: f8d61111-6ac5-4dee-bc38-0419d9382735
+langcode: en
+status: true
+dependencies:
+ module:
+ - file
+ - group
+ - image
+_core:
+ default_config_hash: u7wTgG3APVnwXqEqtYhU-FN9kPGC5Rp3ha2eHf7rXas
+id: group.field_group_image
+field_name: field_group_image
+entity_type: group
+type: image
+settings:
+ uri_scheme: public
+ default_image:
+ uuid: ''
+ alt: ''
+ title: ''
+ width: null
+ height: null
+ target_type: file
+ display_field: false
+ display_default: false
+module: image
+locked: false
+cardinality: 1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.group.field_group_phone.yml b/config/sync/field.storage.group.field_group_phone.yml
new file mode 100644
index 0000000..20105a5
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_phone.yml
@@ -0,0 +1,21 @@
+uuid: d3c48892-9143-4c9d-b885-bc58da3c1f95
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+ - telephone
+_core:
+ default_config_hash: l6rFkmzGiJwxaAMFwoyZaRIv1N_ogmuc6gYfwtwWgUk
+id: group.field_group_phone
+field_name: field_group_phone
+entity_type: group
+type: telephone
+settings: { }
+module: telephone
+locked: false
+cardinality: -1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.group.field_group_summary.yml b/config/sync/field.storage.group.field_group_summary.yml
new file mode 100644
index 0000000..6d0a4d8
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_summary.yml
@@ -0,0 +1,21 @@
+uuid: f2996964-1588-4efe-b6d3-d3fa59850c46
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+ - text
+_core:
+ default_config_hash: iUOlS7wqQ1Bfq4T09NLsItIY6_ilx85WnlEv41xZbQw
+id: group.field_group_summary
+field_name: field_group_summary
+entity_type: group
+type: text_long
+settings: { }
+module: text
+locked: false
+cardinality: 1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/field.storage.node.field_license.yml b/config/sync/field.storage.group.field_group_type.yml
similarity index 56%
rename from config/field.storage.node.field_license.yml
rename to config/sync/field.storage.group.field_group_type.yml
index 4fa973e..292e7b1 100644
--- a/config/field.storage.node.field_license.yml
+++ b/config/sync/field.storage.group.field_group_type.yml
@@ -1,15 +1,15 @@
-uuid: 0f36af20-945a-4fc2-a096-ff8a17fb2434
+uuid: b3c8f5b4-6772-4dc7-9e4f-acf3a81c68a4
langcode: en
status: true
dependencies:
module:
- - node
+ - group
- taxonomy
_core:
- default_config_hash: WOCSKoX8FDE357HWZ--I27v0-JJzpLJQU-MBPG7fzP4
-id: node.field_license
-field_name: field_license
-entity_type: node
+ default_config_hash: vdB9o5YEHq6ZET64a2dAuhzbCryPN5MiC1XeoTeZZlI
+id: group.field_group_type
+field_name: field_group_type
+entity_type: group
type: entity_reference
settings:
target_type: taxonomy_term
diff --git a/config/sync/field.storage.group.field_group_website.yml b/config/sync/field.storage.group.field_group_website.yml
new file mode 100644
index 0000000..b688e3d
--- /dev/null
+++ b/config/sync/field.storage.group.field_group_website.yml
@@ -0,0 +1,21 @@
+uuid: 52c906e9-c4dc-45de-8e67-95a17ec39d34
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+ - link
+_core:
+ default_config_hash: oFPGCOuHvnpwj30S7cMEmQ0Bw7S2tD6kPFV-93Wbvus
+id: group.field_group_website
+field_name: field_group_website
+entity_type: group
+type: link
+settings: { }
+module: link
+locked: false
+cardinality: 1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/sync/field.storage.group_content.group_roles.yml b/config/sync/field.storage.group_content.group_roles.yml
new file mode 100644
index 0000000..f551e28
--- /dev/null
+++ b/config/sync/field.storage.group_content.group_roles.yml
@@ -0,0 +1,21 @@
+uuid: 6ab7c7c7-3f5b-4c9d-b457-31450481300b
+langcode: en
+status: true
+dependencies:
+ module:
+ - group
+_core:
+ default_config_hash: Sgrm2nHDx7xKvByuR5oGB77nLvI0LikTM8ff3e_YlWY
+id: group_content.group_roles
+field_name: group_roles
+entity_type: group_content
+type: entity_reference
+settings:
+ target_type: group_role
+module: core
+locked: true
+cardinality: -1
+translatable: false
+indexes: { }
+persist_with_no_fields: true
+custom_storage: false
diff --git a/config/field.storage.node.body.yml b/config/sync/field.storage.node.body.yml
similarity index 89%
rename from config/field.storage.node.body.yml
rename to config/sync/field.storage.node.body.yml
index 4ee43b8..9c46510 100644
--- a/config/field.storage.node.body.yml
+++ b/config/sync/field.storage.node.body.yml
@@ -1,4 +1,4 @@
-uuid: d3fd60ca-f334-4fde-8d9d-5c43e3528d4c
+uuid: 1312deae-63cc-4597-9edb-6dfbdba43252
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.comment.yml b/config/sync/field.storage.node.comment.yml
similarity index 89%
rename from config/field.storage.node.comment.yml
rename to config/sync/field.storage.node.comment.yml
index cdefd3b..811ac2d 100644
--- a/config/field.storage.node.comment.yml
+++ b/config/sync/field.storage.node.comment.yml
@@ -1,4 +1,4 @@
-uuid: d83f101f-c731-41ea-bf02-0a1c1428f07f
+uuid: e725cfe5-0542-4592-97d4-2220e6dbd67e
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_action_end_date.yml b/config/sync/field.storage.node.field_action_end_date.yml
similarity index 90%
rename from config/field.storage.node.field_action_end_date.yml
rename to config/sync/field.storage.node.field_action_end_date.yml
index c7f1747..53d010e 100644
--- a/config/field.storage.node.field_action_end_date.yml
+++ b/config/sync/field.storage.node.field_action_end_date.yml
@@ -1,4 +1,4 @@
-uuid: ea494aa0-7464-4d9e-8351-c6d5d071ae1f
+uuid: ddc3b2d3-37fd-43f4-86c3-0c0b59cf7775
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_action_link.yml b/config/sync/field.storage.node.field_action_link.yml
similarity index 89%
rename from config/field.storage.node.field_action_link.yml
rename to config/sync/field.storage.node.field_action_link.yml
index b44331b..d0b8354 100644
--- a/config/field.storage.node.field_action_link.yml
+++ b/config/sync/field.storage.node.field_action_link.yml
@@ -1,4 +1,4 @@
-uuid: 6456f354-ca72-46d1-85e7-481d61ffaf0b
+uuid: facc4a34-1490-486c-99aa-0ee9e56fd8cb
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_action_type.yml b/config/sync/field.storage.node.field_action_type.yml
similarity index 90%
rename from config/field.storage.node.field_action_type.yml
rename to config/sync/field.storage.node.field_action_type.yml
index aea4884..8ab58f6 100644
--- a/config/field.storage.node.field_action_type.yml
+++ b/config/sync/field.storage.node.field_action_type.yml
@@ -1,4 +1,4 @@
-uuid: abb813cd-e198-4aad-a350-1b8709e0ea6d
+uuid: 25b17923-d69f-4195-8809-f0fb1e8c06d8
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_article_type.yml b/config/sync/field.storage.node.field_article_type.yml
similarity index 90%
rename from config/field.storage.node.field_article_type.yml
rename to config/sync/field.storage.node.field_article_type.yml
index f836fae..0623ce0 100644
--- a/config/field.storage.node.field_article_type.yml
+++ b/config/sync/field.storage.node.field_article_type.yml
@@ -1,4 +1,4 @@
-uuid: bfda8573-8885-406e-a4b8-8929df945979
+uuid: 60ee4d32-5d4c-4991-8585-e8507a81a219
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_authors.yml b/config/sync/field.storage.node.field_authors.yml
similarity index 89%
rename from config/field.storage.node.field_authors.yml
rename to config/sync/field.storage.node.field_authors.yml
index d31bf6f..4412cf6 100644
--- a/config/field.storage.node.field_authors.yml
+++ b/config/sync/field.storage.node.field_authors.yml
@@ -1,4 +1,4 @@
-uuid: 9d146fc6-529c-422a-9700-46ac4dcf4c8c
+uuid: f604ec31-1706-4a2b-a6b8-90dda63182d6
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_body_paragraph.yml b/config/sync/field.storage.node.field_body_paragraph.yml
similarity index 91%
rename from config/field.storage.node.field_body_paragraph.yml
rename to config/sync/field.storage.node.field_body_paragraph.yml
index 7c7f580..8fbab2c 100644
--- a/config/field.storage.node.field_body_paragraph.yml
+++ b/config/sync/field.storage.node.field_body_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: cc4eec47-d2b2-4748-bfb4-95add6e3bf75
+uuid: 7bea0c75-0cfe-4db2-b5b3-709c84c5a9a0
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_campaign_demands.yml b/config/sync/field.storage.node.field_campaign_demands.yml
similarity index 91%
rename from config/field.storage.node.field_campaign_demands.yml
rename to config/sync/field.storage.node.field_campaign_demands.yml
index cb35a04..ed52868 100644
--- a/config/field.storage.node.field_campaign_demands.yml
+++ b/config/sync/field.storage.node.field_campaign_demands.yml
@@ -1,4 +1,4 @@
-uuid: fb6649de-8de2-455f-9511-45700b64f981
+uuid: 5c5e619e-555e-4359-8358-a68c2b7b8bc3
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_campaign_updates.yml b/config/sync/field.storage.node.field_campaign_updates.yml
similarity index 91%
rename from config/field.storage.node.field_campaign_updates.yml
rename to config/sync/field.storage.node.field_campaign_updates.yml
index 4562ad7..884f83c 100644
--- a/config/field.storage.node.field_campaign_updates.yml
+++ b/config/sync/field.storage.node.field_campaign_updates.yml
@@ -1,4 +1,4 @@
-uuid: 38b21fd7-e656-46db-826f-a1f893bcdeae
+uuid: dd4fc29d-61ad-453d-abf9-a8c7019e6636
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_event_date.yml b/config/sync/field.storage.node.field_event_date.yml
similarity index 90%
rename from config/field.storage.node.field_event_date.yml
rename to config/sync/field.storage.node.field_event_date.yml
index fe53851..21eba8e 100644
--- a/config/field.storage.node.field_event_date.yml
+++ b/config/sync/field.storage.node.field_event_date.yml
@@ -1,4 +1,4 @@
-uuid: d76d7385-ef54-43ab-b879-38c561293ffa
+uuid: 3bc04ac2-c591-4899-ada1-81b58e72ad3d
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_event_type.yml b/config/sync/field.storage.node.field_event_type.yml
similarity index 90%
rename from config/field.storage.node.field_event_type.yml
rename to config/sync/field.storage.node.field_event_type.yml
index 0cae0d7..5009831 100644
--- a/config/field.storage.node.field_event_type.yml
+++ b/config/sync/field.storage.node.field_event_type.yml
@@ -1,4 +1,4 @@
-uuid: 4bd8f15f-cae7-44e0-afb6-b9ee0bcb084f
+uuid: 14829522-b73c-434f-b6d7-a5d1b0edf099
langcode: en
status: true
dependencies:
diff --git a/config/sync/field.storage.node.field_file.yml b/config/sync/field.storage.node.field_file.yml
new file mode 100644
index 0000000..719e8c4
--- /dev/null
+++ b/config/sync/field.storage.node.field_file.yml
@@ -0,0 +1,23 @@
+uuid: 84ea971d-b192-4165-8178-ebf05f57662b
+langcode: en
+status: true
+dependencies:
+ module:
+ - file
+ - node
+id: node.field_file
+field_name: field_file
+entity_type: node
+type: file
+settings:
+ display_field: true
+ display_default: false
+ uri_scheme: public
+ target_type: file
+module: file
+locked: false
+cardinality: -1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/config/field.storage.node.field_image.yml b/config/sync/field.storage.node.field_image.yml
similarity index 90%
rename from config/field.storage.node.field_image.yml
rename to config/sync/field.storage.node.field_image.yml
index b74d4a6..93e51c6 100644
--- a/config/field.storage.node.field_image.yml
+++ b/config/sync/field.storage.node.field_image.yml
@@ -1,4 +1,4 @@
-uuid: fab940af-766a-45d2-ba3e-2004df5d5eb9
+uuid: e314df4d-75be-4c54-a09f-b4b25fc16023
langcode: en
status: true
dependencies:
@@ -13,9 +13,6 @@ field_name: field_image
entity_type: node
type: image
settings:
- target_type: file
- display_field: false
- display_default: false
uri_scheme: public
default_image:
uuid: null
@@ -23,9 +20,12 @@ settings:
title: ''
width: null
height: null
+ target_type: file
+ display_field: false
+ display_default: false
module: image
locked: false
-cardinality: 1
+cardinality: -1
translatable: true
indexes:
target_id:
diff --git a/config/field.storage.node.field_meta_tags.yml b/config/sync/field.storage.node.field_meta_tags.yml
similarity index 89%
rename from config/field.storage.node.field_meta_tags.yml
rename to config/sync/field.storage.node.field_meta_tags.yml
index 9f19401..824b867 100644
--- a/config/field.storage.node.field_meta_tags.yml
+++ b/config/sync/field.storage.node.field_meta_tags.yml
@@ -1,4 +1,4 @@
-uuid: 8b07df33-46c7-45ff-abc9-87572e3fd443
+uuid: 879f44b9-8609-4cb6-8c99-47443919f879
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_paragraph.yml b/config/sync/field.storage.node.field_paragraph.yml
similarity index 91%
rename from config/field.storage.node.field_paragraph.yml
rename to config/sync/field.storage.node.field_paragraph.yml
index 3ceed8c..49b14a2 100644
--- a/config/field.storage.node.field_paragraph.yml
+++ b/config/sync/field.storage.node.field_paragraph.yml
@@ -1,4 +1,4 @@
-uuid: 544909b8-11c3-46eb-8688-f0c0c5f1efb4
+uuid: 50f7cb89-f415-469b-af24-eda2b3572108
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_people_position.yml b/config/sync/field.storage.node.field_people_position.yml
similarity index 90%
rename from config/field.storage.node.field_people_position.yml
rename to config/sync/field.storage.node.field_people_position.yml
index 790384e..de93b09 100644
--- a/config/field.storage.node.field_people_position.yml
+++ b/config/sync/field.storage.node.field_people_position.yml
@@ -1,4 +1,4 @@
-uuid: e37ceb45-b67a-4476-bdd5-4310263372d3
+uuid: 5faa3e3f-9126-4fde-acd1-1cd125a8abd5
langcode: en
status: true
dependencies:
@@ -12,8 +12,8 @@ entity_type: node
type: string
settings:
max_length: 255
- case_sensitive: false
is_ascii: false
+ case_sensitive: false
module: core
locked: false
cardinality: 1
diff --git a/config/field.storage.node.field_people_type.yml b/config/sync/field.storage.node.field_people_type.yml
similarity index 90%
rename from config/field.storage.node.field_people_type.yml
rename to config/sync/field.storage.node.field_people_type.yml
index 4d59611..2ec1b1b 100644
--- a/config/field.storage.node.field_people_type.yml
+++ b/config/sync/field.storage.node.field_people_type.yml
@@ -1,4 +1,4 @@
-uuid: defc605f-a7d1-41cf-bbd8-01c167425e16
+uuid: 34124a01-63f1-43fb-a245-c6ea7b022c1b
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_resource_file.yml b/config/sync/field.storage.node.field_resource_file.yml
similarity index 91%
rename from config/field.storage.node.field_resource_file.yml
rename to config/sync/field.storage.node.field_resource_file.yml
index d5468c2..bd3cb90 100644
--- a/config/field.storage.node.field_resource_file.yml
+++ b/config/sync/field.storage.node.field_resource_file.yml
@@ -1,4 +1,4 @@
-uuid: 6adc6651-033b-4f6b-bf4e-dd6eccc4666d
+uuid: fe78c178-01a9-4fa1-ada4-a88241217305
langcode: en
status: true
dependencies:
@@ -12,10 +12,10 @@ field_name: field_resource_file
entity_type: node
type: file
settings:
- target_type: file
display_field: false
display_default: false
uri_scheme: public
+ target_type: file
module: file
locked: false
cardinality: -1
diff --git a/config/field.storage.node.field_resource_link.yml b/config/sync/field.storage.node.field_resource_link.yml
similarity index 89%
rename from config/field.storage.node.field_resource_link.yml
rename to config/sync/field.storage.node.field_resource_link.yml
index a274eac..c220ba9 100644
--- a/config/field.storage.node.field_resource_link.yml
+++ b/config/sync/field.storage.node.field_resource_link.yml
@@ -1,4 +1,4 @@
-uuid: a94dffd9-68b2-472e-92e2-994cb32c1ef4
+uuid: 15d0b7e1-957c-46b6-a28a-22a5cc2ee7e6
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_resource_type.yml b/config/sync/field.storage.node.field_resource_type.yml
similarity index 90%
rename from config/field.storage.node.field_resource_type.yml
rename to config/sync/field.storage.node.field_resource_type.yml
index 5d57e20..f761aa5 100644
--- a/config/field.storage.node.field_resource_type.yml
+++ b/config/sync/field.storage.node.field_resource_type.yml
@@ -1,4 +1,4 @@
-uuid: 4f3991e3-5798-4a79-bff2-0af61ab2dd0a
+uuid: 929d5a47-7057-44a0-8c18-d504bab9e2df
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_storyline.yml b/config/sync/field.storage.node.field_storyline.yml
similarity index 91%
rename from config/field.storage.node.field_storyline.yml
rename to config/sync/field.storage.node.field_storyline.yml
index 2e92255..d148012 100644
--- a/config/field.storage.node.field_storyline.yml
+++ b/config/sync/field.storage.node.field_storyline.yml
@@ -1,4 +1,4 @@
-uuid: bc9006a7-d98e-4e1d-9a81-41538cd4e4d3
+uuid: 9fb0337a-5966-4033-8708-0bb53ae66118
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_summary.yml b/config/sync/field.storage.node.field_summary.yml
similarity index 89%
rename from config/field.storage.node.field_summary.yml
rename to config/sync/field.storage.node.field_summary.yml
index 69442b6..844d0a6 100644
--- a/config/field.storage.node.field_summary.yml
+++ b/config/sync/field.storage.node.field_summary.yml
@@ -1,4 +1,4 @@
-uuid: 3bd7a211-5dbf-4621-816d-ea01585ad26a
+uuid: 92ced5f2-116b-40f2-8897-6482f38e4a68
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_tags.yml b/config/sync/field.storage.node.field_tags.yml
similarity index 90%
rename from config/field.storage.node.field_tags.yml
rename to config/sync/field.storage.node.field_tags.yml
index 94f82d0..6a4b071 100644
--- a/config/field.storage.node.field_tags.yml
+++ b/config/sync/field.storage.node.field_tags.yml
@@ -1,4 +1,4 @@
-uuid: 8bb585b6-e308-4570-a28a-61a9bc4a9748
+uuid: a2a43180-1cbf-4080-b621-05fd767caa8e
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.node.field_topics.yml b/config/sync/field.storage.node.field_topics.yml
similarity index 90%
rename from config/field.storage.node.field_topics.yml
rename to config/sync/field.storage.node.field_topics.yml
index 9334b93..d33a6ce 100644
--- a/config/field.storage.node.field_topics.yml
+++ b/config/sync/field.storage.node.field_topics.yml
@@ -1,4 +1,4 @@
-uuid: 8c5fcf7c-84cf-4a2d-94de-0915023249a1
+uuid: a4d01ae9-04b9-49cc-a5cd-6bd56a96e7de
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.paragraph.field_faq.yml b/config/sync/field.storage.paragraph.field_faq.yml
similarity index 90%
rename from config/field.storage.paragraph.field_faq.yml
rename to config/sync/field.storage.paragraph.field_faq.yml
index 11832d5..77b575f 100644
--- a/config/field.storage.paragraph.field_faq.yml
+++ b/config/sync/field.storage.paragraph.field_faq.yml
@@ -1,4 +1,4 @@
-uuid: 8c38e8db-4419-428c-8518-75fd99c55c8a
+uuid: bca89a1d-c735-4e8b-a747-d72ce65b0125
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.paragraph.field_file.yml b/config/sync/field.storage.paragraph.field_file.yml
similarity index 91%
rename from config/field.storage.paragraph.field_file.yml
rename to config/sync/field.storage.paragraph.field_file.yml
index e8d3d81..d39acc3 100644
--- a/config/field.storage.paragraph.field_file.yml
+++ b/config/sync/field.storage.paragraph.field_file.yml
@@ -1,4 +1,4 @@
-uuid: 2315935d-9e7d-413d-a368-376157664d90
+uuid: 6c126aaf-f202-4b4c-b61a-c0c828ac24ab
langcode: en
status: true
dependencies:
@@ -12,10 +12,10 @@ field_name: field_file
entity_type: paragraph
type: file
settings:
- target_type: file
display_field: false
display_default: false
uri_scheme: public
+ target_type: file
module: file
locked: false
cardinality: -1
diff --git a/config/field.storage.paragraph.field_image.yml b/config/sync/field.storage.paragraph.field_image.yml
similarity index 92%
rename from config/field.storage.paragraph.field_image.yml
rename to config/sync/field.storage.paragraph.field_image.yml
index 1ec0366..2752c8a 100644
--- a/config/field.storage.paragraph.field_image.yml
+++ b/config/sync/field.storage.paragraph.field_image.yml
@@ -1,4 +1,4 @@
-uuid: 831dc0f7-0056-4af0-b1ec-4a0aebcb12e6
+uuid: 7d47c2d6-a187-4dc0-acb7-8c5f60ddb20a
langcode: en
status: true
dependencies:
@@ -13,9 +13,6 @@ field_name: field_image
entity_type: paragraph
type: image
settings:
- target_type: file
- display_field: false
- display_default: false
uri_scheme: public
default_image:
uuid: ''
@@ -23,6 +20,9 @@ settings:
title: ''
width: null
height: null
+ target_type: file
+ display_field: false
+ display_default: false
module: image
locked: false
cardinality: 1
diff --git a/config/field.storage.paragraph.field_link.yml b/config/sync/field.storage.paragraph.field_link.yml
similarity index 89%
rename from config/field.storage.paragraph.field_link.yml
rename to config/sync/field.storage.paragraph.field_link.yml
index 03fddd3..378632b 100644
--- a/config/field.storage.paragraph.field_link.yml
+++ b/config/sync/field.storage.paragraph.field_link.yml
@@ -1,4 +1,4 @@
-uuid: e6c0d093-0cdc-4d4f-a2c5-044c521cbc34
+uuid: 0f9d41ed-0abc-4506-87dc-9eb51b33478e
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.paragraph.field_storyline_header.yml b/config/sync/field.storage.paragraph.field_storyline_header.yml
similarity index 91%
rename from config/field.storage.paragraph.field_storyline_header.yml
rename to config/sync/field.storage.paragraph.field_storyline_header.yml
index 6a59107..45c9ee5 100644
--- a/config/field.storage.paragraph.field_storyline_header.yml
+++ b/config/sync/field.storage.paragraph.field_storyline_header.yml
@@ -1,4 +1,4 @@
-uuid: d652b4c8-db07-4dc3-83bb-22888e3cd4b0
+uuid: 9ec587f8-3554-4ec2-b7a4-e7f217066d24
langcode: en
status: true
dependencies:
@@ -12,8 +12,8 @@ entity_type: paragraph
type: string
settings:
max_length: 255
- case_sensitive: false
is_ascii: false
+ case_sensitive: false
module: core
locked: false
cardinality: 1
diff --git a/config/field.storage.paragraph.field_storyline_heading.yml b/config/sync/field.storage.paragraph.field_storyline_heading.yml
similarity index 91%
rename from config/field.storage.paragraph.field_storyline_heading.yml
rename to config/sync/field.storage.paragraph.field_storyline_heading.yml
index 43074f9..7b02cf0 100644
--- a/config/field.storage.paragraph.field_storyline_heading.yml
+++ b/config/sync/field.storage.paragraph.field_storyline_heading.yml
@@ -1,4 +1,4 @@
-uuid: 21924003-3b47-499b-8f82-4c64acd0cf0d
+uuid: e50a7902-991f-4899-ab3e-ee720c30ad97
langcode: en
status: true
dependencies:
@@ -12,8 +12,8 @@ entity_type: paragraph
type: string
settings:
max_length: 255
- case_sensitive: false
is_ascii: false
+ case_sensitive: false
module: core
locked: false
cardinality: 1
diff --git a/config/field.storage.paragraph.field_text.yml b/config/sync/field.storage.paragraph.field_text.yml
similarity index 89%
rename from config/field.storage.paragraph.field_text.yml
rename to config/sync/field.storage.paragraph.field_text.yml
index b1910b9..8c944f4 100644
--- a/config/field.storage.paragraph.field_text.yml
+++ b/config/sync/field.storage.paragraph.field_text.yml
@@ -1,4 +1,4 @@
-uuid: 026b1335-eddd-4497-a287-427c5b44d142
+uuid: d787bda7-7258-4f61-83a1-59e366a30261
langcode: en
status: true
dependencies:
diff --git a/config/field.storage.paragraph.field_update_date.yml b/config/sync/field.storage.paragraph.field_update_date.yml
similarity index 90%
rename from config/field.storage.paragraph.field_update_date.yml
rename to config/sync/field.storage.paragraph.field_update_date.yml
index ae772ee..17c1471 100644
--- a/config/field.storage.paragraph.field_update_date.yml
+++ b/config/sync/field.storage.paragraph.field_update_date.yml
@@ -1,4 +1,4 @@
-uuid: fc8f1a42-cb06-4e3f-8e50-d6deadebd02a
+uuid: 277b908d-8e48-4ce3-b109-75d0e6c8dcfa
langcode: en
status: true
dependencies:
diff --git a/web/modules/custom/drutopia_case_study/config/install/field.storage.node.field_case_study_client.yml b/config/sync/field.storage.user.field_bio.yml
similarity index 55%
rename from web/modules/custom/drutopia_case_study/config/install/field.storage.node.field_case_study_client.yml
rename to config/sync/field.storage.user.field_bio.yml
index b613b80..230c4fe 100644
--- a/web/modules/custom/drutopia_case_study/config/install/field.storage.node.field_case_study_client.yml
+++ b/config/sync/field.storage.user.field_bio.yml
@@ -1,15 +1,15 @@
+uuid: 0087065a-88d7-4bce-a86a-9e9946bb84b7
langcode: en
status: true
dependencies:
module:
- - node
- text
-id: node.field_case_study_client
-field_name: field_case_study_client
-entity_type: node
-type: text
-settings:
- max_length: 255
+ - user
+id: user.field_bio
+field_name: field_bio
+entity_type: user
+type: text_with_summary
+settings: { }
module: text
locked: false
cardinality: 1
diff --git a/config/field.storage.node.field_people_public_gpg_key.yml b/config/sync/field.storage.user.field_gpg_public_key.yml
similarity index 66%
rename from config/field.storage.node.field_people_public_gpg_key.yml
rename to config/sync/field.storage.user.field_gpg_public_key.yml
index b994ae2..63daaee 100644
--- a/config/field.storage.node.field_people_public_gpg_key.yml
+++ b/config/sync/field.storage.user.field_gpg_public_key.yml
@@ -1,19 +1,19 @@
-uuid: 8a094c2a-4b84-40eb-945e-5be6dd2217ea
+uuid: 77c162e8-9f8c-43ff-b1f1-63a515f00590
langcode: en
status: true
dependencies:
module:
- file
- - node
-id: node.field_people_public_gpg_key
-field_name: field_people_public_gpg_key
-entity_type: node
+ - user
+id: user.field_gpg_public_key
+field_name: field_gpg_public_key
+entity_type: user
type: file
settings:
- target_type: file
display_field: false
display_default: false
uri_scheme: public
+ target_type: file
module: file
locked: false
cardinality: 1
diff --git a/config/field.storage.user.user_picture.yml b/config/sync/field.storage.user.user_picture.yml
similarity index 93%
rename from config/field.storage.user.user_picture.yml
rename to config/sync/field.storage.user.user_picture.yml
index fdabc63..5666ff5 100644
--- a/config/field.storage.user.user_picture.yml
+++ b/config/sync/field.storage.user.user_picture.yml
@@ -1,4 +1,4 @@
-uuid: 3abcf5c7-fa16-4284-8d88-9847beb64b2e
+uuid: 768dfeed-5a52-4b94-b4b5-d74dc2c31a8b
langcode: en
status: true
dependencies:
@@ -13,9 +13,6 @@ field_name: user_picture
entity_type: user
type: image
settings:
- target_type: file
- display_field: false
- display_default: false
uri_scheme: public
default_image:
uuid: null
@@ -23,6 +20,9 @@ settings:
title: ''
width: null
height: null
+ target_type: file
+ display_field: false
+ display_default: false
module: image
locked: false
cardinality: 1
diff --git a/config/field_ui.settings.yml b/config/sync/field_ui.settings.yml
similarity index 100%
rename from config/field_ui.settings.yml
rename to config/sync/field_ui.settings.yml
index 365450f..2743969 100644
--- a/config/field_ui.settings.yml
+++ b/config/sync/field_ui.settings.yml
@@ -1,3 +1,3 @@
+field_prefix: field_
_core:
default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM
-field_prefix: field_
diff --git a/config/file.settings.yml b/config/sync/file.settings.yml
similarity index 52%
rename from config/file.settings.yml
rename to config/sync/file.settings.yml
index 4481791..3315165 100644
--- a/config/file.settings.yml
+++ b/config/sync/file.settings.yml
@@ -1,15 +1,8 @@
-_core:
- default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM
description:
type: textfield
length: 128
icon:
directory: core/modules/file/icons
make_unused_managed_files_temporary: false
-filename_sanitization:
- transliterate: false
- replace_whitespace: false
- replace_non_alphanumeric: false
- deduplicate_separators: false
- lowercase: false
- replacement_character: '-'
+_core:
+ default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM
diff --git a/config/filter.format.basic_html.yml b/config/sync/filter.format.basic_html.yml
similarity index 74%
rename from config/filter.format.basic_html.yml
rename to config/sync/filter.format.basic_html.yml
index 001e4f9..e98d068 100644
--- a/config/filter.format.basic_html.yml
+++ b/config/sync/filter.format.basic_html.yml
@@ -1,4 +1,4 @@
-uuid: 6b60b2cc-115d-4d1a-8976-cd7ca0fccdf2
+uuid: a7a70854-73ab-44d1-97f9-6a1119ce7be1
langcode: en
status: true
dependencies:
@@ -10,67 +10,61 @@ name: 'Basic HTML'
format: basic_html
weight: 0
filters:
- editor_file_reference:
- id: editor_file_reference
- provider: editor
+ filter_html:
+ id: filter_html
+ provider: filter
status: true
- weight: -47
- settings: { }
+ weight: -50
+ settings:
+ allowed_html: ' -
-
-
'
+ filter_html_help: false
+ filter_html_nofollow: false
filter_align:
id: filter_align
provider: filter
status: true
- weight: -50
- settings: { }
- filter_autop:
- id: filter_autop
- provider: filter
- status: true
- weight: -45
+ weight: -48
settings: { }
filter_caption:
id: filter_caption
provider: filter
status: true
- weight: -49
- settings: { }
- filter_html:
- id: filter_html
- provider: filter
- status: true
- weight: -42
- settings:
- allowed_html: ' -
-
-
'
- filter_html_help: false
- filter_html_nofollow: false
- filter_html_escape:
- id: filter_html_escape
- provider: filter
- status: false
- weight: -46
+ weight: -47
settings: { }
filter_html_image_secure:
id: filter_html_image_secure
provider: filter
+ status: true
+ weight: -46
+ settings: { }
+ editor_file_reference:
+ id: editor_file_reference
+ provider: editor
+ status: true
+ weight: -45
+ settings: { }
+ filter_html_escape:
+ id: filter_html_escape
+ provider: filter
status: false
- weight: -48
+ weight: -44
settings: { }
filter_htmlcorrector:
id: filter_htmlcorrector
provider: filter
status: false
- weight: -41
- settings: { }
- filter_image_lazy_load:
- id: filter_image_lazy_load
- provider: filter
- status: true
- weight: -46
+ weight: -42
settings: { }
filter_url:
id: filter_url
provider: filter
- status: true
- weight: -44
+ status: false
+ weight: -43
settings:
filter_url_length: 72
+ filter_autop:
+ id: filter_autop
+ provider: filter
+ status: true
+ weight: -49
+ settings: { }
diff --git a/config/filter.format.full_html.yml b/config/sync/filter.format.full_html.yml
similarity index 75%
rename from config/filter.format.full_html.yml
rename to config/sync/filter.format.full_html.yml
index c695c3a..8771189 100644
--- a/config/filter.format.full_html.yml
+++ b/config/sync/filter.format.full_html.yml
@@ -1,4 +1,4 @@
-uuid: d2ca23a8-cb8b-4130-97c7-bfe5af5560d3
+uuid: fb4a842a-8876-45f9-a62a-1d85787da7e7
langcode: en
status: true
dependencies:
@@ -10,55 +10,61 @@ name: 'Full HTML'
format: full_html
weight: 1
filters:
- editor_file_reference:
- id: editor_file_reference
- provider: editor
- status: true
- weight: 11
- settings: { }
filter_align:
id: filter_align
provider: filter
status: true
- weight: 8
- settings: { }
- filter_autop:
- id: filter_autop
- provider: filter
- status: true
- weight: 0
+ weight: -49
settings: { }
filter_caption:
id: filter_caption
provider: filter
status: true
- weight: 9
+ weight: -48
+ settings: { }
+ filter_htmlcorrector:
+ id: filter_htmlcorrector
+ provider: filter
+ status: true
+ weight: -47
+ settings: { }
+ editor_file_reference:
+ id: editor_file_reference
+ provider: editor
+ status: true
+ weight: -46
+ settings: { }
+ filter_html_escape:
+ id: filter_html_escape
+ provider: filter
+ status: false
+ weight: -44
settings: { }
filter_html:
id: filter_html
provider: filter
status: false
- weight: -10
+ weight: -45
settings:
allowed_html: ' -
-
-