From 30b49372f5b210eac1acf211cffd3d3ff8ae60c9 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 6 Jul 2020 23:20:43 +0000 Subject: [PATCH 001/236] First step to move the site to Drupal 9 --- .ddev/.gitignore | 4 +++- .ddev/config.yaml | 3 ++- composer.json | 9 ++++++--- .../custom/agaric_migration/agaric_migration.info.yml | 2 +- .../drutopia_case_study/drutopia_case_study.info.yml | 2 +- .../drutopia_creative_license.info.yml | 2 +- web/themes/custom/agarica/agarica.info.yml | 3 +-- 7 files changed, 15 insertions(+), 10 deletions(-) diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 9989216..bf003b6 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -4,12 +4,14 @@ /commands/*/*.example /commands/*/README.txt /commands/host/launch +/commands/web/xdebug /commands/db/mysql /homeadditions/*.example /homeadditions/README.txt /.gitignore /import.yaml -/docker-compose.yaml +/.ddev-docker-compose-base.yaml +/.ddev-docker-compose-full.yaml /db_snapshots /sequelpro.spf /import-db diff --git a/.ddev/config.yaml b/.ddev/config.yaml index d67847c..dfdd40d 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -9,11 +9,12 @@ router_https_port: "443" xdebug_enabled: true additional_hostnames: [] additional_fqdns: [] -mariadb_version: "10.2" +mariadb_version: "10.3" nfs_mount_enabled: false provider: default webimage_extra_packages: [rake, sassc] use_dns_when_possible: false +php_version: "7.3" timezone: "" diff --git a/composer.json b/composer.json index dc70ea0..75f8d40 100644 --- a/composer.json +++ b/composer.json @@ -47,11 +47,12 @@ "drupal/textarea_widget_for_text": "^1.1", "drupal/twigsuggest": "1.x-dev", "drupal/ui_patterns": "^1.0@RC", + "drupal/upgrade_status": "^2.0", "drupal/viewsreference": "^1.2", "drupal/webform": "^5.0@RC", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "^1.9", - "drush/drush": "^9.0", + "drush/drush": "^10.0", "drutopia/drutopia": "^1.0-beta1", "wikimedia/composer-merge-plugin": "^1.4", "zaporylie/composer-drupal-optimizations": "^1.0" @@ -59,7 +60,8 @@ "require-dev": { "behat/behat": "^3.4", "behat/mink": "^1.7", - "behat/mink-goutte-driver": "^1.2" + "behat/mink-goutte-driver": "^1.2", + "phpunit/phpunit": "^7" }, "repositories": { "drupal": { @@ -108,7 +110,8 @@ "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, "drupal/wysiwyg_linebreaks": { - "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch", + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch" } } }, diff --git a/web/modules/custom/agaric_migration/agaric_migration.info.yml b/web/modules/custom/agaric_migration/agaric_migration.info.yml index 9799ebe..df45326 100644 --- a/web/modules/custom/agaric_migration/agaric_migration.info.yml +++ b/web/modules/custom/agaric_migration/agaric_migration.info.yml @@ -2,7 +2,7 @@ name: Agaric Migration description: Migrate the content from the D7 version of the site. package: Custom type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - drupal:migrate - drupal:migrate_drupal diff --git a/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml b/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml index e264ea3..cf0e384 100644 --- a/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml +++ b/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml @@ -1,7 +1,7 @@ name: 'Drutopia Case Study' description: 'A Case Study highlights work done on a project.' type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - config_snapshot - drutopia_case_study diff --git a/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml b/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml index bb4db06..4b2ffe1 100644 --- a/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml +++ b/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml @@ -1,7 +1,7 @@ name: 'Creative License' type: module -core: 8.x package: Drutopia +core_version_requirement: ^8 || ^9 dependencies: - config_actions - config_snapshot diff --git a/web/themes/custom/agarica/agarica.info.yml b/web/themes/custom/agarica/agarica.info.yml index 61abfd8..7f05091 100644 --- a/web/themes/custom/agarica/agarica.info.yml +++ b/web/themes/custom/agarica/agarica.info.yml @@ -3,8 +3,7 @@ description: An Octavia-based subtheme. type: theme base theme: octavia package: Custom -core: 8.x - +core_version_requirement: ^8 || ^9 regions: header: 'Header' navbar_branding: 'Branding' From b431d07447bfc7c6d0909bc96fb23f99e8fbf7d6 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Sun, 12 Jul 2020 00:47:14 +0000 Subject: [PATCH 002/236] Add the patch to make wyswyg_linebreaks D9 compatible --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 75f8d40..ac48347 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,7 @@ "drupal/viewsreference": "^1.2", "drupal/webform": "^5.0@RC", "drupal/webform_mailchimp": "^5.4", - "drupal/wysiwyg_linebreaks": "^1.9", + "drupal/wysiwyg_linebreaks": "1.x-dev", "drush/drush": "^10.0", "drutopia/drutopia": "^1.0-beta1", "wikimedia/composer-merge-plugin": "^1.4", @@ -110,8 +110,8 @@ "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, "drupal/wysiwyg_linebreaks": { - "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch", - "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch" + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" } } }, From cd7ff4df460e4f855ca3c695a3c924109be2de4e Mon Sep 17 00:00:00 2001 From: David Valdez Date: Sun, 12 Jul 2020 01:38:32 +0000 Subject: [PATCH 003/236] Add the patch to make textarea_widget_for_text work with D9 --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index ac48347..5ba9f67 100644 --- a/composer.json +++ b/composer.json @@ -112,6 +112,12 @@ "drupal/wysiwyg_linebreaks": { "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" + }, + "drupal/textarea_widget_for_text": { + "Automated Drupal Rector fixes":"https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" + }, + "drupal/similarterms": { + "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" } } }, From f116820568734cb864f71c9b65c09474c286e799 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Sun, 12 Jul 2020 01:39:02 +0000 Subject: [PATCH 004/236] Add several patches to make the modules work with Drupal 9 --- composer.lock | 2622 +++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 2304 insertions(+), 318 deletions(-) diff --git a/composer.lock b/composer.lock index bb238a3..ecda02b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2b7675423d2eeb8c3663084757b3a8e6", + "content-hash": "3226332b44d7a39e94a07ec577adfad3", "packages": [ { "name": "algolia/places", @@ -2054,17 +2054,17 @@ }, { "name": "drupal/admin_toolbar", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "8.x-2.2" + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "41ea0e3321e6d1e190c486be49a99e60446d8dd7" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a" }, "require": { "drupal/core": "^8.8.0 || ^9.0" @@ -2072,8 +2072,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2082,7 +2082,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -2126,13 +2126,13 @@ "Toolbar" ], "support": { - "source": "http://cgit.drupalcode.org/admin_toolbar", + "source": "https://git.drupalcode.org/project/admin_toolbar", "issues": "https://www.drupal.org/project/issues/admin_toolbar" } }, { "name": "drupal/admin_toolbar_links_access_filter", - "version": "2.2.0", + "version": "2.3.0", "require": { "drupal/admin_toolbar": "self.version", "drupal/core": "^8.8.0 || ^9.0" @@ -2140,8 +2140,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2150,29 +2150,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Wilfrid Roze (eme)", - "homepage": "https://www.drupal.org/u/eme", - "role": "Maintainer" + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" }, { - "name": "Romain Jarraud (romainj)", - "homepage": "https://www.drupal.org/u/romainj", - "role": "Maintainer" + "name": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" }, { - "name": "Adrian Cid Almaguer (adriancid)", - "homepage": "https://www.drupal.org/u/adriancid", - "email": "adriancid@gmail.com", - "role": "Maintainer" + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "Mohamed Anis Taktak (matio89)", - "homepage": "https://www.drupal.org/u/matio89", - "role": "Maintainer" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" }, { "name": "fethi.krout", @@ -2187,20 +2182,15 @@ "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": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "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": "http://cgit.drupalcode.org/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" + "source": "https://git.drupalcode.org/project/admin_toolbar" } }, { "name": "drupal/admin_toolbar_tools", - "version": "2.2.0", + "version": "2.3.0", "require": { "drupal/admin_toolbar": "self.version", "drupal/core": "^8.8.0 || ^9.0" @@ -2208,8 +2198,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2218,29 +2208,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Wilfrid Roze (eme)", - "homepage": "https://www.drupal.org/u/eme", - "role": "Maintainer" + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" }, { - "name": "Romain Jarraud (romainj)", - "homepage": "https://www.drupal.org/u/romainj", - "role": "Maintainer" + "name": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" }, { - "name": "Adrian Cid Almaguer (adriancid)", - "homepage": "https://www.drupal.org/u/adriancid", - "email": "adriancid@gmail.com", - "role": "Maintainer" + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "Mohamed Anis Taktak (matio89)", - "homepage": "https://www.drupal.org/u/matio89", - "role": "Maintainer" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" }, { "name": "fethi.krout", @@ -2256,41 +2241,33 @@ } ], "description": "Adds menu links to the Admin Toolbar.", - "homepage": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "homepage": "https://www.drupal.org/project/admin_toolbar", "support": { - "source": "http://cgit.drupalcode.org/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" + "source": "https://git.drupalcode.org/project/admin_toolbar" } }, { "name": "drupal/allowed_formats", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "50f8f80cf3326382c968521d34d3a113b37e32b3" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "4c3c036d7b41428d6e22b61f1219de0ab012feec" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1573747386", + "version": "8.x-1.3", + "datestamp": "1592909219", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2930,7 +2907,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/comment_notify.git", - "reference": "217b2a224511539164d51ffc718dd275da557ffd" + "reference": "63346371fad80a77d2340dadd7a376773a67f870" }, "require": { "drupal/core": "^8 || ^9", @@ -2942,8 +2919,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0+2-dev", - "datestamp": "1582301897", + "version": "8.x-1.1+1-dev", + "datestamp": "1588698269", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -2973,7 +2950,7 @@ "issues": "https://drupal.org/project/issues/comment_notify", "irc": "irc://irc.freenode.org/drupal-contribute" }, - "time": "2020-05-05T17:03:57+00:00" + "time": "2020-07-10T17:43:05+00:00" }, { "name": "drupal/components", @@ -3143,30 +3120,31 @@ }, { "name": "drupal/config_distro", - "version": "1.0.0-alpha3", + "version": "1.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "8.x-1.0-alpha3" + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha3.zip", - "reference": "8.x-1.0-alpha3", - "shasum": "c83fcd71c311102cb64f72b8f7ca727bddff2264" + "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "a866d160348d709e0029b176826097fb9b15c49c" }, "require": { "drupal/config_filter": "*", - "drupal/core": "*" + "drupal/core": "^8.8 || ^9" + }, + "require-dev": { + "drupal/config_distro_filter": "*", + "drupal/config_filter": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-alpha3", - "datestamp": "1539071280", + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -3216,6 +3194,57 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/config_distro_filter", + "version": "1.0.0-alpha4", + "require": { + "drupal/config_distro": "self.version", + "drupal/config_filter": "*", + "drupal/core": "^8.8 || ^9" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", + "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": "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": "1.5.0", @@ -3467,17 +3496,17 @@ }, { "name": "drupal/config_provider", - "version": "2.0.0-rc2", + "version": "2.0.0-rc4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "8.x-2.0-rc2" + "reference": "8.x-2.0-rc4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc2.zip", - "reference": "8.x-2.0-rc2", - "shasum": "621e2fe438a14c07fae5cfb0cc9a294fb6e5e6d7" + "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc4.zip", + "reference": "8.x-2.0-rc4", + "shasum": "64a1545e8cc48f9363e028d3360134f143baaf58" }, "require": { "drupal/core": "^8 || ^9" @@ -3485,11 +3514,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0-rc2", - "datestamp": "1591297649", + "version": "8.x-2.0-rc4", + "datestamp": "1592923705", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -3514,6 +3543,10 @@ "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3595,41 +3628,39 @@ }, { "name": "drupal/config_sync", - "version": "2.0.0-beta5", + "version": "2.0.0-beta7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "8.x-2.0-beta5" + "reference": "8.x-2.0-beta7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta5.zip", - "reference": "8.x-2.0-beta5", - "shasum": "76a922ca354cb18cdfd57d427bdd91721630e48b" + "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta7.zip", + "reference": "8.x-2.0-beta7", + "shasum": "39de6d167f1f99992feaf5e30b53ae097ebebeec" }, "require": { "drupal/config_distro": "^1.0-alpha3", - "drupal/config_filter": "^1.3", + "drupal/config_distro_filter": "^1.0.0-alpha4", + "drupal/config_filter": "~1.3||~2.0", "drupal/config_merge": "^1.0-alpha2", "drupal/config_normalizer": "^1.0-alpha3", "drupal/config_provider": "^2.0-alpha6", "drupal/config_snapshot": "^1.0-alpha6", "drupal/config_update": "^1.5", - "drupal/core": "^8.3", + "drupal/core": "^8.8 || ^9", "php": ">=5.6", - "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1" + "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1|^4.4.9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { - "version": "8.x-2.0-beta5", - "datestamp": "1550290984", + "version": "8.x-2.0-beta7", + "datestamp": "1594083315", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -3644,10 +3675,22 @@ "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": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3723,16 +3766,16 @@ }, { "name": "drupal/core", - "version": "8.9.1", + "version": "8.9.2", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "e8ee964c562870381876e85d3f5eaaf8c8ecc9ee" + "reference": "8f0e24555c093669ce41edbb30637fe19df16802" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/e8ee964c562870381876e85d3f5eaaf8c8ecc9ee", - "reference": "e8ee964c562870381876e85d3f5eaaf8c8ecc9ee", + "url": "https://api.github.com/repos/drupal/core/zipball/8f0e24555c093669ce41edbb30637fe19df16802", + "reference": "8f0e24555c093669ce41edbb30637fe19df16802", "shasum": "" }, "require": { @@ -3950,11 +3993,11 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2020-06-17T17:57:48+00:00" + "time": "2020-07-08T18:53:45+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.1", + "version": "8.9.2", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -4001,16 +4044,16 @@ }, { "name": "drupal/core-recommended", - "version": "8.9.1", + "version": "8.9.2", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "41042f9eaa35b027e6b2c42fa03edcb85da54a06" + "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/41042f9eaa35b027e6b2c42fa03edcb85da54a06", - "reference": "41042f9eaa35b027e6b2c42fa03edcb85da54a06", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/8301ff766f17ce8a9eb36d3ffd183cbfff01dad6", + "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6", "shasum": "" }, "require": { @@ -4022,7 +4065,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.1", + "drupal/core": "8.9.2", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4079,7 +4122,7 @@ "GPL-2.0-or-later" ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", - "time": "2020-06-17T17:57:48+00:00" + "time": "2020-07-08T18:53:45+00:00" }, { "name": "drupal/crop", @@ -5754,7 +5797,7 @@ "drupal/autosave_form": "^1.1", "drupal/ckeditorheight": "^1.8", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", @@ -6725,30 +6768,19 @@ }, { "name": "drupal/gdpr", - "version": "2.0.0-alpha7", + "version": "dev-2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "8.x-2.0-alpha7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gdpr-8.x-2.0-alpha7.zip", - "reference": "8.x-2.0-alpha7", - "shasum": "07d2ebdd811e069f564bdd27158a67e17d031679" + "reference": "8777999faf3f6483d79fa9a5a40b789bb6590d49" }, "require": { - "cweagans/composer-patches": "~1.0", "drupal/checklistapi": "^1.0", - "drupal/core": "~8.4", + "drupal/core": "^8 || ^9", "drupal/entity": "^1.0", - "drupal/entity_reference_revisions": "^1.4", + "drupal/entity_reference_revisions": "^1.8", "drupal/message": "^1.0", - "drupal/token": "^1.1", - "drush/drush": "~9.0", - "ext-zip": "*", - "fzaninotto/faker": "^1.7", - "php": "^7.1" + "drupal/token": "^1.7" }, "require-dev": { "drupal/anonymizer": "*", @@ -6758,14 +6790,19 @@ "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": { "branch-alias": { "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.0-alpha7", - "datestamp": "1552919885", + "version": "8.x-2.0-alpha7+25-dev", + "datestamp": "1594397571", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -6794,6 +6831,10 @@ "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" @@ -6802,6 +6843,10 @@ "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" @@ -6822,8 +6867,9 @@ "description": "Helps with making a site GDPR-compliant.", "homepage": "https://www.drupal.org/project/gdpr", "support": { - "source": "http://cgit.drupalcode.org/gdpr" - } + "source": "https://git.drupalcode.org/project/gdpr" + }, + "time": "2020-07-10T16:40:13+00:00" }, { "name": "drupal/gnode", @@ -7479,17 +7525,17 @@ }, { "name": "drupal/menu_admin_per_menu", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec" + "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c" }, "require": { "drupal/core": "^8 || ^9" @@ -7497,8 +7543,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591098397", + "version": "8.x-1.3", + "datestamp": "1593436060", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8429,17 +8475,17 @@ }, { "name": "drupal/preview_link", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "57243b134c550ee464c8c3de707681638b07d4d8" + "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "bfed04e554864f9c3fb5d7a758bc27f5041f1518" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -8451,8 +8497,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1591244932", + "version": "8.x-1.7", + "datestamp": "1593052165", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9034,13 +9080,10 @@ "shasum": "d821f881203a634d44a174ff7a793e408ea7890f" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.4", "datestamp": "1568313784", @@ -9048,6 +9091,9 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9076,32 +9122,29 @@ }, { "name": "drupal/skins", - "version": "1.0.0-alpha4", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/skins.git", - "reference": "8.x-1.0-alpha4" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-alpha4.zip", - "reference": "8.x-1.0-alpha4", - "shasum": "877bb89f55f514b7c8d8dd535ce9576e5faa5eab" + "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "46b18de0b68487cf7620c3b0d87276b3bb8045b8" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-alpha4", - "datestamp": "1565305981", + "version": "8.x-1.0-rc1", + "datestamp": "1593962621", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -9119,7 +9162,7 @@ "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Enable themes to provide a set of skins with distinct stylesheets and templates.", + "description": "Enable themes or modules to provide a set of skins with distinct stylesheets and templates.", "homepage": "https://www.drupal.org/project/skins", "support": { "source": "https://git.drupalcode.org/project/skins" @@ -9447,13 +9490,10 @@ "shasum": "2b5dd3b90fb01695c8173aa37c5934f98527de7d" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.1", "datestamp": "1513904284", @@ -9461,6 +9501,9 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9480,7 +9523,7 @@ "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": "http://cgit.drupalcode.org/textarea_widget_for_text" + "source": "https://git.drupalcode.org/project/textarea_widget_for_text" } }, { @@ -9724,6 +9767,80 @@ "source": "https://git.drupalcode.org/project/ui_patterns" } }, + { + "name": "drupal/upgrade_status", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/upgrade_status.git", + "reference": "8.x-2.9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-2.9.zip", + "reference": "8.x-2.9", + "shasum": "3751062ba6192cbed94c3c970fa3adbe308fb450" + }, + "require": { + "drupal/core": "^8.7.7 || ^9", + "mathieuviossat/arraytotexttable": "~1.0.0", + "mglaman/phpstan-drupal": "^0.12.0", + "nikic/php-parser": "^4.0.0", + "phpstan/phpstan-deprecation-rules": "^0.12.0", + "webflo/drupal-finder": "^1.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.9", + "datestamp": "1592678651", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Gábor Hojtsy", + "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "colan", + "homepage": "https://www.drupal.org/user/58704" + }, + { + "name": "herczogzoltan", + "homepage": "https://www.drupal.org/user/3528391" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" + } + ], + "description": "Review current status of known Drupal 9 incompatibilities on the site.", + "homepage": "http://drupal.org/project/upgrade_status", + "support": { + "source": "https://git.drupalcode.org/project/upgrade_status" + } + }, { "name": "drupal/video_embed_field", "version": "2.4.0", @@ -9844,17 +9961,17 @@ }, { "name": "drupal/webform", - "version": "5.16.0", + "version": "5.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "8.x-5.16" + "reference": "8.x-5.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.16.zip", - "reference": "8.x-5.16", - "shasum": "a8bfe83d56ffd0fce16af9aa7eb4209247e5d420" + "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.19.zip", + "reference": "8.x-5.19", + "shasum": "90a2084c2647bca791cc8b18a7e2a3b49f3da7ea" }, "require": { "drupal/core": "^8.8" @@ -9864,20 +9981,23 @@ "drupal/bootstrap": "~3.0", "drupal/captcha": "~1.0", "drupal/chosen": "~2.0", - "drupal/devel": "*", - "drupal/entity_print": "*", + "drupal/clientside_validation": "~3.0", + "drupal/clientside_validation_jquery": "*", + "drupal/devel": "~3.0", + "drupal/entity_print": "~2.0", "drupal/gnode": "*", - "drupal/group": "*", - "drupal/lingotek": "~2.0", + "drupal/group": "~1.0", + "drupal/lingotek": "~3.0", "drupal/mailsystem": "~4.0", "drupal/paragraphs": "~1.0", "drupal/select2": "~1.0", "drupal/smtp": "~1.0", "drupal/styleguide": "~1.0", "drupal/telephone_validation": "~2.0", - "drupal/token": "*", + "drupal/token": "~1.0", "drupal/webform_access": "*", "drupal/webform_attachment": "*", + "drupal/webform_clientside_validation": "*", "drupal/webform_devel": "*", "drupal/webform_entity_print": "*", "drupal/webform_group": "*", @@ -9890,8 +10010,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.16", - "datestamp": "1591198998", + "version": "8.x-5.19", + "datestamp": "1593681136", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10044,20 +10164,14 @@ }, { "name": "drupal/wysiwyg_linebreaks", - "version": "1.10.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/wysiwyg_linebreaks-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "64f529906354e9689f1a1926ef68959fc627a3ca" + "reference": "a95e89898af2797601b8f8fd282c7a57746065f5" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { @@ -10065,14 +10179,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.10", + "version": "8.x-1.10+0-dev", "datestamp": "1542910380", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } }, "patches_applied": { + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" } }, @@ -10089,61 +10204,56 @@ "description": "Plugin to allow legacy content editing and more sane formatting in wysiwyg editors.", "homepage": "https://www.drupal.org/project/wysiwyg_linebreaks", "support": { - "source": "http://cgit.drupalcode.org/wysiwyg_linebreaks" - } + "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks" + }, + "time": "2018-11-22T18:09:54+00:00" }, { "name": "drush/drush", - "version": "9.7.2", + "version": "10.3.1", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "ab5e345a72c9187a7d770486a09691f6526826aa" + "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa", - "reference": "ab5e345a72c9187a7d770486a09691f6526826aa", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/aad2b17ad34801d9b55cff903e3e7db65d754b80", + "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.28.1", + "chi-teck/drupal-code-generator": "^1.30.5", "composer/semver": "^1.4", - "consolidation/annotated-command": "^2.12", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", - "consolidation/output-formatters": "^3.3.1", - "consolidation/robo": "^1.4.6", + "consolidation/robo": "^1.4.11 || ^2", "consolidation/site-alias": "^3.0.0@stable", - "consolidation/site-process": "^2.0.3", + "consolidation/site-process": "^2.1 || ^4", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", "league/container": "~2", - "php": ">=5.6.0", + "php": ">=7.1.3", "psr/log": "~1.0", "psy/psysh": "~0.6", - "symfony/console": "^3.4", "symfony/event-dispatcher": "^3.4 || ^4.0", "symfony/finder": "^3.4 || ^4.0", - "symfony/process": "^3.4", - "symfony/var-dumper": "^3.4 || ^4.0", - "symfony/yaml": "^3.4", - "webflo/drupal-finder": "^1.1", + "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", + "symfony/yaml": "^3.4 || ^4.0", + "webflo/drupal-finder": "^1.2", "webmozart/path-util": "^2.1.0" }, "require-dev": { - "composer/installers": "^1.2", + "composer/installers": "^1.7", "cweagans/composer-patches": "~1.0", + "david-garcia/phpwhois": "4.3.0", "drupal/alinks": "1.0.0", - "drupal/devel": "^2", - "drupal/empty_theme": "1.0", + "drupal/core-recommended": "^8.8", "g1a/composer-test-scenarios": "^3", "lox/xhprof": "dev-master", "phpunit/phpunit": "^4.8.36 || ^6.1", "squizlabs/php_codesniffer": "^2.7 || ^3", - "vlucas/phpdotenv": "^2.4", - "webflo/drupal-core-require-dev": "8.7.x-dev", - "webflo/drupal-core-strict": "8.7.x-dev" + "vlucas/phpdotenv": "^2.4" }, "bin": [ "drush" @@ -10176,21 +10286,8 @@ "type:drupal-drush" ] }, - "scenarios": { - "php5": { - "config": { - "platform": { - "php": "5.6.38" - } - }, - "require-dev": { - "webflo/drupal-core-strict": "8.6.x-dev", - "webflo/drupal-core-require-dev": "8.6.x-dev" - } - } - }, "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -10239,7 +10336,13 @@ ], "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", - "time": "2020-02-09T17:29:51+00:00" + "funding": [ + { + "url": "https://github.com/weitzman", + "type": "github" + } + ], + "time": "2020-06-30T19:43:45+00:00" }, { "name": "drutopia/drutopia", @@ -10455,16 +10558,16 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.12.0", + "version": "v4.13.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", "shasum": "" }, "require": { @@ -10480,6 +10583,9 @@ }, "files": [ "library/HTMLPurifier.composer.php" + ], + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -10498,7 +10604,7 @@ "keywords": [ "html" ], - "time": "2019-10-28T03:44:26+00:00" + "time": "2020-06-29T00:56:53+00:00" }, { "name": "facebook/graph-sdk", @@ -10558,56 +10664,6 @@ ], "time": "2018-12-11T22:56:31+00:00" }, - { - "name": "fzaninotto/faker", - "version": "v1.9.1", - "source": { - "type": "git", - "url": "https://github.com/fzaninotto/Faker.git", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0" - }, - "require-dev": { - "ext-intl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^2.9.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, - "autoload": { - "psr-4": { - "Faker\\": "src/Faker/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "François Zaninotto" - } - ], - "description": "Faker is a PHP library that generates fake data for you.", - "keywords": [ - "data", - "faker", - "fixtures" - ], - "time": "2019-12-12T13:22:17+00:00" - }, { "name": "grasmash/expander", "version": "1.0.0", @@ -11521,6 +11577,84 @@ ], "time": "2020-03-29T12:36:29+00:00" }, + { + "name": "laminas/laminas-servicemanager", + "version": "3.4.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-servicemanager.git", + "reference": "0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1", + "reference": "0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1", + "shasum": "" + }, + "require": { + "container-interop/container-interop": "^1.2", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0", + "psr/container": "^1.0" + }, + "provide": { + "container-interop/container-interop-implementation": "^1.2", + "psr/container-implementation": "^1.0" + }, + "replace": { + "zendframework/zend-servicemanager": "^3.4.0" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "mikey179/vfsstream": "^1.6.5", + "ocramius/proxy-manager": "^1.0 || ^2.0", + "phpbench/phpbench": "^0.13.0", + "phpunit/phpunit": "^5.7.25 || ^6.4.4" + }, + "suggest": { + "laminas/laminas-stdlib": "laminas-stdlib ^2.5 if you wish to use the MergeReplaceKey or MergeRemoveKey features in Config instances", + "ocramius/proxy-manager": "ProxyManager 1.* to handle lazy initialization of services" + }, + "bin": [ + "bin/generate-deps-for-config-factory", + "bin/generate-factory-for-class" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.3-dev", + "dev-develop": "4.0-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\ServiceManager\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Factory-Driven Dependency Injection Container", + "homepage": "https://laminas.dev", + "keywords": [ + "PSR-11", + "dependency-injection", + "di", + "dic", + "laminas", + "service-manager", + "servicemanager" + ], + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-05-11T14:43:22+00:00" + }, { "name": "laminas/laminas-stdlib", "version": "3.2.1", @@ -11571,6 +11705,58 @@ ], "time": "2019-12-31T17:51:15+00:00" }, + { + "name": "laminas/laminas-text", + "version": "2.7.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-text.git", + "reference": "3601b5eacb06ed0a12f658df860cc0f9613cf4db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-text/zipball/3601b5eacb06ed0a12f658df860cc0f9613cf4db", + "reference": "3601b5eacb06ed0a12f658df860cc0f9613cf4db", + "shasum": "" + }, + "require": { + "laminas/laminas-servicemanager": "^2.7.5 || ^3.0.3", + "laminas/laminas-stdlib": "^2.7 || ^3.0", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" + }, + "replace": { + "zendframework/zend-text": "self.version" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-config": "^2.6", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev", + "dev-develop": "2.8.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\Text\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Create FIGlets and text-based tables", + "homepage": "https://laminas.dev", + "keywords": [ + "laminas", + "text" + ], + "time": "2019-12-31T17:54:52+00:00" + }, { "name": "laminas/laminas-xml", "version": "1.2.0", @@ -11927,6 +12113,53 @@ ], "time": "2017-09-04T12:26:28+00:00" }, + { + "name": "mathieuviossat/arraytotexttable", + "version": "v1.0.8", + "source": { + "type": "git", + "url": "https://github.com/viossat/arraytotexttable.git", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4", + "shasum": "" + }, + "require": { + "laminas/laminas-text": "^2.7", + "php": ">=5.3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "MathieuViossat\\Util\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathieu Viossat", + "email": "mathieu@viossat.fr", + "homepage": "https://viossat.fr" + } + ], + "description": "Display arrays in terminal", + "homepage": "https://github.com/viossat/arraytotexttable", + "keywords": [ + "array", + "ascii", + "table", + "terminal", + "text", + "unicode" + ], + "time": "2020-06-23T17:14:22+00:00" + }, { "name": "mf2/mf2", "version": "0.4.6", @@ -11983,6 +12216,95 @@ ], "time": "2018-08-24T14:47:04+00:00" }, + { + "name": "mglaman/phpstan-drupal", + "version": "0.12.4", + "source": { + "type": "git", + "url": "https://github.com/mglaman/phpstan-drupal.git", + "reference": "4a74b797251562081715bb086a49d460c61a8783" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/4a74b797251562081715bb086a49d460c61a8783", + "reference": "4a74b797251562081715bb086a49d460c61a8783", + "shasum": "" + }, + "require": { + "nette/finder": "^2.5", + "php": "^7.1", + "phpstan/phpstan": "^0.12.26", + "symfony/yaml": "~3.4.5|^4.2", + "webflo/drupal-finder": "^1.2" + }, + "require-dev": { + "composer/installers": "^1.6", + "drupal/core-recommended": "^8.8@alpha", + "drush/drush": "^9.6", + "phpstan/phpstan-deprecation-rules": "~0.12.0", + "phpstan/phpstan-strict-rules": "^0.12.0", + "phpunit/phpunit": "^7.5", + "squizlabs/php_codesniffer": "^3.3" + }, + "suggest": { + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core." + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "installer-paths": { + "tests/fixtures/drupal/core": [ + "type:drupal-core" + ], + "tests/fixtures/drupal/libraries/{$name}": [ + "type:drupal-library" + ], + "tests/fixtures/drupal/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "tests/fixtures/drupal/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "Drupal extension and rules for PHPStan", + "funding": [ + { + "url": "https://github.com/mglaman", + "type": "github" + }, + { + "url": "https://liberapay.com/mglaman", + "type": "liberapay" + } + ], + "time": "2020-06-10T21:05:10+00:00" + }, { "name": "michelf/php-markdown", "version": "1.9.0", @@ -12070,17 +12392,158 @@ "time": "2016-07-25T17:07:32+00:00" }, { - "name": "nikic/php-parser", - "version": "v4.5.0", + "name": "nette/finder", + "version": "v2.5.2", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463" + "url": "https://github.com/nette/finder.git", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463", - "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463", + "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "shasum": "" + }, + "require": { + "nette/utils": "^2.4 || ^3.0", + "php": ">=7.1" + }, + "conflict": { + "nette/nette": "<2.2" + }, + "require-dev": { + "nette/tester": "^2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0", + "GPL-3.0" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🔍 Nette Finder: find files and directories with an intuitive API.", + "homepage": "https://nette.org", + "keywords": [ + "filesystem", + "glob", + "iterator", + "nette" + ], + "time": "2020-01-03T20:35:40+00:00" + }, + { + "name": "nette/utils", + "version": "v3.1.2", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "488f58378bba71767e7831c83f9e0fa808bf83b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/488f58378bba71767e7831c83f9e0fa808bf83b9", + "reference": "488f58378bba71767e7831c83f9e0fa808bf83b9", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "time": "2020-05-27T09:58:51+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.6.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "c346bbfafe2ff60680258b631afb730d186ed864" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864", + "reference": "c346bbfafe2ff60680258b631afb730d186ed864", "shasum": "" }, "require": { @@ -12119,7 +12582,7 @@ "parser", "php" ], - "time": "2020-06-03T07:24:19+00:00" + "time": "2020-07-02T17:12:47+00:00" }, { "name": "p3k/http", @@ -12703,6 +13166,113 @@ ], "time": "2019-12-10T10:24:42+00:00" }, + { + "name": "phpstan/phpstan", + "version": "0.12.32", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "d03863f504c8432b3de4d1881f73f6acb8c0e67c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03863f504c8432b3de4d1881f73f6acb8c0e67c", + "reference": "d03863f504c8432b3de4d1881f73f6acb8c0e67c", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpstan", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", + "type": "tidelift" + } + ], + "time": "2020-07-01T11:57:52+00:00" + }, + { + "name": "phpstan/phpstan-deprecation-rules", + "version": "0.12.4", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187", + "reference": "9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187", + "shasum": "" + }, + "require": { + "php": "~7.1", + "phpstan/phpstan": "^0.12" + }, + "require-dev": { + "consistence/coding-standard": "^3.0.1", + "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", + "ergebnis/composer-normalize": "^2.0.2", + "jakub-onderka/php-parallel-lint": "^1.0", + "phing/phing": "^2.16.0", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.0", + "slevomat/coding-standard": "^4.5.2" + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "phpstan": { + "includes": [ + "rules.neon" + ] + } + }, + "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.", + "time": "2020-05-30T18:02:31+00:00" + }, { "name": "progress-tracker/progress-tracker", "version": "1.4.0", @@ -14195,16 +14765,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.17.0", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd" + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd", - "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2", "shasum": "" }, "require": { @@ -14214,6 +14784,10 @@ "extra": { "branch-alias": { "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -14253,7 +14827,21 @@ "portable", "shim" ], - "time": "2020-05-12T16:47:27+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:46:27+00:00" }, { "name": "symfony/polyfill-util", @@ -15059,20 +15647,20 @@ }, { "name": "webmozart/assert", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "9dc4f203e36f2b486149058bade43c851dd97451" + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/9dc4f203e36f2b486149058bade43c851dd97451", - "reference": "9dc4f203e36f2b486149058bade43c851dd97451", + "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0", + "php": "^5.3.3 || ^7.0 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -15104,7 +15692,7 @@ "check", "validate" ], - "time": "2020-06-16T10:16:42+00:00" + "time": "2020-07-08T17:02:28+00:00" }, { "name": "webmozart/path-util", @@ -15603,6 +16191,76 @@ ], "time": "2020-01-14T16:39:13+00:00" }, + { + "name": "doctrine/instantiator", + "version": "1.3.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "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://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "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%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2020-05-29T17:27:14+00:00" + }, { "name": "fabpot/goutte", "version": "v3.2.3", @@ -15658,6 +16316,1274 @@ ], "time": "2018-06-29T15:13:57+00:00" }, + { + "name": "myclabs/deep-copy", + "version": "1.10.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "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" + ], + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2020-06-29T13:22:24+00:00" + }, + { + "name": "phar-io/manifest", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^2.0", + "php": "^5.6 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "time": "2018-07-08T19:23:20+00:00" + }, + { + "name": "phar-io/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "time": "2018-07-08T19:19:57+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "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": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "shasum": "" + }, + "require": { + "ext-filter": "^7.1", + "php": "^7.2", + "phpdocumentor/reflection-common": "^2.0", + "phpdocumentor/type-resolver": "^1.0", + "webmozart/assert": "^1" + }, + "require-dev": { + "doctrine/instantiator": "^1", + "mockery/mockery": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2020-02-22T12:28:44+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.0" + }, + "require-dev": { + "ext-tokenizer": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "time": "2020-06-27T10:12:23+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.2", + "php": "^7.2", + "phpdocumentor/reflection-docblock": "^5.0", + "sebastian/comparator": "^3.0 || ^4.0", + "sebastian/recursion-context": "^3.0 || ^4.0" + }, + "require-dev": { + "phpspec/phpspec": "^6.0", + "phpunit/phpunit": "^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.11.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\": "src/Prophecy" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2020-07-08T12:44:21+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "6.1.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.1", + "phpunit/php-file-iterator": "^2.0", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^3.0", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.1 || ^4.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "suggest": { + "ext-xdebug": "^2.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2018-10-31T16:06:48+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "050bedf145a257b1ff02746c31894800e5122946" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", + "reference": "050bedf145a257b1ff02746c31894800e5122946", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2018-09-13T20:33:42+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2019-06-07T04:22:29+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", + "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "time": "2019-09-17T06:23:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "7.5.20", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "9467db479d1b0487c99733bb1e7944d32deded2c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c", + "reference": "9467db479d1b0487c99733bb1e7944d32deded2c", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.1", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.7", + "phar-io/manifest": "^1.0.2", + "phar-io/version": "^2.0", + "php": "^7.1", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^6.0.7", + "phpunit/php-file-iterator": "^2.0.1", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^2.1", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0", + "sebastian/environment": "^4.0", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^2.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpunit/phpunit-mock-objects": "*" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-soap": "*", + "ext-xdebug": "*", + "phpunit/php-invoker": "^2.0" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2020-01-08T08:45:45+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T06:30:41+00:00" + }, + { + "name": "sebastian/comparator", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "shasum": "" + }, + "require": { + "php": "^7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2018-07-12T15:12:46+00:00" + }, + { + "name": "sebastian/diff", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "time": "2019-02-04T06:01:07+00:00" + }, + { + "name": "sebastian/environment", + "version": "4.2.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2019-11-20T08:46:58+00:00" + }, + { + "name": "sebastian/exporter", + "version": "3.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2019-09-14T09:02:43+00:00" + }, + { + "name": "sebastian/global-state", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2017-04-27T15:39:26+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-08-03T12:35:26+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "time": "2017-03-29T09:07:27+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2017-03-03T06:23:57+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2018-10-04T04:07:39+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, { "name": "symfony/browser-kit", "version": "v4.4.10", @@ -15838,16 +17764,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.1.2", + "version": "v2.1.3", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337" + "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337", - "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", "shasum": "" }, "require": { @@ -15857,6 +17783,10 @@ "extra": { "branch-alias": { "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -15880,7 +17810,21 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "time": "2020-05-27T08:34:37+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:49:21+00:00" }, { "name": "symfony/dom-crawler", @@ -15938,6 +17882,46 @@ "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", "time": "2019-06-13T10:57:15+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "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": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "time": "2019-06-13T22:48:21+00:00" } ], "aliases": [], @@ -15957,10 +17941,12 @@ "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, - "drupal/webform": 5 + "drupal/webform": 5, + "drupal/wysiwyg_linebreaks": 20 }, "prefer-stable": true, "prefer-lowest": false, "platform": [], - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "1.1.0" } From c900bf8f924e97268b4f545b86109085dd37ab17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 5 Aug 2020 14:36:09 -0400 Subject: [PATCH 005/236] Stick to 7.3 for now, says wolcen --- .ddev/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 27a6dbd..d6b9759 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -2,7 +2,7 @@ APIVersion: v1.13.1 name: agaric-coop type: drupal8 docroot: web -php_version: "7.4" +php_version: "7.3" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" From 89ae9979ed4319f674a9c79e9888a482d367d910 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 6 Jul 2020 23:20:43 +0000 Subject: [PATCH 006/236] First step to move the site to Drupal 9 --- .ddev/.gitignore | 38 +++++++++---------- .ddev/config.yaml | 3 +- composer.json | 9 +++-- .../agaric_migration.info.yml | 2 +- .../drutopia_case_study.info.yml | 2 +- .../drutopia_creative_license.info.yml | 2 +- web/themes/custom/agarica/agarica.info.yml | 3 +- 7 files changed, 29 insertions(+), 30 deletions(-) diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 9e2104b..bf003b6 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -1,28 +1,24 @@ #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 +/commands/*/*.example +/commands/*/README.txt +/commands/host/launch +/commands/web/xdebug +/commands/db/mysql +/homeadditions/*.example +/homeadditions/README.txt +/.gitignore +/import.yaml /.ddev-docker-compose-base.yaml /.ddev-docker-compose-full.yaml -/.ddevlive-downloads -/.global_commands -/.homeadditions -/.sshimageBuild -/.webimageBuild -/.webimageExtra -/apache/apache-site.conf -/commands/.gitattributes -/commands/db/mysql -/commands/host/launch -/commands/web/live -/commands/web/xdebug -/config.*.y*ml /db_snapshots -/import-db -/import.yaml -/nginx_full/nginx-site.conf /sequelpro.spf -/**/README.* +/import-db +/config.*.y*ml +/.webimageBuild +/.dbimageBuild +/.sshimageBuild +/.webimageExtra +/.dbimageExtra +/*-build/Dockerfile.example diff --git a/.ddev/config.yaml b/.ddev/config.yaml index d6b9759..21fb041 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -9,11 +9,12 @@ router_https_port: "443" xdebug_enabled: true additional_hostnames: [] additional_fqdns: [] -mariadb_version: "10.2" +mariadb_version: "10.3" nfs_mount_enabled: false provider: default webimage_extra_packages: [rake, sassc] use_dns_when_possible: false +php_version: "7.3" timezone: "" diff --git a/composer.json b/composer.json index dc70ea0..75f8d40 100644 --- a/composer.json +++ b/composer.json @@ -47,11 +47,12 @@ "drupal/textarea_widget_for_text": "^1.1", "drupal/twigsuggest": "1.x-dev", "drupal/ui_patterns": "^1.0@RC", + "drupal/upgrade_status": "^2.0", "drupal/viewsreference": "^1.2", "drupal/webform": "^5.0@RC", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "^1.9", - "drush/drush": "^9.0", + "drush/drush": "^10.0", "drutopia/drutopia": "^1.0-beta1", "wikimedia/composer-merge-plugin": "^1.4", "zaporylie/composer-drupal-optimizations": "^1.0" @@ -59,7 +60,8 @@ "require-dev": { "behat/behat": "^3.4", "behat/mink": "^1.7", - "behat/mink-goutte-driver": "^1.2" + "behat/mink-goutte-driver": "^1.2", + "phpunit/phpunit": "^7" }, "repositories": { "drupal": { @@ -108,7 +110,8 @@ "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, "drupal/wysiwyg_linebreaks": { - "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch", + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch" } } }, diff --git a/web/modules/custom/agaric_migration/agaric_migration.info.yml b/web/modules/custom/agaric_migration/agaric_migration.info.yml index 9799ebe..df45326 100644 --- a/web/modules/custom/agaric_migration/agaric_migration.info.yml +++ b/web/modules/custom/agaric_migration/agaric_migration.info.yml @@ -2,7 +2,7 @@ name: Agaric Migration description: Migrate the content from the D7 version of the site. package: Custom type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - drupal:migrate - drupal:migrate_drupal diff --git a/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml b/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml index e264ea3..cf0e384 100644 --- a/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml +++ b/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml @@ -1,7 +1,7 @@ name: 'Drutopia Case Study' description: 'A Case Study highlights work done on a project.' type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - config_snapshot - drutopia_case_study diff --git a/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml b/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml index bb4db06..4b2ffe1 100644 --- a/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml +++ b/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml @@ -1,7 +1,7 @@ name: 'Creative License' type: module -core: 8.x package: Drutopia +core_version_requirement: ^8 || ^9 dependencies: - config_actions - config_snapshot diff --git a/web/themes/custom/agarica/agarica.info.yml b/web/themes/custom/agarica/agarica.info.yml index 61abfd8..7f05091 100644 --- a/web/themes/custom/agarica/agarica.info.yml +++ b/web/themes/custom/agarica/agarica.info.yml @@ -3,8 +3,7 @@ description: An Octavia-based subtheme. type: theme base theme: octavia package: Custom -core: 8.x - +core_version_requirement: ^8 || ^9 regions: header: 'Header' navbar_branding: 'Branding' From 1ee678f81f7e094fbb2dc78f97f3ccc9d1d0060f Mon Sep 17 00:00:00 2001 From: David Valdez Date: Sun, 12 Jul 2020 00:47:14 +0000 Subject: [PATCH 007/236] Add the patch to make wyswyg_linebreaks D9 compatible --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 75f8d40..ac48347 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,7 @@ "drupal/viewsreference": "^1.2", "drupal/webform": "^5.0@RC", "drupal/webform_mailchimp": "^5.4", - "drupal/wysiwyg_linebreaks": "^1.9", + "drupal/wysiwyg_linebreaks": "1.x-dev", "drush/drush": "^10.0", "drutopia/drutopia": "^1.0-beta1", "wikimedia/composer-merge-plugin": "^1.4", @@ -110,8 +110,8 @@ "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, "drupal/wysiwyg_linebreaks": { - "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch", - "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch" + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" } } }, From 0459c98cdd8a526432be8bc106b322ac13e49aa8 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Sun, 12 Jul 2020 01:38:32 +0000 Subject: [PATCH 008/236] Add the patch to make textarea_widget_for_text work with D9 --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index ac48347..5ba9f67 100644 --- a/composer.json +++ b/composer.json @@ -112,6 +112,12 @@ "drupal/wysiwyg_linebreaks": { "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" + }, + "drupal/textarea_widget_for_text": { + "Automated Drupal Rector fixes":"https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" + }, + "drupal/similarterms": { + "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" } } }, From 7df2c30770a20f529e23775e08f9d05cf182c705 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Sun, 12 Jul 2020 01:39:02 +0000 Subject: [PATCH 009/236] Add several patches to make the modules work with Drupal 9 --- composer.lock | 2622 +++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 2304 insertions(+), 318 deletions(-) diff --git a/composer.lock b/composer.lock index bb238a3..ecda02b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2b7675423d2eeb8c3663084757b3a8e6", + "content-hash": "3226332b44d7a39e94a07ec577adfad3", "packages": [ { "name": "algolia/places", @@ -2054,17 +2054,17 @@ }, { "name": "drupal/admin_toolbar", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "8.x-2.2" + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "41ea0e3321e6d1e190c486be49a99e60446d8dd7" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a" }, "require": { "drupal/core": "^8.8.0 || ^9.0" @@ -2072,8 +2072,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2082,7 +2082,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -2126,13 +2126,13 @@ "Toolbar" ], "support": { - "source": "http://cgit.drupalcode.org/admin_toolbar", + "source": "https://git.drupalcode.org/project/admin_toolbar", "issues": "https://www.drupal.org/project/issues/admin_toolbar" } }, { "name": "drupal/admin_toolbar_links_access_filter", - "version": "2.2.0", + "version": "2.3.0", "require": { "drupal/admin_toolbar": "self.version", "drupal/core": "^8.8.0 || ^9.0" @@ -2140,8 +2140,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2150,29 +2150,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Wilfrid Roze (eme)", - "homepage": "https://www.drupal.org/u/eme", - "role": "Maintainer" + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" }, { - "name": "Romain Jarraud (romainj)", - "homepage": "https://www.drupal.org/u/romainj", - "role": "Maintainer" + "name": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" }, { - "name": "Adrian Cid Almaguer (adriancid)", - "homepage": "https://www.drupal.org/u/adriancid", - "email": "adriancid@gmail.com", - "role": "Maintainer" + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "Mohamed Anis Taktak (matio89)", - "homepage": "https://www.drupal.org/u/matio89", - "role": "Maintainer" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" }, { "name": "fethi.krout", @@ -2187,20 +2182,15 @@ "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": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "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": "http://cgit.drupalcode.org/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" + "source": "https://git.drupalcode.org/project/admin_toolbar" } }, { "name": "drupal/admin_toolbar_tools", - "version": "2.2.0", + "version": "2.3.0", "require": { "drupal/admin_toolbar": "self.version", "drupal/core": "^8.8.0 || ^9.0" @@ -2208,8 +2198,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2218,29 +2208,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Wilfrid Roze (eme)", - "homepage": "https://www.drupal.org/u/eme", - "role": "Maintainer" + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" }, { - "name": "Romain Jarraud (romainj)", - "homepage": "https://www.drupal.org/u/romainj", - "role": "Maintainer" + "name": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" }, { - "name": "Adrian Cid Almaguer (adriancid)", - "homepage": "https://www.drupal.org/u/adriancid", - "email": "adriancid@gmail.com", - "role": "Maintainer" + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "Mohamed Anis Taktak (matio89)", - "homepage": "https://www.drupal.org/u/matio89", - "role": "Maintainer" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" }, { "name": "fethi.krout", @@ -2256,41 +2241,33 @@ } ], "description": "Adds menu links to the Admin Toolbar.", - "homepage": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "homepage": "https://www.drupal.org/project/admin_toolbar", "support": { - "source": "http://cgit.drupalcode.org/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" + "source": "https://git.drupalcode.org/project/admin_toolbar" } }, { "name": "drupal/allowed_formats", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "50f8f80cf3326382c968521d34d3a113b37e32b3" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "4c3c036d7b41428d6e22b61f1219de0ab012feec" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1573747386", + "version": "8.x-1.3", + "datestamp": "1592909219", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2930,7 +2907,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/comment_notify.git", - "reference": "217b2a224511539164d51ffc718dd275da557ffd" + "reference": "63346371fad80a77d2340dadd7a376773a67f870" }, "require": { "drupal/core": "^8 || ^9", @@ -2942,8 +2919,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0+2-dev", - "datestamp": "1582301897", + "version": "8.x-1.1+1-dev", + "datestamp": "1588698269", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -2973,7 +2950,7 @@ "issues": "https://drupal.org/project/issues/comment_notify", "irc": "irc://irc.freenode.org/drupal-contribute" }, - "time": "2020-05-05T17:03:57+00:00" + "time": "2020-07-10T17:43:05+00:00" }, { "name": "drupal/components", @@ -3143,30 +3120,31 @@ }, { "name": "drupal/config_distro", - "version": "1.0.0-alpha3", + "version": "1.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "8.x-1.0-alpha3" + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha3.zip", - "reference": "8.x-1.0-alpha3", - "shasum": "c83fcd71c311102cb64f72b8f7ca727bddff2264" + "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "a866d160348d709e0029b176826097fb9b15c49c" }, "require": { "drupal/config_filter": "*", - "drupal/core": "*" + "drupal/core": "^8.8 || ^9" + }, + "require-dev": { + "drupal/config_distro_filter": "*", + "drupal/config_filter": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-alpha3", - "datestamp": "1539071280", + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -3216,6 +3194,57 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/config_distro_filter", + "version": "1.0.0-alpha4", + "require": { + "drupal/config_distro": "self.version", + "drupal/config_filter": "*", + "drupal/core": "^8.8 || ^9" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", + "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": "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": "1.5.0", @@ -3467,17 +3496,17 @@ }, { "name": "drupal/config_provider", - "version": "2.0.0-rc2", + "version": "2.0.0-rc4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "8.x-2.0-rc2" + "reference": "8.x-2.0-rc4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc2.zip", - "reference": "8.x-2.0-rc2", - "shasum": "621e2fe438a14c07fae5cfb0cc9a294fb6e5e6d7" + "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc4.zip", + "reference": "8.x-2.0-rc4", + "shasum": "64a1545e8cc48f9363e028d3360134f143baaf58" }, "require": { "drupal/core": "^8 || ^9" @@ -3485,11 +3514,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0-rc2", - "datestamp": "1591297649", + "version": "8.x-2.0-rc4", + "datestamp": "1592923705", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -3514,6 +3543,10 @@ "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3595,41 +3628,39 @@ }, { "name": "drupal/config_sync", - "version": "2.0.0-beta5", + "version": "2.0.0-beta7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "8.x-2.0-beta5" + "reference": "8.x-2.0-beta7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta5.zip", - "reference": "8.x-2.0-beta5", - "shasum": "76a922ca354cb18cdfd57d427bdd91721630e48b" + "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta7.zip", + "reference": "8.x-2.0-beta7", + "shasum": "39de6d167f1f99992feaf5e30b53ae097ebebeec" }, "require": { "drupal/config_distro": "^1.0-alpha3", - "drupal/config_filter": "^1.3", + "drupal/config_distro_filter": "^1.0.0-alpha4", + "drupal/config_filter": "~1.3||~2.0", "drupal/config_merge": "^1.0-alpha2", "drupal/config_normalizer": "^1.0-alpha3", "drupal/config_provider": "^2.0-alpha6", "drupal/config_snapshot": "^1.0-alpha6", "drupal/config_update": "^1.5", - "drupal/core": "^8.3", + "drupal/core": "^8.8 || ^9", "php": ">=5.6", - "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1" + "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1|^4.4.9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { - "version": "8.x-2.0-beta5", - "datestamp": "1550290984", + "version": "8.x-2.0-beta7", + "datestamp": "1594083315", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -3644,10 +3675,22 @@ "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": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3723,16 +3766,16 @@ }, { "name": "drupal/core", - "version": "8.9.1", + "version": "8.9.2", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "e8ee964c562870381876e85d3f5eaaf8c8ecc9ee" + "reference": "8f0e24555c093669ce41edbb30637fe19df16802" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/e8ee964c562870381876e85d3f5eaaf8c8ecc9ee", - "reference": "e8ee964c562870381876e85d3f5eaaf8c8ecc9ee", + "url": "https://api.github.com/repos/drupal/core/zipball/8f0e24555c093669ce41edbb30637fe19df16802", + "reference": "8f0e24555c093669ce41edbb30637fe19df16802", "shasum": "" }, "require": { @@ -3950,11 +3993,11 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2020-06-17T17:57:48+00:00" + "time": "2020-07-08T18:53:45+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.1", + "version": "8.9.2", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -4001,16 +4044,16 @@ }, { "name": "drupal/core-recommended", - "version": "8.9.1", + "version": "8.9.2", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "41042f9eaa35b027e6b2c42fa03edcb85da54a06" + "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/41042f9eaa35b027e6b2c42fa03edcb85da54a06", - "reference": "41042f9eaa35b027e6b2c42fa03edcb85da54a06", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/8301ff766f17ce8a9eb36d3ffd183cbfff01dad6", + "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6", "shasum": "" }, "require": { @@ -4022,7 +4065,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.1", + "drupal/core": "8.9.2", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4079,7 +4122,7 @@ "GPL-2.0-or-later" ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", - "time": "2020-06-17T17:57:48+00:00" + "time": "2020-07-08T18:53:45+00:00" }, { "name": "drupal/crop", @@ -5754,7 +5797,7 @@ "drupal/autosave_form": "^1.1", "drupal/ckeditorheight": "^1.8", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", @@ -6725,30 +6768,19 @@ }, { "name": "drupal/gdpr", - "version": "2.0.0-alpha7", + "version": "dev-2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "8.x-2.0-alpha7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gdpr-8.x-2.0-alpha7.zip", - "reference": "8.x-2.0-alpha7", - "shasum": "07d2ebdd811e069f564bdd27158a67e17d031679" + "reference": "8777999faf3f6483d79fa9a5a40b789bb6590d49" }, "require": { - "cweagans/composer-patches": "~1.0", "drupal/checklistapi": "^1.0", - "drupal/core": "~8.4", + "drupal/core": "^8 || ^9", "drupal/entity": "^1.0", - "drupal/entity_reference_revisions": "^1.4", + "drupal/entity_reference_revisions": "^1.8", "drupal/message": "^1.0", - "drupal/token": "^1.1", - "drush/drush": "~9.0", - "ext-zip": "*", - "fzaninotto/faker": "^1.7", - "php": "^7.1" + "drupal/token": "^1.7" }, "require-dev": { "drupal/anonymizer": "*", @@ -6758,14 +6790,19 @@ "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": { "branch-alias": { "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.0-alpha7", - "datestamp": "1552919885", + "version": "8.x-2.0-alpha7+25-dev", + "datestamp": "1594397571", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -6794,6 +6831,10 @@ "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" @@ -6802,6 +6843,10 @@ "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" @@ -6822,8 +6867,9 @@ "description": "Helps with making a site GDPR-compliant.", "homepage": "https://www.drupal.org/project/gdpr", "support": { - "source": "http://cgit.drupalcode.org/gdpr" - } + "source": "https://git.drupalcode.org/project/gdpr" + }, + "time": "2020-07-10T16:40:13+00:00" }, { "name": "drupal/gnode", @@ -7479,17 +7525,17 @@ }, { "name": "drupal/menu_admin_per_menu", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec" + "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c" }, "require": { "drupal/core": "^8 || ^9" @@ -7497,8 +7543,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591098397", + "version": "8.x-1.3", + "datestamp": "1593436060", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8429,17 +8475,17 @@ }, { "name": "drupal/preview_link", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "57243b134c550ee464c8c3de707681638b07d4d8" + "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "bfed04e554864f9c3fb5d7a758bc27f5041f1518" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -8451,8 +8497,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1591244932", + "version": "8.x-1.7", + "datestamp": "1593052165", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9034,13 +9080,10 @@ "shasum": "d821f881203a634d44a174ff7a793e408ea7890f" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.4", "datestamp": "1568313784", @@ -9048,6 +9091,9 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9076,32 +9122,29 @@ }, { "name": "drupal/skins", - "version": "1.0.0-alpha4", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/skins.git", - "reference": "8.x-1.0-alpha4" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-alpha4.zip", - "reference": "8.x-1.0-alpha4", - "shasum": "877bb89f55f514b7c8d8dd535ce9576e5faa5eab" + "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "46b18de0b68487cf7620c3b0d87276b3bb8045b8" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-alpha4", - "datestamp": "1565305981", + "version": "8.x-1.0-rc1", + "datestamp": "1593962621", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -9119,7 +9162,7 @@ "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Enable themes to provide a set of skins with distinct stylesheets and templates.", + "description": "Enable themes or modules to provide a set of skins with distinct stylesheets and templates.", "homepage": "https://www.drupal.org/project/skins", "support": { "source": "https://git.drupalcode.org/project/skins" @@ -9447,13 +9490,10 @@ "shasum": "2b5dd3b90fb01695c8173aa37c5934f98527de7d" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.1", "datestamp": "1513904284", @@ -9461,6 +9501,9 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9480,7 +9523,7 @@ "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": "http://cgit.drupalcode.org/textarea_widget_for_text" + "source": "https://git.drupalcode.org/project/textarea_widget_for_text" } }, { @@ -9724,6 +9767,80 @@ "source": "https://git.drupalcode.org/project/ui_patterns" } }, + { + "name": "drupal/upgrade_status", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/upgrade_status.git", + "reference": "8.x-2.9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-2.9.zip", + "reference": "8.x-2.9", + "shasum": "3751062ba6192cbed94c3c970fa3adbe308fb450" + }, + "require": { + "drupal/core": "^8.7.7 || ^9", + "mathieuviossat/arraytotexttable": "~1.0.0", + "mglaman/phpstan-drupal": "^0.12.0", + "nikic/php-parser": "^4.0.0", + "phpstan/phpstan-deprecation-rules": "^0.12.0", + "webflo/drupal-finder": "^1.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.9", + "datestamp": "1592678651", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Gábor Hojtsy", + "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "colan", + "homepage": "https://www.drupal.org/user/58704" + }, + { + "name": "herczogzoltan", + "homepage": "https://www.drupal.org/user/3528391" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" + } + ], + "description": "Review current status of known Drupal 9 incompatibilities on the site.", + "homepage": "http://drupal.org/project/upgrade_status", + "support": { + "source": "https://git.drupalcode.org/project/upgrade_status" + } + }, { "name": "drupal/video_embed_field", "version": "2.4.0", @@ -9844,17 +9961,17 @@ }, { "name": "drupal/webform", - "version": "5.16.0", + "version": "5.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "8.x-5.16" + "reference": "8.x-5.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.16.zip", - "reference": "8.x-5.16", - "shasum": "a8bfe83d56ffd0fce16af9aa7eb4209247e5d420" + "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.19.zip", + "reference": "8.x-5.19", + "shasum": "90a2084c2647bca791cc8b18a7e2a3b49f3da7ea" }, "require": { "drupal/core": "^8.8" @@ -9864,20 +9981,23 @@ "drupal/bootstrap": "~3.0", "drupal/captcha": "~1.0", "drupal/chosen": "~2.0", - "drupal/devel": "*", - "drupal/entity_print": "*", + "drupal/clientside_validation": "~3.0", + "drupal/clientside_validation_jquery": "*", + "drupal/devel": "~3.0", + "drupal/entity_print": "~2.0", "drupal/gnode": "*", - "drupal/group": "*", - "drupal/lingotek": "~2.0", + "drupal/group": "~1.0", + "drupal/lingotek": "~3.0", "drupal/mailsystem": "~4.0", "drupal/paragraphs": "~1.0", "drupal/select2": "~1.0", "drupal/smtp": "~1.0", "drupal/styleguide": "~1.0", "drupal/telephone_validation": "~2.0", - "drupal/token": "*", + "drupal/token": "~1.0", "drupal/webform_access": "*", "drupal/webform_attachment": "*", + "drupal/webform_clientside_validation": "*", "drupal/webform_devel": "*", "drupal/webform_entity_print": "*", "drupal/webform_group": "*", @@ -9890,8 +10010,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.16", - "datestamp": "1591198998", + "version": "8.x-5.19", + "datestamp": "1593681136", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10044,20 +10164,14 @@ }, { "name": "drupal/wysiwyg_linebreaks", - "version": "1.10.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/wysiwyg_linebreaks-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "64f529906354e9689f1a1926ef68959fc627a3ca" + "reference": "a95e89898af2797601b8f8fd282c7a57746065f5" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { @@ -10065,14 +10179,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.10", + "version": "8.x-1.10+0-dev", "datestamp": "1542910380", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } }, "patches_applied": { + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" } }, @@ -10089,61 +10204,56 @@ "description": "Plugin to allow legacy content editing and more sane formatting in wysiwyg editors.", "homepage": "https://www.drupal.org/project/wysiwyg_linebreaks", "support": { - "source": "http://cgit.drupalcode.org/wysiwyg_linebreaks" - } + "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks" + }, + "time": "2018-11-22T18:09:54+00:00" }, { "name": "drush/drush", - "version": "9.7.2", + "version": "10.3.1", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "ab5e345a72c9187a7d770486a09691f6526826aa" + "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa", - "reference": "ab5e345a72c9187a7d770486a09691f6526826aa", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/aad2b17ad34801d9b55cff903e3e7db65d754b80", + "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.28.1", + "chi-teck/drupal-code-generator": "^1.30.5", "composer/semver": "^1.4", - "consolidation/annotated-command": "^2.12", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", - "consolidation/output-formatters": "^3.3.1", - "consolidation/robo": "^1.4.6", + "consolidation/robo": "^1.4.11 || ^2", "consolidation/site-alias": "^3.0.0@stable", - "consolidation/site-process": "^2.0.3", + "consolidation/site-process": "^2.1 || ^4", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", "league/container": "~2", - "php": ">=5.6.0", + "php": ">=7.1.3", "psr/log": "~1.0", "psy/psysh": "~0.6", - "symfony/console": "^3.4", "symfony/event-dispatcher": "^3.4 || ^4.0", "symfony/finder": "^3.4 || ^4.0", - "symfony/process": "^3.4", - "symfony/var-dumper": "^3.4 || ^4.0", - "symfony/yaml": "^3.4", - "webflo/drupal-finder": "^1.1", + "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", + "symfony/yaml": "^3.4 || ^4.0", + "webflo/drupal-finder": "^1.2", "webmozart/path-util": "^2.1.0" }, "require-dev": { - "composer/installers": "^1.2", + "composer/installers": "^1.7", "cweagans/composer-patches": "~1.0", + "david-garcia/phpwhois": "4.3.0", "drupal/alinks": "1.0.0", - "drupal/devel": "^2", - "drupal/empty_theme": "1.0", + "drupal/core-recommended": "^8.8", "g1a/composer-test-scenarios": "^3", "lox/xhprof": "dev-master", "phpunit/phpunit": "^4.8.36 || ^6.1", "squizlabs/php_codesniffer": "^2.7 || ^3", - "vlucas/phpdotenv": "^2.4", - "webflo/drupal-core-require-dev": "8.7.x-dev", - "webflo/drupal-core-strict": "8.7.x-dev" + "vlucas/phpdotenv": "^2.4" }, "bin": [ "drush" @@ -10176,21 +10286,8 @@ "type:drupal-drush" ] }, - "scenarios": { - "php5": { - "config": { - "platform": { - "php": "5.6.38" - } - }, - "require-dev": { - "webflo/drupal-core-strict": "8.6.x-dev", - "webflo/drupal-core-require-dev": "8.6.x-dev" - } - } - }, "branch-alias": { - "dev-master": "9.x-dev" + "dev-master": "10.x-dev" } }, "autoload": { @@ -10239,7 +10336,13 @@ ], "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", - "time": "2020-02-09T17:29:51+00:00" + "funding": [ + { + "url": "https://github.com/weitzman", + "type": "github" + } + ], + "time": "2020-06-30T19:43:45+00:00" }, { "name": "drutopia/drutopia", @@ -10455,16 +10558,16 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.12.0", + "version": "v4.13.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", "shasum": "" }, "require": { @@ -10480,6 +10583,9 @@ }, "files": [ "library/HTMLPurifier.composer.php" + ], + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -10498,7 +10604,7 @@ "keywords": [ "html" ], - "time": "2019-10-28T03:44:26+00:00" + "time": "2020-06-29T00:56:53+00:00" }, { "name": "facebook/graph-sdk", @@ -10558,56 +10664,6 @@ ], "time": "2018-12-11T22:56:31+00:00" }, - { - "name": "fzaninotto/faker", - "version": "v1.9.1", - "source": { - "type": "git", - "url": "https://github.com/fzaninotto/Faker.git", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0" - }, - "require-dev": { - "ext-intl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^2.9.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, - "autoload": { - "psr-4": { - "Faker\\": "src/Faker/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "François Zaninotto" - } - ], - "description": "Faker is a PHP library that generates fake data for you.", - "keywords": [ - "data", - "faker", - "fixtures" - ], - "time": "2019-12-12T13:22:17+00:00" - }, { "name": "grasmash/expander", "version": "1.0.0", @@ -11521,6 +11577,84 @@ ], "time": "2020-03-29T12:36:29+00:00" }, + { + "name": "laminas/laminas-servicemanager", + "version": "3.4.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-servicemanager.git", + "reference": "0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1", + "reference": "0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1", + "shasum": "" + }, + "require": { + "container-interop/container-interop": "^1.2", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0", + "psr/container": "^1.0" + }, + "provide": { + "container-interop/container-interop-implementation": "^1.2", + "psr/container-implementation": "^1.0" + }, + "replace": { + "zendframework/zend-servicemanager": "^3.4.0" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "mikey179/vfsstream": "^1.6.5", + "ocramius/proxy-manager": "^1.0 || ^2.0", + "phpbench/phpbench": "^0.13.0", + "phpunit/phpunit": "^5.7.25 || ^6.4.4" + }, + "suggest": { + "laminas/laminas-stdlib": "laminas-stdlib ^2.5 if you wish to use the MergeReplaceKey or MergeRemoveKey features in Config instances", + "ocramius/proxy-manager": "ProxyManager 1.* to handle lazy initialization of services" + }, + "bin": [ + "bin/generate-deps-for-config-factory", + "bin/generate-factory-for-class" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.3-dev", + "dev-develop": "4.0-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\ServiceManager\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Factory-Driven Dependency Injection Container", + "homepage": "https://laminas.dev", + "keywords": [ + "PSR-11", + "dependency-injection", + "di", + "dic", + "laminas", + "service-manager", + "servicemanager" + ], + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2020-05-11T14:43:22+00:00" + }, { "name": "laminas/laminas-stdlib", "version": "3.2.1", @@ -11571,6 +11705,58 @@ ], "time": "2019-12-31T17:51:15+00:00" }, + { + "name": "laminas/laminas-text", + "version": "2.7.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-text.git", + "reference": "3601b5eacb06ed0a12f658df860cc0f9613cf4db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-text/zipball/3601b5eacb06ed0a12f658df860cc0f9613cf4db", + "reference": "3601b5eacb06ed0a12f658df860cc0f9613cf4db", + "shasum": "" + }, + "require": { + "laminas/laminas-servicemanager": "^2.7.5 || ^3.0.3", + "laminas/laminas-stdlib": "^2.7 || ^3.0", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" + }, + "replace": { + "zendframework/zend-text": "self.version" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-config": "^2.6", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev", + "dev-develop": "2.8.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\Text\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Create FIGlets and text-based tables", + "homepage": "https://laminas.dev", + "keywords": [ + "laminas", + "text" + ], + "time": "2019-12-31T17:54:52+00:00" + }, { "name": "laminas/laminas-xml", "version": "1.2.0", @@ -11927,6 +12113,53 @@ ], "time": "2017-09-04T12:26:28+00:00" }, + { + "name": "mathieuviossat/arraytotexttable", + "version": "v1.0.8", + "source": { + "type": "git", + "url": "https://github.com/viossat/arraytotexttable.git", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4", + "shasum": "" + }, + "require": { + "laminas/laminas-text": "^2.7", + "php": ">=5.3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "MathieuViossat\\Util\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathieu Viossat", + "email": "mathieu@viossat.fr", + "homepage": "https://viossat.fr" + } + ], + "description": "Display arrays in terminal", + "homepage": "https://github.com/viossat/arraytotexttable", + "keywords": [ + "array", + "ascii", + "table", + "terminal", + "text", + "unicode" + ], + "time": "2020-06-23T17:14:22+00:00" + }, { "name": "mf2/mf2", "version": "0.4.6", @@ -11983,6 +12216,95 @@ ], "time": "2018-08-24T14:47:04+00:00" }, + { + "name": "mglaman/phpstan-drupal", + "version": "0.12.4", + "source": { + "type": "git", + "url": "https://github.com/mglaman/phpstan-drupal.git", + "reference": "4a74b797251562081715bb086a49d460c61a8783" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/4a74b797251562081715bb086a49d460c61a8783", + "reference": "4a74b797251562081715bb086a49d460c61a8783", + "shasum": "" + }, + "require": { + "nette/finder": "^2.5", + "php": "^7.1", + "phpstan/phpstan": "^0.12.26", + "symfony/yaml": "~3.4.5|^4.2", + "webflo/drupal-finder": "^1.2" + }, + "require-dev": { + "composer/installers": "^1.6", + "drupal/core-recommended": "^8.8@alpha", + "drush/drush": "^9.6", + "phpstan/phpstan-deprecation-rules": "~0.12.0", + "phpstan/phpstan-strict-rules": "^0.12.0", + "phpunit/phpunit": "^7.5", + "squizlabs/php_codesniffer": "^3.3" + }, + "suggest": { + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core." + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "installer-paths": { + "tests/fixtures/drupal/core": [ + "type:drupal-core" + ], + "tests/fixtures/drupal/libraries/{$name}": [ + "type:drupal-library" + ], + "tests/fixtures/drupal/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "tests/fixtures/drupal/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "Drupal extension and rules for PHPStan", + "funding": [ + { + "url": "https://github.com/mglaman", + "type": "github" + }, + { + "url": "https://liberapay.com/mglaman", + "type": "liberapay" + } + ], + "time": "2020-06-10T21:05:10+00:00" + }, { "name": "michelf/php-markdown", "version": "1.9.0", @@ -12070,17 +12392,158 @@ "time": "2016-07-25T17:07:32+00:00" }, { - "name": "nikic/php-parser", - "version": "v4.5.0", + "name": "nette/finder", + "version": "v2.5.2", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463" + "url": "https://github.com/nette/finder.git", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463", - "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463", + "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "shasum": "" + }, + "require": { + "nette/utils": "^2.4 || ^3.0", + "php": ">=7.1" + }, + "conflict": { + "nette/nette": "<2.2" + }, + "require-dev": { + "nette/tester": "^2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0", + "GPL-3.0" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🔍 Nette Finder: find files and directories with an intuitive API.", + "homepage": "https://nette.org", + "keywords": [ + "filesystem", + "glob", + "iterator", + "nette" + ], + "time": "2020-01-03T20:35:40+00:00" + }, + { + "name": "nette/utils", + "version": "v3.1.2", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "488f58378bba71767e7831c83f9e0fa808bf83b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/488f58378bba71767e7831c83f9e0fa808bf83b9", + "reference": "488f58378bba71767e7831c83f9e0fa808bf83b9", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "time": "2020-05-27T09:58:51+00:00" + }, + { + "name": "nikic/php-parser", + "version": "v4.6.0", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "c346bbfafe2ff60680258b631afb730d186ed864" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864", + "reference": "c346bbfafe2ff60680258b631afb730d186ed864", "shasum": "" }, "require": { @@ -12119,7 +12582,7 @@ "parser", "php" ], - "time": "2020-06-03T07:24:19+00:00" + "time": "2020-07-02T17:12:47+00:00" }, { "name": "p3k/http", @@ -12703,6 +13166,113 @@ ], "time": "2019-12-10T10:24:42+00:00" }, + { + "name": "phpstan/phpstan", + "version": "0.12.32", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "d03863f504c8432b3de4d1881f73f6acb8c0e67c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03863f504c8432b3de4d1881f73f6acb8c0e67c", + "reference": "d03863f504c8432b3de4d1881f73f6acb8c0e67c", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpstan", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", + "type": "tidelift" + } + ], + "time": "2020-07-01T11:57:52+00:00" + }, + { + "name": "phpstan/phpstan-deprecation-rules", + "version": "0.12.4", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187", + "reference": "9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187", + "shasum": "" + }, + "require": { + "php": "~7.1", + "phpstan/phpstan": "^0.12" + }, + "require-dev": { + "consistence/coding-standard": "^3.0.1", + "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", + "ergebnis/composer-normalize": "^2.0.2", + "jakub-onderka/php-parallel-lint": "^1.0", + "phing/phing": "^2.16.0", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.0", + "slevomat/coding-standard": "^4.5.2" + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "phpstan": { + "includes": [ + "rules.neon" + ] + } + }, + "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.", + "time": "2020-05-30T18:02:31+00:00" + }, { "name": "progress-tracker/progress-tracker", "version": "1.4.0", @@ -14195,16 +14765,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.17.0", + "version": "v1.17.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd" + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd", - "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2", "shasum": "" }, "require": { @@ -14214,6 +14784,10 @@ "extra": { "branch-alias": { "dev-master": "1.17-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -14253,7 +14827,21 @@ "portable", "shim" ], - "time": "2020-05-12T16:47:27+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:46:27+00:00" }, { "name": "symfony/polyfill-util", @@ -15059,20 +15647,20 @@ }, { "name": "webmozart/assert", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "9dc4f203e36f2b486149058bade43c851dd97451" + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/9dc4f203e36f2b486149058bade43c851dd97451", - "reference": "9dc4f203e36f2b486149058bade43c851dd97451", + "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0", + "php": "^5.3.3 || ^7.0 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -15104,7 +15692,7 @@ "check", "validate" ], - "time": "2020-06-16T10:16:42+00:00" + "time": "2020-07-08T17:02:28+00:00" }, { "name": "webmozart/path-util", @@ -15603,6 +16191,76 @@ ], "time": "2020-01-14T16:39:13+00:00" }, + { + "name": "doctrine/instantiator", + "version": "1.3.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "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://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "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%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2020-05-29T17:27:14+00:00" + }, { "name": "fabpot/goutte", "version": "v3.2.3", @@ -15658,6 +16316,1274 @@ ], "time": "2018-06-29T15:13:57+00:00" }, + { + "name": "myclabs/deep-copy", + "version": "1.10.1", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "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" + ], + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2020-06-29T13:22:24+00:00" + }, + { + "name": "phar-io/manifest", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^2.0", + "php": "^5.6 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "time": "2018-07-08T19:23:20+00:00" + }, + { + "name": "phar-io/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "time": "2018-07-08T19:19:57+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "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": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "5.1.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "shasum": "" + }, + "require": { + "ext-filter": "^7.1", + "php": "^7.2", + "phpdocumentor/reflection-common": "^2.0", + "phpdocumentor/type-resolver": "^1.0", + "webmozart/assert": "^1" + }, + "require-dev": { + "doctrine/instantiator": "^1", + "mockery/mockery": "^1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2020-02-22T12:28:44+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.0" + }, + "require-dev": { + "ext-tokenizer": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "time": "2020-06-27T10:12:23+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.2", + "php": "^7.2", + "phpdocumentor/reflection-docblock": "^5.0", + "sebastian/comparator": "^3.0 || ^4.0", + "sebastian/recursion-context": "^3.0 || ^4.0" + }, + "require-dev": { + "phpspec/phpspec": "^6.0", + "phpunit/phpunit": "^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.11.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\": "src/Prophecy" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2020-07-08T12:44:21+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "6.1.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.1", + "phpunit/php-file-iterator": "^2.0", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^3.0", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.1 || ^4.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "suggest": { + "ext-xdebug": "^2.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2018-10-31T16:06:48+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "050bedf145a257b1ff02746c31894800e5122946" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", + "reference": "050bedf145a257b1ff02746c31894800e5122946", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2018-09-13T20:33:42+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2019-06-07T04:22:29+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", + "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "time": "2019-09-17T06:23:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "7.5.20", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "9467db479d1b0487c99733bb1e7944d32deded2c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c", + "reference": "9467db479d1b0487c99733bb1e7944d32deded2c", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.1", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.7", + "phar-io/manifest": "^1.0.2", + "phar-io/version": "^2.0", + "php": "^7.1", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^6.0.7", + "phpunit/php-file-iterator": "^2.0.1", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^2.1", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0", + "sebastian/environment": "^4.0", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^2.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpunit/phpunit-mock-objects": "*" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-soap": "*", + "ext-xdebug": "*", + "phpunit/php-invoker": "^2.0" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2020-01-08T08:45:45+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T06:30:41+00:00" + }, + { + "name": "sebastian/comparator", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "shasum": "" + }, + "require": { + "php": "^7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2018-07-12T15:12:46+00:00" + }, + { + "name": "sebastian/diff", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "time": "2019-02-04T06:01:07+00:00" + }, + { + "name": "sebastian/environment", + "version": "4.2.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2019-11-20T08:46:58+00:00" + }, + { + "name": "sebastian/exporter", + "version": "3.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2019-09-14T09:02:43+00:00" + }, + { + "name": "sebastian/global-state", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2017-04-27T15:39:26+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-08-03T12:35:26+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "time": "2017-03-29T09:07:27+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2017-03-03T06:23:57+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2018-10-04T04:07:39+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, { "name": "symfony/browser-kit", "version": "v4.4.10", @@ -15838,16 +17764,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.1.2", + "version": "v2.1.3", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337" + "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337", - "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", "shasum": "" }, "require": { @@ -15857,6 +17783,10 @@ "extra": { "branch-alias": { "dev-master": "2.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -15880,7 +17810,21 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "time": "2020-05-27T08:34:37+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-06-06T08:49:21+00:00" }, { "name": "symfony/dom-crawler", @@ -15938,6 +17882,46 @@ "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", "time": "2019-06-13T10:57:15+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "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": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "time": "2019-06-13T22:48:21+00:00" } ], "aliases": [], @@ -15957,10 +17941,12 @@ "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, - "drupal/webform": 5 + "drupal/webform": 5, + "drupal/wysiwyg_linebreaks": 20 }, "prefer-stable": true, "prefer-lowest": false, "platform": [], - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "1.1.0" } From f6791135aef2c4bbb4afa70349f6a783da09f84e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 5 Aug 2020 14:46:08 -0400 Subject: [PATCH 010/236] Restore update ddev-generated .gitignore From commit e4534b8 This was lost because git checkout --theirs -- flat out didn't work. What? --- .ddev/.gitignore | 38 +++++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/.ddev/.gitignore b/.ddev/.gitignore index bf003b6..9e2104b 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -1,24 +1,28 @@ #ddev-generated: Automatically generated ddev .gitignore. # You can remove the above line if you want to edit and maintain this file yourself. - -/commands/*/*.example -/commands/*/README.txt -/commands/host/launch -/commands/web/xdebug -/commands/db/mysql -/homeadditions/*.example -/homeadditions/README.txt /.gitignore -/import.yaml + +/**/*.example +/.dbimageBuild +/.dbimageExtra /.ddev-docker-compose-base.yaml /.ddev-docker-compose-full.yaml -/db_snapshots -/sequelpro.spf -/import-db -/config.*.y*ml -/.webimageBuild -/.dbimageBuild +/.ddevlive-downloads +/.global_commands +/.homeadditions /.sshimageBuild +/.webimageBuild /.webimageExtra -/.dbimageExtra -/*-build/Dockerfile.example +/apache/apache-site.conf +/commands/.gitattributes +/commands/db/mysql +/commands/host/launch +/commands/web/live +/commands/web/xdebug +/config.*.y*ml +/db_snapshots +/import-db +/import.yaml +/nginx_full/nginx-site.conf +/sequelpro.spf +/**/README.* From 01a8ffd05dab490bcab088c57e08c7beb9f9b336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 5 Aug 2020 20:22:07 -0400 Subject: [PATCH 011/236] Call for Drupal 9 and use drutopia dev branch to allow it --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 5ba9f67..928c3b2 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "drupal/ckeditor_markdown": "^1.1", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", - "drupal/core-recommended": "^8.8", + "drupal/core-recommended": "^9", "drupal/customerror": "1.x-dev", "drupal/diff": "^1.0@RC", "drupal/dropdown_language": "^2.2", @@ -53,7 +53,7 @@ "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "1.x-dev", "drush/drush": "^10.0", - "drutopia/drutopia": "^1.0-beta1", + "drutopia/drutopia": "^1.x-dev", "wikimedia/composer-merge-plugin": "^1.4", "zaporylie/composer-drupal-optimizations": "^1.0" }, From c99ee499ea6993a200a8185e71ae22f95fbf3fba Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 7 Sep 2020 16:17:22 -0500 Subject: [PATCH 012/236] Update several modules to make them work with D9 Also, several patches were added in some modules --- composer.json | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 928c3b2..9383488 100644 --- a/composer.json +++ b/composer.json @@ -15,11 +15,11 @@ "drupal/ckeditor_markdown": "^1.1", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", - "drupal/core-recommended": "^9", + "drupal/core-recommended": "^8.8", "drupal/customerror": "1.x-dev", "drupal/diff": "^1.0@RC", "drupal/dropdown_language": "^2.2", - "drupal/drutopia_core": "1.x-dev", + "drupal/drutopia_core": "dev-update-to-drupal9 as 1.x-dev", "drupal/drutopia_site": "dev-1.x", "drupal/google_analytics": "^2.3", "drupal/honeypot": "^1.29", @@ -34,7 +34,7 @@ "drupal/migrate_tools": "^4.0", "drupal/mimemail": "^1.0@alpha", "drupal/minimalhtml": "^1.0", - "drupal/multiline_config": "^1.0", + "drupal/multiline_config": "dev-1.x", "drupal/paragraphs_features": "^1.4", "drupal/preview_link": "^1.1", "drupal/redirect": "^1.2", @@ -53,7 +53,7 @@ "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "1.x-dev", "drush/drush": "^10.0", - "drutopia/drutopia": "^1.x-dev", + "drutopia/drutopia": "dev-update-to-drupal9", "wikimedia/composer-merge-plugin": "^1.4", "zaporylie/composer-drupal-optimizations": "^1.0" }, @@ -70,8 +70,12 @@ }, "drutopia": { "type": "vcs", - "url": "https://github.com/drutopia/drutopia" - } + "url": "https://gitlab.com/drutopia/drutopia" + }, + "drutopia_core": { + "type": "vcs", + "url": "https://gitlab.com/drutopia/drutopia_core" + } }, "config": { "sort-packages": true, @@ -118,7 +122,13 @@ }, "drupal/similarterms": { "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" - } + }, + "drupal/block_theme_sync": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-06-05/block_theme_sync.1.x-dev.rector.patch" + }, + "drupal/multiline_config": { + "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" + } } }, "scripts": { From a5087a1d31753220dd68ac3a53edb56ac74263e2 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 7 Sep 2020 16:17:50 -0500 Subject: [PATCH 013/236] Lock file with the modules updated to work on D9 --- composer.lock | 1315 +++++++++++++++++++++++++++++++------------------ 1 file changed, 832 insertions(+), 483 deletions(-) diff --git a/composer.lock b/composer.lock index ecda02b..779fad6 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3226332b44d7a39e94a07ec577adfad3", + "content-hash": "60ef631dcef6660d1213d17c8fc269ef", "packages": [ { "name": "algolia/places", @@ -191,16 +191,16 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "1.32.0", + "version": "1.32.1", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246" + "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246", - "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", + "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", "shasum": "" }, "require": { @@ -232,7 +232,7 @@ "GPL-2.0-or-later" ], "description": "Drupal code generator", - "time": "2020-04-16T06:45:06+00:00" + "time": "2020-07-15T06:08:04+00:00" }, { "name": "choices/choices", @@ -2471,6 +2471,9 @@ "status": "not-covered", "message": "Project has not opted into security advisory coverage!" } + }, + "patches_applied": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-06-05/block_theme_sync.1.x-dev.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -2954,32 +2957,29 @@ }, { "name": "drupal/components", - "version": "1.1.0", + "version": "2.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/components.git", - "reference": "8.x-1.1" + "reference": "8.x-2.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/components-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "72af8ff1ca842556ee4b95335595c24703acdb75" + "url": "https://ftp.drupal.org/files/projects/components-8.x-2.0-beta3.zip", + "reference": "8.x-2.0-beta3", + "shasum": "5883c8b6dd358d29127a3c49d1459814c061b566" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1556870881", + "version": "8.x-2.0-beta3", + "datestamp": "1594633703", "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." } } }, @@ -2990,15 +2990,16 @@ "authors": [ { "name": "JohnAlbin", - "homepage": "https://www.drupal.org/user/32095" + "homepage": "https://www.drupal.org/user/32095", + "email": "virtually.johnalbin@gmail.com" }, { "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" } ], - "description": "Registers “component libraries” defined in modules and themes with the Twig system", - "homepage": "https://www.drupal.org/project/components", + "description": "Sets up folders of components defined by your theme or module", + "homepage": "https://drupal.org/project/components", "support": { "source": "https://git.drupalcode.org/project/components" } @@ -3247,32 +3248,32 @@ }, { "name": "drupal/config_filter", - "version": "1.5.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-1.5" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc" + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "dddfc3d5be22bf6625764fa0ca1caac524cb51cc" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" + }, + "conflict": { + "drush/drush": "<10" }, "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-1.5", - "datestamp": "1572542288", + "version": "8.x-2.1", + "datestamp": "1597851785", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3281,7 +3282,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -3309,9 +3310,9 @@ "configuration management" ], "support": { - "source": "http://cgit.drupalcode.org/config_filter", + "source": "https://git.drupalcode.org/project/config_filter", "issues": "https://www.drupal.org/project/issues/config_filter", - "irc": "irc://irc.freenode.org/drupal-contribute" + "slack": "https://drupal.slack.com/archives/C45342CDD" } }, { @@ -3766,16 +3767,16 @@ }, { "name": "drupal/core", - "version": "8.9.2", + "version": "8.9.5", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "8f0e24555c093669ce41edbb30637fe19df16802" + "reference": "c9b9643663b80f02c038f9dea15b8717a22c3339" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/8f0e24555c093669ce41edbb30637fe19df16802", - "reference": "8f0e24555c093669ce41edbb30637fe19df16802", + "url": "https://api.github.com/repos/drupal/core/zipball/c9b9643663b80f02c038f9dea15b8717a22c3339", + "reference": "c9b9643663b80f02c038f9dea15b8717a22c3339", "shasum": "" }, "require": { @@ -3993,20 +3994,20 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2020-07-08T18:53:45+00:00" + "time": "2020-09-03T21:07:45+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.2", + "version": "8.9.5", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece" + "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece", - "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d", + "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d", "shasum": "" }, "require": { @@ -4040,20 +4041,20 @@ "keywords": [ "drupal" ], - "time": "2020-05-29T11:36:27+00:00" + "time": "2020-08-07T22:30:30+00:00" }, { "name": "drupal/core-recommended", - "version": "8.9.2", + "version": "8.9.5", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6" + "reference": "2d320331187e2e5e4945b34fc608263ffb93e2a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/8301ff766f17ce8a9eb36d3ffd183cbfff01dad6", - "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/2d320331187e2e5e4945b34fc608263ffb93e2a1", + "reference": "2d320331187e2e5e4945b34fc608263ffb93e2a1", "shasum": "" }, "require": { @@ -4065,7 +4066,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.2", + "drupal/core": "8.9.5", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4094,7 +4095,7 @@ "symfony/dependency-injection": "v3.4.41", "symfony/event-dispatcher": "v3.4.41", "symfony/http-foundation": "v3.4.41", - "symfony/http-kernel": "v3.4.41", + "symfony/http-kernel": "v3.4.44", "symfony/polyfill-ctype": "v1.17.0", "symfony/polyfill-iconv": "v1.17.0", "symfony/polyfill-intl-idn": "v1.17.0", @@ -4122,33 +4123,30 @@ "GPL-2.0-or-later" ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", - "time": "2020-07-08T18:53:45+00:00" + "time": "2020-09-03T21:07:45+00:00" }, { "name": "drupal/crop", - "version": "1.5.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-1.5" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "c03541907d59874ca8a81f574258f6c0de8cbdc8" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.5", - "datestamp": "1516357085", + "version": "8.x-2.1", + "datestamp": "1585251827", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4164,6 +4162,10 @@ "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" @@ -4959,41 +4961,34 @@ }, { "name": "drupal/drutopia_core", - "version": "dev-1.x", + "version": "dev-update-to-drupal9", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_core.git", - "reference": "724947e3c829714703afc2a8923b451dccc14ae5" + "url": "https://gitlab.com/drutopia/drutopia_core.git", + "reference": "e2087df07edb67479dc2b0c9a461f7de5713ab96" + }, + "dist": { + "type": "zip", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia_core/repository/archive.zip?sha=e2087df07edb67479dc2b0c9a461f7de5713ab96", + "reference": "e2087df07edb67479dc2b0c9a461f7de5713ab96", + "shasum": "" }, "require": { "drupal/config_actions": "^1.1", "drupal/config_perms": "^2.0-beta2", "drupal/core": "^8.8", - "drupal/crop": "^1.5", + "drupal/crop": "^2.0", "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", "drupal/facets": "^1.4", - "drupal/faqfield": "^1.1", + "drupal/faqfield": "^7.0", "drupal/focal_point": "^1.4", "drupal/metatag": "^1.13", "drupal/paragraphs": "^1.12", "drupal/search_api": "^1.17", - "drupal/search_api_db": "*", "drupal/video_embed_field": "^2.4" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-rc3+1-dev", - "datestamp": "1591210912", - "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/entity_reference_revisions-normalizer-2913713-2.patch" @@ -5003,36 +4998,9 @@ } } }, - "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0+" ], - "authors": [ - { - "name": "cedewey", - "homepage": "https://www.drupal.org/user/38694" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" - }, - { - "name": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "rosemarymann", - "homepage": "https://www.drupal.org/user/837536" - } - ], "description": "Drutopia core is a base feature providing core components required by other features.", "homepage": "https://gitlab.com/drutopia/drutopia_core", "keywords": [ @@ -5041,10 +5009,10 @@ "drutopia" ], "support": { - "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x", - "issues": "https://gitlab.com/drutopia/drutopia_core/issues" + "issues": "https://gitlab.com/drutopia/drutopia_core/issues", + "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x" }, - "time": "2020-06-03T18:41:31+00:00" + "time": "2020-09-07T20:45:52+00:00" }, { "name": "drupal/drutopia_event", @@ -5788,7 +5756,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "d335dadb62670268c3c14483fb034c57c08136ed" + "reference": "32be42a3a1a8957189d27bbf973238399a1668ae" }, "require": { "drupal/admin_toolbar": "^2.2", @@ -5797,7 +5765,7 @@ "drupal/autosave_form": "^1.1", "drupal/ckeditorheight": "^1.8", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", @@ -5861,7 +5829,7 @@ "source": "https://gitlab.com/drutopia/drutopia_site/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_site/issues" }, - "time": "2020-06-03T18:54:29+00:00" + "time": "2020-08-05T21:12:00+00:00" }, { "name": "drupal/drutopia_social", @@ -6086,17 +6054,17 @@ }, { "name": "drupal/ds", - "version": "3.7.0", + "version": "3.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.7" + "reference": "8.x-3.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "aee9ff9b5cb29b6b70c7528165963f673b7693e2" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.9.zip", + "reference": "8.x-3.9", + "shasum": "7b419763cd87c2b3f06313489500746705a46334" }, "require": { "drupal/core": "^8.8 || ^9" @@ -6108,8 +6076,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1591087035", + "version": "8.x-3.9", + "datestamp": "1598898821", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6159,29 +6127,26 @@ }, { "name": "drupal/entity", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "ac359ada43416ca3a8d0e44f2985b0a9fae07625" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "6009845bab8e76e23a0657cf898dc15365568e5c" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1582735747", + "version": "8.x-1.1", + "datestamp": "1595445791", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6190,7 +6155,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -6212,6 +6177,10 @@ { "name": "fago", "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" } ], "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.", @@ -6242,9 +6211,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.8", "datestamp": "1583961846", @@ -6391,32 +6357,29 @@ }, { "name": "drupal/exclude_node_title", - "version": "1.0.0-beta1", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/exclude_node_title.git", - "reference": "8.x-1.0-beta1" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.0-beta1.zip", - "reference": "8.x-1.0-beta1", - "shasum": "04b307c90c71285f421f8727d5ba8fd84b3df066" + "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "4a0a747821944fd398bb2ca5cb1718fe16ff9511" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-beta1", - "datestamp": "1452548339", + "version": "8.x-1.1", + "datestamp": "1595347356", "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" } } }, @@ -6425,6 +6388,11 @@ "GPL-2.0-or-later" ], "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" @@ -6432,58 +6400,49 @@ { "name": "gabrielu", "homepage": "https://www.drupal.org/user/279352" - }, - { - "name": "id.tarzanych", - "homepage": "https://www.drupal.org/user/2776543" - }, - { - "name": "jordanpagewhite", - "homepage": "https://www.drupal.org/user/3162067" } ], - "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.", + "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.", "homepage": "https://www.drupal.org/project/exclude_node_title", "support": { - "source": "http://cgit.drupalcode.org/exclude_node_title" + "source": "https://git.drupalcode.org/project/exclude_node_title", + "issues": "https://www.drupal.org/project/issues/exclude_node_title" } }, { "name": "drupal/facets", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "ee2d584b8a225ab981e313f6050e13bc9c98e40b" + "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "35b6cd9f0b8bda41581452a2da45a3f2da9d016b" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "require-dev": { "drupal/search_api": "~1.5" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1556645881", + "version": "8.x-1.5", + "datestamp": "1595015391", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } }, - "patches_applied": { - "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch" - } + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" + }, + "patches_applied": [] }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -6513,29 +6472,27 @@ }, { "name": "drupal/faqfield", - "version": "1.1.0", + "version": "7.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/faqfield.git", - "reference": "8.x-1.1" + "reference": "8.x-7.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "61aeccae9ebf2347567df1a891772e88e9452aa6" + "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-7.0.zip", + "reference": "8.x-7.0", + "shasum": "8788719564a23c1b8472568b9c9b15593d61e1c8" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui_accordion": "^1.1" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1519216085", + "version": "8.x-7.0", + "datestamp": "1591226895", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6720,21 +6677,21 @@ }, { "name": "drupal/focal_point", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "8e377f61d0f590f7f89663ea3e841e56a3c14f5c" + "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "41198e9220788c3b7d3146b10e5dfd6c73cd4784" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/crop": "*" + "drupal/core": "^8.8 || ^9", + "drupal/crop": "^1.0 || ^2.0" }, "require-dev": { "drupal/crop": "*" @@ -6742,8 +6699,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1586396577", + "version": "8.x-1.5", + "datestamp": "1598663903", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6756,14 +6713,17 @@ ], "authors": [ { - "name": "bleen", - "homepage": "https://www.drupal.org/user/77375" + "name": "Alexander Ross (bleen)", + "homepage": "https://www.drupal.org/u/bleen", + "role": "Maintainer" } ], - "description": "Allows users to specify the focal point of an image for use during cropping.", - "homepage": "https://www.drupal.org/project/focal_point", + "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://git.drupalcode.org/project/focal_point" + "source": "https://cgit.drupalcode.org/focal_point", + "issues": "https://drupal.org/project/issues/focal_point", + "irc": "irc://irc.freenode.org/drupal-contribute" } }, { @@ -6873,22 +6833,19 @@ }, { "name": "drupal/gnode", - "version": "1.0.0-rc5", + "version": "1.2.0", "require": { - "drupal/core": "*", + "drupal/core": "^8.8 || ^9", "drupal/group": "self.version" }, "type": "metapackage", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-rc5", - "datestamp": "1576854190", + "version": "8.x-1.2", + "datestamp": "1596658355", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -6900,10 +6857,6 @@ { "name": "kristiaanvandeneynde", "homepage": "https://www.drupal.org/user/1345130" - }, - { - "name": "ronaldtebrake", - "homepage": "https://www.drupal.org/user/2314038" } ], "description": "Enables Group functionality for the Node module", @@ -6985,50 +6938,43 @@ }, { "name": "drupal/group", - "version": "1.0.0-rc5", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/group.git", - "reference": "8.x-1.0-rc5" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-8.x-1.0-rc5.zip", - "reference": "8.x-1.0-rc5", - "shasum": "234831baa8816d98d1093a37e5c66bb993a271eb" + "url": "https://ftp.drupal.org/files/projects/group-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "f9b9607fea3b169152165ce64d3bc871ddd40b73" }, "require": { - "drupal/core": "^8.6", - "drupal/entity": "^1.0-rc1" + "drupal/core": "^8.8 || ^9", + "drupal/entity": "^1.0", + "drupal/variationcache": "^1.0" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-rc5", - "datestamp": "1576854190", + "version": "8.x-1.2", + "datestamp": "1596658355", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { "name": "Kristiaan Van den Eynde", "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", "role": "Maintainer" - }, - { - "name": "Ronald te Brake", - "homepage": "https://www.drupal.org/u/ronaldtebrake", - "role": "Co-maintainer" } ], "description": "This module allows you to group users, content and other entities", @@ -7305,6 +7251,139 @@ }, "time": "2020-06-13T11:55:06+00:00" }, + { + "name": "drupal/jquery_ui", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui.git", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.4", + "datestamp": "1582149957", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "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": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "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": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "988a3da3b0bc3042e2f42fd20e401272f8369bbd" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1584106477", + "security-coverage": { + "status": "covered", + "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/mailchimp", "version": "1.11.0", @@ -7767,17 +7846,17 @@ }, { "name": "drupal/metatag", - "version": "1.13.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.13" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "c471d9982a6540fd7baccc94572947923634fb6b" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90" }, "require": { "drupal/core": "^8 || ^9", @@ -7787,13 +7866,14 @@ "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", "drupal/page_manager": "4.x-dev", + "drupal/panelizer": "4.x-dev", "drupal/redirect": "1.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1587478404", + "version": "8.x-1.14", + "datestamp": "1597183852", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7802,7 +7882,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -8077,20 +8157,14 @@ }, { "name": "drupal/multiline_config", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/multiline_config.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/multiline_config-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "0910c3b007c74cddd6823ad5e86ca40c14a91f20" + "reference": "c34c51b92b79ea27f326b6b20fc3e23b4802e482" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.7.10 || ^9" }, "type": "drupal-module", "extra": { @@ -8098,12 +8172,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1553258884", + "version": "8.x-1.0+4-dev", + "datestamp": "1579606383", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -8125,7 +8202,8 @@ "support": { "source": "https://cgit.drupalcode.org/multiline_config", "issues": "https://www.drupal.org/project/issues/multiline_config" - } + }, + "time": "2020-01-21T11:28:39+00:00" }, { "name": "drupal/octavia", @@ -9067,34 +9145,32 @@ }, { "name": "drupal/similarterms", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/similarterms.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "d821f881203a634d44a174ff7a793e408ea7890f" + "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "78371fbdfbb610d6403457220f5b144558636474" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1568313784", + "version": "8.x-1.5", + "datestamp": "1595442658", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } }, - "patches_applied": { - "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" - } + "patches_applied": [] }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -9170,29 +9246,77 @@ }, { "name": "drupal/social_media_links", - "version": "2.6.0", + "version": "2.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_media_links.git", - "reference": "8.x-2.6" + "reference": "8.x-2.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "53462cb307b104552ae5370b917e55ca50fba526" + "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.7.zip", + "reference": "8.x-2.7", + "shasum": "132db954d880c743bd6316f7fecd0b085bb73f91" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { - "version": "8.x-2.6", - "datestamp": "1510489384", + "version": "8.x-2.7", + "datestamp": "1595616928", + "security-coverage": { + "status": "covered", + "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": "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", + "issues": "https://www.drupal.org/project/issues/social_media_links" + } + }, + { + "name": "drupal/stripe", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/stripe.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/stripe-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "de84804416c278ea90d13ba7c824e23483349a1f" + }, + "require": { + "drupal/core": "^8 || ^9", + "stripe/stripe-php": "^7.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1598551119", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9205,56 +9329,7 @@ ], "authors": [ { - "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": "http://cgit.drupalcode.org/social_media_links", - "issues": "https://www.drupal.org/project/issues/social_media_links" - } - }, - { - "name": "drupal/stripe", - "version": "1.0.0-beta2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/stripe.git", - "reference": "8.x-1.0-beta2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stripe-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "5c2305c93e303ae794267907b30a498fffcff8f8" - }, - "require": { - "drupal/core": "^8.3", - "stripe/stripe-php": "^6.0" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1519736884", - "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": "Sebastien @Actualys", + "name": "Sebastien @Hubside", "homepage": "https://www.drupal.org/user/380104" }, { @@ -9601,7 +9676,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "c270120c8828953d0351d94b7370bf42d5e53c51" + "reference": "ba046efc221688e1dacd77d1f6b9cccd715aa7e1" }, "require": { "drupal/core": "^8 || ^9" @@ -9612,8 +9687,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-beta1+3-dev", - "datestamp": "1590869117", + "version": "8.x-1.0-beta1+4-dev", + "datestamp": "1592181211", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -9651,7 +9726,7 @@ "source": "https://git.drupalcode.org/project/twigsuggest.git", "issues": "https://www.drupal.org/project/issues/twigsuggest" }, - "time": "2020-06-15T00:27:53+00:00" + "time": "2020-08-18T05:41:00+00:00" }, { "name": "drupal/ui_patterns", @@ -9841,6 +9916,57 @@ "source": "https://git.drupalcode.org/project/upgrade_status" } }, + { + "name": "drupal/variationcache", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/variationcache.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/variationcache-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "302bcd0bc4d7c12a9d18ad4f531d1c65fdac65b1" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1588927568", + "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.4.0", @@ -10209,21 +10335,81 @@ "time": "2018-11-22T18:09:54+00:00" }, { - "name": "drush/drush", - "version": "10.3.1", + "name": "drupal/yaml_content", + "version": "1.0.0-alpha7", "source": { "type": "git", - "url": "https://github.com/drush-ops/drush.git", - "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80" + "url": "https://git.drupalcode.org/project/yaml_content.git", + "reference": "8.x-1.0-alpha7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/aad2b17ad34801d9b55cff903e3e7db65d754b80", - "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80", + "url": "https://ftp.drupal.org/files/projects/yaml_content-8.x-1.0-alpha7.zip", + "reference": "8.x-1.0-alpha7", + "shasum": "9aaf271446a64c9bffc5639589d5c8e6dc40c06c" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "require-dev": { + "mikey179/vfsstream": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha7", + "datestamp": "1588173300", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "DamienMcKenna", + "homepage": "https://www.drupal.org/user/108450" + }, + { + "name": "shrop", + "homepage": "https://www.drupal.org/user/14767" + }, + { + "name": "slucero", + "homepage": "https://www.drupal.org/user/1612534" + } + ], + "description": "Demo content generator using yaml content templates.", + "homepage": "https://www.drupal.org/project/yaml_content", + "support": { + "source": "https://git.drupalcode.org/project/yaml_content" + } + }, + { + "name": "drush/drush", + "version": "10.3.4", + "source": { + "type": "git", + "url": "https://github.com/drush-ops/drush.git", + "reference": "802419a6eb0232bdb977788e6a828cd4fa5bdb11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/802419a6eb0232bdb977788e6a828cd4fa5bdb11", + "reference": "802419a6eb0232bdb977788e6a828cd4fa5bdb11", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.30.5", + "chi-teck/drupal-code-generator": "^1.32.1", "composer/semver": "^1.4", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", @@ -10232,6 +10418,7 @@ "consolidation/site-process": "^2.1 || ^4", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", + "guzzlehttp/guzzle": "^6.3", "league/container": "~2", "php": ">=7.1.3", "psr/log": "~1.0", @@ -10342,63 +10529,65 @@ "type": "github" } ], - "time": "2020-06-30T19:43:45+00:00" + "time": "2020-08-20T19:27:28+00:00" }, { "name": "drutopia/drutopia", - "version": "1.0-rc2", + "version": "dev-update-to-drupal9", "source": { "type": "git", - "url": "https://github.com/drutopia/drutopia.git", - "reference": "01edcc46947db69c0095a0a11dd2d5f76e54a7b5" + "url": "https://gitlab.com/drutopia/drutopia.git", + "reference": "a1eb1698e248328127487445e917f905b5c63ba3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drutopia/drutopia/zipball/01edcc46947db69c0095a0a11dd2d5f76e54a7b5", - "reference": "01edcc46947db69c0095a0a11dd2d5f76e54a7b5", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=a1eb1698e248328127487445e917f905b5c63ba3", + "reference": "a1eb1698e248328127487445e917f905b5c63ba3", "shasum": "" }, "require": { "cweagans/composer-patches": "^1.6", - "drupal/antibot": "^1.3", + "drupal/antibot": "^1.4", "drupal/better_normalizers": "^1.0-beta4", "drupal/block_visibility_groups": "^1.3", "drupal/bulma": "^1.0-beta4", - "drupal/components": "^1.1", + "drupal/components": "^2.0", "drupal/config_actions_provider": "^1.0-rc1", "drupal/config_sync": "^2.0-beta5", "drupal/config_update": "^1.7", - "drupal/core": "^8.8", - "drupal/core-composer-scaffold": "^8.8", - "drupal/default_content": "^1.0-alpha8", - "drupal/drutopia_action": "^1.0-rc1", - "drupal/drutopia_article": "^1.0-rc1", - "drupal/drutopia_blog": "^1.0-rc1", - "drupal/drutopia_campaign": "^1.0-rc1", - "drupal/drutopia_comment": "^1.0-rc1", - "drupal/drutopia_core": "^1.0-rc2", - "drupal/drutopia_event": "^1.0-rc1", - "drupal/drutopia_group": "^1.0-rc1", - "drupal/drutopia_landing_page": "^1.0-rc1", - "drupal/drutopia_page": "^1.0-rc1", - "drupal/drutopia_people": "^1.0-rc1", - "drupal/drutopia_related_content": "^1.0-rc1", - "drupal/drutopia_resource": "^1.0-rc1", - "drupal/drutopia_search": "^1.0-rc1", - "drupal/drutopia_seo": "^1.0-rc1", - "drupal/drutopia_site": "^1.0-rc1", - "drupal/drutopia_social": "^1.0-rc1", - "drupal/drutopia_storyline": "^1.0-rc1", - "drupal/drutopia_user": "^1.0-rc1", - "drupal/eu_cookie_compliance": "^1.8", - "drupal/features": "^3.8", + "drupal/core": "^8", + "drupal/core-composer-scaffold": "^8.9", + "drupal/default_content": "^1.0-alpha9", + "drupal/drutopia_action": "^1.0", + "drupal/drutopia_article": "^1.0", + "drupal/drutopia_blog": "^1.0", + "drupal/drutopia_campaign": "^1.0", + "drupal/drutopia_comment": "^1.0", + "drupal/drutopia_core": "^1.0", + "drupal/drutopia_event": "^1.0", + "drupal/drutopia_group": "^1.0", + "drupal/drutopia_landing_page": "^1.0", + "drupal/drutopia_page": "^1.0", + "drupal/drutopia_people": "^1.0", + "drupal/drutopia_related_content": "^1.0", + "drupal/drutopia_resource": "^1.0", + "drupal/drutopia_search": "^1.0", + "drupal/drutopia_seo": "^1.0", + "drupal/drutopia_site": "^1.0", + "drupal/drutopia_social": "^1.0", + "drupal/drutopia_storyline": "^1.0", + "drupal/drutopia_user": "^1.0", + "drupal/eu_cookie_compliance": "^1.9", + "drupal/features": "^3.11", "drupal/gdpr": "^2.0-alpha7", "drupal/honeypot": "^1.30", - "drupal/menu_block": "^1.5", + "drupal/menu_block": "^1.6", "drupal/octavia": "^1.0-rc1", "drupal/paranoia": "^1.0-alpha1", "drupal/riddler": "^1.1", - "drupal/subprofiles": "^1.0-alpha2" + "drupal/subprofiles": "^1.0-alpha2", + "drupal/yaml_content": "^1.0-alpha7", + "geeks4change/composer-pin": "*" }, "require-dev": { "behat/behat": "^3.0", @@ -10430,11 +10619,7 @@ "GPL-2.0+" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "support": { - "source": "https://github.com/drutopia/drutopia/tree/8.x-1.0-rc2", - "issues": "https://github.com/drutopia/drutopia/issues" - }, - "time": "2020-05-06T22:41:46+00:00" + "time": "2020-09-07T19:56:40+00:00" }, { "name": "easyrdf/easyrdf", @@ -10664,6 +10849,42 @@ ], "time": "2018-12-11T22:56:31+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": "" + }, + "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.", + "time": "2020-06-02T10:38:25+00:00" + }, { "name": "grasmash/expander", "version": "1.0.0", @@ -11861,16 +12082,16 @@ }, { "name": "lcobucci/jwt", - "version": "3.3.2", + "version": "3.3.3", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "56f10808089e38623345e28af2f2d5e4eb579455" + "reference": "c1123697f6a2ec29162b82f170dd4a491f524773" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455", - "reference": "56f10808089e38623345e28af2f2d5e4eb579455", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773", + "reference": "c1123697f6a2ec29162b82f170dd4a491f524773", "shasum": "" }, "require": { @@ -11912,7 +12133,17 @@ "JWS", "jwt" ], - "time": "2020-05-22T08:21:12+00:00" + "funding": [ + { + "url": "https://github.com/lcobucci", + "type": "github" + }, + { + "url": "https://www.patreon.com/lcobucci", + "type": "patreon" + } + ], + "time": "2020-08-20T13:22:28+00:00" }, { "name": "league/commonmark", @@ -12218,16 +12449,16 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "0.12.4", + "version": "0.12.5", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "4a74b797251562081715bb086a49d460c61a8783" + "reference": "f7676482b39184270eaba25cbd5e491144814a93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/4a74b797251562081715bb086a49d460c61a8783", - "reference": "4a74b797251562081715bb086a49d460c61a8783", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/f7676482b39184270eaba25cbd5e491144814a93", + "reference": "f7676482b39184270eaba25cbd5e491144814a93", "shasum": "" }, "require": { @@ -12299,11 +12530,15 @@ "type": "github" }, { - "url": "https://liberapay.com/mglaman", - "type": "liberapay" + "url": "https://ko-fi.com/mglaman", + "type": "ko_fi" + }, + { + "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "type": "tidelift" } ], - "time": "2020-06-10T21:05:10+00:00" + "time": "2020-07-26T17:10:56+00:00" }, { "name": "michelf/php-markdown", @@ -12456,16 +12691,16 @@ }, { "name": "nette/utils", - "version": "v3.1.2", + "version": "v3.1.3", "source": { "type": "git", "url": "https://github.com/nette/utils.git", - "reference": "488f58378bba71767e7831c83f9e0fa808bf83b9" + "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/488f58378bba71767e7831c83f9e0fa808bf83b9", - "reference": "488f58378bba71767e7831c83f9e0fa808bf83b9", + "url": "https://api.github.com/repos/nette/utils/zipball/c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", + "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", "shasum": "" }, "require": { @@ -12530,20 +12765,20 @@ "utility", "validation" ], - "time": "2020-05-27T09:58:51+00:00" + "time": "2020-08-07T10:34:21+00:00" }, { "name": "nikic/php-parser", - "version": "v4.6.0", + "version": "v4.9.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "c346bbfafe2ff60680258b631afb730d186ed864" + "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864", - "reference": "c346bbfafe2ff60680258b631afb730d186ed864", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/88e519766fc58bd46b8265561fb79b54e2e00b28", + "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28", "shasum": "" }, "require": { @@ -12551,8 +12786,8 @@ "php": ">=7.0" }, "require-dev": { - "ircmaxell/php-yacc": "0.0.5", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -12560,7 +12795,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.9-dev" } }, "autoload": { @@ -12582,7 +12817,7 @@ "parser", "php" ], - "time": "2020-07-02T17:12:47+00:00" + "time": "2020-08-30T16:15:20+00:00" }, { "name": "p3k/http", @@ -13168,20 +13403,20 @@ }, { "name": "phpstan/phpstan", - "version": "0.12.32", + "version": "0.12.42", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "d03863f504c8432b3de4d1881f73f6acb8c0e67c" + "reference": "7c43b7c2d5ca6554f6231e82e342a710163ac5f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03863f504c8432b3de4d1881f73f6acb8c0e67c", - "reference": "d03863f504c8432b3de4d1881f73f6acb8c0e67c", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7c43b7c2d5ca6554f6231e82e342a710163ac5f4", + "reference": "7c43b7c2d5ca6554f6231e82e342a710163ac5f4", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.1|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" @@ -13220,29 +13455,29 @@ "type": "tidelift" } ], - "time": "2020-07-01T11:57:52+00:00" + "time": "2020-09-02T13:14:53+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "0.12.4", + "version": "0.12.5", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187" + "reference": "bfabc6a1b4617fbcbff43f03a4c04eae9bafae21" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187", - "reference": "9b4b8851fb5d59fd0eed00fbe9c22cfc328e0187", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/bfabc6a1b4617fbcbff43f03a4c04eae9bafae21", + "reference": "bfabc6a1b4617fbcbff43f03a4c04eae9bafae21", "shasum": "" }, "require": { - "php": "~7.1", - "phpstan/phpstan": "^0.12" + "php": "^7.1 || ^8.0", + "phpstan/phpstan": "^0.12.26" }, "require-dev": { "consistence/coding-standard": "^3.0.1", - "dealerdirect/phpcodesniffer-composer-installer": "^0.4.4", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", "ergebnis/composer-normalize": "^2.0.2", "jakub-onderka/php-parallel-lint": "^1.0", "phing/phing": "^2.16.0", @@ -13271,7 +13506,7 @@ "MIT" ], "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", - "time": "2020-05-30T18:02:31+00:00" + "time": "2020-07-21T14:52:30+00:00" }, { "name": "progress-tracker/progress-tracker", @@ -13612,29 +13847,30 @@ }, { "name": "stripe/stripe-php", - "version": "v6.43.1", + "version": "v7.51.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8" + "reference": "879a3545126ebc77218c53d2055572b7e473fbcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/42fcdaf99c44bb26937223f8eae1f263491d5ab8", - "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/879a3545126ebc77218c53d2055572b7e473fbcf", + "reference": "879a3545126ebc77218c53d2055572b7e473fbcf", "shasum": "" }, "require": { "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "php": ">=5.4.0" + "php": ">=5.6.0" }, "require-dev": { - "php-coveralls/php-coveralls": "1.*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0", - "symfony/process": "~2.8" + "friendsofphp/php-cs-fixer": "2.16.1", + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5.7", + "squizlabs/php_codesniffer": "^3.3", + "symfony/process": "~3.4" }, "type": "library", "extra": { @@ -13664,7 +13900,7 @@ "payment processing", "stripe" ], - "time": "2019-08-29T16:56:12+00:00" + "time": "2020-09-02T21:04:02+00:00" }, { "name": "svg-pan-zoom/svg-pan-zoom", @@ -14114,16 +14350,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.10", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b27f491309db5757816db672b256ea2e03677d30" + "reference": "27575bcbc68db1f6d06218891296572c9b845704" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", - "reference": "b27f491309db5757816db672b256ea2e03677d30", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/27575bcbc68db1f6d06218891296572c9b845704", + "reference": "27575bcbc68db1f6d06218891296572c9b845704", "shasum": "" }, "require": { @@ -14160,24 +14396,38 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2020-05-30T18:50:54+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-21T17:19:37+00:00" }, { "name": "symfony/finder", - "version": "v4.4.10", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "5729f943f9854c5781984ed4907bbb817735776b" + "reference": "2a78590b2c7e3de5c429628457c47541c58db9c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b", - "reference": "5729f943f9854c5781984ed4907bbb817735776b", + "url": "https://api.github.com/repos/symfony/finder/zipball/2a78590b2c7e3de5c429628457c47541c58db9c7", + "reference": "2a78590b2c7e3de5c429628457c47541c58db9c7", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "type": "library", "extra": { @@ -14209,7 +14459,21 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-17T09:56:45+00:00" }, { "name": "symfony/http-foundation", @@ -14267,16 +14531,16 @@ }, { "name": "symfony/http-kernel", - "version": "v3.4.41", + "version": "v3.4.44", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df" + "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df", - "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", + "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", "shasum": "" }, "require": { @@ -14353,7 +14617,21 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2020-05-31T05:14:17+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-31T05:53:42+00:00" }, { "name": "symfony/polyfill-ctype", @@ -14765,16 +15043,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.17.1", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2" + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2", - "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981", "shasum": "" }, "require": { @@ -14783,7 +15061,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-master": "1.18-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14841,7 +15119,7 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:46:27+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { "name": "symfony/polyfill-util", @@ -15320,16 +15598,16 @@ }, { "name": "symfony/var-dumper", - "version": "v4.4.10", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac" + "reference": "1bef32329f3166486ab7cb88599cae4875632b99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac", - "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1bef32329f3166486ab7cb88599cae4875632b99", + "reference": "1bef32329f3166486ab7cb88599cae4875632b99", "shasum": "" }, "require": { @@ -15393,7 +15671,21 @@ "debug", "dump" ], - "time": "2020-05-30T20:06:45+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-17T07:31:35+00:00" }, { "name": "symfony/yaml", @@ -16523,28 +16815,27 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.1.0", + "version": "5.2.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" + "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", - "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44", + "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44", "shasum": "" }, "require": { - "ext-filter": "^7.1", - "php": "^7.2", - "phpdocumentor/reflection-common": "^2.0", - "phpdocumentor/type-resolver": "^1.0", - "webmozart/assert": "^1" + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" }, "require-dev": { - "doctrine/instantiator": "^1", - "mockery/mockery": "^1" + "mockery/mockery": "~1.3.2" }, "type": "library", "extra": { @@ -16572,7 +16863,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-02-22T12:28:44+00:00" + "time": "2020-08-15T11:14:08+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -16932,6 +17223,7 @@ "keywords": [ "tokenizer" ], + "abandoned": true, "time": "2019-09-17T06:23:10+00:00" }, { @@ -17586,7 +17878,7 @@ }, { "name": "symfony/browser-kit", - "version": "v4.4.10", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", @@ -17641,20 +17933,34 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-22T17:28:00+00:00" }, { "name": "symfony/config", - "version": "v5.1.2", + "version": "v5.1.5", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "b8623ef3d99fe62a34baf7a111b576216965f880" + "reference": "22f961ddffdc81389670b2ca74a1cc0213761ec0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/b8623ef3d99fe62a34baf7a111b576216965f880", - "reference": "b8623ef3d99fe62a34baf7a111b576216965f880", + "url": "https://api.github.com/repos/symfony/config/zipball/22f961ddffdc81389670b2ca74a1cc0213761ec0", + "reference": "22f961ddffdc81389670b2ca74a1cc0213761ec0", "shasum": "" }, "require": { @@ -17707,24 +18013,38 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2020-05-23T13:08:13+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-17T07:48:54+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.10", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "afc26133a6fbdd4f8842e38893e0ee4685c7c94b" + "reference": "bf17dc9f6ce144e41f786c32435feea4d8e11dcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/afc26133a6fbdd4f8842e38893e0ee4685c7c94b", - "reference": "afc26133a6fbdd4f8842e38893e0ee4685c7c94b", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/bf17dc9f6ce144e41f786c32435feea4d8e11dcc", + "reference": "bf17dc9f6ce144e41f786c32435feea4d8e11dcc", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "type": "library", "extra": { @@ -17760,7 +18080,21 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-07-05T09:39:30+00:00" }, { "name": "symfony/deprecation-contracts", @@ -17885,23 +18219,23 @@ }, { "name": "theseer/tokenizer", - "version": "1.1.3", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" + "reference": "75a63c33a8577608444246075ea0af0d052e452a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", - "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", + "reference": "75a63c33a8577608444246075ea0af0d052e452a", "shasum": "" }, "require": { "ext-dom": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": "^7.0" + "php": "^7.2 || ^8.0" }, "type": "library", "autoload": { @@ -17921,10 +18255,23 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2019-06-13T22:48:21+00:00" + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2020-07-12T23:59:07+00:00" + } + ], + "aliases": [ + { + "alias": "1.x-dev", + "alias_normalized": "1.9999999.9999999.9999999-dev", + "version": "dev-update-to-drupal9", + "package": "drupal/drutopia_core" } ], - "aliases": [], "minimum-stability": "dev", "stability-flags": { "drupal/admin_links_access_filter": 15, @@ -17937,12 +18284,14 @@ "drupal/drutopia_site": 20, "drupal/indieweb": 20, "drupal/mimemail": 15, + "drupal/multiline_config": 20, "drupal/regionincontent": 20, "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, "drupal/webform": 5, - "drupal/wysiwyg_linebreaks": 20 + "drupal/wysiwyg_linebreaks": 20, + "drutopia/drutopia": 20 }, "prefer-stable": true, "prefer-lowest": false, From d632dd7aa32e555992d48a20822cd216a3848ae5 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 7 Sep 2020 22:28:10 -0500 Subject: [PATCH 014/236] Remove similartemrs patch (it was commited and released) And add a new version of the block theme sync module patch to make it compatible with D9 --- composer.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 9383488..6ff25cf 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ "drupal/admin_links_access_filter": "^1.0@alpha", "drupal/allowed_formats": "^1.1", "drupal/antibot": "^1.2", - "drupal/block_theme_sync": "^1.0@alpha", + "drupal/block_theme_sync": "1.x-dev", "drupal/ckeditor_markdown": "^1.1", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", @@ -120,11 +120,8 @@ "drupal/textarea_widget_for_text": { "Automated Drupal Rector fixes":"https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" }, - "drupal/similarterms": { - "Compatibility with Drupal 9": "https://www.drupal.org/files/issues/2020-06-20/Compatibility_with_Drupal_9-3120089-5.patch" - }, "drupal/block_theme_sync": { - "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-06-05/block_theme_sync.1.x-dev.rector.patch" + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch" }, "drupal/multiline_config": { "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" From 654f5793b42f17ff2013b5faf03154bb71bde4ad Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 7 Sep 2020 22:28:50 -0500 Subject: [PATCH 015/236] composer.lock without the similar term patch and with the block theme sync module --- composer.lock | 72 +++++++++++++++++++++++---------------------------- 1 file changed, 33 insertions(+), 39 deletions(-) diff --git a/composer.lock b/composer.lock index 779fad6..a7ba2eb 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "60ef631dcef6660d1213d17c8fc269ef", + "content-hash": "e7213074783798043d532e8b0c899cb8", "packages": [ { "name": "algolia/places", @@ -2444,20 +2444,14 @@ }, { "name": "drupal/block_theme_sync", - "version": "1.0.0-alpha2", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_theme_sync.git", - "reference": "8.x-1.0-alpha2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_theme_sync-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "2cae7d62b1c3388dc3b4c43bd548bece52d74752" + "reference": "dad414c08d2ce35921b871f201dc5324e476096a" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { @@ -2465,15 +2459,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1483387143", + "version": "8.x-1.0-alpha2+0-dev", + "datestamp": "1483386842", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" } }, "patches_applied": { - "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-06-05/block_theme_sync.1.x-dev.rector.patch" + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -2493,25 +2487,20 @@ "description": "Subscribe to block updates for source themes.", "homepage": "https://www.drupal.org/project/block_theme_sync", "support": { - "source": "http://cgit.drupalcode.org/block_theme_sync" - } + "source": "https://git.drupalcode.org/project/block_theme_sync" + }, + "time": "2017-01-02T19:51:28+00:00" }, { "name": "drupal/block_visibility_groups", - "version": "1.3.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "8.x-1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "3c42377fcf6b849e8509b4b993a750cbc1a90a9b" + "reference": "c70e4bf24076f0b697ed34ba5cfc1ea1dafbcc1d" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { @@ -2519,11 +2508,11 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1536509886", + "version": "8.x-1.3+6-dev", + "datestamp": "1598844322", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -2532,6 +2521,10 @@ "GPL-2.0+" ], "authors": [ + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -2541,15 +2534,16 @@ "homepage": "https://www.drupal.org/user/240860" } ], - "description": "My Awesome Module", - "homepage": "http://drupal.org/project/block_visibility_groups", + "description": "Block Visibility Groups", + "homepage": "https://www.drupal.org/project/block_visibility_groups", "keywords": [ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/block_visibility_groups", - "issues": "http://drupal.org/project/issues/block_visibility_groups" - } + "source": "https://git.drupalcode.org/project/block_visibility_groups", + "issues": "https://www.drupal.org/project/issues/block_visibility_groups" + }, + "time": "2020-09-02T16:43:42+00:00" }, { "name": "drupal/bulma", @@ -10537,19 +10531,19 @@ "source": { "type": "git", "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "a1eb1698e248328127487445e917f905b5c63ba3" + "reference": "070987a2d3eff55ae686d289824ae4f0c5dbb6d6" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=a1eb1698e248328127487445e917f905b5c63ba3", - "reference": "a1eb1698e248328127487445e917f905b5c63ba3", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=070987a2d3eff55ae686d289824ae4f0c5dbb6d6", + "reference": "070987a2d3eff55ae686d289824ae4f0c5dbb6d6", "shasum": "" }, "require": { "cweagans/composer-patches": "^1.6", "drupal/antibot": "^1.4", "drupal/better_normalizers": "^1.0-beta4", - "drupal/block_visibility_groups": "^1.3", + "drupal/block_visibility_groups": "1.x-dev", "drupal/bulma": "^1.0-beta4", "drupal/components": "^2.0", "drupal/config_actions_provider": "^1.0-rc1", @@ -10619,7 +10613,7 @@ "GPL-2.0+" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "time": "2020-09-07T19:56:40+00:00" + "time": "2020-09-08T02:35:12+00:00" }, { "name": "easyrdf/easyrdf", @@ -18275,7 +18269,7 @@ "minimum-stability": "dev", "stability-flags": { "drupal/admin_links_access_filter": 15, - "drupal/block_theme_sync": 15, + "drupal/block_theme_sync": 20, "drupal/coffee": 20, "drupal/comment_notify": 20, "drupal/customerror": 20, From c3061fede21c63179050af714157f25d19b48707 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Wed, 9 Sep 2020 12:55:51 -0500 Subject: [PATCH 016/236] New patches and updated of different modules --- composer.json | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 6ff25cf..f169052 100644 --- a/composer.json +++ b/composer.json @@ -22,10 +22,10 @@ "drupal/drutopia_core": "dev-update-to-drupal9 as 1.x-dev", "drupal/drutopia_site": "dev-1.x", "drupal/google_analytics": "^2.3", - "drupal/honeypot": "^1.29", + "drupal/honeypot": "^2.0", "drupal/hotjar": "^1.2", "drupal/http_cache_control": "^1.0", - "drupal/http_client_error_status": "^1.0", + "drupal/http_client_error_status": "^2.0", "drupal/indieweb": "1.x-dev", "drupal/mailsystem": "^4.3", "drupal/markdown": "^1.2", @@ -33,7 +33,7 @@ "drupal/migrate_plus": "^4.0", "drupal/migrate_tools": "^4.0", "drupal/mimemail": "^1.0@alpha", - "drupal/minimalhtml": "^1.0", + "drupal/minimalhtml": "1.x-dev", "drupal/multiline_config": "dev-1.x", "drupal/paragraphs_features": "^1.4", "drupal/preview_link": "^1.1", @@ -50,6 +50,7 @@ "drupal/upgrade_status": "^2.0", "drupal/viewsreference": "^1.2", "drupal/webform": "^5.0@RC", + "drupal/mailchimp": "1.x-dev", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "1.x-dev", "drush/drush": "^10.0", @@ -123,9 +124,21 @@ "drupal/block_theme_sync": { "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch" }, - "drupal/multiline_config": { - "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" - } + "drupal/config_actions_provider": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/config_actions_provider.1.x-dev.rector.patch" + }, + "drupal/multiline_config": { + "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" + }, + "drupal/mailchimp": { + "Drupal 9 compatibility": "https://www.drupal.org/files/issues/2020-07-16/mailchimp-d9-3138909-9.patch" + }, + "drupal/minimalhtml": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-09-09/3141144-4.txt" + }, + "drupal/regionincontent": { + "Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch" + } } }, "scripts": { From c219eebb28bd2b431a2bfc39ed0ee430829d24cc Mon Sep 17 00:00:00 2001 From: David Valdez Date: Wed, 9 Sep 2020 12:56:09 -0500 Subject: [PATCH 017/236] Lock file with more updates and patches --- composer.lock | 190 ++++++++++++++++++++++---------------------------- 1 file changed, 85 insertions(+), 105 deletions(-) diff --git a/composer.lock b/composer.lock index a7ba2eb..d096016 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e7213074783798043d532e8b0c899cb8", + "content-hash": "9d4dd20ddf7f0a9996e4674fae2b5081", "packages": [ { "name": "algolia/places", @@ -3061,17 +3061,11 @@ }, { "name": "drupal/config_actions_provider", - "version": "1.0.0-rc1", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions_provider.git", - "reference": "8.x-1.0-rc1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "58465e27987b9f826dd767884a8e69193abbd854" + "reference": "8cfb699a72443111022f24a2a786212d9ac53d38" }, "require": { "drupal/config_actions": "*", @@ -3085,12 +3079,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1550207284", + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1570043285", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" } + }, + "patches_applied": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/config_actions_provider.1.x-dev.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -3110,8 +3107,9 @@ "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" - } + "source": "https://git.drupalcode.org/project/config_actions_provider" + }, + "time": "2019-10-02T19:07:49+00:00" }, { "name": "drupal/config_distro", @@ -6980,39 +6978,35 @@ }, { "name": "drupal/honeypot", - "version": "1.30.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "8.x-1.30" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.30.zip", - "reference": "8.x-1.30", - "shasum": "1d7983e8e07feee4f13e4b05c9a10db15ae2097e" + "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip", + "reference": "2.0.1", + "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.0 || ^9.0" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.30", - "datestamp": "1576274288", + "version": "2.0.1", + "datestamp": "1597855128", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "patches_applied": [] + } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -7040,7 +7034,8 @@ "spam" ], "support": { - "source": "https://git.drupalcode.org/project/honeypot" + "source": "https://git.drupalcode.org/project/honeypot", + "issues": "https://www.drupal.org/project/issues/honeypot" } }, { @@ -7140,29 +7135,29 @@ }, { "name": "drupal/http_client_error_status", - "version": "1.3.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_client_error_status.git", - "reference": "8.x-1.3" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "24d677c0fbfd34265d954607ec37dd80413f2f38" + "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "d51475a027b3e2389d9d23d87bf2d73be263ac96" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1590401488", + "version": "8.x-2.2", + "datestamp": "1590401502", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -7380,20 +7375,14 @@ }, { "name": "drupal/mailchimp", - "version": "1.11.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/mailchimp.git", - "reference": "8.x-1.11" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailchimp-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "e941ed42ac8db20e89cdaa47f81e6a904ece59a3" + "reference": "9ce6e548f11b36236c9c30179f9595f382ede780" }, "require": { - "drupal/core": "~8.0", + "drupal/core": "^8.7.7 || ^9", "thinkshout/mailchimp-api-php": "2.0.0" }, "require-dev": { @@ -7405,12 +7394,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.11", - "datestamp": "1569440287", + "version": "8.x-1.11+25-dev", + "datestamp": "1589809374", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "Drupal 9 compatibility": "https://www.drupal.org/files/issues/2020-07-16/mailchimp-d9-3138909-9.patch" } }, "autoload": { @@ -7432,12 +7424,12 @@ "homepage": "https://www.drupal.org/user/369147" }, { - "name": "gcb", - "homepage": "https://www.drupal.org/user/1682976" + "name": "brendanthinkshout", + "homepage": "https://www.drupal.org/user/3578399" }, { - "name": "julia.leah.ford", - "homepage": "https://www.drupal.org/user/3590443" + "name": "gcb", + "homepage": "https://www.drupal.org/user/1682976" }, { "name": "levelos", @@ -7447,22 +7439,6 @@ "name": "mshaver", "homepage": "https://www.drupal.org/user/39079" }, - { - "name": "nrackleff", - "homepage": "https://www.drupal.org/user/463332" - }, - { - "name": "rjacobsen0", - "homepage": "https://www.drupal.org/user/3578420" - }, - { - "name": "ruscoe", - "homepage": "https://www.drupal.org/user/2722087" - }, - { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" - }, { "name": "tauno", "homepage": "https://www.drupal.org/user/105595" @@ -7472,7 +7448,8 @@ "homepage": "http://drupal.org/project/mailchimp", "support": { "source": "https://git.drupalcode.org/project/mailchimp" - } + }, + "time": "2020-08-19T21:41:47+00:00" }, { "name": "drupal/mailsystem", @@ -8093,20 +8070,14 @@ }, { "name": "drupal/minimalhtml", - "version": "1.1.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/minimalhtml-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "2a41c2b9d052a65ce40cc1eaf78bff4e4cdb373e" + "reference": "e51a59b0481684c4b1c5a1aa5bcc4a0736346152" }, "require": { - "drupal/core": "*", + "drupal/core": "^8", "drupal/wysiwyg_linebreaks": "^1.9" }, "require-dev": { @@ -8118,12 +8089,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1541458980", + "version": "8.x-1.1+2-dev", + "datestamp": "1541524980", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-09-09/3141144-4.txt" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -8145,9 +8119,10 @@ "description": "Minimal HTML provides a WYSIWYG text format suitable for basic uses like short text fields or administrator-configured notices.", "homepage": "https://www.drupal.org/project/minimalhtml", "support": { - "source": "http://cgit.drupalcode.org/minimalhtml", + "source": "https://git.drupalcode.org/project/minimalhtml", "issues": "https://www.drupal.org/project/issues/minimalhtml" - } + }, + "time": "2018-11-06T17:19:13+00:00" }, { "name": "drupal/multiline_config", @@ -8722,6 +8697,9 @@ "status": "not-covered", "message": "Project has not opted into security advisory coverage!" } + }, + "patches_applied": { + "Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -8737,7 +8715,7 @@ "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": "http://cgit.drupalcode.org/regionincontent" + "source": "https://git.drupalcode.org/project/regionincontent" }, "time": "2018-12-17T22:12:17+00:00" }, @@ -10531,12 +10509,12 @@ "source": { "type": "git", "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "070987a2d3eff55ae686d289824ae4f0c5dbb6d6" + "reference": "1a5216280e92e57cdabadf9404936104aadd2aea" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=070987a2d3eff55ae686d289824ae4f0c5dbb6d6", - "reference": "070987a2d3eff55ae686d289824ae4f0c5dbb6d6", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=1a5216280e92e57cdabadf9404936104aadd2aea", + "reference": "1a5216280e92e57cdabadf9404936104aadd2aea", "shasum": "" }, "require": { @@ -10546,7 +10524,7 @@ "drupal/block_visibility_groups": "1.x-dev", "drupal/bulma": "^1.0-beta4", "drupal/components": "^2.0", - "drupal/config_actions_provider": "^1.0-rc1", + "drupal/config_actions_provider": "1.x-dev", "drupal/config_sync": "^2.0-beta5", "drupal/config_update": "^1.7", "drupal/core": "^8", @@ -10574,7 +10552,7 @@ "drupal/eu_cookie_compliance": "^1.9", "drupal/features": "^3.11", "drupal/gdpr": "^2.0-alpha7", - "drupal/honeypot": "^1.30", + "drupal/honeypot": "^2.0", "drupal/menu_block": "^1.6", "drupal/octavia": "^1.0-rc1", "drupal/paranoia": "^1.0-alpha1", @@ -10613,7 +10591,7 @@ "GPL-2.0+" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "time": "2020-09-08T02:35:12+00:00" + "time": "2020-09-08T19:51:47+00:00" }, { "name": "easyrdf/easyrdf", @@ -13841,16 +13819,16 @@ }, { "name": "stripe/stripe-php", - "version": "v7.51.0", + "version": "v7.52.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "879a3545126ebc77218c53d2055572b7e473fbcf" + "reference": "51e95c514aff45616dff09791ca5b2f10cf5c4e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/879a3545126ebc77218c53d2055572b7e473fbcf", - "reference": "879a3545126ebc77218c53d2055572b7e473fbcf", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/51e95c514aff45616dff09791ca5b2f10cf5c4e8", + "reference": "51e95c514aff45616dff09791ca5b2f10cf5c4e8", "shasum": "" }, "require": { @@ -13894,7 +13872,7 @@ "payment processing", "stripe" ], - "time": "2020-09-02T21:04:02+00:00" + "time": "2020-09-08T19:29:20+00:00" }, { "name": "svg-pan-zoom/svg-pan-zoom", @@ -18092,16 +18070,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.1.3", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14" + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5e20b83385a77593259c9f8beb2c43cd03b2ac14", - "reference": "5e20b83385a77593259c9f8beb2c43cd03b2ac14", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", "shasum": "" }, "require": { @@ -18110,7 +18088,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-master": "2.2-dev" }, "thanks": { "name": "symfony/contracts", @@ -18152,7 +18130,7 @@ "type": "tidelift" } ], - "time": "2020-06-06T08:49:21+00:00" + "time": "2020-09-07T11:33:47+00:00" }, { "name": "symfony/dom-crawler", @@ -18278,12 +18256,14 @@ "drupal/drutopia_site": 20, "drupal/indieweb": 20, "drupal/mimemail": 15, + "drupal/minimalhtml": 20, "drupal/multiline_config": 20, "drupal/regionincontent": 20, "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, "drupal/webform": 5, + "drupal/mailchimp": 20, "drupal/wysiwyg_linebreaks": 20, "drutopia/drutopia": 20 }, From 5079621e1339baafb45f416b38b70ea6eba284a7 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Wed, 9 Sep 2020 14:36:22 -0500 Subject: [PATCH 018/236] Updating octavia --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index f169052..9283a48 100644 --- a/composer.json +++ b/composer.json @@ -48,8 +48,8 @@ "drupal/twigsuggest": "1.x-dev", "drupal/ui_patterns": "^1.0@RC", "drupal/upgrade_status": "^2.0", - "drupal/viewsreference": "^1.2", - "drupal/webform": "^5.0@RC", + "drupal/viewsreference": "^2.0", + "drupal/webform": "^6.0", "drupal/mailchimp": "1.x-dev", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "1.x-dev", @@ -73,10 +73,10 @@ "type": "vcs", "url": "https://gitlab.com/drutopia/drutopia" }, - "drutopia_core": { - "type": "vcs", - "url": "https://gitlab.com/drutopia/drutopia_core" - } + "drutopia_core": { + "type": "vcs", + "url": "https://gitlab.com/drutopia/drutopia_core" + } }, "config": { "sort-packages": true, From 483138ae5e44ce84827a4f096cc8ceea76f379fa Mon Sep 17 00:00:00 2001 From: David Valdez Date: Wed, 9 Sep 2020 14:36:38 -0500 Subject: [PATCH 019/236] lock file wit hthe dev version of octavia --- composer.lock | 300 ++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 232 insertions(+), 68 deletions(-) diff --git a/composer.lock b/composer.lock index d096016..e983ca7 100644 --- a/composer.lock +++ b/composer.lock @@ -4,14 +4,14 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9d4dd20ddf7f0a9996e4674fae2b5081", + "content-hash": "bf3aaddb4e178d0ccdd3a0e32fee7c39", "packages": [ { "name": "algolia/places", - "version": "1.18.2", + "version": "1.19.0", "dist": { "type": "tar", - "url": "https://registry.npmjs.org/places.js/-/places.js-1.18.2.tgz" + "url": "https://registry.npmjs.org/places.js/-/places.js-1.19.0.tgz" }, "require": { "composer/installers": "~1.0" @@ -251,10 +251,10 @@ }, { "name": "ckeditor/autogrow", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.14.0.zip" + "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -281,10 +281,10 @@ }, { "name": "ckeditor/fakeobjects", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.0.zip" + "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -296,10 +296,10 @@ }, { "name": "ckeditor/image", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/image/releases/image_4.14.0.zip" + "url": "https://download.ckeditor.com/image/releases/image_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -311,10 +311,10 @@ }, { "name": "ckeditor/link", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/link/releases/link_4.14.0.zip" + "url": "https://download.ckeditor.com/link/releases/link_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -326,10 +326,10 @@ }, { "name": "codemirror/codemirror", - "version": "5.53.2", + "version": "5.57.0", "dist": { "type": "zip", - "url": "https://github.com/components/codemirror/archive/5.53.2.zip" + "url": "https://github.com/components/codemirror/archive/5.57.0.zip" }, "require": { "composer/installers": "~1.0" @@ -7373,6 +7373,161 @@ "source": "https://git.drupalcode.org/project/jquery_ui_accordion" } }, + { + "name": "drupal/jquery_ui_datepicker", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1589684301", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "jrockowitz", + "homepage": "https://www.drupal.org/user/371407" + }, + { + "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_tabs", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_tabs.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_tabs-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "511ffb8258f60e7e180bed1f7447203423e58da3" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1590102797", + "security-coverage": { + "status": "covered", + "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 Tabs library.", + "homepage": "https://www.drupal.org/project/jquery_ui_tabs", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_tabs" + } + }, + { + "name": "drupal/jquery_ui_tooltip", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_tooltip.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_tooltip-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "5a1d79d27c61a4cc80c1b256154aecfd0079d88c" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1584107978", + "security-coverage": { + "status": "covered", + "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 Tooltip library.", + "homepage": "https://www.drupal.org/project/jquery_ui_tooltip", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_tooltip" + } + }, { "name": "drupal/mailchimp", "version": "dev-1.x", @@ -8176,32 +8331,29 @@ }, { "name": "drupal/octavia", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/octavia.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/octavia-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "7204a6785666a4bb8d1964ec14cbb26cc6a6f389" + "reference": "1031b7a2e90b5299546819e2fae5307ecaa643b1" }, "require": { "drupal/bulma": "^1.0-beta4", - "drupal/core": "~8.0", + "drupal/core": "^8 || ^9", "drupal/skins": "^1.0-alpha4", "drupal/twigsuggest": "^1.0-beta1" }, "type": "drupal-theme", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215729", + "version": "8.x-1.0+8-dev", + "datestamp": "1596662742", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -8248,7 +8400,8 @@ "support": { "source": "https://gitlab.com/drutopia/octavia/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/octavia/issues" - } + }, + "time": "2020-08-10T05:57:31+00:00" }, { "name": "drupal/paragraphs", @@ -9997,47 +10150,48 @@ }, { "name": "drupal/viewsreference", - "version": "1.4.0", + "version": "2.0.0-beta2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/viewsreference.git", - "reference": "8.x-1.4" + "reference": "8.x-2.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/viewsreference-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "973509be252d9a2f9a0a12bbfb83ec41311ef41c" + "url": "https://ftp.drupal.org/files/projects/viewsreference-8.x-2.0-beta2.zip", + "reference": "8.x-2.0-beta2", + "shasum": "146bf8c68e6cbb3805b4368b508d43931fe77c67" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "conflict": { "drupal/viewsreferennce": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1544740080", + "version": "8.x-2.0-beta2", + "datestamp": "1597241500", "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." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { "name": "New Zeal", "homepage": "https://www.drupal.org/user/93571" }, + { + "name": "jasonawant", + "homepage": "https://www.drupal.org/user/589890" + }, { "name": "joekers", "homepage": "https://www.drupal.org/user/2229066" @@ -10047,44 +10201,49 @@ "homepage": "https://www.drupal.org/user/545912" } ], - "description": "Views Reference", + "description": "Views reference", "homepage": "http://drupal.org/project/viewsreference", "keywords": [ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/viewsreference", - "issues": "http://drupal.org/project/issues/viewsreference" + "source": "https://git.drupalcode.org/project/viewsreference", + "issues": "https://www.drupal.org/project/issues/viewsreference" } }, { "name": "drupal/webform", - "version": "5.19.0", + "version": "6.0.0-alpha15", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "8.x-5.19" + "reference": "6.0.0-alpha15" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.19.zip", - "reference": "8.x-5.19", - "shasum": "90a2084c2647bca791cc8b18a7e2a3b49f3da7ea" + "url": "https://ftp.drupal.org/files/projects/webform-6.0.0-alpha15.zip", + "reference": "6.0.0-alpha15", + "shasum": "44c594ee138f6c09b49b3326f02f18d7081970d5" }, "require": { - "drupal/core": "^8.8" + "drupal/core": "^8.8 || ^9", + "drupal/jquery_ui": "~1.0", + "drupal/jquery_ui_datepicker": "~1.0", + "drupal/jquery_ui_tabs": "~1.0", + "drupal/jquery_ui_tooltip": "~1.0" }, "require-dev": { "drupal/address": "~1.0", "drupal/bootstrap": "~3.0", "drupal/captcha": "~1.0", - "drupal/chosen": "~2.0", "drupal/clientside_validation": "~3.0", "drupal/clientside_validation_jquery": "*", "drupal/devel": "~3.0", + "drupal/entity": "~1.0", "drupal/entity_print": "~2.0", "drupal/gnode": "*", - "drupal/group": "~1.0", + "drupal/group": "1.0", + "drupal/jquery_ui_checkboxradio": "*", "drupal/lingotek": "~3.0", "drupal/mailsystem": "~4.0", "drupal/paragraphs": "~1.0", @@ -10093,6 +10252,7 @@ "drupal/styleguide": "~1.0", "drupal/telephone_validation": "~2.0", "drupal/token": "~1.0", + "drupal/variationcache": "~1.0", "drupal/webform_access": "*", "drupal/webform_attachment": "*", "drupal/webform_clientside_validation": "*", @@ -10108,17 +10268,22 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.19", - "datestamp": "1593681136", + "version": "6.0.0-alpha15", + "datestamp": "1599240333", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } }, "drush": { "services": { "drush.services.yml": "^9" } + }, + "Issue #3110478: [Webform 8.x-6.x] Track the D9 readiness state of the Webform module's (optional) dependencies": { + "require-dev": { + "drupal/chosen": "~2.0" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -10509,12 +10674,12 @@ "source": { "type": "git", "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "1a5216280e92e57cdabadf9404936104aadd2aea" + "reference": "a307cf1fc753ebbd552eddcffa2fee80050bc6b0" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=1a5216280e92e57cdabadf9404936104aadd2aea", - "reference": "1a5216280e92e57cdabadf9404936104aadd2aea", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=a307cf1fc753ebbd552eddcffa2fee80050bc6b0", + "reference": "a307cf1fc753ebbd552eddcffa2fee80050bc6b0", "shasum": "" }, "require": { @@ -10554,7 +10719,7 @@ "drupal/gdpr": "^2.0-alpha7", "drupal/honeypot": "^2.0", "drupal/menu_block": "^1.6", - "drupal/octavia": "^1.0-rc1", + "drupal/octavia": "dev-1.x", "drupal/paranoia": "^1.0-alpha1", "drupal/riddler": "^1.1", "drupal/subprofiles": "^1.0-alpha2", @@ -10591,7 +10756,7 @@ "GPL-2.0+" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "time": "2020-09-08T19:51:47+00:00" + "time": "2020-09-09T19:33:44+00:00" }, { "name": "easyrdf/easyrdf", @@ -11430,10 +11595,10 @@ }, { "name": "jquery/inputmask", - "version": "5.0.3", + "version": "5.0.5", "dist": { "type": "zip", - "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.3.zip" + "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.5.zip" }, "require": { "composer/installers": "~1.0" @@ -11505,10 +11670,10 @@ }, { "name": "jquery/timepicker", - "version": "1.13.10", + "version": "1.13.14", "dist": { "type": "zip", - "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.10.zip" + "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.14.zip" }, "require": { "composer/installers": "~1.0" @@ -13482,10 +13647,10 @@ }, { "name": "progress-tracker/progress-tracker", - "version": "1.4.0", + "version": "2.0.6", "dist": { "type": "zip", - "url": "https://github.com/NigelOToole/progress-tracker/archive/v1.4.0.zip" + "url": "https://github.com/NigelOToole/progress-tracker/archive/2.0.6.zip" }, "require": { "composer/installers": "~1.0" @@ -18262,7 +18427,6 @@ "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, - "drupal/webform": 5, "drupal/mailchimp": 20, "drupal/wysiwyg_linebreaks": 20, "drutopia/drutopia": 20 From a6caeba30ad994ae7fb8cf05bda91fe91aa63f0a Mon Sep 17 00:00:00 2001 From: David Valdez Date: Wed, 9 Sep 2020 22:09:05 -0500 Subject: [PATCH 020/236] patches for markdown and webform_stripe modules These patches make the modules compatible with D9 --- composer.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 9283a48..6aad70c 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "drupal/http_client_error_status": "^2.0", "drupal/indieweb": "1.x-dev", "drupal/mailsystem": "^4.3", - "drupal/markdown": "^1.2", + "drupal/markdown": "^2.0", "drupal/menu_trail_by_path": "^1.1", "drupal/migrate_plus": "^4.0", "drupal/migrate_tools": "^4.0", @@ -42,7 +42,7 @@ "drupal/scheduler": "^1.0", "drupal/scn": "^1.1", "drupal/search404": "^1.0", - "drupal/stripe_webform": "^1.1", + "drupal/stripe_webform": "1.x-dev", "drupal/swiftmailer": "^1.0@beta", "drupal/textarea_widget_for_text": "^1.1", "drupal/twigsuggest": "1.x-dev", @@ -138,6 +138,12 @@ }, "drupal/regionincontent": { "Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch" + }, + "drupal/stripe_webform": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-09/stripe_webform.1.x-dev.rector.patch" + }, + "drupal/markdown": { + "[markdown] Drupal 9 Support": "https://www.drupal.org/files/issues/2020-05-14/3103679-18.patch" } } }, From e350adbafe878641206d849aef32d187b552e0a4 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Wed, 9 Sep 2020 22:09:34 -0500 Subject: [PATCH 021/236] Lock file with several more patches --- composer.lock | 723 ++++++++++++++++++++------------------------------ 1 file changed, 283 insertions(+), 440 deletions(-) diff --git a/composer.lock b/composer.lock index e983ca7..d8e6565 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bf3aaddb4e178d0ccdd3a0e32fee7c39", + "content-hash": "aec79dad31e2acf7d6535e319ddeacd9", "packages": [ { "name": "algolia/places", @@ -2547,20 +2547,14 @@ }, { "name": "drupal/bulma", - "version": "1.0.0-beta4", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bulma.git", - "reference": "8.x-1.0-beta4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bulma-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "54b98779781b15b8ab1e0c3b807fac65c6c21e89" + "reference": "ebf7089af9160c75bdbba4a988ac08857409eef6" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-theme", "extra": { @@ -2568,11 +2562,11 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1580867352", + "version": "8.x-1.0-beta4+4-dev", + "datestamp": "1593141951", "security-coverage": { "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -2602,7 +2596,8 @@ "homepage": "https://www.drupal.org/project/bulma", "support": { "source": "https://git.drupalcode.org/project/bulma" - } + }, + "time": "2020-06-26T03:25:36+00:00" }, { "name": "drupal/captcha", @@ -4540,21 +4535,15 @@ }, { "name": "drupal/drutopia_action", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_action.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_action-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "97f778fc126e9f6107bffcf9b89185a42e39e74c" + "reference": "7d5f3c5db87933813657b7dda3b1bb6e5cd833d4" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", "drupal/drutopia_site": "*", @@ -4569,12 +4558,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214664", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210829", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -4620,26 +4612,21 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_action/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_action/issues" - } + }, + "time": "2020-08-05T19:19:36+00:00" }, { "name": "drupal/drutopia_article", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_article.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_article-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "41358f80e06b26cad2065fc74b60397138a7b132" + "reference": "0f78d828e8cbcd2e1b7f8ab91680a590e310cef0" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", @@ -4659,12 +4646,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214723", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210846", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -4702,26 +4692,21 @@ "homepage": "https://gitlab.com/drutopia/drutopia_article", "support": { "source": "https://git.drupalcode.org/project/drutopia_article" - } + }, + "time": "2020-08-05T19:20:11+00:00" }, { "name": "drupal/drutopia_blog", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_blog.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_blog-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f92291e5a1a2ba2c2724fe63a5cd743f4c2649d6" + "reference": "c1d9209ece22e69a655af92af0d16587f31f5168" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", @@ -4741,12 +4726,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214767", + "version": "8.x-1.0+1-dev", + "datestamp": "1595519501", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -4791,25 +4779,20 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_blog/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_blog/issues" - } + }, + "time": "2020-08-05T19:20:01+00:00" }, { "name": "drupal/drutopia_campaign", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_campaign.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f4135d8e51e63ad5c66b97c9a5de67902f81355f" + "reference": "001584b9d29c92471549865c741de3782423514c" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "^1.0", "drupal/drutopia_seo": "^1.0", "drupal/ds": "^3.7", @@ -4823,12 +4806,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214813", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210885", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -4873,39 +4859,35 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_campaign/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_campaign/issues" - } + }, + "time": "2020-08-05T19:20:34+00:00" }, { "name": "drupal/drutopia_comment", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_comment.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_comment-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "fa259408f8d3750a9ceedc45aa6c1714913ca13e" + "reference": "18dfba03606ce995463085070fc494434400a525" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "*" }, "type": "drupal-module", "extra": { - "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214864", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "branch-alias": { + "dev-1.x": "1.x-dev", "dev-8.x-1.x": "^1.0-alpha1" + }, + "drupal": { + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1591210900", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -4949,7 +4931,8 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_comment/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_comment/issues" - } + }, + "time": "2020-08-05T19:23:31+00:00" }, { "name": "drupal/drutopia_core", @@ -4957,18 +4940,17 @@ "source": { "type": "git", "url": "https://gitlab.com/drutopia/drutopia_core.git", - "reference": "e2087df07edb67479dc2b0c9a461f7de5713ab96" + "reference": "089d79027ac766f4beb5a3d45bff75140483fe9b" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia_core/repository/archive.zip?sha=e2087df07edb67479dc2b0c9a461f7de5713ab96", - "reference": "e2087df07edb67479dc2b0c9a461f7de5713ab96", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia_core/repository/archive.zip?sha=089d79027ac766f4beb5a3d45bff75140483fe9b", + "reference": "089d79027ac766f4beb5a3d45bff75140483fe9b", "shasum": "" }, "require": { "drupal/config_actions": "^1.1", "drupal/config_perms": "^2.0-beta2", - "drupal/core": "^8.8", "drupal/crop": "^2.0", "drupal/ds": "^3.7", "drupal/facets": "^1.4", @@ -5004,26 +4986,20 @@ "issues": "https://gitlab.com/drutopia/drutopia_core/issues", "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x" }, - "time": "2020-09-07T20:45:52+00:00" + "time": "2020-09-10T02:56:00+00:00" }, { "name": "drupal/drutopia_event", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_event.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_event-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "cf598b86dc55e324f3f0d7bea796789c37defeac" + "reference": "abb27d7ba14997e7a733b90028729278f1f14325" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5040,12 +5016,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214946", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210932", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5090,27 +5069,22 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_event/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_event/issues" - } + }, + "time": "2020-08-05T21:04:36+00:00" }, { "name": "drupal/drutopia_group", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_group.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_group-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "3c009a4bdb9139cd8f599d633f0a3d579775c0f8" + "reference": "dd3f633af1579082172dc97a042937ec4fc63b8c" }, "require": { "drupal/address": "^1.8", "drupal/config_actions": "*", "drupal/config_perms": "*", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "*", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", @@ -5122,12 +5096,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214977", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210948", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5172,26 +5149,21 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_group/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_group/issues" - } + }, + "time": "2020-08-05T21:06:24+00:00" }, { "name": "drupal/drutopia_landing_page", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_landing_page-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "3bcd4a176c3961e870c2903480b33eac9d696e4c" + "reference": "ab91e991bad252fa3d2e6c92b2b83b560cf9f2e5" }, "require": { "cweagans/composer-patches": "^1.5.0", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5205,12 +5177,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215018", + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1591210962", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5255,25 +5230,20 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_landing_page/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_landing_page/issues" - } + }, + "time": "2020-08-05T21:06:37+00:00" }, { "name": "drupal/drutopia_page", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_page.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_page-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "ffaed1879acd8e3f7ff65df69d9b98203a2b580c" + "reference": "c93d51c3a311c342fadf52a0cd553852a6c5619f" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5286,12 +5256,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215057", + "version": "8.x-1.0+1-dev", + "datestamp": "1597015092", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5335,25 +5308,20 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_page/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_page/issues" - } + }, + "time": "2020-08-10T05:58:28+00:00" }, { "name": "drupal/drutopia_people", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_people.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_people-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f78f614330448665cfc59f3f8698bc06593d0109" + "reference": "970658fc2d7fd699476cbe71e3ac110745b15bd1" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "*", "drupal/drutopia_core": "^1.0", "drupal/drutopia_seo": "^1.0", @@ -5368,12 +5336,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215089", + "version": "8.x-1.0+1-dev", + "datestamp": "1596141488", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5421,36 +5392,34 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_people/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_people/issues" - } + }, + "time": "2020-08-05T21:10:06+00:00" }, { "name": "drupal/drutopia_related_content", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_related_content.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "c632edf4b56c435f3055f5d1117b8ab00fafa6cd" + "reference": "69b94e25d2f9414f77f8742b80858bf4c131a719" }, "require": { "drupal/block_visibility_groups": "^1.3", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "^1.0-beta3", "drupal/similarterms": "^1.3" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215142", + "version": "8.x-1.0-beta3+3-dev", + "datestamp": "1585265434", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5495,26 +5464,21 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_related_content/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_related_content/issues" - } + }, + "time": "2020-08-05T21:10:22+00:00" }, { "name": "drupal/drutopia_resource", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_resource.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_resource-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "1f0100c3c9d5c93361a2df20a51e5aedf2d50cd2" + "reference": "431e0cf83cc17170e33fbd4c06635244f4316281" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5532,12 +5496,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215175", + "version": "8.x-1.0+2-dev", + "datestamp": "1596662618", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5585,25 +5552,20 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_resource/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_resource/issues" - } + }, + "time": "2020-08-10T06:02:29+00:00" }, { "name": "drupal/drutopia_search", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_search.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_search-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "a4f404521dca59a3be844e3fe8e896f1c5b9b83a" + "reference": "e1a844c35fb17c5421d4a8e44dd59e510247baa3" }, "require": { "drupal/block_visibility_groups": "^1.3", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "^1.0", "drupal/facets": "*", "drupal/search_api": "*", @@ -5611,12 +5573,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215256", + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1591211020", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5661,25 +5626,20 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_search/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_search/issues" - } + }, + "time": "2020-08-05T21:11:33+00:00" }, { "name": "drupal/drutopia_seo", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_seo.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_seo-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "7609299b49a5393a7b3fcbc58b3606a63c86f33a" + "reference": "c56a409ded7d2dc45366dc4f7aa1b93dbf240816" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "*", "drupal/metatag": "^1.13", "drupal/redirect": "^1.6", @@ -5687,12 +5647,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215275", + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1591211035", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5740,7 +5703,8 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_seo/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_seo/issues" - } + }, + "time": "2020-08-05T21:11:46+00:00" }, { "name": "drupal/drutopia_site", @@ -5825,30 +5789,27 @@ }, { "name": "drupal/drutopia_social", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_social.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_social-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "4b3e33fa332417b498dcb470c55d19df4973dd26" + "reference": "61e6e6ad3982ba5298fab0b4c21edbe0919979c8" }, "require": { - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/social_media_links": "^2.6" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215359", + "version": "8.x-1.0-beta1+1-dev", + "datestamp": "1591211069", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5886,25 +5847,20 @@ "homepage": "https://gitlab.com/drutopia/drutopia_social", "support": { "source": "https://git.drupalcode.org/project/drutopia_social" - } + }, + "time": "2020-08-05T21:12:19+00:00" }, { "name": "drupal/drutopia_storyline", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_storyline.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_storyline-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "9922b7986256b7c758443ae0120fbb90c30ad92c" + "reference": "27a354797ee457773116fdd8eb7aafee6d63e42a" }, "require": { "drupal/config_actions": "*", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "^1.0", "drupal/drutopia_page": "^1.0", "drupal/entity_reference_revisions": "*", @@ -5917,12 +5873,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215426", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591211082", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5968,37 +5927,33 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_storyline/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_storyline/issues" - } + }, + "time": "2020-08-05T21:12:39+00:00" }, { "name": "drupal/drutopia_user", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_user.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_user-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "54394ff756a2ad08cddfb57cbdccbb0ccd5987b0" + "reference": "31585d713458159c15074747b523b486d4405778" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215448", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "branch-alias": { + "dev-1.x": "1.x-dev", "dev-8.x-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1+2-dev", + "datestamp": "1585265518", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -6042,7 +5997,8 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_user/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_user/issues" - } + }, + "time": "2020-08-05T21:12:58+00:00" }, { "name": "drupal/ds", @@ -7672,49 +7628,55 @@ }, { "name": "drupal/markdown", - "version": "1.3.0", + "version": "2.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/markdown.git", - "reference": "8.x-1.3" + "reference": "8.x-2.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/markdown-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "599f3f4dfe3c3d3f3b6d301f940a1125e437a2b0" + "url": "https://ftp.drupal.org/files/projects/markdown-8.x-2.0-rc1.zip", + "reference": "8.x-2.0-rc1", + "shasum": "2c5759f7570906cfb9be95ac51b7e9e561487bc0" }, "require": { - "drupal/core": "~8.0", - "league/commonmark": "^0.18.3", - "michelf/php-markdown": "^1.6" + "composer/semver": "^1.0 || ^2.0", + "drupal/core": "^8", + "php": ">=5.5.9" + }, + "suggest": { + "league/commonmark": "The PHP CommonMark parser is a robust, highly-extensible Markdown parser for PHP based on the CommonMark and Github-Flavored Markdown specifications (version 1.3.0 and higher is supported).", + "webuni/commonmark-attributes-extension": "The Attributes extension adds a syntax to define attributes on the various HTML elements in markdown's output." }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1568908385", + "version": "8.x-2.0-rc1", + "datestamp": "1589205629", "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": { + "[markdown] Drupal 9 Support": "https://www.drupal.org/files/issues/2020-05-14/3103679-18.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "frjo", - "homepage": "https://www.drupal.org/user/5546" + "name": "Mark Carver (markcarver)", + "homepage": "https://www.drupal.org/u/markcarver", + "role": "Maintainer" }, { - "name": "gisle", - "homepage": "https://www.drupal.org/user/409554" + "name": "Gisle Hannemyr (gisle)", + "homepage": "https://www.drupal.org/u/gisle", + "role": "Co-Maintainer" }, { "name": "markcarver", @@ -7724,7 +7686,7 @@ "description": "Allows content to be submitted using Markdown, a simple plain-text syntax that is transformed into valid HTML.", "homepage": "https://www.drupal.org/project/markdown", "support": { - "source": "https://cgit.drupalcode.org/markdown", + "source": "https://git.drupalcode.org/project/markdown", "issues": "https://www.drupal.org/project/markdown" } }, @@ -9510,17 +9472,11 @@ }, { "name": "drupal/stripe_webform", - "version": "1.1.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/stripe_webform.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stripe_webform-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "cccd9c854ea0e79a95b6dce0bb7c46bcd15182db" + "reference": "27195c21e1f545f0b2c0edac275deb06812b8d11" }, "require": { "drupal/core": "~8.0", @@ -9533,12 +9489,15 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1520532480", + "version": "8.x-1.1+1-dev", + "datestamp": "1557924186", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-09/stripe_webform.1.x-dev.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9555,7 +9514,8 @@ "homepage": "https://www.drupal.org/project/stripe_webform", "support": { "source": "https://git.drupalcode.org/project/stripe_webform" - } + }, + "time": "2019-05-15T12:41:19+00:00" }, { "name": "drupal/subprofiles", @@ -10674,12 +10634,12 @@ "source": { "type": "git", "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "a307cf1fc753ebbd552eddcffa2fee80050bc6b0" + "reference": "39d00fce28dd6d3bc7a5449ecff17aa1e71fa998" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=a307cf1fc753ebbd552eddcffa2fee80050bc6b0", - "reference": "a307cf1fc753ebbd552eddcffa2fee80050bc6b0", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=39d00fce28dd6d3bc7a5449ecff17aa1e71fa998", + "reference": "39d00fce28dd6d3bc7a5449ecff17aa1e71fa998", "shasum": "" }, "require": { @@ -10687,7 +10647,7 @@ "drupal/antibot": "^1.4", "drupal/better_normalizers": "^1.0-beta4", "drupal/block_visibility_groups": "1.x-dev", - "drupal/bulma": "^1.0-beta4", + "drupal/bulma": "dev-1.x", "drupal/components": "^2.0", "drupal/config_actions_provider": "1.x-dev", "drupal/config_sync": "^2.0-beta5", @@ -10695,25 +10655,25 @@ "drupal/core": "^8", "drupal/core-composer-scaffold": "^8.9", "drupal/default_content": "^1.0-alpha9", - "drupal/drutopia_action": "^1.0", - "drupal/drutopia_article": "^1.0", - "drupal/drutopia_blog": "^1.0", - "drupal/drutopia_campaign": "^1.0", - "drupal/drutopia_comment": "^1.0", + "drupal/drutopia_action": "dev-1.x", + "drupal/drutopia_article": "dev-1.x", + "drupal/drutopia_blog": "dev-1.x", + "drupal/drutopia_campaign": "dev-1.x", + "drupal/drutopia_comment": "dev-1.x", "drupal/drutopia_core": "^1.0", - "drupal/drutopia_event": "^1.0", - "drupal/drutopia_group": "^1.0", - "drupal/drutopia_landing_page": "^1.0", - "drupal/drutopia_page": "^1.0", - "drupal/drutopia_people": "^1.0", - "drupal/drutopia_related_content": "^1.0", - "drupal/drutopia_resource": "^1.0", - "drupal/drutopia_search": "^1.0", - "drupal/drutopia_seo": "^1.0", - "drupal/drutopia_site": "^1.0", - "drupal/drutopia_social": "^1.0", - "drupal/drutopia_storyline": "^1.0", - "drupal/drutopia_user": "^1.0", + "drupal/drutopia_event": "dev-1.x", + "drupal/drutopia_group": "dev-1.x", + "drupal/drutopia_landing_page": "dev-1.x", + "drupal/drutopia_page": "dev-1.x", + "drupal/drutopia_people": "dev-1.x", + "drupal/drutopia_related_content": "dev-1.x", + "drupal/drutopia_resource": "dev-1.x", + "drupal/drutopia_search": "dev-1.x", + "drupal/drutopia_seo": "dev-1.x", + "drupal/drutopia_site": "dev-1.x", + "drupal/drutopia_social": "dev-1.x", + "drupal/drutopia_storyline": "dev-1.x", + "drupal/drutopia_user": "dev-1.x", "drupal/eu_cookie_compliance": "^1.9", "drupal/features": "^3.11", "drupal/gdpr": "^2.0-alpha7", @@ -10756,7 +10716,7 @@ "GPL-2.0+" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "time": "2020-09-09T19:33:44+00:00" + "time": "2020-09-10T02:49:47+00:00" }, { "name": "easyrdf/easyrdf", @@ -12282,75 +12242,6 @@ ], "time": "2020-08-20T13:22:28+00:00" }, - { - "name": "league/commonmark", - "version": "0.18.5", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/commonmark.git", - "reference": "f94e18d68260f43a7d846279cad88405854b1306" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/f94e18d68260f43a7d846279cad88405854b1306", - "reference": "f94e18d68260f43a7d846279cad88405854b1306", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": ">=5.6.5" - }, - "replace": { - "colinodell/commonmark-php": "*" - }, - "require-dev": { - "cebe/markdown": "~1.0", - "commonmark/commonmark.js": "0.28", - "erusev/parsedown": "~1.0", - "michelf/php-markdown": "~1.4", - "mikehaertl/php-shellcommand": "^1.2", - "phpunit/phpunit": "^5.7.27|^6.5.14", - "scrutinizer/ocular": "^1.1", - "symfony/finder": "^3.0|^4.0" - }, - "suggest": { - "league/commonmark-extras": "Library of useful extensions including smart punctuation" - }, - "bin": [ - "bin/commonmark" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.19-dev" - } - }, - "autoload": { - "psr-4": { - "League\\CommonMark\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Colin O'Dell", - "role": "Lead Developer", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com" - } - ], - "description": "PHP Markdown parser based on the CommonMark spec", - "homepage": "https://github.com/thephpleague/commonmark", - "keywords": [ - "commonmark", - "markdown", - "parser" - ], - "time": "2019-03-28T13:52:31+00:00" - }, { "name": "league/container", "version": "2.4.1", @@ -12677,55 +12568,6 @@ ], "time": "2020-07-26T17:10:56+00:00" }, - { - "name": "michelf/php-markdown", - "version": "1.9.0", - "source": { - "type": "git", - "url": "https://github.com/michelf/php-markdown.git", - "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/michelf/php-markdown/zipball/c83178d49e372ca967d1a8c77ae4e051b3a3c75c", - "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4.3 <5.8" - }, - "type": "library", - "autoload": { - "psr-4": { - "Michelf\\": "Michelf/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Michel Fortin", - "email": "michel.fortin@michelf.ca", - "homepage": "https://michelf.ca/", - "role": "Developer" - }, - { - "name": "John Gruber", - "homepage": "https://daringfireball.net/" - } - ], - "description": "PHP Markdown", - "homepage": "https://michelf.ca/projects/php-markdown/", - "keywords": [ - "markdown" - ], - "time": "2019-12-02T02:32:27+00:00" - }, { "name": "mkalkbrenner/php-htmldiff-advanced", "version": "0.0.8", @@ -18424,6 +18266,7 @@ "drupal/minimalhtml": 20, "drupal/multiline_config": 20, "drupal/regionincontent": 20, + "drupal/stripe_webform": 20, "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, From 32f8e7373f6cf77936f5824c9414097918bedbfe Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 14 Sep 2020 14:43:32 -0500 Subject: [PATCH 022/236] Update markdown module to be usable at D9 --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 6aad70c..7529d99 100644 --- a/composer.json +++ b/composer.json @@ -27,8 +27,9 @@ "drupal/http_cache_control": "^1.0", "drupal/http_client_error_status": "^2.0", "drupal/indieweb": "1.x-dev", + "drupal/mailchimp": "1.x-dev", "drupal/mailsystem": "^4.3", - "drupal/markdown": "^2.0", + "drupal/markdown": "dev-2.x", "drupal/menu_trail_by_path": "^1.1", "drupal/migrate_plus": "^4.0", "drupal/migrate_tools": "^4.0", @@ -50,11 +51,11 @@ "drupal/upgrade_status": "^2.0", "drupal/viewsreference": "^2.0", "drupal/webform": "^6.0", - "drupal/mailchimp": "1.x-dev", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "1.x-dev", "drush/drush": "^10.0", "drutopia/drutopia": "dev-update-to-drupal9", + "league/commonmark": "^1.5", "wikimedia/composer-merge-plugin": "^1.4", "zaporylie/composer-drupal-optimizations": "^1.0" }, From 10ea0431f62c23384bdee5f7a24b118209b79939 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 14 Sep 2020 14:43:55 -0500 Subject: [PATCH 023/236] Markdown module with D9 Upgrade --- composer.lock | 240 +++++++++++++++++++++++++++++++------------------- 1 file changed, 147 insertions(+), 93 deletions(-) diff --git a/composer.lock b/composer.lock index d8e6565..e4b6b36 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "aec79dad31e2acf7d6535e319ddeacd9", + "content-hash": "6393c30d3fdd53e8702dd269355c86fe", "packages": [ { "name": "algolia/places", @@ -341,16 +341,16 @@ }, { "name": "commerceguys/addressing", - "version": "v1.0.8", + "version": "v1.0.9", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce" + "reference": "7f6b8780ae20862529a0ceaaf102a3f7ff740b91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/cf202c913c10d85085ab5ed9ec88607e312839ce", - "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/7f6b8780ae20862529a0ceaaf102a3f7ff740b91", + "reference": "7f6b8780ae20862529a0ceaaf102a3f7ff740b91", "shasum": "" }, "require": { @@ -396,7 +396,7 @@ "localization", "postal" ], - "time": "2020-05-26T11:04:04+00:00" + "time": "2020-09-12T12:15:49+00:00" }, { "name": "composer/installers", @@ -7329,55 +7329,6 @@ "source": "https://git.drupalcode.org/project/jquery_ui_accordion" } }, - { - "name": "drupal/jquery_ui_datepicker", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "954f12f93e82b6c93e6797fe2e6e66604ad1d2b2" - }, - "require": { - "drupal/core": "^8 || ^9", - "drupal/jquery_ui": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0", - "datestamp": "1589684301", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "jrockowitz", - "homepage": "https://www.drupal.org/user/371407" - }, - { - "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_tabs", "version": "1.1.0", @@ -7628,17 +7579,11 @@ }, { "name": "drupal/markdown", - "version": "2.0.0-rc1", + "version": "dev-2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/markdown.git", - "reference": "8.x-2.0-rc1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/markdown-8.x-2.0-rc1.zip", - "reference": "8.x-2.0-rc1", - "shasum": "2c5759f7570906cfb9be95ac51b7e9e561487bc0" + "reference": "56083169130b9592f2b0950be707e7224602b4c0" }, "require": { "composer/semver": "^1.0 || ^2.0", @@ -7651,12 +7596,20 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "8.x-2.0-rc1", - "datestamp": "1589205629", + "version": "8.x-2.0-rc1+21-dev", + "datestamp": "1595475565", "security-coverage": { "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "message": "Dev releases are not covered by Drupal security advisories." + } + }, + "drush": { + "services": { + "drush.services.yml": "^8 || ^9 || ^10" } }, "patches_applied": { @@ -7688,7 +7641,8 @@ "support": { "source": "https://git.drupalcode.org/project/markdown", "issues": "https://www.drupal.org/project/markdown" - } + }, + "time": "2020-08-10T17:20:57+00:00" }, { "name": "drupal/menu_admin_per_menu", @@ -8191,10 +8145,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "e51a59b0481684c4b1c5a1aa5bcc4a0736346152" + "reference": "572b5f20d9906f3c0f4171fbf353228033dd6b34" }, "require": { - "drupal/core": "^8", + "drupal/core": "^8 || ^9", "drupal/wysiwyg_linebreaks": "^1.9" }, "require-dev": { @@ -8206,16 +8160,14 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1+2-dev", - "datestamp": "1541524980", + "version": "8.x-1.1+3-dev", + "datestamp": "1599750815", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." } }, - "patches_applied": { - "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-09-09/3141144-4.txt" - } + "patches_applied": [] }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -8238,8 +8190,7 @@ "support": { "source": "https://git.drupalcode.org/project/minimalhtml", "issues": "https://www.drupal.org/project/issues/minimalhtml" - }, - "time": "2018-11-06T17:19:13+00:00" + } }, { "name": "drupal/multiline_config", @@ -8448,27 +8399,30 @@ }, { "name": "drupal/paragraphs_features", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "8.x-1.9" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "7768608d792d7c89a3168df21d9b99f9ad826f8c" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "beb2824be45d79904b1710e440b5220ca4bd7090" }, "require": { "drupal/core": "^8.7.7 || ^9", "drupal/paragraphs": "^1.12" }, + "require-dev": { + "drupal/gin": "^3.0" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1591176630", + "version": "8.x-1.10", + "datestamp": "1599831679", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10173,22 +10127,21 @@ }, { "name": "drupal/webform", - "version": "6.0.0-alpha15", + "version": "6.0.0-alpha16", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.0.0-alpha15" + "reference": "6.0.0-alpha16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.0.0-alpha15.zip", - "reference": "6.0.0-alpha15", - "shasum": "44c594ee138f6c09b49b3326f02f18d7081970d5" + "url": "https://ftp.drupal.org/files/projects/webform-6.0.0-alpha16.zip", + "reference": "6.0.0-alpha16", + "shasum": "6652fb4f50dc7168b1ace5fe24fbad2945f22754" }, "require": { "drupal/core": "^8.8 || ^9", "drupal/jquery_ui": "~1.0", - "drupal/jquery_ui_datepicker": "~1.0", "drupal/jquery_ui_tabs": "~1.0", "drupal/jquery_ui_tooltip": "~1.0" }, @@ -10203,7 +10156,8 @@ "drupal/entity_print": "~2.0", "drupal/gnode": "*", "drupal/group": "1.0", - "drupal/jquery_ui_checkboxradio": "*", + "drupal/jquery_ui_checkboxradio": "~1.0", + "drupal/jquery_ui_datepicker": "~1.0", "drupal/lingotek": "~3.0", "drupal/mailsystem": "~4.0", "drupal/paragraphs": "~1.0", @@ -10225,11 +10179,15 @@ "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": { "drupal": { - "version": "6.0.0-alpha15", - "datestamp": "1599240333", + "version": "6.0.0-alpha16", + "datestamp": "1599851828", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -12242,6 +12200,101 @@ ], "time": "2020-08-20T13:22:28+00:00" }, + { + "name": "league/commonmark", + "version": "1.5.5", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "45832dfed6007b984c0d40addfac48d403dc6432" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/45832dfed6007b984c0d40addfac48d403dc6432", + "reference": "45832dfed6007b984c0d40addfac48d403dc6432", + "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", + "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" + ], + "funding": [ + { + "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark", + "type": "custom" + }, + { + "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://www.patreon.com/colinodell", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" + } + ], + "time": "2020-09-13T14:44:46+00:00" + }, { "name": "league/container", "version": "2.4.1", @@ -18262,6 +18315,8 @@ "drupal/drutopia_core": 20, "drupal/drutopia_site": 20, "drupal/indieweb": 20, + "drupal/mailchimp": 20, + "drupal/markdown": 20, "drupal/mimemail": 15, "drupal/minimalhtml": 20, "drupal/multiline_config": 20, @@ -18270,7 +18325,6 @@ "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, "drupal/ui_patterns": 5, - "drupal/mailchimp": 20, "drupal/wysiwyg_linebreaks": 20, "drutopia/drutopia": 20 }, From 8fd49b27f771dad4cb327ac93d0ec0f08b041fff Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 14 Sep 2020 16:34:27 -0500 Subject: [PATCH 024/236] Update the drutopia reference in the lock file --- composer.lock | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index e4b6b36..8532eb8 100644 --- a/composer.lock +++ b/composer.lock @@ -8190,7 +8190,8 @@ "support": { "source": "https://git.drupalcode.org/project/minimalhtml", "issues": "https://www.drupal.org/project/issues/minimalhtml" - } + }, + "time": "2020-09-10T15:13:16+00:00" }, { "name": "drupal/multiline_config", @@ -10592,12 +10593,12 @@ "source": { "type": "git", "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "39d00fce28dd6d3bc7a5449ecff17aa1e71fa998" + "reference": "5e62c445ec30acf290f24d552ef943e5aff37699" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=39d00fce28dd6d3bc7a5449ecff17aa1e71fa998", - "reference": "39d00fce28dd6d3bc7a5449ecff17aa1e71fa998", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=5e62c445ec30acf290f24d552ef943e5aff37699", + "reference": "5e62c445ec30acf290f24d552ef943e5aff37699", "shasum": "" }, "require": { @@ -10610,7 +10611,7 @@ "drupal/config_actions_provider": "1.x-dev", "drupal/config_sync": "^2.0-beta5", "drupal/config_update": "^1.7", - "drupal/core": "^8", + "drupal/core": "^8.0||^9.0", "drupal/core-composer-scaffold": "^8.9", "drupal/default_content": "^1.0-alpha9", "drupal/drutopia_action": "dev-1.x", @@ -10674,7 +10675,7 @@ "GPL-2.0+" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "time": "2020-09-10T02:49:47+00:00" + "time": "2020-09-14T19:48:30+00:00" }, { "name": "easyrdf/easyrdf", From 82509ba3238f69c4cd2b298bfeae302e59f86c1a Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 14 Sep 2020 18:04:14 -0500 Subject: [PATCH 025/236] Add D9 in the composer.json file --- composer.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 7529d99..a700cf7 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,9 @@ "drupal/ckeditor_markdown": "^1.1", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", - "drupal/core-recommended": "^8.8", + "drupal/core-composer-scaffold": "^9.0.0", + "drupal/core-project-message": "^9.0.0", + "drupal/core-recommended": "^9.0.0", "drupal/customerror": "1.x-dev", "drupal/diff": "^1.0@RC", "drupal/dropdown_language": "^2.2", @@ -44,10 +46,10 @@ "drupal/scn": "^1.1", "drupal/search404": "^1.0", "drupal/stripe_webform": "1.x-dev", - "drupal/swiftmailer": "^1.0@beta", - "drupal/textarea_widget_for_text": "^1.1", + "drupal/swiftmailer": "^2.0", + "drupal/textarea_widget_for_text": "1.x-dev", "drupal/twigsuggest": "1.x-dev", - "drupal/ui_patterns": "^1.0@RC", + "drupal/ui_patterns": "1.x-dev", "drupal/upgrade_status": "^2.0", "drupal/viewsreference": "^2.0", "drupal/webform": "^6.0", From c1590dde5c9db0686b012ed08ebf732bcdcac088 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 28 Sep 2020 15:45:49 -0500 Subject: [PATCH 026/236] Revert "Add the climate strike widget in the site" This reverts commit 75727c57284843440fd51b7106d4419b24de07d3. --- web/themes/custom/agarica/agarica.info.yml | 1 - web/themes/custom/agarica/agarica.libraries.yml | 5 ----- 2 files changed, 6 deletions(-) diff --git a/web/themes/custom/agarica/agarica.info.yml b/web/themes/custom/agarica/agarica.info.yml index 61abfd8..d1047de 100644 --- a/web/themes/custom/agarica/agarica.info.yml +++ b/web/themes/custom/agarica/agarica.info.yml @@ -28,7 +28,6 @@ regions: libraries: - agarica/global - agarica/prism - - agarica/climatestrike # This section is used by the contrib module, Component Libraries. It allows you # to reference .twig files in your sass/ directory by using the Twig namespace: diff --git a/web/themes/custom/agarica/agarica.libraries.yml b/web/themes/custom/agarica/agarica.libraries.yml index d0d47b6..8591296 100644 --- a/web/themes/custom/agarica/agarica.libraries.yml +++ b/web/themes/custom/agarica/agarica.libraries.yml @@ -25,8 +25,3 @@ prism: patternlibrary/agaric/css/prism.css: {} js: patternlibrary/agaric/js/prism.js: {} - -climatestrike: - version: 1.x - js: - https://assets.digitalclimatestrike.net/widget.js: { type: external, minified: false} From a993889823b47ba59faa33ef6cd892c1a4e95d02 Mon Sep 17 00:00:00 2001 From: David Valdez Date: Mon, 28 Sep 2020 22:35:13 -0500 Subject: [PATCH 027/236] Add the configuration from live into the repository --- config/sync/block.block.agarica_content.yml | 2 +- ...block.block.agarica_home_page_custom_1.yml | 6 +- ...block.block.agarica_home_page_custom_2.yml | 6 +- ...block.block.agarica_home_page_custom_3.yml | 4 +- .../block.block.agarica_local_actions.yml | 2 +- ..._related_content_block_related_content.yml | 2 +- config/sync/block.block.hireagaric.yml | 4 +- ...lock.block.upcomingtrainingsfromagaric.yml | 40 +++ config/sync/block.block.userlogin.yml | 8 +- .../block_content.type.content_reference.yml | 8 + ...lock_content.content_reference.default.yml | 38 +++ ...lay.paragraph.embedded_content.default.yml | 25 ++ ...lock_content.content_reference.default.yml | 28 ++ ..._display.node.landing_page.simple_card.yml | 25 +- ....entity_view_display.node.page.default.yml | 2 + ...entity_view_display.node.page.embedded.yml | 83 +++++ ...lay.paragraph.embedded_content.default.yml | 27 ++ .../core.entity_view_mode.node.embedded.yml | 10 + config/sync/exclude_node_title.settings.yml | 3 +- ...tent_reference.field_content_reference.yml | 36 +++ ...node.landing_page.field_body_paragraph.yml | 39 ++- ...d.field.node.page.field_body_paragraph.yml | 53 +-- ...bedded_content.field_content_reference.yml | 29 ++ .../field.field.paragraph.file.field_file.yml | 2 +- ....block_content.field_content_reference.yml | 20 ++ ...ttings.block_content.content_reference.yml | 11 + ...raphs.paragraphs_type.embedded_content.yml | 10 + config/sync/user.role.manager.yml | 4 + ....webform.drupal_8_9_content_migrations.yml | 8 +- ....webform.getting_started_with_drupal_9.yml | 8 +- ....webform.getting_started_with_react_js.yml | 293 +++++++++++++++++ .../webform.webform.june_2020_webinars.yml | 270 ++++++++++++++++ ....webform.purchase_training_migrate_api.yml | 8 +- .../webform.webform.training_discount.yml | 302 ++++++++++++++++++ 34 files changed, 1339 insertions(+), 77 deletions(-) create mode 100644 config/sync/block.block.upcomingtrainingsfromagaric.yml create mode 100644 config/sync/block_content.type.content_reference.yml create mode 100644 config/sync/core.entity_form_display.block_content.content_reference.default.yml create mode 100644 config/sync/core.entity_form_display.paragraph.embedded_content.default.yml create mode 100644 config/sync/core.entity_view_display.block_content.content_reference.default.yml create mode 100644 config/sync/core.entity_view_display.node.page.embedded.yml create mode 100644 config/sync/core.entity_view_display.paragraph.embedded_content.default.yml create mode 100644 config/sync/core.entity_view_mode.node.embedded.yml create mode 100644 config/sync/field.field.block_content.content_reference.field_content_reference.yml create mode 100644 config/sync/field.field.paragraph.embedded_content.field_content_reference.yml create mode 100644 config/sync/field.storage.block_content.field_content_reference.yml create mode 100644 config/sync/language.content_settings.block_content.content_reference.yml create mode 100644 config/sync/paragraphs.paragraphs_type.embedded_content.yml create mode 100644 config/sync/webform.webform.getting_started_with_react_js.yml create mode 100644 config/sync/webform.webform.june_2020_webinars.yml create mode 100644 config/sync/webform.webform.training_discount.yml diff --git a/config/sync/block.block.agarica_content.yml b/config/sync/block.block.agarica_content.yml index 2271b3d..176723b 100644 --- a/config/sync/block.block.agarica_content.yml +++ b/config/sync/block.block.agarica_content.yml @@ -11,7 +11,7 @@ _core: id: agarica_content theme: agarica region: content -weight: 0 +weight: -10 provider: null plugin: system_main_block settings: diff --git a/config/sync/block.block.agarica_home_page_custom_1.yml b/config/sync/block.block.agarica_home_page_custom_1.yml index 8615da9..093efe3 100644 --- a/config/sync/block.block.agarica_home_page_custom_1.yml +++ b/config/sync/block.block.agarica_home_page_custom_1.yml @@ -2,8 +2,6 @@ uuid: 7201dbba-0cc0-46c5-a175-3b1be47aa5e3 langcode: en status: true dependencies: - config: - - block_visibility_groups.block_visibility_group.home_page content: - 'block_content:slide:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' module: @@ -16,7 +14,7 @@ _core: id: agarica_home_page_custom_1 theme: agarica region: content_bottom -weight: 0 +weight: -11 provider: null plugin: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' settings: @@ -31,5 +29,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page + block_visibility_group: '' context_mapping: { } diff --git a/config/sync/block.block.agarica_home_page_custom_2.yml b/config/sync/block.block.agarica_home_page_custom_2.yml index 33244fc..5553c38 100644 --- a/config/sync/block.block.agarica_home_page_custom_2.yml +++ b/config/sync/block.block.agarica_home_page_custom_2.yml @@ -2,8 +2,6 @@ uuid: 9d41ad55-46a7-43b8-877b-5219eeb54bac langcode: en status: true dependencies: - config: - - block_visibility_groups.block_visibility_group.home_page content: - 'block_content:slide:8f30e41d-3693-43bc-a281-9b11e29df3b8' module: @@ -16,7 +14,7 @@ _core: id: agarica_home_page_custom_2 theme: agarica region: content_bottom -weight: 2 +weight: -10 provider: null plugin: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' settings: @@ -31,5 +29,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page + block_visibility_group: '' context_mapping: { } diff --git a/config/sync/block.block.agarica_home_page_custom_3.yml b/config/sync/block.block.agarica_home_page_custom_3.yml index 3785248..de8ec82 100644 --- a/config/sync/block.block.agarica_home_page_custom_3.yml +++ b/config/sync/block.block.agarica_home_page_custom_3.yml @@ -1,6 +1,6 @@ uuid: d8665d59-0f09-4004-b54b-91be96de670d langcode: en -status: true +status: false dependencies: config: - block_visibility_groups.block_visibility_group.home_page @@ -16,7 +16,7 @@ _core: id: agarica_home_page_custom_3 theme: agarica region: content_bottom -weight: 4 +weight: -8 provider: null plugin: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' settings: diff --git a/config/sync/block.block.agarica_local_actions.yml b/config/sync/block.block.agarica_local_actions.yml index fed311d..c7b5369 100644 --- a/config/sync/block.block.agarica_local_actions.yml +++ b/config/sync/block.block.agarica_local_actions.yml @@ -9,7 +9,7 @@ _core: id: agarica_local_actions theme: agarica region: content -weight: -20 +weight: -11 provider: null plugin: local_actions_block settings: diff --git a/config/sync/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 index 5c36191..44e9177 100644 --- a/config/sync/block.block.agarica_views_block__related_content_block_related_content.yml +++ b/config/sync/block.block.agarica_views_block__related_content_block_related_content.yml @@ -15,7 +15,7 @@ _core: id: agarica_views_block__related_content_block_related_content theme: agarica region: content -weight: 10 +weight: -9 provider: null plugin: 'views_block:related_content-block_related_content' settings: diff --git a/config/sync/block.block.hireagaric.yml b/config/sync/block.block.hireagaric.yml index 2922993..ec24f71 100644 --- a/config/sync/block.block.hireagaric.yml +++ b/config/sync/block.block.hireagaric.yml @@ -1,6 +1,6 @@ uuid: 111507ad-206f-4d2f-864e-24b12ebac1dd langcode: en -status: true +status: false dependencies: content: - 'block_content:basic:134165a3-b38a-41c1-92aa-984e3e6d3435' @@ -14,7 +14,7 @@ dependencies: id: hireagaric theme: agarica region: content_bottom -weight: 0 +weight: -9 provider: null plugin: 'block_content:134165a3-b38a-41c1-92aa-984e3e6d3435' settings: diff --git a/config/sync/block.block.upcomingtrainingsfromagaric.yml b/config/sync/block.block.upcomingtrainingsfromagaric.yml new file mode 100644 index 0000000..33dfe2c --- /dev/null +++ b/config/sync/block.block.upcomingtrainingsfromagaric.yml @@ -0,0 +1,40 @@ +uuid: 33e858a7-5fb0-4061-99d1-85cb9b4d7e8e +langcode: en +status: true +dependencies: + content: + - 'block_content:content_reference:779630ad-78a7-4a33-9f3b-2b73de77bfa4' + module: + - block_content + - block_visibility_groups + - system + 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' + provider: block_content + label_display: visible + status: true + info: '' + view_mode: full +visibility: + condition_group: + id: condition_group + negate: false + block_visibility_group: '' + context_mapping: { } + request_path: + id: request_path + pages: | + + /training + /migration-trainings + negate: true + context_mapping: { } diff --git a/config/sync/block.block.userlogin.yml b/config/sync/block.block.userlogin.yml index bea5073..080b615 100644 --- a/config/sync/block.block.userlogin.yml +++ b/config/sync/block.block.userlogin.yml @@ -11,7 +11,7 @@ dependencies: id: userlogin theme: agarica region: bottom -weight: 19 +weight: -11 provider: null plugin: user_login_block settings: @@ -27,8 +27,8 @@ visibility: context_mapping: { } http_client_error_status: id: http_client_error_status - request_401: 0 - request_403: 1 - request_404: 0 + request_401: false + request_403: true + request_404: false negate: false context_mapping: { } diff --git a/config/sync/block_content.type.content_reference.yml b/config/sync/block_content.type.content_reference.yml new file mode 100644 index 0000000..4b60e2b --- /dev/null +++ b/config/sync/block_content.type.content_reference.yml @@ -0,0 +1,8 @@ +uuid: 21ced413-ae8e-47ec-9e6d-d675e1c85d70 +langcode: en +status: true +dependencies: { } +id: content_reference +label: 'Content reference' +revision: 0 +description: '' diff --git a/config/sync/core.entity_form_display.block_content.content_reference.default.yml b/config/sync/core.entity_form_display.block_content.content_reference.default.yml new file mode 100644 index 0000000..db91e9f --- /dev/null +++ b/config/sync/core.entity_form_display.block_content.content_reference.default.yml @@ -0,0 +1,38 @@ +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: + weight: 26 + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete + 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: { } +hidden: { } diff --git a/config/sync/core.entity_form_display.paragraph.embedded_content.default.yml b/config/sync/core.entity_form_display.paragraph.embedded_content.default.yml new file mode 100644 index 0000000..321f984 --- /dev/null +++ b/config/sync/core.entity_form_display.paragraph.embedded_content.default.yml @@ -0,0 +1,25 @@ +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: + weight: 0 + settings: + match_operator: CONTAINS + match_limit: 10 + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete + region: content +hidden: + created: true + status: true diff --git a/config/sync/core.entity_view_display.block_content.content_reference.default.yml b/config/sync/core.entity_view_display.block_content.content_reference.default.yml new file mode 100644 index 0000000..7cb7849 --- /dev/null +++ b/config/sync/core.entity_view_display.block_content.content_reference.default.yml @@ -0,0 +1,28 @@ +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: + weight: 0 + label: hidden + settings: + view_mode: simple_card + link: false + third_party_settings: + ds: + ds_limit: '' + type: entity_reference_entity_view + region: content +hidden: + langcode: true + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.landing_page.simple_card.yml b/config/sync/core.entity_view_display.node.landing_page.simple_card.yml index 85c3ea0..f5d5b07 100644 --- a/config/sync/core.entity_view_display.node.landing_page.simple_card.yml +++ b/config/sync/core.entity_view_display.node.landing_page.simple_card.yml @@ -11,6 +11,7 @@ dependencies: - responsive_image.styles.narrow module: - ds + - field_group - responsive_image - user third_party_settings: @@ -34,13 +35,14 @@ third_party_settings: regions: left: - node_title + - group_date - node_post_date right: - field_image fields: node_post_date: plugin_id: node_post_date - weight: 1 + weight: 2 label: hidden formatter: ds_post_date_medium node_title: @@ -53,6 +55,25 @@ third_party_settings: 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 + parent_name: '' + weight: 1 + format_type: html_element + region: left + format_settings: + id: '' + classes: subtitle + element: p + show_label: false + label_element: h3 + label_element_classes: '' + attributes: '' + effect: none + speed: fast + label: Date _core: default_config_hash: v2M7V8tN6TiqnoWONGAwAfzJywu0vB04hvs-LQx-bIQ id: node.landing_page.simple_card @@ -62,7 +83,7 @@ mode: simple_card content: field_image: type: responsive_image - weight: 2 + weight: 3 region: right label: hidden settings: diff --git a/config/sync/core.entity_view_display.node.page.default.yml b/config/sync/core.entity_view_display.node.page.default.yml index 9664094..4aa9e6b 100644 --- a/config/sync/core.entity_view_display.node.page.default.yml +++ b/config/sync/core.entity_view_display.node.page.default.yml @@ -20,6 +20,7 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: + label: '' wrappers: ds_content: div outer_wrapper: div @@ -56,3 +57,4 @@ hidden: indieweb_bridgypublishtwitter: true indieweb_syndication: true links: true + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.page.embedded.yml b/config/sync/core.entity_view_display.node.page.embedded.yml new file mode 100644 index 0000000..f5435b1 --- /dev/null +++ b/config/sync/core.entity_view_display.node.page.embedded.yml @@ -0,0 +1,83 @@ +uuid: d2637080-7971-4471-abf0-bc6939e755d9 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.embedded + - field.field.node.page.body + - field.field.node.page.field_body_paragraph + - field.field.node.page.field_meta_tags + - field.field.node.page.field_storyline + - field.field.node.page.field_summary + - node.type.page + module: + - ds + - entity_reference_revisions + - user +third_party_settings: + ds: + layout: + id: ds_1col + library: null + disable_css: false + entity_classes: all_classes + settings: + label: '' + wrappers: + ds_content: div + outer_wrapper: div + attributes: '' + link_attribute: '' + link_custom: '' + classes: + layout_class: { } + regions: + ds_content: + - node_title + - field_body_paragraph + - field_storyline + fields: + node_title: + plugin_id: node_title + weight: 0 + label: hidden + formatter: default + settings: + wrapper: h3 + class: '' + exclude_node_title: '1' + link: false +_core: + default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg +id: node.page.embedded +targetEntityType: node +bundle: page +mode: embedded +content: + field_body_paragraph: + type: entity_reference_revisions_entity_view + weight: 1 + region: ds_content + label: hidden + settings: + view_mode: default + link: '' + third_party_settings: { } + field_storyline: + type: entity_reference_revisions_entity_view + weight: 2 + region: ds_content + label: hidden + settings: + view_mode: default + link: '' + third_party_settings: { } +hidden: + body: true + field_meta_tags: true + field_summary: true + indieweb_bridgypublishtwitter: true + indieweb_syndication: true + langcode: true + links: true + search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.paragraph.embedded_content.default.yml b/config/sync/core.entity_view_display.paragraph.embedded_content.default.yml new file mode 100644 index 0000000..bd23202 --- /dev/null +++ b/config/sync/core.entity_view_display.paragraph.embedded_content.default.yml @@ -0,0 +1,27 @@ +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: + weight: 0 + label: hidden + settings: + view_mode: embedded + link: false + third_party_settings: + ds: + ds_limit: '' + type: entity_reference_entity_view + region: content +hidden: + search_api_excerpt: true diff --git a/config/sync/core.entity_view_mode.node.embedded.yml b/config/sync/core.entity_view_mode.node.embedded.yml new file mode 100644 index 0000000..d691a29 --- /dev/null +++ b/config/sync/core.entity_view_mode.node.embedded.yml @@ -0,0 +1,10 @@ +uuid: 8aa5ebf2-a43b-4f6e-aeb7-81c37758c227 +langcode: en +status: true +dependencies: + module: + - node +id: node.embedded +label: Embedded +targetEntityType: node +cache: true diff --git a/config/sync/exclude_node_title.settings.yml b/config/sync/exclude_node_title.settings.yml index 3d60172..30a3e85 100644 --- a/config/sync/exclude_node_title.settings.yml +++ b/config/sync/exclude_node_title.settings.yml @@ -1,6 +1,5 @@ nid_list: - - 1 - - 280 + 1: 280 translation_sync: true search: false _core: diff --git a/config/sync/field.field.block_content.content_reference.field_content_reference.yml b/config/sync/field.field.block_content.content_reference.field_content_reference.yml new file mode 100644 index 0000000..c28c91f --- /dev/null +++ b/config/sync/field.field.block_content.content_reference.field_content_reference.yml @@ -0,0 +1,36 @@ +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/sync/field.field.node.landing_page.field_body_paragraph.yml b/config/sync/field.field.node.landing_page.field_body_paragraph.yml index bea2270..112b32e 100644 --- a/config/sync/field.field.node.landing_page.field_body_paragraph.yml +++ b/config/sync/field.field.node.landing_page.field_body_paragraph.yml @@ -6,6 +6,7 @@ dependencies: - 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 @@ -50,21 +51,28 @@ settings: title: title view: view content_reference: content_reference + embedded_content: embedded_content quotation_with_image: quotation_with_image webform: webform target_bundles_drag_drop: - text: + content_reference: enabled: true - weight: -21 - image: + weight: 15 + embedded_content: enabled: true - weight: -20 - video: + weight: 17 + faq: enabled: true - weight: -19 + weight: -14 file: enabled: true weight: -18 + image: + enabled: true + weight: -20 + quotation_with_image: + enabled: true + weight: 17 slide: enabled: true weight: -17 @@ -74,24 +82,21 @@ settings: storyline_item: enabled: true weight: -15 - faq: + text: enabled: true - weight: -14 - update: - enabled: true - weight: -13 + weight: -21 title: enabled: true weight: -12 + update: + enabled: true + weight: -13 + video: + enabled: true + weight: -19 view: enabled: true weight: 12 - content_reference: - enabled: true - weight: 15 - quotation_with_image: - enabled: true - weight: 17 webform: enabled: true weight: 26 diff --git a/config/sync/field.field.node.page.field_body_paragraph.yml b/config/sync/field.field.node.page.field_body_paragraph.yml index 7c8ff3c..0a743d8 100644 --- a/config/sync/field.field.node.page.field_body_paragraph.yml +++ b/config/sync/field.field.node.page.field_body_paragraph.yml @@ -6,6 +6,7 @@ dependencies: - 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 @@ -47,52 +48,56 @@ settings: 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 target_bundles_drag_drop: - text: - enabled: true - weight: -15 - image: - enabled: true - weight: -14 - file: - enabled: true - weight: -13 - video: - enabled: true - weight: -12 - slide: - enabled: true - weight: -11 - update: - enabled: true - weight: -10 - faq: - enabled: true - weight: -9 - webform: - enabled: true - weight: 14 content_reference: enabled: true weight: 15 + embedded_content: + enabled: true + weight: 17 + faq: + enabled: true + weight: -9 + file: + enabled: true + weight: -13 + image: + enabled: true + weight: -14 quotation_with_image: enabled: true weight: 18 + slide: + enabled: true + weight: -11 storyline_header: enabled: true weight: 20 storyline_item: enabled: true weight: 21 + text: + enabled: true + weight: -15 title: enabled: true weight: 23 + update: + enabled: true + weight: -10 + video: + enabled: true + weight: -12 view: enabled: true weight: 26 + webform: + enabled: true + weight: 14 field_type: entity_reference_revisions diff --git a/config/sync/field.field.paragraph.embedded_content.field_content_reference.yml b/config/sync/field.field.paragraph.embedded_content.field_content_reference.yml new file mode 100644 index 0000000..40f135b --- /dev/null +++ b/config/sync/field.field.paragraph.embedded_content.field_content_reference.yml @@ -0,0 +1,29 @@ +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/sync/field.field.paragraph.file.field_file.yml b/config/sync/field.field.paragraph.file.field_file.yml index edfd6bc..b60677f 100644 --- a/config/sync/field.field.paragraph.file.field_file.yml +++ b/config/sync/field.field.paragraph.file.field_file.yml @@ -21,7 +21,7 @@ default_value: { } default_value_callback: '' settings: file_directory: '[date:custom:Y]-[date:custom:m]' - file_extensions: 'txt pdf odt doc docx' + file_extensions: 'txt pdf odt doc docx json xml' max_filesize: '' description_field: true handler: 'default:file' diff --git a/config/sync/field.storage.block_content.field_content_reference.yml b/config/sync/field.storage.block_content.field_content_reference.yml new file mode 100644 index 0000000..1bbe06a --- /dev/null +++ b/config/sync/field.storage.block_content.field_content_reference.yml @@ -0,0 +1,20 @@ +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/sync/language.content_settings.block_content.content_reference.yml b/config/sync/language.content_settings.block_content.content_reference.yml new file mode 100644 index 0000000..85721fe --- /dev/null +++ b/config/sync/language.content_settings.block_content.content_reference.yml @@ -0,0 +1,11 @@ +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/sync/paragraphs.paragraphs_type.embedded_content.yml b/config/sync/paragraphs.paragraphs_type.embedded_content.yml new file mode 100644 index 0000000..6abdf8e --- /dev/null +++ b/config/sync/paragraphs.paragraphs_type.embedded_content.yml @@ -0,0 +1,10 @@ +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/sync/user.role.manager.yml b/config/sync/user.role.manager.yml index 43ec193..5e1d13c 100644 --- a/config/sync/user.role.manager.yml +++ b/config/sync/user.role.manager.yml @@ -30,6 +30,9 @@ permissions: - 'administer eu cookie compliance popup' - 'administer meta tags' - 'administer nodes' + - 'administer redirect settings' + - 'administer redirects' + - 'administer site configuration' - 'administer taxonomy' - 'administer url aliases' - 'administer users' @@ -64,6 +67,7 @@ permissions: - 'revert all revisions' - 'revert event revisions' - 'skip comment approval' + - 'use admin toolbar search' - 'use exclude node title' - 'use text format full_html' - 'use text format markdown' diff --git a/config/sync/webform.webform.drupal_8_9_content_migrations.yml b/config/sync/webform.webform.drupal_8_9_content_migrations.yml index 82b56b5..7a22cba 100644 --- a/config/sync/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/sync/webform.webform.drupal_8_9_content_migrations.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **2020 July 21, Tuesday** - * Time: **9am–5pm Eastern** + * Date: **Tuesday, October 13, 2020** + * Time: **9AM–5PM Eastern** * Cost: **$500** '#format': markdown @@ -61,7 +61,7 @@ settings: page_submit_path: '' page_confirm_path: '' page_admin_theme: false - form_title: both + form_title: source_entity_webform form_submit_once: false form_exception_message: '' form_open_message: '' @@ -271,7 +271,7 @@ handlers:
Best,

- Mauricio Dinarte and the team at Agaric + The team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/sync/webform.webform.getting_started_with_drupal_9.yml b/config/sync/webform.webform.getting_started_with_drupal_9.yml index 892394b..fe4e259 100644 --- a/config/sync/webform.webform.getting_started_with_drupal_9.yml +++ b/config/sync/webform.webform.getting_started_with_drupal_9.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **2020 July 13, Monday** - * Time: **9am–5pm Eastern** + * Date: **Tuesday, October 6, 2020** + * Time: **9AM–5PM Eastern** * Cost: **$250** '#format': markdown @@ -61,7 +61,7 @@ settings: page_submit_path: '' page_confirm_path: '' page_admin_theme: false - form_title: both + form_title: source_entity_webform form_submit_once: false form_exception_message: '' form_open_message: '' @@ -271,7 +271,7 @@ handlers:
Best,

- Mauricio Dinarte and the team at Agaric + The team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/sync/webform.webform.getting_started_with_react_js.yml b/config/sync/webform.webform.getting_started_with_react_js.yml new file mode 100644 index 0000000..9243ebe --- /dev/null +++ b/config/sync/webform.webform.getting_started_with_react_js.yml @@ -0,0 +1,293 @@ +uuid: ec9305be-b136-4986-9044-dd5c338bf853 +langcode: en +status: open +dependencies: + module: + - stripe_webform +open: null +close: null +weight: 0 +uid: 17 +template: false +archive: false +id: getting_started_with_react_js +title: 'Getting started with React.js' +description: '' +category: Purchase +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Date: **Tuesday, October 13, 2020** + * Time: **9AM–5PM Eastern** + * Cost: **$500** + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: source_entity_webform + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: inline + confirmation_title: '' + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: false + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: + stripe: + id: stripe + label: Stripe + handler_id: stripe + status: true + conditions: { } + weight: 0 + settings: + amount: '500' + stripe_element: payment + plan_id: '' + quantity: '' + currency: usd + description: '[webform:title]' + email: '[webform_submission:values:email]' + metadata: '' + stripe_customer_create: '' + stripe_charge_create: '' + stripe_subscription_create: '' + email: + id: email + label: Email + handler_id: email + status: true + conditions: { } + weight: 0 + settings: + states: + - completed + to_mail: '[webform_submission:values:email:raw]' + to_options: { } + cc_mail: '' + cc_options: { } + bcc_mail: _default + bcc_options: { } + from_mail: _default + from_options: { } + from_name: _default + subject: 'Training registration for [webform:title]' + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The team at Agaric + excluded_elements: + course_summary: course_summary + payment: payment + optional_info_for_your_receipt: optional_info_for_your_receipt + ignore_access: false + exclude_empty: true + exclude_empty_checkbox: false + exclude_attachments: false + html: true + attachments: false + twig: false + debug: false + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' + theme_name: '' + parameters: { } +variants: { } diff --git a/config/sync/webform.webform.june_2020_webinars.yml b/config/sync/webform.webform.june_2020_webinars.yml new file mode 100644 index 0000000..0b6d9d8 --- /dev/null +++ b/config/sync/webform.webform.june_2020_webinars.yml @@ -0,0 +1,270 @@ +uuid: 8d0930f6-991a-4bbf-8e12-02dd4ac1b470 +langcode: en +status: closed +dependencies: { } +open: null +close: null +weight: 0 +uid: 17 +template: false +archive: false +id: june_2020_webinars +title: 'July 2020 webinars' +description: '' +category: Education +elements: | + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': Email + '#required': true + interested_in: + '#type': checkboxes + '#title': 'Interested in' + '#options': + d9_site_building: 'Getting started Drupal 9' + d9_updates: 'Introduction to Drupal 9 migrations' + d9_upgrades: 'Drupal 9 upgrades: how and when to move your Drupal 7 sites?' + '#required': true +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: source_entity_webform + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: url_message + confirmation_title: '' + confirmation_message: 'Thanks for signing up. You will receive an email with details on how to join the webinar(s). You might as well be interested in these full-day training options.' + confirmation_url: 'https://agaric.coop/training' + confirmation_attributes: { } + confirmation_back: true + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: + email: + id: email + label: 'Webinar notification email' + handler_id: email + status: true + conditions: { } + weight: 0 + settings: + states: + - completed + to_mail: '[webform_submission:values:email:raw]' + to_options: { } + cc_mail: '' + cc_options: { } + bcc_mail: '' + bcc_options: { } + from_mail: _default + from_options: { } + from_name: _default + subject: 'Agaric webinars on July 7, 2020 - Connection details' + body: | + Thank you for registering!
+
+ All webinars on July 7 will take place in the same Zoom room. Below are the details on time and connection information. We look forward to seeing you there.
+
+ Getting started Drupal 9 @ 10:00 AM - 11:00 AM Eastern Time (EDT)
+
+ Introduction to Drupal 9 migrations @ 11:30 AM - 12:30 AM Eastern Time (EDT)
+
+ Drupal 9 upgrades: how and when to move your Drupal 7 sites? @ 1:00 PM - 2:00 PM Eastern Time (EDT)
+
+ You might as well be interested in these full-day training options: https://agaric.coop/training
+
+ Join Zoom Meeting
+ https://zoom.us/j/94411125686?pwd=VXp1bnZtV21OOGhNUDk0S253a211QT09
+
+ Meeting ID: 944 1112 5686
+ Password: AgaricWeb
+ One tap mobile
+ +13126266799,,94411125686#,,,,0#,,514824770# US (Chicago)
+ +16468769923,,94411125686#,,,,0#,,514824770# US (New York)
+
+ Dial by your location
+         +1 312 626 6799 US (Chicago)
+         +1 646 876 9923 US (New York)
+         +1 301 715 8592 US (Germantown)
+         +1 346 248 7799 US (Houston)
+         +1 669 900 6833 US (San Jose)
+         +1 253 215 8782 US (Tacoma)
+ Meeting ID: 944 1112 5686
+ Password: 514824770
+
+ In solidarity,
+ Agaric.coop + excluded_elements: { } + ignore_access: false + exclude_empty: true + exclude_empty_checkbox: false + exclude_attachments: false + html: true + attachments: false + twig: false + debug: false + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' + theme_name: '' + parameters: { } +variants: { } diff --git a/config/sync/webform.webform.purchase_training_migrate_api.yml b/config/sync/webform.webform.purchase_training_migrate_api.yml index 43945e8..7ab3a38 100644 --- a/config/sync/webform.webform.purchase_training_migrate_api.yml +++ b/config/sync/webform.webform.purchase_training_migrate_api.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **2020 July 23, Thursday** - * Time: **9am–5pm Eastern** + * Date: **Tuesday, October 20, 2020** + * Time: **9AM–5PM Eastern** * Cost: **$500** '#format': markdown @@ -61,7 +61,7 @@ settings: page_submit_path: '' page_confirm_path: '' page_admin_theme: false - form_title: both + form_title: source_entity_webform form_submit_once: false form_exception_message: '' form_open_message: '' @@ -271,7 +271,7 @@ handlers:
Best,

- Mauricio Dinarte and the team at Agaric + The the team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/sync/webform.webform.training_discount.yml b/config/sync/webform.webform.training_discount.yml new file mode 100644 index 0000000..1105f1a --- /dev/null +++ b/config/sync/webform.webform.training_discount.yml @@ -0,0 +1,302 @@ +uuid: 3b459d45-d1bb-45f0-abc3-552cde144e9a +langcode: en +status: open +dependencies: + module: + - stripe_webform +open: null +close: null +weight: 0 +uid: 8 +template: false +archive: false +id: training_discount +title: 'Training Discount' +description: '' +category: Purchase +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Time: **9AM–5PM Eastern** + * Cost: **$425** (15% discount off $500 usual price) + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + choose_training: + '#type': radios + '#title': 'Choose training:' + '#help_title': 'How about both?' + '#help': 'To register for multiple trainings, simply come back to this form after paying for the first one and do it again.  Or contact Agaric for an invoice.' + '#options': + reactjs_intro: 'Getting started with React JS -- Tuesday, October 13, 2020' + content_migrations: 'Drupal 8/9 content migrations -- Tuesday, October 20, 2020' + migrate_api: 'Upgrading to Drupal 8/9 using the Migrate API -- Tuesday, October 27, 2020' + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: source_entity_webform + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: inline + confirmation_title: '' + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: false + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: + stripe: + id: stripe + label: Stripe + handler_id: stripe + status: true + conditions: { } + weight: 0 + settings: + amount: '425' + stripe_element: payment + plan_id: '' + quantity: '' + currency: usd + description: '[webform:title]' + email: '[webform_submission:values:email]' + metadata: '' + stripe_customer_create: '' + stripe_charge_create: '' + stripe_subscription_create: '' + email: + id: email + label: Email + handler_id: email + status: true + conditions: { } + weight: 0 + settings: + states: + - completed + to_mail: '[webform_submission:values:email:raw]' + to_options: { } + cc_mail: '' + cc_options: { } + bcc_mail: _default + bcc_options: { } + from_mail: _default + from_options: { } + from_name: _default + subject: 'Training registration for [webform:title]' + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The team at Agaric + excluded_elements: + course_summary: course_summary + payment: payment + optional_info_for_your_receipt: optional_info_for_your_receipt + ignore_access: false + exclude_empty: true + exclude_empty_checkbox: false + exclude_attachments: false + html: true + attachments: false + twig: false + debug: false + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' + theme_name: '' + parameters: { } +variants: { } From 3d508491010560ff93cc0b7585e80e0582be4f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 5 Aug 2020 14:36:09 -0400 Subject: [PATCH 028/236] Stick to 7.3 for now, says wolcen --- .ddev/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 27a6dbd..d6b9759 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -2,7 +2,7 @@ APIVersion: v1.13.1 name: agaric-coop type: drupal8 docroot: web -php_version: "7.4" +php_version: "7.3" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" From d4c9c7926bc1f05c45aadd57ad722410faabbaa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Fri, 13 Nov 2020 18:11:17 -0500 Subject: [PATCH 029/236] Update instructions to use DDEV --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3ed7d25..d5860ce 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,10 @@ git submodule update To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216). ``` -vagrant ssh -composer install -drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb -drush -y rsync @live:%files @self:%files +ddev start +ddev composer install +ddev . drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb +ddev . drush -y rsync @live:%files @self:%files ``` ### Get updates @@ -37,11 +37,11 @@ drush -y rsync @live:%files @self:%files ``` git pull git submodule update --recursive --remote -vagrant ssh -composer install -drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb -drush -y rsync @live:%files @self:%files -drush cim -y +ddev start +ddev composer install +ddev . drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb +ddev . drush -y rsync @live:%files @self:%files +ddev . drush cim -y ``` ## Theming From f1292c8d787b94296ab21db4db632a7843e1293f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 20:49:35 -0400 Subject: [PATCH 030/236] Apply DDEV self-updates --- .ddev/.gitignore | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 9e2104b..28eb786 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -5,9 +5,8 @@ /**/*.example /.dbimageBuild /.dbimageExtra -/.ddev-docker-compose-base.yaml -/.ddev-docker-compose-full.yaml -/.ddevlive-downloads +/.ddev-docker-*.yaml +/.*downloads /.global_commands /.homeadditions /.sshimageBuild From 4e25f0a531b7df1bf87f3931855ce19cc6356265 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 21:02:26 -0400 Subject: [PATCH 031/236] Update WYSIWYG Linebreaks patch to later one that improves over mine --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index dc70ea0..a48c88a 100644 --- a/composer.json +++ b/composer.json @@ -108,7 +108,7 @@ "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, "drupal/wysiwyg_linebreaks": { - "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2020-03-11/wysiwyg-linebreaks-excess-line-breaks-added-3013853-8.patch" } } }, From 1ad69bb2ccf04c62374399b33bbaa5fc208eefea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 21:51:46 -0400 Subject: [PATCH 032/236] Commit updated DDEV configuration file (for 17.1) --- .ddev/config.yaml | 70 +++++++++++++++++++++++++++++++---------------- 1 file changed, 46 insertions(+), 24 deletions(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index d6b9759..cab3d4c 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,4 +1,3 @@ -APIVersion: v1.13.1 name: agaric-coop type: drupal8 docroot: web @@ -10,17 +9,17 @@ xdebug_enabled: true additional_hostnames: [] additional_fqdns: [] mariadb_version: "10.2" -nfs_mount_enabled: false -provider: default +mysql_version: "" webimage_extra_packages: [rake, sassc] use_dns_when_possible: false -timezone: "" +composer_version: "" +web_environment: [] -# This config.yaml was created with ddev version v1.13.1 -# webimage: drud/ddev-webserver:v1.13.1 -# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.13.0 -# dbaimage: phpmyadmin/phpmyadmin:5 +# This config.yaml was created with ddev version v1.17.1 +# webimage: drud/ddev-webserver:v1.17.1 +# dbimage: drud/ddev-dbserver-mariadb-10.3:v1.17.0 +# dbaimage: phpmyadmin:5 # However we do not recommend explicitly wiring these images into the # config.yaml as they may break future versions of ddev. # You can update this config.yaml using 'ddev config'. @@ -34,7 +33,7 @@ timezone: "" # docroot: # Relative path to the directory containing index.php. -# php_version: "7.3" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" +# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" "8.0" # You can explicitly specify the webimage, dbimage, dbaimage lines but this # is not recommended, as the images are often closely tied to ddev's' behavior, @@ -55,10 +54,10 @@ timezone: "" # xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" # Note that for most people the commands -# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" work better, +# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, # as leaving xdebug enabled all the time is a big performance hit. -# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well +# webserver_type: nginx-fpm # or apache-fpm # timezone: Europe/Berlin # This is the timezone used in the containers and by PHP; @@ -66,6 +65,13 @@ timezone: "" # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # For example Europe/Dublin or MST7MDT +# composer_version: "" +# if composer_version:"" it will use the current ddev default composer release. +# It can also be set to "1", to get most recent composer v1 +# or "2" for most recent composer v2. +# It can be set to any existing specific composer version. +# After first project 'ddev start' this will not be updated until it changes + # additional_hostnames: # - somename # - someothername @@ -88,16 +94,19 @@ timezone: "" # These values specify the destination directory for ddev ssh and the # directory in which commands passed into ddev exec are run. -# omit_containers: ["dba", "ddev-ssh-agent"] -# would omit the dba (phpMyAdmin) and ddev-ssh-agent containers. Currently -# only those two containers can be omitted here. -# Note that these containers can also be omitted globally in the -# ~/.ddev/global_config.yaml or with the "ddev config global" command. +# omit_containers: [db, dba, ddev-ssh-agent] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of ddev that access the +# database container will be unusable. # nfs_mount_enabled: false # Great performance improvement but requires host configuration first. # See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container +# fail_on_hook_fail: False +# Decide whether 'ddev start' should be interrupted by a failing hook + # host_https_port: "59002" # The host port binding for https can be explicitly specified. It is # dynamic unless otherwise specified. @@ -114,13 +123,15 @@ timezone: "" # The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic # unless explicitly specified. -# phpmyadmin_port: "1000" -# The PHPMyAdmin port can be changed from the default 8036 +# phpmyadmin_port: "8036" +# phpmyadmin_https_port: "8037" +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 -# mailhog_port: "1001" -# The MailHog port can be changed from the default 8025 +# mailhog_port: "8025" +# mailhog_https_port: "8026" +# The MailHog ports can be changed from the default 8025 and 8026 -# webimage_extra_packages: [php-yaml, php7.3-ldap] +# webimage_extra_packages: [php7.4-tidy, php-bcmath] # Extra Debian packages that are needed in the webimage can be added here # dbimage_extra_packages: [telnet,netcat] @@ -144,11 +155,22 @@ timezone: "" # disable_settings_management: false # If true, ddev will not create CMS-specific settings files like -# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalSettings.php +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php # In this case the user must provide all such settings. -# provider: default # Currently either "default" or "pantheon" -# +# You can inject environment variables into the web container with: +# web_environment: +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue + +# no_project_mount: false +# (Experimental) If true, ddev will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# provider: default # Currently "default", "pantheon", "ddev-live" +# # Many ddev commands can be extended to run tasks before or after the # ddev command is executed, for example "post-start", "post-import-db", # "pre-composer", "post-composer" From 6fcec6cabd6821102dc25d99bbd7161b9ea55356 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 21:52:12 -0400 Subject: [PATCH 033/236] Set composer version to 2 explicitly --- .ddev/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index cab3d4c..825a6f2 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -12,7 +12,7 @@ mariadb_version: "10.2" mysql_version: "" webimage_extra_packages: [rake, sassc] use_dns_when_possible: false -composer_version: "" +composer_version: "2" web_environment: [] From 72d3428ded3b0ca5976072f0cd4ad89c6292433b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 21:59:19 -0400 Subject: [PATCH 034/236] Update/reorg composer file to be a bit more like Drutopia --- composer.json | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/composer.json b/composer.json index a48c88a..bf6e830 100644 --- a/composer.json +++ b/composer.json @@ -1,13 +1,22 @@ { "name": "agaric-sites/agaric_coop", - "description": "Agaric site modified from template for composer-based Drutopia projects.", + "description": "Agaric site modified from template for composer-based Drupal 8 Drutopia projects.", "type": "project", "license": "GPL-2.0-or-later", - "minimum-stability": "dev", - "prefer-stable": true, + "homepage": "https://agaric.coop", + "repositories": { + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + }, + "drutopia": { + "type": "vcs", + "url": "https://github.com/drutopia/drutopia" + } + }, "require": { - "composer/installers": "^1.7", - "cweagans/composer-patches": "^1.0", + "composer/installers": "^1.9", + "cweagans/composer-patches": "^1.6", "drupal/admin_links_access_filter": "^1.0@alpha", "drupal/allowed_formats": "^1.1", "drupal/antibot": "^1.2", @@ -15,6 +24,7 @@ "drupal/ckeditor_markdown": "^1.1", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", + "drupal/core-composer-scaffold": "^8.9", "drupal/core-recommended": "^8.8", "drupal/customerror": "1.x-dev", "drupal/diff": "^1.0@RC", @@ -61,23 +71,15 @@ "behat/mink": "^1.7", "behat/mink-goutte-driver": "^1.2" }, - "repositories": { - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - }, - "drutopia": { - "type": "vcs", - "url": "https://github.com/drutopia/drutopia" - } + "conflict": { + "drupal/drupal": "*" }, + "minimum-stability": "dev", + "prefer-stable": true, "config": { "sort-packages": true, "process-timeout": 600 }, - "conflict": { - "drupal/drupal": "*" - }, "extra": { "drupal-scaffold": { "locations": { From 9b6e04483fb5a703507b080da8135febcdaeb70f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 22:00:45 -0400 Subject: [PATCH 035/236] Update wikimedia composer plugin to Composer 2 compatible --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bf6e830..90074ec 100644 --- a/composer.json +++ b/composer.json @@ -63,7 +63,7 @@ "drupal/wysiwyg_linebreaks": "^1.9", "drush/drush": "^9.0", "drutopia/drutopia": "^1.0-beta1", - "wikimedia/composer-merge-plugin": "^1.4", + "wikimedia/composer-merge-plugin": "^2.0", "zaporylie/composer-drupal-optimizations": "^1.0" }, "require-dev": { From 3e90d036b0b58201ab79e94cc789d8fa07d98c09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 22:10:30 -0400 Subject: [PATCH 036/236] Commit updated composer lock with core security release --- composer.lock | 3458 +++++++++++++++++++++++++++++++------------------ 1 file changed, 2200 insertions(+), 1258 deletions(-) diff --git a/composer.lock b/composer.lock index bb238a3..4f46840 100644 --- a/composer.lock +++ b/composer.lock @@ -4,14 +4,14 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2b7675423d2eeb8c3663084757b3a8e6", + "content-hash": "9ba00a0d873c07987df2cba36a28d448", "packages": [ { "name": "algolia/places", - "version": "1.18.2", + "version": "1.19.0", "dist": { "type": "tar", - "url": "https://registry.npmjs.org/places.js/-/places.js-1.18.2.tgz" + "url": "https://registry.npmjs.org/places.js/-/places.js-1.19.0.tgz" }, "require": { "composer/installers": "~1.0" @@ -71,30 +71,35 @@ "cors", "stack" ], + "support": { + "issues": "https://github.com/asm89/stack-cors/issues", + "source": "https://github.com/asm89/stack-cors/tree/1.3.0" + }, "time": "2019-12-24T22:41:47+00:00" }, { "name": "caxy/php-htmldiff", - "version": "v0.1.9", + "version": "v0.1.12", "source": { "type": "git", "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "4bad5c6a4ecc76954d37764e6a29273b6b7bf1f8" + "reference": "7fb8aa0ad77864f1d3604ae4a31af9cbabb91485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/4bad5c6a4ecc76954d37764e6a29273b6b7bf1f8", - "reference": "4bad5c6a4ecc76954d37764e6a29273b6b7bf1f8", + "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/7fb8aa0ad77864f1d3604ae4a31af9cbabb91485", + "reference": "7fb8aa0ad77864f1d3604ae4a31af9cbabb91485", "shasum": "" }, "require": { + "ext-dom": "*", + "ext-mbstring": "*", "ezyang/htmlpurifier": "^4.7", - "kub-at/php-simple-html-dom-parser": "^1.7", - "php": ">=5.3.3" + "php": ">=7.3" }, "require-dev": { "doctrine/cache": "~1.0", - "phpunit/phpunit": "~5.0" + "phpunit/phpunit": "~9.0" }, "suggest": { "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider" @@ -127,7 +132,11 @@ "diff", "html" ], - "time": "2019-02-20T18:52:14+00:00" + "support": { + "issues": "https://github.com/caxy/php-htmldiff/issues", + "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.12" + }, + "time": "2021-04-05T21:19:33+00:00" }, { "name": "cebe/markdown", @@ -187,20 +196,24 @@ "markdown", "markdown-extra" ], + "support": { + "issues": "https://github.com/cebe/markdown/issues", + "source": "https://github.com/cebe/markdown" + }, "time": "2017-07-16T21:13:23+00:00" }, { "name": "chi-teck/drupal-code-generator", - "version": "1.32.0", + "version": "1.32.1", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246" + "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246", - "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", + "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", "shasum": "" }, "require": { @@ -232,7 +245,11 @@ "GPL-2.0-or-later" ], "description": "Drupal code generator", - "time": "2020-04-16T06:45:06+00:00" + "support": { + "issues": "https://github.com/Chi-teck/drupal-code-generator/issues", + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.32.1" + }, + "time": "2020-07-15T06:08:04+00:00" }, { "name": "choices/choices", @@ -251,10 +268,10 @@ }, { "name": "ckeditor/autogrow", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.14.0.zip" + "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -281,10 +298,10 @@ }, { "name": "ckeditor/fakeobjects", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.0.zip" + "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -296,10 +313,10 @@ }, { "name": "ckeditor/image", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/image/releases/image_4.14.0.zip" + "url": "https://download.ckeditor.com/image/releases/image_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -311,10 +328,10 @@ }, { "name": "ckeditor/link", - "version": "4.14.0", + "version": "4.14.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/link/releases/link_4.14.0.zip" + "url": "https://download.ckeditor.com/link/releases/link_4.14.1.zip" }, "require": { "composer/installers": "~1.0" @@ -341,27 +358,27 @@ }, { "name": "commerceguys/addressing", - "version": "v1.0.8", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce" + "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/cf202c913c10d85085ab5ed9ec88607e312839ce", - "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/00c263fa945e7f78524bbb6b99d331f3b493be2a", + "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a", "shasum": "" }, "require": { "doctrine/collections": "~1.0", - "php": ">=7.0.8" + "php": ">=7.1.3" }, "require-dev": { "mikey179/vfsstream": "1.*", - "phpunit/phpunit": "^6.0", - "squizlabs/php_codesniffer": "2.*", - "symfony/validator": "^3.4" + "phpunit/phpunit": "^7.5", + "squizlabs/php_codesniffer": "3.*", + "symfony/validator": "^4.4" }, "suggest": { "symfony/validator": "to validate addresses" @@ -396,20 +413,24 @@ "localization", "postal" ], - "time": "2020-05-26T11:04:04+00:00" + "support": { + "issues": "https://github.com/commerceguys/addressing/issues", + "source": "https://github.com/commerceguys/addressing/tree/v1.2.0" + }, + "time": "2021-03-14T20:04:10+00:00" }, { "name": "composer/installers", - "version": "v1.9.0", + "version": "v1.10.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca" + "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca", - "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d", + "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d", "shasum": "" }, "require": { @@ -420,17 +441,18 @@ "shama/baton": "*" }, "require-dev": { - "composer/composer": "1.6.* || 2.0.*@dev", - "composer/semver": "1.0.* || 2.0.*@dev", - "phpunit/phpunit": "^4.8.36", - "sebastian/comparator": "^1.2.4", + "composer/composer": "1.6.* || ^2.0", + "composer/semver": "^1 || ^3", + "phpstan/phpstan": "^0.12.55", + "phpstan/phpstan-phpunit": "^0.12.16", + "symfony/phpunit-bridge": "^4.2 || ^5", "symfony/process": "^2.3" }, "type": "composer-plugin", "extra": { "class": "Composer\\Installers\\Plugin", "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "1.x-dev" } }, "autoload": { @@ -468,6 +490,7 @@ "Porto", "RadPHP", "SMF", + "Starbug", "Thelia", "Whmcs", "WolfCMS", @@ -508,6 +531,7 @@ "phpbb", "piwik", "ppi", + "processwire", "puppet", "pxcms", "reindex", @@ -523,7 +547,25 @@ "zend", "zikula" ], - "time": "2020-04-07T06:57:05+00:00" + "support": { + "issues": "https://github.com/composer/installers/issues", + "source": "https://github.com/composer/installers/tree/v1.10.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": "2021-01-14T11:07:16+00:00" }, { "name": "composer/semver", @@ -584,29 +626,34 @@ "validation", "versioning" ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/1.5.1" + }, "time": "2020-01-13T12:06:48+00:00" }, { "name": "consolidation/annotated-command", - "version": "2.12.0", + "version": "2.12.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "512a2e54c98f3af377589de76c43b24652bcb789" + "reference": "0ee361762df2274f360c085e3239784a53f850b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789", - "reference": "512a2e54c98f3af377589de76c43b24652bcb789", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/0ee361762df2274f360c085e3239784a53f850b5", + "reference": "0ee361762df2274f360c085e3239784a53f850b5", "shasum": "" }, "require": { - "consolidation/output-formatters": "^3.4", + "consolidation/output-formatters": "^3.5.1", "php": ">=5.4.5", "psr/log": "^1", "symfony/console": "^2.8|^3|^4", "symfony/event-dispatcher": "^2.5|^3|^4", - "symfony/finder": "^2.5|^3|^4" + "symfony/finder": "^2.5|^3|^4|^5" }, "require-dev": { "g1a/composer-test-scenarios": "^3", @@ -617,6 +664,16 @@ "type": "library", "extra": { "scenarios": { + "finder5": { + "require": { + "symfony/finder": "^5" + }, + "config": { + "platform": { + "php": "7.2.5" + } + } + }, "symfony4": { "require": { "symfony/console": "^4.0" @@ -680,7 +737,11 @@ } ], "description": "Initialize Symfony Console commands from annotated command class methods.", - "time": "2019-03-08T16:55:03+00:00" + "support": { + "issues": "https://github.com/consolidation/annotated-command/issues", + "source": "https://github.com/consolidation/annotated-command/tree/2.12.1" + }, + "time": "2020-10-11T04:30:03+00:00" }, { "name": "consolidation/config", @@ -761,6 +822,10 @@ } ], "description": "Provide configuration services for a commandline tool.", + "support": { + "issues": "https://github.com/consolidation/config/issues", + "source": "https://github.com/consolidation/config/tree/master" + }, "time": "2019-03-03T19:37:04+00:00" }, { @@ -828,6 +893,9 @@ } ], "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/1.0.0" + }, "time": "2019-01-18T06:05:07+00:00" }, { @@ -918,27 +986,31 @@ } ], "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/master" + }, "time": "2019-01-01T17:30:51+00:00" }, { "name": "consolidation/output-formatters", - "version": "3.5.0", + "version": "3.5.1", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "99ec998ffb697e0eada5aacf81feebfb13023605" + "reference": "0d38f13051ef05c223a2bb8e962d668e24785196" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605", - "reference": "99ec998ffb697e0eada5aacf81feebfb13023605", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196", + "reference": "0d38f13051ef05c223a2bb8e962d668e24785196", "shasum": "" }, "require": { "dflydev/dot-access-data": "^1.1.0", "php": ">=5.4.0", "symfony/console": "^2.8|^3|^4", - "symfony/finder": "^2.5|^3|^4" + "symfony/finder": "^2.5|^3|^4|^5" }, "require-dev": { "g1a/composer-test-scenarios": "^3", @@ -954,6 +1026,16 @@ "type": "library", "extra": { "scenarios": { + "finder5": { + "require": { + "symfony/finder": "^5" + }, + "config": { + "platform": { + "php": "7.2.5" + } + } + }, "symfony4": { "require": { "symfony/console": "^4.0" @@ -1019,27 +1101,31 @@ } ], "description": "Format text by applying transformations provided by plug-in formatters.", - "time": "2019-05-30T23:16:01+00:00" + "support": { + "issues": "https://github.com/consolidation/output-formatters/issues", + "source": "https://github.com/consolidation/output-formatters/tree/3.5.1" + }, + "time": "2020-10-11T04:15:32+00:00" }, { "name": "consolidation/robo", - "version": "1.4.12", + "version": "1.4.13", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "eb45606f498b3426b9a98b7c85e300666a968e51" + "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51", - "reference": "eb45606f498b3426b9a98b7c85e300666a968e51", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/fd28dcca1b935950ece26e63541fbdeeb09f7343", + "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343", "shasum": "" }, "require": { - "consolidation/annotated-command": "^2.11.0|^4.1", + "consolidation/annotated-command": "^2.12.1|^4.1", "consolidation/config": "^1.2.1", "consolidation/log": "^1.1.1|^2", - "consolidation/output-formatters": "^3.1.13|^4.1", + "consolidation/output-formatters": "^3.5.1|^4.1", "consolidation/self-update": "^1.1.5", "grasmash/yaml-expander": "^1.4", "league/container": "^2.4.1", @@ -1047,7 +1133,7 @@ "symfony/console": "^2.8|^3|^4", "symfony/event-dispatcher": "^2.5|^3|^4", "symfony/filesystem": "^2.5|^3|^4", - "symfony/finder": "^2.5|^3|^4", + "symfony/finder": "^2.5|^3|^4|^5", "symfony/process": "^2.5|^3|^4" }, "replace": { @@ -1074,6 +1160,16 @@ "type": "library", "extra": { "scenarios": { + "finder5": { + "require": { + "symfony/finder": "^5" + }, + "config": { + "platform": { + "php": "7.2.5" + } + } + }, "symfony4": { "require": { "symfony/console": "^4" @@ -1124,7 +1220,11 @@ } ], "description": "Modern task runner", - "time": "2020-02-18T17:31:26+00:00" + "support": { + "issues": "https://github.com/consolidation/Robo/issues", + "source": "https://github.com/consolidation/Robo/tree/1.4.13" + }, + "time": "2020-10-11T04:51:34+00:00" }, { "name": "consolidation/self-update", @@ -1174,55 +1274,42 @@ } ], "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/1.2.0" + }, "time": "2020-04-13T02:49:20+00:00" }, { "name": "consolidation/site-alias", - "version": "3.0.1", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26" + "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26", - "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", + "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", "shasum": "" }, "require": { "consolidation/config": "^1.2.1|^2", - "php": ">=5.5.0" + "php": ">=5.5.0", + "symfony/finder": "~2.3|^3|^4.4|^5" }, "require-dev": { - "consolidation/robo": "^1.2.3|^2", - "g1a/composer-test-scenarios": "^3", - "knplabs/github-api": "^2.7", - "php-coveralls/php-coveralls": "^2.2", - "php-http/guzzle6-adapter": "^1.1", - "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^2.8", - "symfony/yaml": "~2.3|^3|^4.4|^5" + "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": { - "scenarios": { - "phpunit5": { - "require-dev": { - "phpunit/phpunit": "^5.7.27" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.6.33" - } - } - } - }, "branch-alias": { - "dev-master": "3.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { @@ -1245,7 +1332,11 @@ } ], "description": "Manage alias records for local and remote sites.", - "time": "2020-05-28T00:33:41+00:00" + "support": { + "issues": "https://github.com/consolidation/site-alias/issues", + "source": "https://github.com/consolidation/site-alias/tree/3.1.0" + }, + "time": "2021-02-20T20:03:10+00:00" }, { "name": "consolidation/site-process", @@ -1317,6 +1408,10 @@ } ], "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/2.1.0" + }, "time": "2019-09-10T17:56:24+00:00" }, { @@ -1348,29 +1443,33 @@ ], "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", "homepage": "https://github.com/container-interop/container-interop", + "support": { + "issues": "https://github.com/container-interop/container-interop/issues", + "source": "https://github.com/container-interop/container-interop/tree/master" + }, "abandoned": "psr/container", "time": "2017-02-14T19:40:03+00:00" }, { "name": "cweagans/composer-patches", - "version": "1.6.7", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590" + "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590", - "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf", + "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0", + "composer-plugin-api": "^1.0 || ^2.0", "php": ">=5.3.0" }, "require-dev": { - "composer/composer": "~1.0", + "composer/composer": "~1.0 || ~2.0", "phpunit/phpunit": "~4.6" }, "type": "composer-plugin", @@ -1393,7 +1492,11 @@ } ], "description": "Provides a way to patch Composer packages.", - "time": "2019-08-29T20:11:49+00:00" + "support": { + "issues": "https://github.com/cweagans/composer-patches/issues", + "source": "https://github.com/cweagans/composer-patches/tree/1.7.0" + }, + "time": "2020-09-30T17:56:20+00:00" }, { "name": "dflydev/dot-access-data", @@ -1452,6 +1555,10 @@ "dot", "notation" ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master" + }, "time": "2017-01-20T21:14:22+00:00" }, { @@ -1494,41 +1601,12 @@ "oauth", "twitter" ], + "support": { + "issues": "https://github.com/dg/twitter-php/issues", + "source": "https://github.com/dg/twitter-php/tree/v3.6" + }, "time": "2016-08-15T16:46:22+00:00" }, - { - "name": "dnoegel/php-xdg-base-dir", - "version": "v0.1.1", - "source": { - "type": "git", - "url": "https://github.com/dnoegel/php-xdg-base-dir.git", - "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", - "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", - "shasum": "" - }, - "require": { - "php": ">=5.3.2" - }, - "require-dev": { - "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" - }, - "type": "library", - "autoload": { - "psr-4": { - "XdgBaseDir\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "implementation of xdg base directory specification for php", - "time": "2019-12-04T15:06:13+00:00" - }, { "name": "doctrine/annotations", "version": "v1.4.0", @@ -1595,6 +1673,10 @@ "docblock", "parser" ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/v1.4.0" + }, "time": "2017-02-24T16:22:25+00:00" }, { @@ -1665,6 +1747,10 @@ "cache", "caching" ], + "support": { + "issues": "https://github.com/doctrine/cache/issues", + "source": "https://github.com/doctrine/cache/tree/1.6.x" + }, "time": "2017-07-22T12:49:21+00:00" }, { @@ -1732,6 +1818,10 @@ "collections", "iterator" ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/master" + }, "time": "2017-01-03T10:49:41+00:00" }, { @@ -1805,6 +1895,10 @@ "persistence", "spl" ], + "support": { + "issues": "https://github.com/doctrine/common/issues", + "source": "https://github.com/doctrine/common/tree/v2.7.3" + }, "time": "2017-07-22T08:35:12+00:00" }, { @@ -1872,6 +1966,9 @@ "singularize", "string" ], + "support": { + "source": "https://github.com/doctrine/inflector/tree/master" + }, "time": "2017-07-22T12:18:28+00:00" }, { @@ -1932,37 +2029,38 @@ "parser", "php" ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.0.2" + }, "time": "2019-06-08T11:03:04+00:00" }, { "name": "drupal/address", - "version": "1.8.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.8" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "ded73be392ba9257fca9289719757928a8826275" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05" }, "require": { "commerceguys/addressing": "^1.0.7", - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.8 || ^9" }, "require-dev": { "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.8", - "datestamp": "1582913039", + "version": "8.x-1.9", + "datestamp": "1604422821", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1971,7 +2069,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -2024,9 +2122,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0-alpha3", "datestamp": "1481822103", @@ -2049,22 +2144,22 @@ "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" + "source": "https://git.drupalcode.org/project/admin_links_access_filter" } }, { "name": "drupal/admin_toolbar", - "version": "2.2.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "8.x-2.2" + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.2.zip", - "reference": "8.x-2.2", - "shasum": "41ea0e3321e6d1e190c486be49a99e60446d8dd7" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38" }, "require": { "drupal/core": "^8.8.0 || ^9.0" @@ -2072,8 +2167,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "8.x-2.4", + "datestamp": "1601999178", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2082,7 +2177,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -2126,22 +2221,22 @@ "Toolbar" ], "support": { - "source": "http://cgit.drupalcode.org/admin_toolbar", + "source": "https://git.drupalcode.org/project/admin_toolbar", "issues": "https://www.drupal.org/project/issues/admin_toolbar" } }, { "name": "drupal/admin_toolbar_links_access_filter", - "version": "2.2.0", + "version": "3.0.0", "require": { - "drupal/admin_toolbar": "self.version", + "drupal/admin_toolbar": "*", "drupal/core": "^8.8.0 || ^9.0" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "3.0.0", + "datestamp": "1611311186", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2150,29 +2245,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Wilfrid Roze (eme)", - "homepage": "https://www.drupal.org/u/eme", - "role": "Maintainer" + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" }, { - "name": "Romain Jarraud (romainj)", - "homepage": "https://www.drupal.org/u/romainj", - "role": "Maintainer" + "name": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" }, { - "name": "Adrian Cid Almaguer (adriancid)", - "homepage": "https://www.drupal.org/u/adriancid", - "email": "adriancid@gmail.com", - "role": "Maintainer" + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "Mohamed Anis Taktak (matio89)", - "homepage": "https://www.drupal.org/u/matio89", - "role": "Maintainer" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" }, { "name": "fethi.krout", @@ -2187,29 +2277,24 @@ "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": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "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": "http://cgit.drupalcode.org/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" + "source": "https://git.drupalcode.org/project/admin_toolbar" } }, { "name": "drupal/admin_toolbar_tools", - "version": "2.2.0", + "version": "3.0.0", "require": { - "drupal/admin_toolbar": "self.version", + "drupal/admin_toolbar": "*", "drupal/core": "^8.8.0 || ^9.0" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-2.2", - "datestamp": "1585017179", + "version": "3.0.0", + "datestamp": "1611311186", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2218,29 +2303,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Wilfrid Roze (eme)", - "homepage": "https://www.drupal.org/u/eme", - "role": "Maintainer" + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" }, { - "name": "Romain Jarraud (romainj)", - "homepage": "https://www.drupal.org/u/romainj", - "role": "Maintainer" + "name": "adriancid", + "homepage": "https://www.drupal.org/user/1962106" }, { - "name": "Adrian Cid Almaguer (adriancid)", - "homepage": "https://www.drupal.org/u/adriancid", - "email": "adriancid@gmail.com", - "role": "Maintainer" + "name": "bolbol", + "homepage": "https://www.drupal.org/user/3400070" }, { - "name": "Mohamed Anis Taktak (matio89)", - "homepage": "https://www.drupal.org/u/matio89", - "role": "Maintainer" + "name": "eme", + "homepage": "https://www.drupal.org/user/542492" }, { "name": "fethi.krout", @@ -2255,42 +2335,34 @@ "homepage": "https://www.drupal.org/user/370706" } ], - "description": "Adds menu links to the Admin Toolbar.", - "homepage": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "description": "Adds menu links like Flush cache, Run cron, Run updates, and Logout under Drupal icon.", + "homepage": "https://www.drupal.org/project/admin_toolbar", "support": { - "source": "http://cgit.drupalcode.org/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" + "source": "https://git.drupalcode.org/project/admin_toolbar" } }, { "name": "drupal/allowed_formats", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "50f8f80cf3326382c968521d34d3a113b37e32b3" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "4c3c036d7b41428d6e22b61f1219de0ab012feec" }, "require": { - "drupal/core": "*" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1573747386", + "version": "8.x-1.3", + "datestamp": "1592909219", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2420,9 +2492,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0-beta4", "datestamp": "1576069085", @@ -2480,13 +2549,10 @@ "shasum": "2cae7d62b1c3388dc3b4c43bd548bece52d74752" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0-alpha2", "datestamp": "1483387143", @@ -2501,6 +2567,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -2513,34 +2583,31 @@ "description": "Subscribe to block updates for source themes.", "homepage": "https://www.drupal.org/project/block_theme_sync", "support": { - "source": "http://cgit.drupalcode.org/block_theme_sync" + "source": "https://git.drupalcode.org/project/block_theme_sync" } }, { "name": "drupal/block_visibility_groups", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "3c42377fcf6b849e8509b4b993a750cbc1a90a9b" + "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "2572fd5bd7fb3a0c3dbcdf262fbbc9646a3d12ed" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1536509886", + "version": "8.x-1.4", + "datestamp": "1602107538", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2552,6 +2619,10 @@ "GPL-2.0+" ], "authors": [ + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -2561,44 +2632,41 @@ "homepage": "https://www.drupal.org/user/240860" } ], - "description": "My Awesome Module", - "homepage": "http://drupal.org/project/block_visibility_groups", + "description": "Block Visibility Groups", + "homepage": "https://www.drupal.org/project/block_visibility_groups", "keywords": [ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/block_visibility_groups", - "issues": "http://drupal.org/project/issues/block_visibility_groups" + "source": "https://git.drupalcode.org/project/block_visibility_groups", + "issues": "https://www.drupal.org/project/issues/block_visibility_groups" } }, { "name": "drupal/bulma", - "version": "1.0.0-beta4", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bulma.git", - "reference": "8.x-1.0-beta4" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bulma-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "54b98779781b15b8ab1e0c3b807fac65c6c21e89" + "url": "https://ftp.drupal.org/files/projects/bulma-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "5b7af647f4582801f11f24c066cb3238cf433daa" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-theme", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1580867352", + "version": "8.x-1.0-rc1", + "datestamp": "1603840306", "security-coverage": { "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -2776,9 +2844,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.2", "datestamp": "1580498736", @@ -2823,9 +2888,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.8", "datestamp": "1580163325", @@ -2847,6 +2909,10 @@ { "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.", @@ -2861,7 +2927,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/coffee.git", - "reference": "4104976e3b8a1d8c1b444a416bf969524f6d67ba" + "reference": "ea759886305191f705b5240c0b4578d5dad3bdcb" }, "require": { "drupal/core": "^8 || ^9" @@ -2873,15 +2939,12 @@ "dev-8.x-1.x": "8.1.x-dev" }, "drupal": { - "version": "8.x-1.0+1-dev", - "datestamp": "1587139096", + "version": "8.x-1.1+4-dev", + "datestamp": "1617349990", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." } - }, - "patches_applied": { - "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -2921,8 +2984,7 @@ "source": "https://git.drupalcode.org/project/coffee", "issues": "https://drupal.org/project/issues/coffee", "irc": "irc://irc.freenode.org/drupal-contribute" - }, - "time": "2020-04-17T16:06:19+00:00" + } }, { "name": "drupal/comment_notify", @@ -2930,7 +2992,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/comment_notify.git", - "reference": "217b2a224511539164d51ffc718dd275da557ffd" + "reference": "63346371fad80a77d2340dadd7a376773a67f870" }, "require": { "drupal/core": "^8 || ^9", @@ -2942,8 +3004,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0+2-dev", - "datestamp": "1582301897", + "version": "8.x-1.2+1-dev", + "datestamp": "1594403007", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -2972,8 +3034,7 @@ "source": "https://git.drupalcode.org/project/comment_notify", "issues": "https://drupal.org/project/issues/comment_notify", "irc": "irc://irc.freenode.org/drupal-contribute" - }, - "time": "2020-05-05T17:03:57+00:00" + } }, { "name": "drupal/components", @@ -2994,9 +3055,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.1", "datestamp": "1556870881", @@ -3028,17 +3086,17 @@ }, { "name": "drupal/config_actions", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "d1213ad13ed57a7cc1453df9cd09b1c23e8c105f" + "url": "https://ftp.drupal.org/files/projects/config_actions-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "e9d6f16bc9a504ccee9949585c652c83827c5e39" }, "require": { "drupal/core": "^8.8 || ^9" @@ -3046,8 +3104,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1592352730", + "version": "8.x-1.3", + "datestamp": "1618321746", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3089,35 +3147,32 @@ }, { "name": "drupal/config_actions_provider", - "version": "1.0.0-rc1", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions_provider.git", - "reference": "8.x-1.0-rc1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "58465e27987b9f826dd767884a8e69193abbd854" + "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "6e0a4b18b6f0e2ec2bef25581945dfbeb40a457f" }, "require": { "drupal/config_actions": "*", "drupal/config_provider": "^2", "drupal/config_sync": "*", - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1550207284", + "version": "8.x-1.0", + "datestamp": "1607455967", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -3138,35 +3193,36 @@ "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" + "source": "https://git.drupalcode.org/project/config_actions_provider" } }, { "name": "drupal/config_distro", - "version": "1.0.0-alpha3", + "version": "1.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "8.x-1.0-alpha3" + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha3.zip", - "reference": "8.x-1.0-alpha3", - "shasum": "c83fcd71c311102cb64f72b8f7ca727bddff2264" + "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "a866d160348d709e0029b176826097fb9b15c49c" }, "require": { "drupal/config_filter": "*", - "drupal/core": "*" + "drupal/core": "^8.8 || ^9" + }, + "require-dev": { + "drupal/config_distro_filter": "*", + "drupal/config_filter": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-alpha3", - "datestamp": "1539071280", + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -3216,34 +3272,82 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/config_distro_filter", + "version": "1.0.0-alpha4", + "require": { + "drupal/config_distro": "*", + "drupal/config_filter": "*", + "drupal/core": "^8.8 || ^9" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", + "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": "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": "1.5.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-1.5" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc" + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "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-1.5", - "datestamp": "1572542288", + "version": "8.x-1.8", + "datestamp": "1603870062", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3252,7 +3356,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -3280,9 +3384,9 @@ "configuration management" ], "support": { - "source": "http://cgit.drupalcode.org/config_filter", + "source": "https://git.drupalcode.org/project/config_filter", "issues": "https://www.drupal.org/project/issues/config_filter", - "irc": "irc://irc.freenode.org/drupal-contribute" + "slack": "https://drupal.slack.com/archives/C45342CDD" } }, { @@ -3312,7 +3416,7 @@ "datestamp": "1590770651", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -3333,6 +3437,10 @@ "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3373,7 +3481,7 @@ "datestamp": "1590768708", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -3390,6 +3498,10 @@ "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -3467,17 +3579,17 @@ }, { "name": "drupal/config_provider", - "version": "2.0.0-rc2", + "version": "2.0.0-rc4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "8.x-2.0-rc2" + "reference": "8.x-2.0-rc4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc2.zip", - "reference": "8.x-2.0-rc2", - "shasum": "621e2fe438a14c07fae5cfb0cc9a294fb6e5e6d7" + "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc4.zip", + "reference": "8.x-2.0-rc4", + "shasum": "64a1545e8cc48f9363e028d3360134f143baaf58" }, "require": { "drupal/core": "^8 || ^9" @@ -3485,11 +3597,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0-rc2", - "datestamp": "1591297649", + "version": "8.x-2.0-rc4", + "datestamp": "1592923705", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -3514,6 +3626,10 @@ "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3557,7 +3673,7 @@ "datestamp": "1590652016", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -3578,6 +3694,10 @@ "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3595,41 +3715,39 @@ }, { "name": "drupal/config_sync", - "version": "2.0.0-beta5", + "version": "2.0.0-beta7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "8.x-2.0-beta5" + "reference": "8.x-2.0-beta7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta5.zip", - "reference": "8.x-2.0-beta5", - "shasum": "76a922ca354cb18cdfd57d427bdd91721630e48b" + "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta7.zip", + "reference": "8.x-2.0-beta7", + "shasum": "39de6d167f1f99992feaf5e30b53ae097ebebeec" }, "require": { "drupal/config_distro": "^1.0-alpha3", - "drupal/config_filter": "^1.3", + "drupal/config_distro_filter": "^1.0.0-alpha4", + "drupal/config_filter": "~1.3||~2.0", "drupal/config_merge": "^1.0-alpha2", "drupal/config_normalizer": "^1.0-alpha3", "drupal/config_provider": "^2.0-alpha6", "drupal/config_snapshot": "^1.0-alpha6", "drupal/config_update": "^1.5", - "drupal/core": "^8.3", + "drupal/core": "^8.8 || ^9", "php": ">=5.6", - "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1" + "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1|^4.4.9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { - "version": "8.x-2.0-beta5", - "datestamp": "1550290984", + "version": "8.x-2.0-beta7", + "datestamp": "1594083315", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -3644,10 +3762,22 @@ "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": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3723,16 +3853,16 @@ }, { "name": "drupal/core", - "version": "8.9.1", + "version": "8.9.14", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "e8ee964c562870381876e85d3f5eaaf8c8ecc9ee" + "reference": "84796e158cd3bd50af08974dd62931d0cc78dc7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/e8ee964c562870381876e85d3f5eaaf8c8ecc9ee", - "reference": "e8ee964c562870381876e85d3f5eaaf8c8ecc9ee", + "url": "https://api.github.com/repos/drupal/core/zipball/84796e158cd3bd50af08974dd62931d0cc78dc7e", + "reference": "84796e158cd3bd50af08974dd62931d0cc78dc7e", "shasum": "" }, "require": { @@ -3759,8 +3889,8 @@ "laminas/laminas-diactoros": "^1.8", "laminas/laminas-feed": "^2.12", "masterminds/html5": "^2.1", - "pear/archive_tar": "^1.4.9", - "php": ">=7.0.8", + "pear/archive_tar": "^1.4.12", + "php": "^7.0.8", "psr/log": "^1.0", "stack/builder": "^1.0", "symfony-cmf/routing": "^1.4", @@ -3950,20 +4080,23 @@ "GPL-2.0-or-later" ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", - "time": "2020-06-17T17:57:48+00:00" + "support": { + "source": "https://github.com/drupal/core/tree/8.9.14" + }, + "time": "2021-04-20T23:05:40+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.1", + "version": "8.9.14", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece" + "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece", - "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d", + "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d", "shasum": "" }, "require": { @@ -3997,20 +4130,23 @@ "keywords": [ "drupal" ], - "time": "2020-05-29T11:36:27+00:00" + "support": { + "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.5" + }, + "time": "2020-08-07T22:30:30+00:00" }, { "name": "drupal/core-recommended", - "version": "8.9.1", + "version": "8.9.14", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "41042f9eaa35b027e6b2c42fa03edcb85da54a06" + "reference": "4e468b0df84cdcf6f30594feb4e080c5c6ea7ab3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/41042f9eaa35b027e6b2c42fa03edcb85da54a06", - "reference": "41042f9eaa35b027e6b2c42fa03edcb85da54a06", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/4e468b0df84cdcf6f30594feb4e080c5c6ea7ab3", + "reference": "4e468b0df84cdcf6f30594feb4e080c5c6ea7ab3", "shasum": "" }, "require": { @@ -4022,7 +4158,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.1", + "drupal/core": "8.9.14", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4035,7 +4171,7 @@ "laminas/laminas-zendframework-bridge": "1.0.4", "masterminds/html5": "2.3.0", "paragonie/random_compat": "v9.99.99", - "pear/archive_tar": "1.4.9", + "pear/archive_tar": "1.4.12", "pear/console_getopt": "v1.4.3", "pear/pear-core-minimal": "v1.10.10", "pear/pear_exception": "v1.0.1", @@ -4051,7 +4187,7 @@ "symfony/dependency-injection": "v3.4.41", "symfony/event-dispatcher": "v3.4.41", "symfony/http-foundation": "v3.4.41", - "symfony/http-kernel": "v3.4.41", + "symfony/http-kernel": "v3.4.44", "symfony/polyfill-ctype": "v1.17.0", "symfony/polyfill-iconv": "v1.17.0", "symfony/polyfill-intl-idn": "v1.17.0", @@ -4079,7 +4215,10 @@ "GPL-2.0-or-later" ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", - "time": "2020-06-17T17:57:48+00:00" + "support": { + "source": "https://github.com/drupal/core-recommended/tree/8.9.14" + }, + "time": "2021-04-20T23:05:40+00:00" }, { "name": "drupal/crop", @@ -4096,13 +4235,10 @@ "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.5", "datestamp": "1516357085", @@ -4121,6 +4257,10 @@ "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" @@ -4139,35 +4279,38 @@ }, { "name": "drupal/ctools", - "version": "3.4.0", + "version": "3.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "8.x-3.4" + "reference": "8.x-3.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.5.zip", + "reference": "8.x-3.5", + "shasum": "0113cd1e787ff3bde088c836c2d79d14136b0013" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1585763383", + "version": "8.x-3.5", + "datestamp": "1618592931", "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+" + "GPL-2.0-or-later" ], "authors": [ { @@ -4233,10 +4376,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/customerror.git", - "reference": "a85730815a94ab32777517c73e417847ac86c50f" + "reference": "e767b6408947b792548d63148a3666ef8ef2a3d0" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { @@ -4244,8 +4387,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha1+1-dev", - "datestamp": "1586952594", + "version": "8.x-1.0-alpha1+10-dev", + "datestamp": "1617297879", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -4257,10 +4400,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "anil614sagar", - "homepage": "https://www.drupal.org/user/402938" - }, { "name": "gisle", "homepage": "https://www.drupal.org/user/409554" @@ -4286,8 +4425,7 @@ "homepage": "https://www.drupal.org/project/customerror", "support": { "source": "https://git.drupalcode.org/project/customerror" - }, - "time": "2020-04-15T12:20:21+00:00" + } }, { "name": "drupal/default_content", @@ -4382,9 +4520,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0", "datestamp": "1578322688", @@ -4454,30 +4589,27 @@ }, { "name": "drupal/dropdown_language", - "version": "2.6.0", + "version": "2.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dropdown_language.git", - "reference": "8.x-2.6" + "reference": "8.x-2.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dropdown_language-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "11ee40951a536a6e7810fc8f1bed3d41b510402c" + "url": "https://ftp.drupal.org/files/projects/dropdown_language-8.x-2.7.zip", + "reference": "8.x-2.7", + "shasum": "a0d21dcaa629cfba3e5dae76e832e6b2942b836c" }, "require": { "drupal/core": "^8 || ^9", - "php": "^7.1" + "php": "^7.1 || ^8.0" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { - "version": "8.x-2.6", - "datestamp": "1584793087", + "version": "8.x-2.7", + "datestamp": "1612902506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4517,7 +4649,7 @@ }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", "drupal/drutopia_site": "*", @@ -4602,7 +4734,7 @@ "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", @@ -4684,7 +4816,7 @@ "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", @@ -4772,7 +4904,7 @@ }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "^1.0", "drupal/drutopia_seo": "^1.0", "drupal/ds": "^3.7", @@ -4854,7 +4986,7 @@ }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "*" }, "type": "drupal-module", @@ -4920,7 +5052,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_core.git", - "reference": "724947e3c829714703afc2a8923b451dccc14ae5" + "reference": "e0750f22b4325aec04a479dc428c8739fec48f39" }, "require": { "drupal/config_actions": "^1.1", @@ -4929,7 +5061,7 @@ "drupal/crop": "^1.5", "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^1.4", + "drupal/facets": "^1.5", "drupal/faqfield": "^1.1", "drupal/focal_point": "^1.4", "drupal/metatag": "^1.13", @@ -4944,8 +5076,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-rc3+1-dev", - "datestamp": "1591210912", + "version": "8.x-1.0+2-dev", + "datestamp": "1611594376", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -4954,9 +5086,6 @@ "patches": { "drupal/entity_reference_revisions": { "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch" - }, - "drupal/facets": { - "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch" } } }, @@ -5000,8 +5129,7 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_core/issues" - }, - "time": "2020-06-03T18:41:31+00:00" + } }, { "name": "drupal/drutopia_event", @@ -5020,7 +5148,7 @@ "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5107,7 +5235,7 @@ "drupal/address": "^1.8", "drupal/config_actions": "*", "drupal/config_perms": "*", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "*", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", @@ -5188,7 +5316,7 @@ "require": { "cweagans/composer-patches": "^1.5.0", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5270,7 +5398,7 @@ }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5350,7 +5478,7 @@ }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "*", "drupal/drutopia_core": "^1.0", "drupal/drutopia_seo": "^1.0", @@ -5436,7 +5564,7 @@ }, "require": { "drupal/block_visibility_groups": "^1.3", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "^1.0-beta3", "drupal/similarterms": "^1.3" }, @@ -5511,7 +5639,7 @@ "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5600,7 +5728,7 @@ }, "require": { "drupal/block_visibility_groups": "^1.3", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "^1.0", "drupal/facets": "*", "drupal/search_api": "*", @@ -5676,7 +5804,7 @@ }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "*", "drupal/metatag": "^1.13", "drupal/redirect": "^1.6", @@ -5745,7 +5873,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "d335dadb62670268c3c14483fb034c57c08136ed" + "reference": "32be42a3a1a8957189d27bbf973238399a1668ae" }, "require": { "drupal/admin_toolbar": "^2.2", @@ -5754,7 +5882,7 @@ "drupal/autosave_form": "^1.1", "drupal/ckeditorheight": "^1.8", "drupal/config_actions": "^1.1", - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", @@ -5769,8 +5897,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-rc1+3-dev", - "datestamp": "1591211052", + "version": "8.x-1.0+1-dev", + "datestamp": "1596662672", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -5817,8 +5945,7 @@ "support": { "source": "https://gitlab.com/drutopia/drutopia_site/tree/8.x-1.x", "issues": "https://gitlab.com/drutopia/drutopia_site/issues" - }, - "time": "2020-06-03T18:54:29+00:00" + } }, { "name": "drupal/drutopia_social", @@ -5835,7 +5962,7 @@ "shasum": "4b3e33fa332417b498dcb470c55d19df4973dd26" }, "require": { - "drupal/core": "*", + "drupal/core": "^8", "drupal/social_media_links": "^2.6" }, "type": "drupal-module", @@ -5901,7 +6028,7 @@ }, "require": { "drupal/config_actions": "*", - "drupal/core": "*", + "drupal/core": "^8", "drupal/drutopia_core": "^1.0", "drupal/drutopia_page": "^1.0", "drupal/entity_reference_revisions": "*", @@ -5982,7 +6109,7 @@ "shasum": "54394ff756a2ad08cddfb57cbdccbb0ccd5987b0" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { @@ -6043,17 +6170,17 @@ }, { "name": "drupal/ds", - "version": "3.7.0", + "version": "3.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.7" + "reference": "8.x-3.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "aee9ff9b5cb29b6b70c7528165963f673b7693e2" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.12.zip", + "reference": "8.x-3.12", + "shasum": "0df49ccc28af94186a6c08aa4233f435c539b273" }, "require": { "drupal/core": "^8.8 || ^9" @@ -6065,15 +6192,12 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1591087035", + "version": "8.x-3.12", + "datestamp": "1615995335", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "patches_applied": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2020-04-30/2895316-10.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -6116,29 +6240,26 @@ }, { "name": "drupal/entity", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.0" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "ac359ada43416ca3a8d0e44f2985b0a9fae07625" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1582735747", + "version": "8.x-1.2", + "datestamp": "1606399149", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6147,7 +6268,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -6169,6 +6290,10 @@ { "name": "fago", "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" } ], "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.", @@ -6179,17 +6304,17 @@ }, { "name": "drupal/entity_reference_revisions", - "version": "1.8.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.8" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6" + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -6199,24 +6324,18 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.8", - "datestamp": "1583961846", + "version": "8.x-1.9", + "datestamp": "1614805871", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "patches_applied": { - "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0" + "GPL-2.0-or-later" ], "authors": [ { @@ -6244,17 +6363,17 @@ }, { "name": "drupal/eu_cookie_compliance", - "version": "1.9.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git", - "reference": "8.x-1.9" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "1dd57c3fe517d907c0a44bee4ef73f30e98993d3" + "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "37b7d8e33d5bc466272a288dbbb386d8702ed3c1" }, "require": { "drupal/core": "^8.8 || ^9" @@ -6262,8 +6381,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1588751057", + "version": "8.x-1.14", + "datestamp": "1606569775", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6272,7 +6391,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -6285,49 +6404,14 @@ "homepage": "https://www.drupal.org/u/svenryen", "role": "Maintainer" }, + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/u/neslee-canil-pinto", + "role": "Maintainer" + }, { "name": "See other contributors", "homepage": "https://www.drupal.org/node/1538032/committers" - }, - { - "name": "achton", - "homepage": "https://www.drupal.org/user/712454" - }, - { - "name": "blairski", - "homepage": "https://www.drupal.org/user/120835" - }, - { - "name": "dakku", - "homepage": "https://www.drupal.org/user/97634" - }, - { - "name": "grzegorz.bartman", - "homepage": "https://www.drupal.org/user/363120" - }, - { - "name": "id.tornado", - "homepage": "https://www.drupal.org/user/2754049" - }, - { - "name": "killua99", - "homepage": "https://www.drupal.org/user/699418" - }, - { - "name": "mibfire", - "homepage": "https://www.drupal.org/user/155136" - }, - { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" - }, - { - "name": "nielsaers", - "homepage": "https://www.drupal.org/user/752444" - }, - { - "name": "svenryen", - "homepage": "https://www.drupal.org/user/667244" } ], "description": "This module aims at making the website compliant with the new EU cookie regulation.", @@ -6339,41 +6423,38 @@ "GDPR" ], "support": { - "source": "https://cgit.drupalcode.org/eu-cookie-compliance", - "docs": "https://www.drupal.org/project/eu_cookie_compliance", + "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", - "irc": "irc://irc.freenode.org/drupal-contribute" + "slack": "https://app.slack.com/client/T06GX3JTS/C012XBTH81E" } }, { "name": "drupal/exclude_node_title", - "version": "1.0.0-beta1", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/exclude_node_title.git", - "reference": "8.x-1.0-beta1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.0-beta1.zip", - "reference": "8.x-1.0-beta1", - "shasum": "04b307c90c71285f421f8727d5ba8fd84b3df066" + "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "c7bda0086adfe5b090fc1ee8bc166f9d456d62d6" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-beta1", - "datestamp": "1452548339", + "version": "8.x-1.2", + "datestamp": "1614965953", "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" } } }, @@ -6382,6 +6463,11 @@ "GPL-2.0-or-later" ], "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" @@ -6389,57 +6475,47 @@ { "name": "gabrielu", "homepage": "https://www.drupal.org/user/279352" - }, - { - "name": "id.tarzanych", - "homepage": "https://www.drupal.org/user/2776543" - }, - { - "name": "jordanpagewhite", - "homepage": "https://www.drupal.org/user/3162067" } ], - "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.", + "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.", "homepage": "https://www.drupal.org/project/exclude_node_title", "support": { - "source": "http://cgit.drupalcode.org/exclude_node_title" + "source": "https://git.drupalcode.org/project/exclude_node_title", + "issues": "https://www.drupal.org/project/issues/exclude_node_title" } }, { "name": "drupal/facets", - "version": "1.4.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "8.x-1.4" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "ee2d584b8a225ab981e313f6050e13bc9c98e40b" + "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "5a8a1092617c4dde96f691e23300d0d436c5fcb3" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "require-dev": { "drupal/search_api": "~1.5" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1556645881", + "version": "8.x-1.7", + "datestamp": "1613751460", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } }, - "patches_applied": { - "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch" + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -6458,6 +6534,14 @@ { "name": "borisson_", "homepage": "https://www.drupal.org/user/2393360" + }, + { + "name": "drunken monkey", + "homepage": "https://www.drupal.org/user/205582" + }, + { + "name": "mkalkbrenner", + "homepage": "https://www.drupal.org/user/124705" } ], "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.", @@ -6483,13 +6567,10 @@ "shasum": "61aeccae9ebf2347567df1a891772e88e9452aa6" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.1", "datestamp": "1519216085", @@ -6527,17 +6608,17 @@ }, { "name": "drupal/features", - "version": "3.11.0", + "version": "3.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/features.git", - "reference": "8.x-3.11" + "reference": "8.x-3.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip", - "reference": "8.x-3.11", - "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442" + "url": "https://ftp.drupal.org/files/projects/features-8.x-3.12.zip", + "reference": "8.x-3.12", + "shasum": "f28d6e7d3340e32666a3e8ae515ed746dbe86b98" }, "require": { "drupal/config_update": "^1.4", @@ -6546,8 +6627,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.11", - "datestamp": "1591023154", + "version": "8.x-3.12", + "datestamp": "1612830531", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6555,7 +6636,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10" } } }, @@ -6677,21 +6758,21 @@ }, { "name": "drupal/focal_point", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "8e377f61d0f590f7f89663ea3e841e56a3c14f5c" + "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "41198e9220788c3b7d3146b10e5dfd6c73cd4784" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/crop": "*" + "drupal/core": "^8.8 || ^9", + "drupal/crop": "^1.0 || ^2.0" }, "require-dev": { "drupal/crop": "*" @@ -6699,8 +6780,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1586396577", + "version": "8.x-1.5", + "datestamp": "1598663903", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6713,14 +6794,17 @@ ], "authors": [ { - "name": "bleen", - "homepage": "https://www.drupal.org/user/77375" + "name": "Alexander Ross (bleen)", + "homepage": "https://www.drupal.org/u/bleen", + "role": "Maintainer" } ], - "description": "Allows users to specify the focal point of an image for use during cropping.", - "homepage": "https://www.drupal.org/project/focal_point", + "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://git.drupalcode.org/project/focal_point" + "source": "https://cgit.drupalcode.org/focal_point", + "issues": "https://drupal.org/project/issues/focal_point", + "irc": "irc://irc.freenode.org/drupal-contribute" } }, { @@ -6760,9 +6844,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { "version": "8.x-2.0-alpha7", "datestamp": "1552919885", @@ -6794,6 +6875,10 @@ "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" @@ -6802,6 +6887,10 @@ "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" @@ -6822,27 +6911,24 @@ "description": "Helps with making a site GDPR-compliant.", "homepage": "https://www.drupal.org/project/gdpr", "support": { - "source": "http://cgit.drupalcode.org/gdpr" + "source": "https://git.drupalcode.org/project/gdpr" } }, { "name": "drupal/gnode", - "version": "1.0.0-rc5", + "version": "1.3.0", "require": { - "drupal/core": "*", - "drupal/group": "self.version" + "drupal/core": "^8.8 || ^9", + "drupal/group": "*" }, "type": "metapackage", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-rc5", - "datestamp": "1576854190", + "version": "8.x-1.3", + "datestamp": "1601990196", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -6854,10 +6940,6 @@ { "name": "kristiaanvandeneynde", "homepage": "https://www.drupal.org/user/1345130" - }, - { - "name": "ronaldtebrake", - "homepage": "https://www.drupal.org/user/2314038" } ], "description": "Enables Group functionality for the Node module", @@ -6939,50 +7021,43 @@ }, { "name": "drupal/group", - "version": "1.0.0-rc5", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/group.git", - "reference": "8.x-1.0-rc5" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-8.x-1.0-rc5.zip", - "reference": "8.x-1.0-rc5", - "shasum": "234831baa8816d98d1093a37e5c66bb993a271eb" + "url": "https://ftp.drupal.org/files/projects/group-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "167129a35353800e7ec1dc3302a4de7da1dae837" }, "require": { - "drupal/core": "^8.6", - "drupal/entity": "^1.0-rc1" + "drupal/core": "^8.9 || ^9", + "drupal/entity": "^1.0", + "drupal/variationcache": "^1.0" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-rc5", - "datestamp": "1576854190", + "version": "8.x-1.3", + "datestamp": "1601990196", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { "name": "Kristiaan Van den Eynde", "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", "role": "Maintainer" - }, - { - "name": "Ronald te Brake", - "homepage": "https://www.drupal.org/u/ronaldtebrake", - "role": "Co-maintainer" } ], "description": "This module allows you to group users, content and other entities", @@ -7011,9 +7086,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.30", "datestamp": "1576274288", @@ -7021,8 +7093,7 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "patches_applied": [] + } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -7076,9 +7147,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.5", "datestamp": "1551102784", @@ -7105,7 +7173,7 @@ "description": "Allows your site to be tracked by Hotjar by adding a Javascript tracking code to every page.", "homepage": "https://www.drupal.org/project/hotjar", "support": { - "source": "http://cgit.drupalcode.org/hotjar" + "source": "https://git.drupalcode.org/project/hotjar" } }, { @@ -7154,17 +7222,17 @@ }, { "name": "drupal/http_client_error_status", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_client_error_status.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "24d677c0fbfd34265d954607ec37dd80413f2f38" + "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "dd00ea86be7a5cc79841972b09838225c8cc4791" }, "require": { "drupal/core": "~8.0" @@ -7172,11 +7240,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1590401488", + "version": "8.x-1.4", + "datestamp": "1612527954", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -7205,13 +7273,13 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "a07a1d3396d8e6aebcbea9974f5fb4297a73b80d" + "reference": "0100473be426f415d286949f19a2af15ec06c6ba" }, "require": { "drupal/core": "^8.7|^9.0", "indieauth/client": "^0.4.1", "indieweb/mention-client": "^1.2", - "lcobucci/jwt": "^3.0", + "lcobucci/jwt": "^3.4", "p3k/micropub": "^0.0.2", "p3k/websub": "^0.0.1", "p3k/xray": "^1.7" @@ -7227,8 +7295,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.10+13-dev", - "datestamp": "1591896740", + "version": "8.x-1.15+2-dev", + "datestamp": "1609072936", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7256,97 +7324,100 @@ "homepage": "http://drupal.org/project/indieweb", "support": { "source": "https://git.drupalcode.org/project/indieweb" - }, - "time": "2020-06-13T11:55:06+00:00" + } }, { "name": "drupal/mailchimp", - "version": "1.11.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/mailchimp.git", - "reference": "8.x-1.11" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailchimp-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "e941ed42ac8db20e89cdaa47f81e6a904ece59a3" + "url": "https://ftp.drupal.org/files/projects/mailchimp-2.0.2.zip", + "reference": "2.0.2", + "shasum": "21117bb5181e0421ce7f40c98f3a39a886893cc4" }, "require": { - "drupal/core": "~8.0", - "thinkshout/mailchimp-api-php": "2.0.0" + "drupal/core": "^8.7.7 || ^9", + "thinkshout/mailchimp-api-php": "^2.0" }, "require-dev": { "drupal/mailchimp_lists": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.11", - "datestamp": "1569440287", + "version": "2.0.2", + "datestamp": "1615931525", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } } }, - "autoload": { - "psr-0": { - "Mailchimp": "src/" - } - }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "amyvs", - "homepage": "https://www.drupal.org/user/3181721" + "name": "5adiyah", + "homepage": "https://www.drupal.org/user/3622346" + }, + { + "name": "Pastenes", + "homepage": "https://www.drupal.org/user/3640659" }, { "name": "aprice42", "homepage": "https://www.drupal.org/user/369147" }, + { + "name": "bobpotter", + "homepage": "https://www.drupal.org/user/3653774" + }, + { + "name": "brendanthinkshout", + "homepage": "https://www.drupal.org/user/3578399" + }, { "name": "gcb", "homepage": "https://www.drupal.org/user/1682976" }, { - "name": "julia.leah.ford", - "homepage": "https://www.drupal.org/user/3590443" + "name": "itrebecca", + "homepage": "https://www.drupal.org/user/1604434" + }, + { + "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": "mshaver", "homepage": "https://www.drupal.org/user/39079" }, { - "name": "nrackleff", - "homepage": "https://www.drupal.org/user/463332" - }, - { - "name": "rjacobsen0", - "homepage": "https://www.drupal.org/user/3578420" - }, - { - "name": "ruscoe", - "homepage": "https://www.drupal.org/user/2722087" - }, - { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" + "name": "spncr", + "homepage": "https://www.drupal.org/user/3664814" }, { "name": "tauno", "homepage": "https://www.drupal.org/user/105595" + }, + { + "name": "wxactly", + "homepage": "https://www.drupal.org/user/3181097" } ], "description": "Mailchimp is an integration with the Mailchimp Mass email tool.", @@ -7440,9 +7511,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.3", "datestamp": "1568908385", @@ -7466,7 +7534,7 @@ "homepage": "https://www.drupal.org/user/409554" }, { - "name": "markcarver", + "name": "markhalliwell", "homepage": "https://www.drupal.org/user/501638" } ], @@ -7479,17 +7547,17 @@ }, { "name": "drupal/menu_admin_per_menu", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec" + "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c" }, "require": { "drupal/core": "^8 || ^9" @@ -7497,8 +7565,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591098397", + "version": "8.x-1.3", + "datestamp": "1593436060", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7574,6 +7642,10 @@ "name": "JohnAlbin", "homepage": "https://www.drupal.org/user/32095" }, + { + "name": "RenatoG", + "homepage": "https://www.drupal.org/user/3326031" + }, { "name": "joelpittet", "homepage": "https://www.drupal.org/user/160302" @@ -7655,32 +7727,29 @@ }, { "name": "drupal/message", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/message.git", - "reference": "8.x-1.0" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/message-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "873b3d8030d47bd472d75472f293b7631a59eeaf" + "url": "https://ftp.drupal.org/files/projects/message-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "f1494d8c482840b01f8d1dcc4ed572d5844a3873" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "require-dev": { "drupal/token": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1570139286", + "version": "8.x-1.2", + "datestamp": "1607017386", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7721,33 +7790,35 @@ }, { "name": "drupal/metatag", - "version": "1.13.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.13" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "c471d9982a6540fd7baccc94572947923634fb6b" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c" }, "require": { "drupal/core": "^8 || ^9", "drupal/token": "^1.0" }, "require-dev": { + "drupal/devel": "^4.0", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", "drupal/page_manager": "4.x-dev", + "drupal/panelizer": "4.x-dev", "drupal/redirect": "1.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1587478404", + "version": "8.x-1.16", + "datestamp": "1615820867", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7756,7 +7827,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -7811,9 +7882,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-4.x": "4.x-dev" - }, "drupal": { "version": "8.x-4.2", "datestamp": "1555683487", @@ -7871,9 +7939,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-4.x": "4.x-dev" - }, "drupal": { "version": "8.x-4.5", "datestamp": "1574693285", @@ -7894,16 +7959,12 @@ ], "authors": [ { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" + "name": "drupalspoons", + "homepage": "https://www.drupal.org/user/3647684" }, { "name": "mikeryan", "homepage": "https://www.drupal.org/user/4420" - }, - { - "name": "moshe weitzman", - "homepage": "https://www.drupal.org/user/23" } ], "description": "Tools to assist in developing and running migrations.", @@ -7973,20 +8034,20 @@ }, { "name": "drupal/minimalhtml", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/minimalhtml-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "2a41c2b9d052a65ce40cc1eaf78bff4e4cdb373e" + "url": "https://ftp.drupal.org/files/projects/minimalhtml-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "7c40d8d7da7882f3562fd371d0fff10419dae682" }, "require": { - "drupal/core": "*", + "drupal/core": "^8 || ^9", "drupal/wysiwyg_linebreaks": "^1.9" }, "require-dev": { @@ -7994,12 +8055,9 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1541458980", + "version": "8.x-1.2", + "datestamp": "1599750975", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8025,7 +8083,7 @@ "description": "Minimal HTML provides a WYSIWYG text format suitable for basic uses like short text fields or administrator-configured notices.", "homepage": "https://www.drupal.org/project/minimalhtml", "support": { - "source": "http://cgit.drupalcode.org/minimalhtml", + "source": "https://git.drupalcode.org/project/minimalhtml", "issues": "https://www.drupal.org/project/issues/minimalhtml" } }, @@ -8048,15 +8106,12 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0", "datestamp": "1553258884", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -8240,27 +8295,30 @@ }, { "name": "drupal/paragraphs_features", - "version": "1.9.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "8.x-1.9" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "7768608d792d7c89a3168df21d9b99f9ad826f8c" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "1fc02d1c72cfcce0dab40aa115f8da211712ab73" }, "require": { "drupal/core": "^8.7.7 || ^9", "drupal/paragraphs": "^1.12" }, + "require-dev": { + "drupal/gin": "^3.0" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1591176630", + "version": "8.x-1.11", + "datestamp": "1600331588", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8323,9 +8381,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0-alpha1", "datestamp": "1506626344", @@ -8340,6 +8395,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "banviktor", + "homepage": "https://www.drupal.org/user/3176333" + }, { "name": "greggles", "homepage": "https://www.drupal.org/user/36762" @@ -8356,7 +8415,7 @@ "description": "Protects a site from some insecure configurations.", "homepage": "https://www.drupal.org/project/paranoia", "support": { - "source": "http://cgit.drupalcode.org/paranoia" + "source": "https://git.drupalcode.org/project/paranoia" } }, { @@ -8429,17 +8488,17 @@ }, { "name": "drupal/preview_link", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "57243b134c550ee464c8c3de707681638b07d4d8" + "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "bfed04e554864f9c3fb5d7a758bc27f5041f1518" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -8451,8 +8510,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1591244932", + "version": "8.x-1.7", + "datestamp": "1593052165", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8544,7 +8603,7 @@ "version": "1.6.0", "require": { "drupal/core": "^8.8 || ^9", - "drupal/redirect": "self.version" + "drupal/redirect": "*" }, "type": "metapackage", "extra": { @@ -8619,36 +8678,32 @@ "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": "http://cgit.drupalcode.org/regionincontent" - }, - "time": "2018-12-17T22:12:17+00:00" + "source": "https://git.drupalcode.org/project/regionincontent" + } }, { "name": "drupal/riddler", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/riddler.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/riddler-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a52a0cb56bb927d17b103053570b7524c725e30b" + "url": "https://ftp.drupal.org/files/projects/riddler-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "74621359a85975f4483cc6ac271f99cc83c2612c" }, "require": { - "drupal/captcha": "*", - "drupal/core": "~8.0" + "drupal/captcha": "^1.1", + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1534623481", + "version": "8.x-1.2", + "datestamp": "1616602706", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8660,6 +8715,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Anybody", + "homepage": "https://www.drupal.org/user/291091" + }, { "name": "alex_optim", "homepage": "https://www.drupal.org/user/3317601" @@ -8675,8 +8734,12 @@ ], "description": "Provides a question and answer CAPTCHA.", "homepage": "https://www.drupal.org/project/riddler", + "keywords": [ + "Drupal" + ], "support": { - "source": "https://git.drupalcode.org/project/riddler" + "source": "http://cgit.drupalcode.org/riddler", + "issues": "https://www.drupal.org/project/issues/riddler" } }, { @@ -8698,9 +8761,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.1", "datestamp": "1580498751", @@ -8805,17 +8865,17 @@ }, { "name": "drupal/scn", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scn.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scn-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "993d414e277bb99dc44bbb580c4a68687e9a7534" + "url": "https://ftp.drupal.org/files/projects/scn-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "470a422c2e6b1796bb66c8d39b7d4ec085fa35bf" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -8823,8 +8883,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1589449016", + "version": "8.x-1.5", + "datestamp": "1606456007", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8862,13 +8922,10 @@ "shasum": "9265e2f5faee198c764fa281a3c9668de5ef76fe" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0", "datestamp": "1528785184", @@ -8876,9 +8933,6 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "patches_applied": { - "Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -8890,10 +8944,26 @@ "name": "anoopjohn", "homepage": "https://www.drupal.org/user/188049" }, + { + "name": "binnythomas", + "homepage": "https://www.drupal.org/user/3123091" + }, + { + "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" @@ -8902,22 +8972,22 @@ "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": "http://cgit.drupalcode.org/search404" + "source": "https://git.drupalcode.org/project/search404" } }, { "name": "drupal/search_api", - "version": "1.17.0", + "version": "1.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.17" + "reference": "8.x-1.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip", - "reference": "8.x-1.17", - "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip", + "reference": "8.x-1.19", + "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019" }, "require": { "drupal/core": "^8.8 || ^9" @@ -8938,8 +9008,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.17", - "datestamp": "1591128369", + "version": "8.x-1.19", + "datestamp": "1612192040", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8953,7 +9023,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -8979,16 +9049,16 @@ }, { "name": "drupal/search_api_db", - "version": "1.17.0", + "version": "1.19.0", "require": { "drupal/core": "^8.8 || ^9", - "drupal/search_api": "self.version" + "drupal/search_api": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.17", - "datestamp": "1591128369", + "version": "8.x-1.19", + "datestamp": "1612192040", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9021,29 +9091,26 @@ }, { "name": "drupal/similarterms", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/similarterms.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "d821f881203a634d44a174ff7a793e408ea7890f" + "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "78371fbdfbb610d6403457220f5b144558636474" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1568313784", + "version": "8.x-1.5", + "datestamp": "1595442658", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9076,32 +9143,29 @@ }, { "name": "drupal/skins", - "version": "1.0.0-alpha4", + "version": "1.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/skins.git", - "reference": "8.x-1.0-alpha4" + "reference": "8.x-1.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-alpha4.zip", - "reference": "8.x-1.0-alpha4", - "shasum": "877bb89f55f514b7c8d8dd535ce9576e5faa5eab" + "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "798404891a9f21538bf0bf513594197f4ae8e94c" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-alpha4", - "datestamp": "1565305981", + "version": "8.x-1.0-rc2", + "datestamp": "1604019090", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -9119,7 +9183,7 @@ "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Enable themes to provide a set of skins with distinct stylesheets and templates.", + "description": "Enable themes or modules to provide a set of skins with distinct stylesheets and templates.", "homepage": "https://www.drupal.org/project/skins", "support": { "source": "https://git.drupalcode.org/project/skins" @@ -9127,29 +9191,78 @@ }, { "name": "drupal/social_media_links", - "version": "2.6.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_media_links.git", - "reference": "8.x-2.6" + "reference": "8.x-2.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "53462cb307b104552ae5370b917e55ca50fba526" + "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.8.zip", + "reference": "8.x-2.8", + "shasum": "7702fd4465c47767f6be0444015fa9bcdbfb1aa6" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - }, "drupal": { - "version": "8.x-2.6", - "datestamp": "1510489384", + "version": "8.x-2.8", + "datestamp": "1615222638", + "security-coverage": { + "status": "covered", + "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" + } + ], + "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", + "issues": "https://www.drupal.org/project/issues/social_media_links" + } + }, + { + "name": "drupal/stripe", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/stripe.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/stripe-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "de84804416c278ea90d13ba7c824e23483349a1f" + }, + "require": { + "drupal/core": "^8 || ^9", + "stripe/stripe-php": "^7.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1598551147", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9162,56 +9275,7 @@ ], "authors": [ { - "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": "http://cgit.drupalcode.org/social_media_links", - "issues": "https://www.drupal.org/project/issues/social_media_links" - } - }, - { - "name": "drupal/stripe", - "version": "1.0.0-beta2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/stripe.git", - "reference": "8.x-1.0-beta2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stripe-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "5c2305c93e303ae794267907b30a498fffcff8f8" - }, - "require": { - "drupal/core": "^8.3", - "stripe/stripe-php": "^6.0" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1519736884", - "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": "Sebastien @Actualys", + "name": "Sebastien @Hubside", "homepage": "https://www.drupal.org/user/380104" }, { @@ -9267,31 +9331,28 @@ }, { "name": "drupal/stripe_webform", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/stripe_webform.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stripe_webform-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "cccd9c854ea0e79a95b6dce0bb7c46bcd15182db" + "url": "https://ftp.drupal.org/files/projects/stripe_webform-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "500c0b5a52f9904e36b6777584338d56b7827417" }, "require": { - "drupal/core": "~8.0", + "drupal/core": "^8 || ^9", "drupal/stripe": "*", "drupal/webform": "*" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1520532480", + "version": "8.x-1.2", + "datestamp": "1608159884", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9333,9 +9394,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.0-alpha2", "datestamp": "1507856720", @@ -9362,7 +9420,7 @@ "description": "Provide multiple variations of a single installation profile.", "homepage": "https://www.drupal.org/project/subprofiles", "support": { - "source": "http://cgit.drupalcode.org/subprofiles" + "source": "https://git.drupalcode.org/project/subprofiles" } }, { @@ -9434,29 +9492,26 @@ }, { "name": "drupal/textarea_widget_for_text", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "2b5dd3b90fb01695c8173aa37c5934f98527de7d" + "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "f39076bbf0315e505bd3893e2342a04cf2d07d75" }, "require": { - "drupal/core": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1513904284", + "version": "8.x-1.2", + "datestamp": "1600131297", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9468,6 +9523,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" + }, { "name": "junaidpv", "homepage": "https://www.drupal.org/user/255728" @@ -9480,31 +9539,31 @@ "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": "http://cgit.drupalcode.org/textarea_widget_for_text" + "source": "https://git.drupalcode.org/project/textarea_widget_for_text" } }, { "name": "drupal/token", - "version": "1.7.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.7" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1587893588", + "version": "8.x-1.9", + "datestamp": "1608284866", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9518,7 +9577,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -9558,7 +9617,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "c270120c8828953d0351d94b7370bf42d5e53c51" + "reference": "79bf1ed5513252b855b0f2fcd788e8b8be6090df" }, "require": { "drupal/core": "^8 || ^9" @@ -9569,8 +9628,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-beta1+3-dev", - "datestamp": "1590869117", + "version": "8.x-1.0-beta2+3-dev", + "datestamp": "1614593059", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -9607,8 +9666,7 @@ "support": { "source": "https://git.drupalcode.org/project/twigsuggest.git", "issues": "https://www.drupal.org/project/issues/twigsuggest" - }, - "time": "2020-06-15T00:27:53+00:00" + } }, { "name": "drupal/ui_patterns", @@ -9724,6 +9782,57 @@ "source": "https://git.drupalcode.org/project/ui_patterns" } }, + { + "name": "drupal/variationcache", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/variationcache.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/variationcache-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "302bcd0bc4d7c12a9d18ad4f531d1c65fdac65b1" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1588927568", + "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.4.0", @@ -9749,7 +9858,7 @@ "extra": { "drupal": { "version": "8.x-2.4", - "datestamp": "1587686284", + "datestamp": "1587686337", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9782,36 +9891,52 @@ }, { "name": "drupal/viewsreference", - "version": "1.4.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/viewsreference.git", - "reference": "8.x-1.4" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/viewsreference-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "973509be252d9a2f9a0a12bbfb83ec41311ef41c" + "url": "https://ftp.drupal.org/files/projects/viewsreference-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "6656c717cd78bee180fcc075d28db016fa7775d9" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.6|^9.0", + "php": "^5.5|^7.0", + "squizlabs/php_codesniffer": "*" }, "conflict": { "drupal/viewsreferennce": "*" }, + "require-dev": { + "composer/installers": "^1.2", + "drupal-composer/drupal-scaffold": "^2.5", + "drupal/coder": "^8.2", + "webflo/drupal-core-require-dev": "~8.5" + }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1544740080", + "version": "8.x-1.7", + "datestamp": "1610571201", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "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", @@ -9823,6 +9948,10 @@ "name": "New Zeal", "homepage": "https://www.drupal.org/user/93571" }, + { + "name": "jasonawant", + "homepage": "https://www.drupal.org/user/589890" + }, { "name": "joekers", "homepage": "https://www.drupal.org/user/2229066" @@ -9844,17 +9973,17 @@ }, { "name": "drupal/webform", - "version": "5.16.0", + "version": "5.25.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "8.x-5.16" + "reference": "8.x-5.25" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.16.zip", - "reference": "8.x-5.16", - "shasum": "a8bfe83d56ffd0fce16af9aa7eb4209247e5d420" + "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.25.zip", + "reference": "8.x-5.25", + "shasum": "115f8bc21549abc080543eb772166eb4fd2a162e" }, "require": { "drupal/core": "^8.8" @@ -9864,20 +9993,25 @@ "drupal/bootstrap": "~3.0", "drupal/captcha": "~1.0", "drupal/chosen": "~2.0", - "drupal/devel": "*", - "drupal/entity_print": "*", + "drupal/clientside_validation": "~3.0", + "drupal/clientside_validation_jquery": "*", + "drupal/devel": "~3.0", + "drupal/entity": "~1.0", + "drupal/entity_print": "~2.0", "drupal/gnode": "*", - "drupal/group": "*", - "drupal/lingotek": "~2.0", + "drupal/group": "1.0", + "drupal/lingotek": "~3.0", "drupal/mailsystem": "~4.0", "drupal/paragraphs": "~1.0", "drupal/select2": "~1.0", "drupal/smtp": "~1.0", "drupal/styleguide": "~1.0", "drupal/telephone_validation": "~2.0", - "drupal/token": "*", + "drupal/token": "~1.0", + "drupal/variationcache": "~1.0", "drupal/webform_access": "*", "drupal/webform_attachment": "*", + "drupal/webform_clientside_validation": "*", "drupal/webform_devel": "*", "drupal/webform_entity_print": "*", "drupal/webform_group": "*", @@ -9890,8 +10024,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.16", - "datestamp": "1591198998", + "version": "8.x-5.25", + "datestamp": "1614873338", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9923,30 +10057,10 @@ "homepage": "https://www.drupal.org/node/7404/committers", "role": "Contributor" }, - { - "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" @@ -9982,9 +10096,6 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-5.x": "5.x-dev" - }, "drupal": { "version": "8.x-5.9", "datestamp": "1579957681", @@ -10057,13 +10168,10 @@ "shasum": "64f529906354e9689f1a1926ef68959fc627a3ca" }, "require": { - "drupal/core": "*" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { "version": "8.x-1.10", "datestamp": "1542910380", @@ -10071,9 +10179,6 @@ "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "patches_applied": { - "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -10089,21 +10194,21 @@ "description": "Plugin to allow legacy content editing and more sane formatting in wysiwyg editors.", "homepage": "https://www.drupal.org/project/wysiwyg_linebreaks", "support": { - "source": "http://cgit.drupalcode.org/wysiwyg_linebreaks" + "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks" } }, { "name": "drush/drush", - "version": "9.7.2", + "version": "9.7.3", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "ab5e345a72c9187a7d770486a09691f6526826aa" + "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/ab5e345a72c9187a7d770486a09691f6526826aa", - "reference": "ab5e345a72c9187a7d770486a09691f6526826aa", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210", + "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210", "shasum": "" }, "require": { @@ -10135,15 +10240,14 @@ "composer/installers": "^1.2", "cweagans/composer-patches": "~1.0", "drupal/alinks": "1.0.0", + "drupal/core-recommended": "^8.9", "drupal/devel": "^2", "drupal/empty_theme": "1.0", "g1a/composer-test-scenarios": "^3", "lox/xhprof": "dev-master", "phpunit/phpunit": "^4.8.36 || ^6.1", "squizlabs/php_codesniffer": "^2.7 || ^3", - "vlucas/phpdotenv": "^2.4", - "webflo/drupal-core-require-dev": "8.7.x-dev", - "webflo/drupal-core-strict": "8.7.x-dev" + "vlucas/phpdotenv": "^2.4" }, "bin": [ "drush" @@ -10184,8 +10288,7 @@ } }, "require-dev": { - "webflo/drupal-core-strict": "8.6.x-dev", - "webflo/drupal-core-require-dev": "8.6.x-dev" + "drupal/core-recommended": "~8.6.0" } } }, @@ -10239,7 +10342,20 @@ ], "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", - "time": "2020-02-09T17:29:51+00:00" + "support": { + "forum": "http://drupal.stackexchange.com/questions/tagged/drush", + "irc": "irc://irc.freenode.org/drush", + "issues": "https://github.com/drush-ops/drush/issues", + "slack": "https://drupal.slack.com/messages/C62H9CWQM", + "source": "https://github.com/drush-ops/drush/tree/9.7.3" + }, + "funding": [ + { + "url": "https://github.com/weitzman", + "type": "github" + } + ], + "time": "2021-03-22T17:00:48+00:00" }, { "name": "drutopia/drutopia", @@ -10393,6 +10509,12 @@ "rdfa", "sparql" ], + "support": { + "forum": "http://groups.google.com/group/easyrdf/", + "irc": "irc://chat.freenode.net/easyrdf", + "issues": "http://github.com/njh/easyrdf/issues", + "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1" + }, "time": "2015-02-27T09:45:49+00:00" }, { @@ -10451,20 +10573,24 @@ "validation", "validator" ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/2.1.17" + }, "time": "2020-02-13T22:36:52+00:00" }, { "name": "ezyang/htmlpurifier", - "version": "v4.12.0", + "version": "v4.13.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03" + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a617e55bc62a87eec73bd456d146d134ad716f03", - "reference": "a617e55bc62a87eec73bd456d146d134ad716f03", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", "shasum": "" }, "require": { @@ -10480,6 +10606,9 @@ }, "files": [ "library/HTMLPurifier.composer.php" + ], + "exclude-from-classmap": [ + "/library/HTMLPurifier/Language/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -10498,7 +10627,11 @@ "keywords": [ "html" ], - "time": "2019-10-28T03:44:26+00:00" + "support": { + "issues": "https://github.com/ezyang/htmlpurifier/issues", + "source": "https://github.com/ezyang/htmlpurifier/tree/master" + }, + "time": "2020-06-29T00:56:53+00:00" }, { "name": "facebook/graph-sdk", @@ -10556,20 +10689,24 @@ "facebook", "sdk" ], + "support": { + "issues": "https://github.com/facebook/php-graph-sdk/issues", + "source": "https://github.com/facebook/php-graph-sdk/tree/5.7.0" + }, "time": "2018-12-11T22:56:31+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.9.1", + "version": "v1.9.2", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f" + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", "shasum": "" }, "require": { @@ -10606,7 +10743,12 @@ "faker", "fixtures" ], - "time": "2019-12-12T13:22:17+00:00" + "support": { + "issues": "https://github.com/fzaninotto/Faker/issues", + "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2" + }, + "abandoned": true, + "time": "2020-12-11T09:56:16+00:00" }, { "name": "grasmash/expander", @@ -10653,6 +10795,10 @@ } ], "description": "Expands internal property references in PHP arrays file.", + "support": { + "issues": "https://github.com/grasmash/expander/issues", + "source": "https://github.com/grasmash/expander/tree/master" + }, "time": "2017-12-21T22:14:55+00:00" }, { @@ -10701,6 +10847,10 @@ } ], "description": "Expands internal property references in a yaml file.", + "support": { + "issues": "https://github.com/grasmash/yaml-expander/issues", + "source": "https://github.com/grasmash/yaml-expander/tree/master" + }, "time": "2017-12-16T16:06:03+00:00" }, { @@ -10768,6 +10918,10 @@ "rest", "web service" ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/6.5" + }, "time": "2020-05-25T19:35:05+00:00" }, { @@ -10819,6 +10973,10 @@ "keywords": [ "promise" ], + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/master" + }, "time": "2016-12-20T10:07:11+00:00" }, { @@ -10890,6 +11048,10 @@ "uri", "url" ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.6.1" + }, "time": "2019-07-01T23:21:34+00:00" }, { @@ -10927,6 +11089,10 @@ "GPLv2" ], "description": "Converts HTML to formatted plain text", + "support": { + "issues": "https://github.com/mtibben/html2text/issues", + "source": "https://github.com/mtibben/html2text/tree/master" + }, "time": "2016-03-16T23:24:34+00:00" }, { @@ -10969,6 +11135,10 @@ } ], "description": "IndieAuth Client Library", + "support": { + "issues": "https://github.com/indieweb/indieauth-client-php/issues", + "source": "https://github.com/indieweb/indieauth-client-php/tree/master" + }, "time": "2019-02-08T16:56:14+00:00" }, { @@ -11015,6 +11185,10 @@ "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" }, { @@ -11057,6 +11231,10 @@ ], "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/master" + }, "time": "2018-10-27T19:41:41+00:00" }, { @@ -11102,6 +11280,10 @@ "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.2" + }, "time": "2015-12-23T18:11:19+00:00" }, { @@ -11181,10 +11363,10 @@ }, { "name": "jquery/inputmask", - "version": "5.0.3", + "version": "5.0.5", "dist": { "type": "zip", - "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.3.zip" + "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.5.zip" }, "require": { "composer/installers": "~1.0" @@ -11256,10 +11438,10 @@ }, { "name": "jquery/timepicker", - "version": "1.13.10", + "version": "1.13.14", "dist": { "type": "zip", - "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.10.zip" + "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.14.zip" }, "require": { "composer/installers": "~1.0" @@ -11284,52 +11466,6 @@ "installer-name": "jquery.toggles" } }, - { - "name": "kub-at/php-simple-html-dom-parser", - "version": "1.9.1", - "source": { - "type": "git", - "url": "https://github.com/Kub-AT/php-simple-html-dom-parser.git", - "reference": "ff22f98bfd9235115c128059076f3eb740d66913" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Kub-AT/php-simple-html-dom-parser/zipball/ff22f98bfd9235115c128059076f3eb740d66913", - "reference": "ff22f98bfd9235115c128059076f3eb740d66913", - "shasum": "" - }, - "require": { - "php": ">=5.3.2" - }, - "type": "library", - "autoload": { - "psr-0": { - "KubAT\\PhpSimple\\HtmlDomParser": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "S.C. Chen", - "email": "me578022@gmail.com" - }, - { - "name": "Jakub Stawowy", - "email": "Kub-AT@users.noreply.github.com" - } - ], - "description": "PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible", - "homepage": "http://simplehtmldom.sourceforge.net/", - "keywords": [ - "Simple", - "dom", - "html" - ], - "time": "2019-10-25T12:34:43+00:00" - }, { "name": "laminas/laminas-diactoros", "version": "1.8.7p2", @@ -11403,6 +11539,14 @@ "psr", "psr-7" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-diactoros/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-diactoros/issues", + "rss": "https://github.com/laminas/laminas-diactoros/releases.atom", + "source": "https://github.com/laminas/laminas-diactoros" + }, "time": "2020-03-23T15:28:28+00:00" }, { @@ -11452,6 +11596,14 @@ "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" + }, "time": "2019-12-31T16:43:30+00:00" }, { @@ -11519,6 +11671,14 @@ "feed", "laminas" ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-feed/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-feed/issues", + "rss": "https://github.com/laminas/laminas-feed/releases.atom", + "source": "https://github.com/laminas/laminas-feed" + }, "time": "2020-03-29T12:36:29+00:00" }, { @@ -11569,40 +11729,43 @@ "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" + }, "time": "2019-12-31T17:51:15+00:00" }, { "name": "laminas/laminas-xml", - "version": "1.2.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-xml.git", - "reference": "879cc66d1bba6a37705e98074f52a6960c220020" + "reference": "2eada592359aec9d9e55339270b621295cff3a4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/879cc66d1bba6a37705e98074f52a6960c220020", - "reference": "879cc66d1bba6a37705e98074f52a6960c220020", + "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/2eada592359aec9d9e55339270b621295cff3a4f", + "reference": "2eada592359aec9d9e55339270b621295cff3a4f", "shasum": "" }, "require": { "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ~8.0.0" }, "replace": { - "zendframework/zendxml": "self.version" + "zendframework/zendxml": "^1.2.0" }, "require-dev": { + "ext-iconv": "*", "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" + "phpunit/phpunit": "^9.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev", - "dev-develop": "1.3.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Xml\\": "src/" @@ -11619,7 +11782,20 @@ "security", "xml" ], - "time": "2019-12-31T18:05:42+00:00" + "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": "2021-02-17T22:44:58+00:00" }, { "name": "laminas/laminas-zendframework-bridge", @@ -11671,20 +11847,32 @@ "laminas", "zf" ], + "support": { + "forum": "https://discourse.laminas.dev/", + "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", + "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", + "source": "https://github.com/laminas/laminas-zendframework-bridge" + }, + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], "time": "2020-05-20T16:45:56+00:00" }, { "name": "lcobucci/jwt", - "version": "3.3.2", + "version": "3.4.5", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "56f10808089e38623345e28af2f2d5e4eb579455" + "reference": "511629a54465e89a31d3d7e4cf0935feab8b14c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/56f10808089e38623345e28af2f2d5e4eb579455", - "reference": "56f10808089e38623345e28af2f2d5e4eb579455", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/511629a54465e89a31d3d7e4cf0935feab8b14c1", + "reference": "511629a54465e89a31d3d7e4cf0935feab8b14c1", "shasum": "" }, "require": { @@ -11699,6 +11887,9 @@ "phpunit/phpunit": "^5.7 || ^7.3", "squizlabs/php_codesniffer": "~2.3" }, + "suggest": { + "lcobucci/clock": "*" + }, "type": "library", "extra": { "branch-alias": { @@ -11708,7 +11899,12 @@ "autoload": { "psr-4": { "Lcobucci\\JWT\\": "src" - } + }, + "files": [ + "compat/class-aliases.php", + "compat/json-exception-polyfill.php", + "compat/lcobucci-clock-polyfill.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11726,7 +11922,21 @@ "JWS", "jwt" ], - "time": "2020-05-22T08:21:12+00:00" + "support": { + "issues": "https://github.com/lcobucci/jwt/issues", + "source": "https://github.com/lcobucci/jwt/tree/3.4.5" + }, + "funding": [ + { + "url": "https://github.com/lcobucci", + "type": "github" + }, + { + "url": "https://www.patreon.com/lcobucci", + "type": "patreon" + } + ], + "time": "2021-02-16T09:40:01+00:00" }, { "name": "league/commonmark", @@ -11783,9 +11993,9 @@ "authors": [ { "name": "Colin O'Dell", - "role": "Lead Developer", "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com" + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" } ], "description": "PHP Markdown parser based on the CommonMark spec", @@ -11795,25 +12005,31 @@ "markdown", "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" + }, "time": "2019-03-28T13:52:31+00:00" }, { "name": "league/container", - "version": "2.4.1", + "version": "2.5.0", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0" + "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0", - "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0", + "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3", + "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3", "shasum": "" }, "require": { "container-interop/container-interop": "^1.2", - "php": "^5.4.0 || ^7.0" + "php": "^5.4 || ^7.0 || ^8.0" }, "provide": { "container-interop/container-interop-implementation": "^1.2", @@ -11823,7 +12039,9 @@ "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "4.*" + "phpunit/phpunit": "^4.8.36", + "scrutinizer/ocular": "^1.3", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { @@ -11860,7 +12078,17 @@ "provider", "service" ], - "time": "2017-05-10T09:20:27+00:00" + "support": { + "issues": "https://github.com/thephpleague/container/issues", + "source": "https://github.com/thephpleague/container/tree/2.5.0" + }, + "funding": [ + { + "url": "https://github.com/philipobenito", + "type": "github" + } + ], + "time": "2021-02-22T09:20:06+00:00" }, { "name": "masterminds/html5", @@ -11925,6 +12153,10 @@ "serializer", "xml" ], + "support": { + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.x" + }, "time": "2017-09-04T12:26:28+00:00" }, { @@ -11981,6 +12213,10 @@ "parser", "semantic" ], + "support": { + "issues": "https://github.com/microformats/php-mf2/issues", + "source": "https://github.com/microformats/php-mf2/tree/master" + }, "time": "2018-08-24T14:47:04+00:00" }, { @@ -12030,6 +12266,10 @@ "keywords": [ "markdown" ], + "support": { + "issues": "https://github.com/michelf/php-markdown/issues", + "source": "https://github.com/michelf/php-markdown/tree/1.9.0" + }, "time": "2019-12-02T02:32:27+00:00" }, { @@ -12067,20 +12307,24 @@ "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": "nikic/php-parser", - "version": "v4.5.0", + "version": "v4.10.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463" + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/53c2753d756f5adb586dca79c2ec0e2654dd9463", - "reference": "53c2753d756f5adb586dca79c2ec0e2654dd9463", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", "shasum": "" }, "require": { @@ -12088,8 +12332,8 @@ "php": ">=7.0" }, "require-dev": { - "ircmaxell/php-yacc": "0.0.5", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -12097,7 +12341,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.9-dev" } }, "autoload": { @@ -12119,7 +12363,11 @@ "parser", "php" ], - "time": "2020-06-03T07:24:19+00:00" + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + }, + "time": "2020-12-20T10:01:03+00:00" }, { "name": "p3k/http", @@ -12157,6 +12405,10 @@ ], "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/master" + }, "time": "2020-02-19T03:00:09+00:00" }, { @@ -12201,6 +12453,10 @@ "micropub", "p3k" ], + "support": { + "issues": "https://github.com/aaronpk/p3k-micropub/issues", + "source": "https://github.com/aaronpk/p3k-micropub/tree/0.0.2" + }, "time": "2018-02-06T16:53:58+00:00" }, { @@ -12257,6 +12513,10 @@ ], "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" }, { @@ -12299,6 +12559,10 @@ "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" }, { @@ -12345,6 +12609,10 @@ ], "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.0" + }, "time": "2018-03-28T13:44:56+00:00" }, { @@ -12395,20 +12663,24 @@ "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.11.0", + "version": "v1.11.1", "source": { "type": "git", "url": "https://github.com/aaronpk/XRay.git", - "reference": "9edc99ce3c9815c447ede66fc55fd52550391cfd" + "reference": "dfc620d10282d6af1302ab70adb8cb11915a2a30" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/XRay/zipball/9edc99ce3c9815c447ede66fc55fd52550391cfd", - "reference": "9edc99ce3c9815c447ede66fc55fd52550391cfd", + "url": "https://api.github.com/repos/aaronpk/XRay/zipball/dfc620d10282d6af1302ab70adb8cb11915a2a30", + "reference": "dfc620d10282d6af1302ab70adb8cb11915a2a30", "shasum": "" }, "require": { @@ -12444,7 +12716,11 @@ ], "description": "X-Ray returns structured data from any URL", "homepage": "https://github.com/aaronpk/XRay", - "time": "2020-05-11T00:18:56+00:00" + "support": { + "issues": "https://github.com/aaronpk/XRay/issues", + "source": "https://github.com/aaronpk/XRay/tree/v1.11.1" + }, + "time": "2021-02-13T23:05:06+00:00" }, { "name": "paragonie/random_compat", @@ -12489,20 +12765,25 @@ "pseudorandom", "random" ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, "time": "2018-07-02T15:55:56+00:00" }, { "name": "pear/archive_tar", - "version": "1.4.9", + "version": "1.4.12", "source": { "type": "git", "url": "https://github.com/pear/Archive_Tar.git", - "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0" + "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0", - "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/19bb8e95490d3e3ad92fcac95500ca80bdcc7495", + "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495", "shasum": "" }, "require": { @@ -12555,7 +12836,21 @@ "archive", "tar" ], - "time": "2019-12-04T10:17:28+00:00" + "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-01-18T19:32:54+00:00" }, { "name": "pear/console_getopt", @@ -12602,6 +12897,10 @@ } ], "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" }, { @@ -12646,6 +12945,10 @@ } ], "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": "2019-11-19T19:00:24+00:00" }, { @@ -12701,6 +13004,10 @@ "keywords": [ "exception" ], + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", + "source": "https://github.com/pear/PEAR_Exception" + }, "time": "2019-12-10T10:24:42+00:00" }, { @@ -12765,6 +13072,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/master" + }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -12815,6 +13126,9 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { @@ -12862,24 +13176,26 @@ "psr", "psr-3" ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, "time": "2020-03-23T09:12:05+00:00" }, { "name": "psy/psysh", - "version": "v0.10.4", + "version": "v0.10.8", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560" + "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560", - "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", "shasum": "" }, "require": { - "dnoegel/php-xdg-base-dir": "0.1.*", "ext-json": "*", "ext-tokenizer": "*", "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", @@ -12904,7 +13220,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "0.10.x-dev" + "dev-main": "0.10.x-dev" } }, "autoload": { @@ -12934,7 +13250,11 @@ "interactive", "shell" ], - "time": "2020-05-03T19:32:03+00:00" + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + }, + "time": "2021-04-10T16:23:39+00:00" }, { "name": "ralouphie/getallheaders", @@ -12974,6 +13294,10 @@ } ], "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" }, { @@ -12991,6 +13315,62 @@ "installer-name": "signature_pad" } }, + { + "name": "squizlabs/php_codesniffer", + "version": "3.6.0", + "source": { + "type": "git", + "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", + "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "shasum": "" + }, + "require": { + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "bin": [ + "bin/phpcs", + "bin/phpcbf" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Greg Sherwood", + "role": "lead" + } + ], + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "keywords": [ + "phpcs", + "standards" + ], + "support": { + "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues", + "source": "https://github.com/squizlabs/PHP_CodeSniffer", + "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + }, + "time": "2021-04-09T00:54:41+00:00" + }, { "name": "stack/builder", "version": "v1.0.5", @@ -13038,33 +13418,38 @@ "keywords": [ "stack" ], + "support": { + "issues": "https://github.com/stackphp/builder/issues", + "source": "https://github.com/stackphp/builder/tree/master" + }, "time": "2017-11-18T14:57:29+00:00" }, { "name": "stripe/stripe-php", - "version": "v6.43.1", + "version": "v7.77.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8" + "reference": "f6724447481f6fb8c2e714165e092adad9ca470a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/42fcdaf99c44bb26937223f8eae1f263491d5ab8", - "reference": "42fcdaf99c44bb26937223f8eae1f263491d5ab8", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/f6724447481f6fb8c2e714165e092adad9ca470a", + "reference": "f6724447481f6fb8c2e714165e092adad9ca470a", "shasum": "" }, "require": { "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", - "php": ">=5.4.0" + "php": ">=5.6.0" }, "require-dev": { - "php-coveralls/php-coveralls": "1.*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0", - "symfony/process": "~2.8" + "friendsofphp/php-cs-fixer": "2.17.1", + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5.7", + "squizlabs/php_codesniffer": "^3.3", + "symfony/process": "~3.4" }, "type": "library", "extra": { @@ -13094,7 +13479,11 @@ "payment processing", "stripe" ], - "time": "2019-08-29T16:56:12+00:00" + "support": { + "issues": "https://github.com/stripe/stripe-php/issues", + "source": "https://github.com/stripe/stripe-php/tree/v7.77.0" + }, + "time": "2021-04-12T17:19:16+00:00" }, { "name": "svg-pan-zoom/svg-pan-zoom", @@ -13163,6 +13552,10 @@ "mail", "mailer" ], + "support": { + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v5.4.12" + }, "time": "2018-07-31T09:26:32+00:00" }, { @@ -13222,6 +13615,10 @@ "database", "routing" ], + "support": { + "issues": "https://github.com/symfony-cmf/routing/issues", + "source": "https://github.com/symfony-cmf/routing/tree/1.4" + }, "time": "2017-05-09T08:10:41+00:00" }, { @@ -13278,6 +13675,23 @@ ], "description": "Symfony ClassLoader Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/class-loader/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-03-15T09:38:08+00:00" }, { @@ -13350,6 +13764,23 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/console/tree/v3.4.41" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-30T18:58:05+00:00" }, { @@ -13406,6 +13837,23 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/debug/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-22T18:25:20+00:00" }, { @@ -13477,6 +13925,23 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/dependency-injection/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-30T21:06:01+00:00" }, { @@ -13540,20 +14005,37 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-05T15:06:23+00:00" }, { "name": "symfony/filesystem", - "version": "v4.4.10", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b27f491309db5757816db672b256ea2e03677d30" + "reference": "940826c465be2690c9fae91b2793481e5cbd6834" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30", - "reference": "b27f491309db5757816db672b256ea2e03677d30", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/940826c465be2690c9fae91b2793481e5cbd6834", + "reference": "940826c465be2690c9fae91b2793481e5cbd6834", "shasum": "" }, "require": { @@ -13561,11 +14043,6 @@ "symfony/polyfill-ctype": "~1.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Filesystem\\": "" @@ -13588,33 +14065,45 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Filesystem Component", + "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", - "time": "2020-05-30T18:50:54+00:00" + "support": { + "source": "https://github.com/symfony/filesystem/tree/v4.4.21" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-03-28T09:59:32+00:00" }, { "name": "symfony/finder", - "version": "v4.4.10", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "5729f943f9854c5781984ed4907bbb817735776b" + "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b", - "reference": "5729f943f9854c5781984ed4907bbb817735776b", + "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6", + "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -13637,9 +14126,26 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Finder Component", + "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "support": { + "source": "https://github.com/symfony/finder/tree/v4.4.20" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-02-12T10:48:09+00:00" }, { "name": "symfony/http-foundation", @@ -13693,20 +14199,37 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/http-foundation/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-16T13:15:54+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.41", + "version": "v3.4.44", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df" + "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df", - "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", + "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", "shasum": "" }, "require": { @@ -13783,7 +14306,24 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2020-05-31T05:14:17+00:00" + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v3.4.44" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-08-31T05:53:42+00:00" }, { "name": "symfony/polyfill-ctype", @@ -13841,6 +14381,23 @@ "polyfill", "portable" ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.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": "2020-05-12T16:14:59+00:00" }, { @@ -13900,6 +14457,23 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.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": "2020-05-12T16:47:27+00:00" }, { @@ -13962,6 +14536,23 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/master" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-12T16:47:27+00:00" }, { @@ -14021,6 +14612,23 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.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": "2020-05-12T16:47:27+00:00" }, { @@ -14077,6 +14685,23 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.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": "2020-05-12T16:47:27+00:00" }, { @@ -14136,6 +14761,23 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php70/tree/master" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-12T16:47:27+00:00" }, { @@ -14191,29 +14833,50 @@ "portable", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/master" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.17.0", + "version": "v1.22.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd" + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/5e30b2799bc1ad68f7feb62b60a73743589438dd", - "reference": "5e30b2799bc1ad68f7feb62b60a73743589438dd", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", "shasum": "" }, "require": { - "php": ">=7.0.8" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -14253,7 +14916,24 @@ "portable", "shim" ], - "time": "2020-05-12T16:47:27+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.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": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-util", @@ -14305,6 +14985,23 @@ "polyfill", "shim" ], + "support": { + "source": "https://github.com/symfony/polyfill-util/tree/master" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-12T16:14:59+00:00" }, { @@ -14354,6 +15051,23 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/process/tree/v3.4.41" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-23T17:05:51+00:00" }, { @@ -14417,6 +15131,10 @@ "psr-17", "psr-7" ], + "support": { + "issues": "https://github.com/symfony/psr-http-message-bridge/issues", + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2" + }, "time": "2019-04-03T17:09:40+00:00" }, { @@ -14493,6 +15211,23 @@ "uri", "url" ], + "support": { + "source": "https://github.com/symfony/routing/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-30T19:50:06+00:00" }, { @@ -14572,6 +15307,23 @@ ], "description": "Symfony Serializer Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/serializer/tree/v3.4.41" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-30T18:58:05+00:00" }, { @@ -14642,6 +15394,23 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/translation/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-30T18:58:05+00:00" }, { @@ -14728,20 +15497,37 @@ ], "description": "Symfony Validator Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/validator/tree/3.4" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-30T18:43:38+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.4.10", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac" + "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac", - "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0da0e174f728996f5d5072d6a9f0a42259dbc806", + "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806", "shasum": "" }, "require": { @@ -14758,7 +15544,7 @@ "ext-iconv": "*", "symfony/console": "^3.4|^4.0|^5.0", "symfony/process": "^4.4|^5.0", - "twig/twig": "^1.34|^2.4|^3.0" + "twig/twig": "^1.43|^2.13|^3.0.4" }, "suggest": { "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", @@ -14769,11 +15555,6 @@ "Resources/bin/var-dump-server" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "files": [ "Resources/functions/dump.php" @@ -14799,13 +15580,30 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony mechanism for exploring and dumping PHP variables", + "description": "Provides mechanisms for walking through any arbitrary PHP variable", "homepage": "https://symfony.com", "keywords": [ "debug", "dump" ], - "time": "2020-05-30T20:06:45+00:00" + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v4.4.21" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-03-27T19:49:03+00:00" }, { "name": "symfony/yaml", @@ -14864,6 +15662,23 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/yaml/tree/v3.4.41" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], "time": "2020-05-11T07:51:54+00:00" }, { @@ -14901,6 +15716,10 @@ "mail", "mailchimp" ], + "support": { + "issues": "https://github.com/thinkshout/mailchimp-api-php/issues", + "source": "https://github.com/thinkshout/mailchimp-api-php/tree/master" + }, "time": "2018-02-27T17:52:03+00:00" }, { @@ -14965,6 +15784,10 @@ "keywords": [ "templating" ], + "support": { + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/1.x" + }, "time": "2020-02-11T05:59:23+00:00" }, { @@ -15015,20 +15838,24 @@ "security", "stream-wrapper" ], + "support": { + "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues", + "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master" + }, "time": "2019-12-10T11:53:27+00:00" }, { "name": "webflo/drupal-finder", - "version": "1.2.0", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/webflo/drupal-finder.git", - "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e" + "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", - "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", + "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", "shasum": "" }, "require": { @@ -15046,7 +15873,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -15055,34 +15882,43 @@ } ], "description": "Helper class to locate a Drupal installation from a given path.", - "time": "2019-08-02T08:06:18+00:00" + "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" }, { "name": "webmozart/assert", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", - "url": "https://github.com/webmozart/assert.git", - "reference": "9dc4f203e36f2b486149058bade43c851dd97451" + "url": "https://github.com/webmozarts/assert.git", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/9dc4f203e36f2b486149058bade43c851dd97451", - "reference": "9dc4f203e36f2b486149058bade43c851dd97451", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0", + "php": "^7.2 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<3.9.1" + "vimeo/psalm": "<4.6.1 || 4.6.2" }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" + "phpunit/phpunit": "^8.5.13" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -15104,7 +15940,11 @@ "check", "validate" ], - "time": "2020-06-16T10:16:42+00:00" + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.10.0" + }, + "time": "2021-03-09T10:59:23+00:00" }, { "name": "webmozart/path-util", @@ -15150,42 +15990,46 @@ } ], "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "support": { + "issues": "https://github.com/webmozart/path-util/issues", + "source": "https://github.com/webmozart/path-util/tree/2.3.0" + }, "time": "2015-12-17T08:42:14+00:00" }, { "name": "wikimedia/composer-merge-plugin", - "version": "v1.4.1", + "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/wikimedia/composer-merge-plugin.git", - "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100" + "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100", - "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100", + "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912", + "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0", - "php": ">=5.3.2" + "composer-plugin-api": "^1.1||^2.0", + "php": ">=7.2.0" }, "require-dev": { - "composer/composer": "~1.0.0", - "jakub-onderka/php-parallel-lint": "~0.8", - "phpunit/phpunit": "~4.8|~5.0", - "squizlabs/php_codesniffer": "~2.1.0" + "composer/composer": "^1.1||^2.0", + "php-parallel-lint/php-parallel-lint": "~1.1.0", + "phpunit/phpunit": "^8.5||^9.0", + "squizlabs/php_codesniffer": "~3.5.4" }, "type": "composer-plugin", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "2.x-dev" }, - "class": "Wikimedia\\Composer\\MergePlugin" + "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin" }, "autoload": { "psr-4": { - "Wikimedia\\Composer\\": "src/" + "Wikimedia\\Composer\\Merge\\V2\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -15199,24 +16043,28 @@ } ], "description": "Composer plugin to merge multiple composer.json files", - "time": "2017-04-25T02:31:25+00:00" + "support": { + "issues": "https://github.com/wikimedia/composer-merge-plugin/issues", + "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1" + }, + "time": "2021-02-24T05:28:06+00:00" }, { "name": "zaporylie/composer-drupal-optimizations", - "version": "1.1.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/zaporylie/composer-drupal-optimizations.git", - "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d" + "reference": "a7f409a765164fd13ac0bd00e19109165c51b369" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d", - "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d", + "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/a7f409a765164fd13ac0bd00e19109165c51b369", + "reference": "a7f409a765164fd13ac0bd00e19109165c51b369", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1" + "composer-plugin-api": "^1.1 || ^2.0" }, "require-dev": { "composer/composer": "^1.6", @@ -15242,7 +16090,11 @@ } ], "description": "Composer plugin to improve composer performance for Drupal projects", - "time": "2019-10-02T17:01:11+00:00" + "support": { + "issues": "https://github.com/zaporylie/composer-drupal-optimizations/issues", + "source": "https://github.com/zaporylie/composer-drupal-optimizations/tree/1.2.0" + }, + "time": "2020-10-22T13:26:00+00:00" } ], "packages-dev": [ @@ -15324,29 +16176,34 @@ "symfony", "testing" ], + "support": { + "issues": "https://github.com/Behat/Behat/issues", + "source": "https://github.com/Behat/Behat/tree/v3.7.0" + }, "time": "2020-06-03T13:08:44+00:00" }, { "name": "behat/gherkin", - "version": "v4.6.2", + "version": "v4.8.0", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31" + "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31", - "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/2391482cd003dfdc36b679b27e9f5326bd656acd", + "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd", "shasum": "" }, "require": { - "php": ">=5.3.1" + "php": "~7.2|~8.0" }, "require-dev": { - "phpunit/phpunit": "~4.5|~5", - "symfony/phpunit-bridge": "~2.7|~3|~4", - "symfony/yaml": "~2.3|~3|~4" + "cucumber/cucumber": "dev-gherkin-16.0.0", + "phpunit/phpunit": "~8|~9", + "symfony/phpunit-bridge": "~3|~4|~5", + "symfony/yaml": "~3|~4|~5" }, "suggest": { "symfony/yaml": "If you want to parse features, represented in YAML files" @@ -15373,7 +16230,7 @@ "homepage": "http://everzet.com" } ], - "description": "Gherkin DSL parser for PHP 5.3", + "description": "Gherkin DSL parser for PHP", "homepage": "http://behat.org/", "keywords": [ "BDD", @@ -15383,7 +16240,11 @@ "gherkin", "parser" ], - "time": "2020-03-17T14:03:26+00:00" + "support": { + "issues": "https://github.com/Behat/Gherkin/issues", + "source": "https://github.com/Behat/Gherkin/tree/v4.8.0" + }, + "time": "2021-02-04T12:44:21+00:00" }, { "name": "behat/mink", @@ -15444,6 +16305,10 @@ "testing", "web" ], + "support": { + "issues": "https://github.com/minkphp/Mink/issues", + "source": "https://github.com/minkphp/Mink/tree/v1.8.1" + }, "time": "2020-03-11T15:45:53+00:00" }, { @@ -15501,6 +16366,10 @@ "browser", "testing" ], + "support": { + "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v1.3.4" + }, "time": "2020-03-11T09:49:45+00:00" }, { @@ -15556,6 +16425,10 @@ "headless", "testing" ], + "support": { + "issues": "https://github.com/minkphp/MinkGoutteDriver/issues", + "source": "https://github.com/minkphp/MinkGoutteDriver/tree/master" + }, "time": "2016-03-05T09:04:22+00:00" }, { @@ -15601,6 +16474,10 @@ "slug", "transliterator" ], + "support": { + "issues": "https://github.com/Behat/Transliterator/issues", + "source": "https://github.com/Behat/Transliterator/tree/v1.3.0" + }, "time": "2020-01-14T16:39:13+00:00" }, { @@ -15656,20 +16533,24 @@ "keywords": [ "scraper" ], + "support": { + "issues": "https://github.com/FriendsOfPHP/Goutte/issues", + "source": "https://github.com/FriendsOfPHP/Goutte/tree/master" + }, "time": "2018-06-29T15:13:57+00:00" }, { "name": "symfony/browser-kit", - "version": "v4.4.10", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "f53310646af9901292488b2ff36e26ea10f545f5" + "reference": "cfa8d92f95294747e3abc04969efee51ed374424" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f53310646af9901292488b2ff36e26ea10f545f5", - "reference": "f53310646af9901292488b2ff36e26ea10f545f5", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/cfa8d92f95294747e3abc04969efee51ed374424", + "reference": "cfa8d92f95294747e3abc04969efee51ed374424", "shasum": "" }, "require": { @@ -15686,11 +16567,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\BrowserKit\\": "" @@ -15713,22 +16589,39 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony BrowserKit Component", + "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", - "time": "2020-05-22T17:28:00+00:00" + "support": { + "source": "https://github.com/symfony/browser-kit/tree/v4.4.20" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-02-18T10:52:56+00:00" }, { "name": "symfony/config", - "version": "v5.1.2", + "version": "v5.2.4", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "b8623ef3d99fe62a34baf7a111b576216965f880" + "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/b8623ef3d99fe62a34baf7a111b576216965f880", - "reference": "b8623ef3d99fe62a34baf7a111b576216965f880", + "url": "https://api.github.com/repos/symfony/config/zipball/212d54675bf203ff8aef7d8cee8eecfb72f4a263", + "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263", "shasum": "" }, "require": { @@ -15752,11 +16645,6 @@ "symfony/yaml": "To use the yaml reference dumper" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.1-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Config\\": "" @@ -15779,33 +16667,45 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Config Component", + "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", - "time": "2020-05-23T13:08:13+00:00" + "support": { + "source": "https://github.com/symfony/config/tree/v5.2.4" + }, + "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": "2021-02-23T23:58:19+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.10", + "version": "v4.4.20", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "afc26133a6fbdd4f8842e38893e0ee4685c7c94b" + "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/afc26133a6fbdd4f8842e38893e0ee4685c7c94b", - "reference": "afc26133a6fbdd4f8842e38893e0ee4685c7c94b", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/f907d3e53ecb2a5fad8609eb2f30525287a734c8", + "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\CssSelector\\": "" @@ -15832,22 +16732,39 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony CssSelector Component", + "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", - "time": "2020-03-27T16:54:36+00:00" + "support": { + "source": "https://github.com/symfony/css-selector/tree/v4.4.20" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-27T09:09:26+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v2.1.2", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337" + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337", - "reference": "dd99cb3a0aff6cadd2a8d7d7ed72c2161e218337", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", "shasum": "" }, "require": { @@ -15856,7 +16773,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1-dev" + "dev-main": "2.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -15880,7 +16801,24 @@ ], "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", - "time": "2020-05-27T08:34:37+00:00" + "support": { + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.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": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/dom-crawler", @@ -15937,6 +16875,9 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/dom-crawler/tree/4.2" + }, "time": "2019-06-13T10:57:15+00:00" } ], @@ -15962,5 +16903,6 @@ "prefer-stable": true, "prefer-lowest": false, "platform": [], - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "2.0.0" } From 9bf43ad51627c9d8a6b3aa4f73f0498751416dd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 22:33:57 -0400 Subject: [PATCH 037/236] Remove custom drush command --- .ddev/commands/web/drush | 7 ------- 1 file changed, 7 deletions(-) delete mode 100755 .ddev/commands/web/drush diff --git a/.ddev/commands/web/drush b/.ddev/commands/web/drush deleted file mode 100755 index 359811b..0000000 --- a/.ddev/commands/web/drush +++ /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 $@ From 3f43583f39835fcb8b8454d5aa15237cb32cdbfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 22:34:34 -0400 Subject: [PATCH 038/236] Do not enable xdebug by default --- .ddev/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 825a6f2..10f9a60 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -5,7 +5,7 @@ php_version: "7.3" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" -xdebug_enabled: true +# xdebug_enabled: true additional_hostnames: [] additional_fqdns: [] mariadb_version: "10.2" From 668c63dfe782e1c9491fac05e50da9b5a1294382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 23:07:59 -0400 Subject: [PATCH 039/236] Commit new blocks, webforms, & other config updates from live --- composer.json | 2 +- ...block.block.agarica_home_page_custom_2.yml | 2 +- config/sync/block.block.agaricnewsletter.yml | 31 +++ ...lock.block.upcomingtrainingsfromagaric.yml | 7 +- ..._display.node.landing_page.simple_card.yml | 13 +- ...ty_view_display.node.people.small_card.yml | 1 + config/sync/redirect_404.settings.yml | 16 +- config/sync/user.role.manager.yml | 6 + config/sync/views.view.article.yml | 2 +- config/sync/views.view.blog.yml | 2 +- config/sync/views.view.campaign.yml | 2 +- config/sync/views.view.event.yml | 2 +- config/sync/views.view.group.yml | 2 +- config/sync/views.view.resource.yml | 2 +- config/sync/webform.webform.contact.yml | 8 +- ....webform.drupal_8_9_content_migrations.yml | 4 +- ...bform.webform.drutopia_platform_intake.yml | 236 ++++++++++++++++++ ....webform.getting_started_with_drupal_9.yml | 4 +- ....webform.getting_started_with_react_js.yml | 4 +- config/sync/webform.webform.newsletter.yml | 208 +++++++++++++++ ....webform.purchase_training_migrate_api.yml | 4 +- config/sync/webform.webform.request.yml | 234 +++++++++++++++++ config/sync/webform.webform.training.yml | 6 +- .../webform.webform.training_discount.yml | 9 +- ....webform.training_notification_request.yml | 213 ++++++++++++++++ ...webform.webform.training_request_draft.yml | 207 +++++++++++++++ 26 files changed, 1183 insertions(+), 44 deletions(-) create mode 100644 config/sync/block.block.agaricnewsletter.yml create mode 100644 config/sync/webform.webform.drutopia_platform_intake.yml create mode 100644 config/sync/webform.webform.newsletter.yml create mode 100644 config/sync/webform.webform.request.yml create mode 100644 config/sync/webform.webform.training_notification_request.yml create mode 100644 config/sync/webform.webform.training_request_draft.yml diff --git a/composer.json b/composer.json index 90074ec..d0d9d2d 100644 --- a/composer.json +++ b/composer.json @@ -61,7 +61,7 @@ "drupal/webform": "^5.0@RC", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "^1.9", - "drush/drush": "^9.0", + "drush/drush": "^10.0", "drutopia/drutopia": "^1.0-beta1", "wikimedia/composer-merge-plugin": "^2.0", "zaporylie/composer-drupal-optimizations": "^1.0" diff --git a/config/sync/block.block.agarica_home_page_custom_2.yml b/config/sync/block.block.agarica_home_page_custom_2.yml index 5553c38..6c7fcb6 100644 --- a/config/sync/block.block.agarica_home_page_custom_2.yml +++ b/config/sync/block.block.agarica_home_page_custom_2.yml @@ -1,6 +1,6 @@ uuid: 9d41ad55-46a7-43b8-877b-5219eeb54bac langcode: en -status: true +status: false dependencies: content: - 'block_content:slide:8f30e41d-3693-43bc-a281-9b11e29df3b8' diff --git a/config/sync/block.block.agaricnewsletter.yml b/config/sync/block.block.agaricnewsletter.yml new file mode 100644 index 0000000..c6e80da --- /dev/null +++ b/config/sync/block.block.agaricnewsletter.yml @@ -0,0 +1,31 @@ +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' + provider: block_content + label_display: visible + status: true + info: '' + view_mode: default +visibility: + condition_group: + id: condition_group + negate: false + block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.upcomingtrainingsfromagaric.yml b/config/sync/block.block.upcomingtrainingsfromagaric.yml index 33dfe2c..8cb47e9 100644 --- a/config/sync/block.block.upcomingtrainingsfromagaric.yml +++ b/config/sync/block.block.upcomingtrainingsfromagaric.yml @@ -32,9 +32,6 @@ visibility: context_mapping: { } request_path: id: request_path - pages: | - - /training - /migration-trainings - negate: true + pages: '' + negate: false context_mapping: { } diff --git a/config/sync/core.entity_view_display.node.landing_page.simple_card.yml b/config/sync/core.entity_view_display.node.landing_page.simple_card.yml index f5d5b07..0e727a9 100644 --- a/config/sync/core.entity_view_display.node.landing_page.simple_card.yml +++ b/config/sync/core.entity_view_display.node.landing_page.simple_card.yml @@ -35,16 +35,9 @@ third_party_settings: regions: left: - node_title - - group_date - - node_post_date right: - field_image fields: - node_post_date: - plugin_id: node_post_date - weight: 2 - label: hidden - formatter: ds_post_date_medium node_title: plugin_id: node_title weight: 0 @@ -60,9 +53,9 @@ third_party_settings: children: - node_post_date parent_name: '' - weight: 1 + weight: 2 format_type: html_element - region: left + region: hidden format_settings: id: '' classes: subtitle @@ -83,7 +76,7 @@ mode: simple_card content: field_image: type: responsive_image - weight: 3 + weight: 1 region: right label: hidden settings: 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 index 261ce85..20b1c65 100644 --- a/config/sync/core.entity_view_display.node.people.small_card.yml +++ b/config/sync/core.entity_view_display.node.people.small_card.yml @@ -54,3 +54,4 @@ hidden: indieweb_syndication: true langcode: true links: true + search_api_excerpt: true diff --git a/config/sync/redirect_404.settings.yml b/config/sync/redirect_404.settings.yml index 1296120..2bd426e 100644 --- a/config/sync/redirect_404.settings.yml +++ b/config/sync/redirect_404.settings.yml @@ -1,4 +1,4 @@ -row_limit: 10000 +row_limit: 100000 pages: | /wp-login.php / @@ -136,6 +136,20 @@ pages: | /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 _core: default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM diff --git a/config/sync/user.role.manager.yml b/config/sync/user.role.manager.yml index 5e1d13c..d58cd33 100644 --- a/config/sync/user.role.manager.yml +++ b/config/sync/user.role.manager.yml @@ -21,10 +21,13 @@ permissions: - 'access in-place editing' - 'access patterns page' - 'access site in maintenance mode' + - 'access site reports' - 'access taxonomy overview' - 'access tour' - 'access user contact forms' - 'access user profiles' + - 'access webform overview' + - 'access webform submission user' - 'administer blocks' - 'administer comments' - 'administer eu cookie compliance popup' @@ -49,6 +52,7 @@ permissions: - 'create terms in topics' - 'create url aliases' - 'create url aliases' + - 'create webform' - 'delete all revisions' - 'delete any event content' - 'delete event revisions' @@ -57,6 +61,7 @@ permissions: - 'delete terms in technologies' - 'delete terms in topics' - 'edit any event content' + - 'edit any webform' - 'edit gdpr_checklist checklistapi checklist' - 'edit terms in people_type' - 'edit terms in resource_type' @@ -75,6 +80,7 @@ permissions: - 'use text format minimalhtmltitle' - 'use text format restricted_html' - 'view all revisions' + - 'view any webform submission' - 'view blog revisions' - 'view event revisions' - 'view own unpublished content' diff --git a/config/sync/views.view.article.yml b/config/sync/views.view.article.yml index e99291d..9cf6526 100644 --- a/config/sync/views.view.article.yml +++ b/config/sync/views.view.article.yml @@ -221,7 +221,7 @@ display: description: 'Keep up to date.' expanded: false parent: '' - weight: -45 + weight: -44 context: '0' menu_name: main enabled: false diff --git a/config/sync/views.view.blog.yml b/config/sync/views.view.blog.yml index 4ed909a..9efda2c 100644 --- a/config/sync/views.view.blog.yml +++ b/config/sync/views.view.blog.yml @@ -995,7 +995,7 @@ display: description: 'Follow our blogs.' expanded: false parent: '' - weight: -44 + weight: -43 context: '0' menu_name: main cache_metadata: diff --git a/config/sync/views.view.campaign.yml b/config/sync/views.view.campaign.yml index a069593..e7c030f 100644 --- a/config/sync/views.view.campaign.yml +++ b/config/sync/views.view.campaign.yml @@ -256,7 +256,7 @@ display: description: 'Join our campaigns.' expanded: false parent: '' - weight: -43 + weight: -42 context: '0' menu_name: main enabled: false diff --git a/config/sync/views.view.event.yml b/config/sync/views.view.event.yml index 081968f..23b80cb 100644 --- a/config/sync/views.view.event.yml +++ b/config/sync/views.view.event.yml @@ -300,7 +300,7 @@ display: description: 'See a lsting of our events.' expanded: false parent: '' - weight: -41 + weight: -40 context: '0' menu_name: main enabled: false diff --git a/config/sync/views.view.group.yml b/config/sync/views.view.group.yml index 53c907a..f062451 100644 --- a/config/sync/views.view.group.yml +++ b/config/sync/views.view.group.yml @@ -285,7 +285,7 @@ display: description: 'Find out about our groups.' expanded: false parent: '' - weight: -40 + weight: -39 context: '0' menu_name: main enabled: false diff --git a/config/sync/views.view.resource.yml b/config/sync/views.view.resource.yml index 1bfa8f5..744b6dc 100644 --- a/config/sync/views.view.resource.yml +++ b/config/sync/views.view.resource.yml @@ -260,7 +260,7 @@ display: description: 'Get connected with our resources.' expanded: false parent: '' - weight: -39 + weight: -38 context: '0' menu_name: main enabled: false diff --git a/config/sync/webform.webform.contact.yml b/config/sync/webform.webform.contact.yml index 54a8439..9ff8b8d 100644 --- a/config/sync/webform.webform.contact.yml +++ b/config/sync/webform.webform.contact.yml @@ -1,9 +1,12 @@ +uuid: 334440fc-4195-4388-bd1d-c9d22c37c496 langcode: en status: open dependencies: enforced: module: - webform +_core: + default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww open: null close: null weight: 0 @@ -18,7 +21,7 @@ elements: | introduction: '#type': webform_markup '#admin_title': Introduction - '#markup': 'You – our clients, colleagues, and crazed adoring fans – are the reason we do what we do. We'd love to hear from you.' + '#markup': 'You – our clients, colleagues, and crazed adoring fans – are the reason we do what we do. We would love to hear from you.' name: '#title': 'Your Name' '#type': textfield @@ -256,6 +259,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: 334440fc-4195-4388-bd1d-c9d22c37c496 -_core: - default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww diff --git a/config/sync/webform.webform.drupal_8_9_content_migrations.yml b/config/sync/webform.webform.drupal_8_9_content_migrations.yml index 7a22cba..3f98fa6 100644 --- a/config/sync/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/sync/webform.webform.drupal_8_9_content_migrations.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, October 13, 2020** - * Time: **9AM–5PM Eastern** + * Date: **Tuesday, February 02** and **Thursday, February 04, 2021** + * Time: Both sessions at **10AM–1:30PM Eastern** * Cost: **$500** '#format': markdown diff --git a/config/sync/webform.webform.drutopia_platform_intake.yml b/config/sync/webform.webform.drutopia_platform_intake.yml new file mode 100644 index 0000000..74a0059 --- /dev/null +++ b/config/sync/webform.webform.drutopia_platform_intake.yml @@ -0,0 +1,236 @@ +uuid: 41a3096e-8049-4b5b-813a-6c6d46e6b5a1 +langcode: en +status: open +dependencies: { } +open: null +close: null +weight: 0 +uid: 8 +template: false +archive: false +id: drutopia_platform_intake +title: 'Drutopia platform intake' +description: 'Request for minimal contact information and an optional statement of need regarding a hosted site.' +category: Lead +elements: | + e_mail_address: + '#type': email + '#title': 'E-mail address:' + '#required': true + '#required_error': 'Please provide an e-mail address so we can contact you!' + name: + '#type': textfield + '#title': 'Name:' + needs: + '#type': textarea + '#title': 'What online or website goals does your group have? ' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Share your need' +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: both + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: page + confirmation_title: '' + confirmation_message: '' + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: true + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: + email: + id: email + label: Email + handler_id: email + status: true + conditions: { } + weight: 0 + settings: + states: + - completed + to_mail: ask@agaric.coop + to_options: { } + cc_mail: info@drutopia.org + cc_options: { } + bcc_mail: '' + bcc_options: { } + from_mail: _default + from_options: { } + from_name: _default + subject: _default + body: _default + excluded_elements: { } + ignore_access: false + exclude_empty: true + exclude_empty_checkbox: false + exclude_attachments: false + html: true + attachments: false + twig: false + debug: false + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' + theme_name: '' + parameters: { } +variants: { } diff --git a/config/sync/webform.webform.getting_started_with_drupal_9.yml b/config/sync/webform.webform.getting_started_with_drupal_9.yml index fe4e259..3e93710 100644 --- a/config/sync/webform.webform.getting_started_with_drupal_9.yml +++ b/config/sync/webform.webform.getting_started_with_drupal_9.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, October 6, 2020** - * Time: **9AM–5PM Eastern** + * Date: **Tuesday, January 26** and **Thursday, January 28, 2021** + * Time: Both sessions at **10AM–1:30PM Eastern** * Cost: **$250** '#format': markdown diff --git a/config/sync/webform.webform.getting_started_with_react_js.yml b/config/sync/webform.webform.getting_started_with_react_js.yml index 9243ebe..e534c6a 100644 --- a/config/sync/webform.webform.getting_started_with_react_js.yml +++ b/config/sync/webform.webform.getting_started_with_react_js.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, October 13, 2020** - * Time: **9AM–5PM Eastern** + * Date: **Tuesday, February 16** and **Thursday, February 18, 2021** + * Time: Both sessions at **10AM - 1:30PM Eastern** * Cost: **$500** '#format': markdown diff --git a/config/sync/webform.webform.newsletter.yml b/config/sync/webform.webform.newsletter.yml new file mode 100644 index 0000000..0c1b58d --- /dev/null +++ b/config/sync/webform.webform.newsletter.yml @@ -0,0 +1,208 @@ +uuid: 6560dd98-4468-43c4-8750-400851bddb37 +langcode: en +status: open +dependencies: { } +open: null +close: null +weight: 0 +uid: 12 +template: false +archive: false +id: newsletter +title: Newsletter +description: 'Sign up for the Agaric Newsletter' +category: Marketing +elements: | + processed_text: + '#type': processed_text + '#text': | +

Join the Agaric list to receive our infrequent Newsletters throughout the year! 

+ + '#format': basic_html + name: + '#type': webform_name + '#title': Name + '#description_display': invisible + '#required': true + '#title__access': false + '#first__title': 'First Name' + '#first__required': true + '#middle__access': false + '#last__title': 'Last Name' + '#last__required': true + '#suffix__access': false + '#degree__access': false + email: + '#type': webform_email_confirm + '#title': Email + '#required': true +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: /newsletter-signup-form + page_confirm_path: /newsletter-signup-thanks + page_admin_theme: false + form_title: both + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: page + confirmation_title: '' + confirmation_message: '' + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: true + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: { } +variants: { } diff --git a/config/sync/webform.webform.purchase_training_migrate_api.yml b/config/sync/webform.webform.purchase_training_migrate_api.yml index 7ab3a38..0b89ce0 100644 --- a/config/sync/webform.webform.purchase_training_migrate_api.yml +++ b/config/sync/webform.webform.purchase_training_migrate_api.yml @@ -20,8 +20,8 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, October 20, 2020** - * Time: **9AM–5PM Eastern** + * Date: **Tuesday, February 09** and **Thursday, February 11, 2021** + * Time: Both sessions at **10AM - 1:30PM Eastern** * Cost: **$500** '#format': markdown diff --git a/config/sync/webform.webform.request.yml b/config/sync/webform.webform.request.yml new file mode 100644 index 0000000..250d2a2 --- /dev/null +++ b/config/sync/webform.webform.request.yml @@ -0,0 +1,234 @@ +uuid: 7712e93e-81a8-41ae-80c8-4aa2afb45cb3 +langcode: en +status: open +dependencies: { } +open: null +close: null +weight: 0 +uid: 8 +template: false +archive: false +id: request +title: Request +description: 'Very simple form for potential clients to tell us what they need.' +category: Lead +elements: | + describe_goal: + '#type': textarea + '#title': 'Describe your goal' + email_address: + '#type': email + '#title': 'E-mail address' + phone_number: + '#type': tel + '#title': 'Phone number' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Send request' +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: both + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: page + confirmation_title: '' + confirmation_message: '' + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: true + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: + email: + id: email + label: Email + handler_id: email + status: true + conditions: { } + weight: 0 + settings: + states: + - completed + to_mail: ask@agaric.coop + to_options: { } + cc_mail: '' + cc_options: { } + bcc_mail: '' + bcc_options: { } + from_mail: '[webform_submission:values:email_address:raw]' + from_options: { } + from_name: '' + subject: _default + body: _default + excluded_elements: { } + ignore_access: false + exclude_empty: true + exclude_empty_checkbox: false + exclude_attachments: false + html: true + attachments: false + twig: false + debug: false + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' + theme_name: '' + parameters: { } +variants: { } diff --git a/config/sync/webform.webform.training.yml b/config/sync/webform.webform.training.yml index 174e535..a41ac1c 100644 --- a/config/sync/webform.webform.training.yml +++ b/config/sync/webform.webform.training.yml @@ -1,3 +1,4 @@ +uuid: 4a93727f-5bc1-4fa5-a8dc-c283d3005c15 langcode: en status: open dependencies: { } @@ -14,7 +15,9 @@ category: '' elements: | intro_text: '#type': processed_text - '#text': "

Thanks for showing interest in our trainings. Just share a bit about what you're looking for and we'll follow up with you soon thereafter.

\r\n" + '#text': | +

If you are interested in a private training tailored to your needs, give us an idea of what you are looking for and we will follow up with you soon thereafter.

+ '#format': basic_html name: '#type': textfield @@ -249,4 +252,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: 4a93727f-5bc1-4fa5-a8dc-c283d3005c15 diff --git a/config/sync/webform.webform.training_discount.yml b/config/sync/webform.webform.training_discount.yml index 1105f1a..b4d0d78 100644 --- a/config/sync/webform.webform.training_discount.yml +++ b/config/sync/webform.webform.training_discount.yml @@ -20,8 +20,7 @@ elements: | '#display_on': both '#text': |2 * Lead instructor: **Mauricio Dinarte** - * Time: **9AM–5PM Eastern** - * Cost: **$425** (15% discount off $500 usual price) + * Cost: **$250** (50% discount off $500 usual price) '#format': markdown name: @@ -38,9 +37,7 @@ elements: | '#help_title': 'How about both?' '#help': 'To register for multiple trainings, simply come back to this form after paying for the first one and do it again.  Or contact Agaric for an invoice.' '#options': - reactjs_intro: 'Getting started with React JS -- Tuesday, October 13, 2020' - content_migrations: 'Drupal 8/9 content migrations -- Tuesday, October 20, 2020' - migrate_api: 'Upgrading to Drupal 8/9 using the Migrate API -- Tuesday, October 27, 2020' + upgrades: 'Upgrading to Drupal 8/9 using the Migrate API' '#required': true payment: '#type': stripe @@ -238,7 +235,7 @@ handlers: conditions: { } weight: 0 settings: - amount: '425' + amount: '250' stripe_element: payment plan_id: '' quantity: '' diff --git a/config/sync/webform.webform.training_notification_request.yml b/config/sync/webform.webform.training_notification_request.yml new file mode 100644 index 0000000..061d0db --- /dev/null +++ b/config/sync/webform.webform.training_notification_request.yml @@ -0,0 +1,213 @@ +uuid: 6a921fe8-0cec-45fc-865e-81518d51f212 +langcode: en +status: open +dependencies: { } +open: null +close: null +weight: 0 +uid: 47 +template: false +archive: false +id: training_notification_request +title: 'Training Notification Request' +description: 'Users who submit this form should be notified when any of the trainings they are interested in become available.' +category: '' +elements: | + intro_text: + '#type': processed_text + '#text': | +

We do not currently have any public trainings scheduled. If you would like to be notified the next time any of our trainings are being offered, please tell us which ones. By filling out this form, you are also helping us to gage interest so that we will know when the time is right to host!

+ +

 

+ + '#format': basic_html + name: + '#type': textfield + '#title': Name + email: + '#type': email + '#title': Email + trainings: + '#type': checkboxes + '#title': Trainings + '#description': 'Tell us which of our trainings you would like to be notified about ' + '#title_display': invisible + '#description_display': invisible + '#options': + 'Getting started with Drupal 9': 'Getting started with Drupal 9' + 'Drupal 8/9 content migrations': 'Drupal 8/9 content migrations' + 'Upgrading to Drupal 8/9 using the Migrate API': 'Upgrading to Drupal 8/9 using the Migrate API' + 'Getting started with React.js': 'Getting started with React.js' + '#required': true + '#required_error': 'you must select a training.' + '#options__properties': '' +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: both + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: page + confirmation_title: '' + confirmation_message: '' + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: true + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: { } +variants: { } diff --git a/config/sync/webform.webform.training_request_draft.yml b/config/sync/webform.webform.training_request_draft.yml new file mode 100644 index 0000000..7af593b --- /dev/null +++ b/config/sync/webform.webform.training_request_draft.yml @@ -0,0 +1,207 @@ +uuid: d061fc52-7db2-4138-a6bb-805a1e7353fd +langcode: en +status: open +dependencies: { } +open: null +close: null +weight: 0 +uid: 47 +template: false +archive: false +id: training_request_draft +title: 'General Training Request Form' +description: 'This is the training request form that will be placed on all specific training pages. Upon submission, you can tell which page this form was submitted from by looking at the results tab.' +category: '' +elements: | + name: + '#type': webform_name + '#title': Name + '#description_display': invisible + '#required': true + '#title__access': false + '#first__title': Name + '#first__required': true + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + email: + '#type': email + '#title': Email + '#description_display': invisible + '#required': true + '#required_error': 'Please enter your email address to submit the form.' + message: + '#type': textarea + '#title': Message + '#help': 'Let us know what you need, or if you have any questions about our training.' +css: '' +javascript: '' +settings: + ajax: false + ajax_scroll_top: form + ajax_progress_type: '' + ajax_effect: '' + ajax_speed: null + page: true + page_submit_path: '' + page_confirm_path: '' + page_admin_theme: false + form_title: both + form_submit_once: false + form_exception_message: '' + form_open_message: '' + form_close_message: '' + form_previous_submissions: true + form_confidential: false + form_confidential_message: '' + form_remote_addr: true + form_convert_anonymous: false + form_prepopulate: false + form_prepopulate_source_entity: false + form_prepopulate_source_entity_required: false + form_prepopulate_source_entity_type: '' + form_reset: false + form_disable_autocomplete: false + form_novalidate: false + form_disable_inline_errors: false + form_required: false + form_unsaved: false + form_disable_back: false + form_submit_back: false + form_autofocus: false + form_details_toggle: false + form_access_denied: default + form_access_denied_title: '' + form_access_denied_message: '' + form_access_denied_attributes: { } + form_file_limit: '' + share: false + share_node: false + share_theme_name: '' + share_title: true + share_page_body_attributes: { } + submission_label: '' + submission_log: false + submission_views: { } + submission_views_replace: { } + submission_user_columns: { } + submission_user_duplicate: false + submission_access_denied: default + submission_access_denied_title: '' + submission_access_denied_message: '' + 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 + autofill_message: '' + autofill_excluded_elements: { } + wizard_progress_bar: true + wizard_progress_pages: false + wizard_progress_percentage: false + wizard_progress_link: false + wizard_progress_states: false + wizard_start_label: '' + wizard_preview_link: false + wizard_confirmation: true + wizard_confirmation_label: '' + wizard_track: '' + preview: 0 + preview_label: '' + preview_title: '' + preview_message: '' + preview_attributes: { } + preview_excluded_elements: { } + preview_exclude_empty: true + preview_exclude_empty_checkbox: false + draft: none + draft_multiple: false + draft_auto_save: false + draft_saved_message: '' + draft_loaded_message: '' + draft_pending_single_message: '' + draft_pending_multiple_message: '' + confirmation_type: page + confirmation_title: '' + confirmation_message: '' + confirmation_url: '' + confirmation_attributes: { } + confirmation_back: true + confirmation_back_label: '' + confirmation_back_attributes: { } + confirmation_exclude_query: false + confirmation_exclude_token: false + confirmation_update: false + 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 + entity_limit_user_interval: null + purge: none + purge_days: null + results_disabled: false + results_disabled_ignore: false + results_customize: false + token_view: false + token_update: false +access: + create: + roles: + - anonymous + - authenticated + users: { } + permissions: { } + view_any: + roles: { } + users: { } + permissions: { } + update_any: + roles: { } + users: { } + permissions: { } + delete_any: + roles: { } + users: { } + permissions: { } + purge_any: + roles: { } + users: { } + permissions: { } + view_own: + roles: { } + users: { } + permissions: { } + update_own: + roles: { } + users: { } + permissions: { } + delete_own: + roles: { } + users: { } + permissions: { } + administer: + roles: { } + users: { } + permissions: { } + test: + roles: { } + users: { } + permissions: { } + configuration: + roles: { } + users: { } + permissions: { } +handlers: { } +variants: { } From c6ba68504b33a9bebe9c50bdab7d2245315d09aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 23:13:50 -0400 Subject: [PATCH 040/236] Commit self-updates to config from code updb changes, mostly webform --- ...core.base_field_override.group.group.uid.yml | 2 +- ...group_content.group-group_membership.uid.yml | 2 +- config/sync/core.extension.yml | 3 +++ config/sync/exclude_node_title.settings.yml | 1 + .../language/es/views.view.block_content.yml | 5 +++++ config/sync/language/es/views.view.comment.yml | 4 ++++ config/sync/language/es/views.view.content.yml | 2 ++ .../language/es/views.view.group_members.yml | 2 ++ .../sync/language/es/views.view.group_nodes.yml | 2 ++ .../language/es/views.view.redirect_404.yml | 2 ++ .../es/views.view.user_admin_people.yml | 2 ++ config/sync/language/es/views.view.watchdog.yml | 2 ++ .../es/views.view.webform_submissions.yml | 10 ++++++++++ config/sync/language/es/webform.settings.yml | 1 + config/sync/mailchimp.settings.yml | 1 + config/sync/user.role.manager.yml | 1 + config/sync/webform.settings.yml | 9 +++++++-- ...webform.attend_the_tech_and_rev_workshop.yml | 14 ++++++++++++-- config/sync/webform.webform.blog_posts.yml | 14 ++++++++++++-- config/sync/webform.webform.capacitacion.yml | 14 ++++++++++++-- config/sync/webform.webform.contact.yml | 17 ++++++++++++++--- config/sync/webform.webform.contact_confirm.yml | 14 ++++++++++++-- ...rm.webform.drupal_8_9_content_migrations.yml | 14 +++++++++++++- config/sync/webform.webform.drutopia_intake.yml | 14 ++++++++++++-- ...webform.webform.drutopia_platform_intake.yml | 13 ++++++++++++- .../sync/webform.webform.find_it_platform.yml | 12 +++++++++++- .../sync/webform.webform.general_services.yml | 14 ++++++++++++-- ...rm.webform.getting_started_with_drupal_9.yml | 14 +++++++++++++- ...rm.webform.getting_started_with_react_js.yml | 14 +++++++++++++- .../sync/webform.webform.join_the_movement.yml | 15 +++++++++++++-- ...ebform.webform.join_the_movement_confirm.yml | 14 ++++++++++++-- .../sync/webform.webform.june_2020_webinars.yml | 13 ++++++++++++- config/sync/webform.webform.lms.yml | 13 ++++++++++++- config/sync/webform.webform.migrations.yml | 16 ++++++++++++++-- ...form.webform.migrations_training_confirm.yml | 14 ++++++++++++-- config/sync/webform.webform.newsletter.yml | 12 +++++++++++- ...rm.webform.purchase_training_migrate_api.yml | 14 +++++++++++++- config/sync/webform.webform.request.yml | 13 ++++++++++++- config/sync/webform.webform.showandtell.yml | 12 +++++++++++- .../webform.webform.speaker_request_agaric.yml | 13 ++++++++++++- ...rm.webform.speaker_request_clayton_dewey.yml | 15 +++++++++++++-- ...webform.speaker_request_mauricio_dinarte.yml | 15 +++++++++++++-- ...rm.webform.speaker_request_michele_metts.yml | 15 +++++++++++++-- ...form.webform.speaker_request_micky_metts.yml | 15 +++++++++++++-- config/sync/webform.webform.training.yml | 13 ++++++++++++- .../sync/webform.webform.training_discount.yml | 14 +++++++++++++- ...rm.webform.training_notification_request.yml | 12 +++++++++++- .../webform.webform.training_request_draft.yml | 12 +++++++++++- config/sync/webform.webform.workshops.yml | 14 ++++++++++++-- 49 files changed, 440 insertions(+), 53 deletions(-) diff --git a/config/sync/core.base_field_override.group.group.uid.yml b/config/sync/core.base_field_override.group.group.uid.yml index 7a27507..866da8d 100644 --- a/config/sync/core.base_field_override.group.group.uid.yml +++ b/config/sync/core.base_field_override.group.group.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the group creator.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\group\Entity\Group::getCurrentUserId' +default_value_callback: 'Drupal\group\Entity\Group::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.uid.yml b/config/sync/core.base_field_override.group_content.group-group_membership.uid.yml index cbc938b..f14df7e 100644 --- a/config/sync/core.base_field_override.group_content.group-group_membership.uid.yml +++ b/config/sync/core.base_field_override.group_content.group-group_membership.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the group content creator.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\group\Entity\GroupContent::getCurrentUserId' +default_value_callback: 'Drupal\group\Entity\GroupContent::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index 7e238aa..2434e10 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -25,6 +25,7 @@ module: config_actions: 0 config_actions_provider: 0 config_distro: 0 + config_distro_filter: 0 config_filter: 0 config_merge: 0 config_normalizer: 0 @@ -69,6 +70,7 @@ module: drutopia_user: 0 dynamic_page_cache: 0 editor: 0 + entity: 0 entity_reference_revisions: 0 exclude_node_title: 0 facets: 0 @@ -152,6 +154,7 @@ module: ui_patterns_library: 0 update: 0 user: 0 + variationcache: 0 video_embed_field: 0 views_ui: 0 viewsreference: 0 diff --git a/config/sync/exclude_node_title.settings.yml b/config/sync/exclude_node_title.settings.yml index 30a3e85..40c33e6 100644 --- a/config/sync/exclude_node_title.settings.yml +++ b/config/sync/exclude_node_title.settings.yml @@ -9,3 +9,4 @@ content_types: content_type_modes: landing_page: - full +type: remove diff --git a/config/sync/language/es/views.view.block_content.yml b/config/sync/language/es/views.view.block_content.yml index 046da7c..d20ee65 100644 --- a/config/sync/language/es/views.view.block_content.yml +++ b/config/sync/language/es/views.view.block_content.yml @@ -1,3 +1,8 @@ display: + default: + display_options: + fields: + operations: + label: Operaciones page_1: display_title: Página diff --git a/config/sync/language/es/views.view.comment.yml b/config/sync/language/es/views.view.comment.yml index 78da391..e4eccbf 100644 --- a/config/sync/language/es/views.view.comment.yml +++ b/config/sync/language/es/views.view.comment.yml @@ -7,6 +7,8 @@ display: action_title: Acción subject: label: Asunto + operations: + label: Operaciones filters: subject: expose: @@ -27,3 +29,5 @@ display: action_title: Acción subject: label: Asunto + operations: + label: Operaciones diff --git a/config/sync/language/es/views.view.content.yml b/config/sync/language/es/views.view.content.yml index fba10c7..724f307 100644 --- a/config/sync/language/es/views.view.content.yml +++ b/config/sync/language/es/views.view.content.yml @@ -7,6 +7,8 @@ display: label: Título status: label: Estado + operations: + label: Operaciones filters: title: expose: diff --git a/config/sync/language/es/views.view.group_members.yml b/config/sync/language/es/views.view.group_members.yml index 1cc436c..f21fc6d 100644 --- a/config/sync/language/es/views.view.group_members.yml +++ b/config/sync/language/es/views.view.group_members.yml @@ -4,6 +4,8 @@ display: fields: name: label: Usuario + dropbutton: + label: Operaciones title: Miembros page_1: display_title: Página diff --git a/config/sync/language/es/views.view.group_nodes.yml b/config/sync/language/es/views.view.group_nodes.yml index 61e6b26..f38fbad 100644 --- a/config/sync/language/es/views.view.group_nodes.yml +++ b/config/sync/language/es/views.view.group_nodes.yml @@ -6,5 +6,7 @@ display: label: Título status: label: Estado + dropbutton: + label: Operaciones page_1: display_title: Página diff --git a/config/sync/language/es/views.view.redirect_404.yml b/config/sync/language/es/views.view.redirect_404.yml index df64b2c..bd572a7 100644 --- a/config/sync/language/es/views.view.redirect_404.yml +++ b/config/sync/language/es/views.view.redirect_404.yml @@ -4,6 +4,8 @@ display: fields: path: label: Ruta + redirect_404_operations: + label: Operaciones filters: path: expose: diff --git a/config/sync/language/es/views.view.user_admin_people.yml b/config/sync/language/es/views.view.user_admin_people.yml index e108449..86485d7 100644 --- a/config/sync/language/es/views.view.user_admin_people.yml +++ b/config/sync/language/es/views.view.user_admin_people.yml @@ -4,6 +4,8 @@ display: fields: status: label: Estado + operations: + label: Operaciones filters: status: group_info: diff --git a/config/sync/language/es/views.view.watchdog.yml b/config/sync/language/es/views.view.watchdog.yml index 956c403..8523e5a 100644 --- a/config/sync/language/es/views.view.watchdog.yml +++ b/config/sync/language/es/views.view.watchdog.yml @@ -6,5 +6,7 @@ display: label: Fecha name: label: Usuario + link: + label: Operaciones page: display_title: Página diff --git a/config/sync/language/es/views.view.webform_submissions.yml b/config/sync/language/es/views.view.webform_submissions.yml index c78a66c..883a907 100644 --- a/config/sync/language/es/views.view.webform_submissions.yml +++ b/config/sync/language/es/views.view.webform_submissions.yml @@ -4,6 +4,8 @@ display: fields: created: label: Creado + view_webform_submission: + label: Operaciones embed_administer: display_options: fields: @@ -11,6 +13,8 @@ display: action_title: Acción created: label: Creado + operations: + label: Operaciones embed_manage: display_options: fields: @@ -18,8 +22,14 @@ display: 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/sync/language/es/webform.settings.yml b/config/sync/language/es/webform.settings.yml index 5515524..90d0221 100644 --- a/config/sync/language/es/webform.settings.yml +++ b/config/sync/language/es/webform.settings.yml @@ -1,6 +1,7 @@ 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: diff --git a/config/sync/mailchimp.settings.yml b/config/sync/mailchimp.settings.yml index bf7d288..6be99ed 100644 --- a/config/sync/mailchimp.settings.yml +++ b/config/sync/mailchimp.settings.yml @@ -8,3 +8,4 @@ _core: enable_connected: false connected_id: null connected_paths: null +api_timeout: 10 diff --git a/config/sync/user.role.manager.yml b/config/sync/user.role.manager.yml index d58cd33..45897dc 100644 --- a/config/sync/user.role.manager.yml +++ b/config/sync/user.role.manager.yml @@ -28,6 +28,7 @@ permissions: - 'access user profiles' - 'access webform overview' - 'access webform submission user' + - 'administer block visibility groups' - 'administer blocks' - 'administer comments' - 'administer eu cookie compliance popup' diff --git a/config/sync/webform.settings.yml b/config/sync/webform.settings.yml index 6a7a8b0..e07a4cc 100644 --- a/config/sync/webform.settings.yml +++ b/config/sync/webform.settings.yml @@ -10,6 +10,7 @@ settings: default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.' default_submit_button_label: Submit default_reset_button_label: Reset + default_delete_button_label: Delete default_form_submit_once: false default_form_confidential_message: 'This form is confidential. You must Log out to submit it.' default_form_access_denied_message: 'Please login to access this form.' @@ -33,6 +34,8 @@ settings: default_wizard_next_button_label: 'Next Page >' default_wizard_start_label: Start default_wizard_confirmation_label: Complete + default_wizard_toggle_show_label: 'Show all' + default_wizard_toggle_hide_label: 'Hide all' default_preview_next_button_label: Preview default_preview_prev_button_label: '< Previous' default_preview_label: Preview @@ -192,8 +195,6 @@ file: delete_temporary_managed_files: true format: { } mail: - roles: - - staff default_to_mail: '[site:mail]' default_from_mail: '[site:mail]' default_from_name: '[site:name]' @@ -213,6 +214,8 @@ mail:

Submitted by: [webform_submission:user]

Submitted values are:

[webform_submission:values] + roles: + - staff test: types: | checkbox: @@ -301,6 +304,7 @@ ui: offcanvas_disabled: false promotions_disabled: false description_help: true + toolbar_item: false libraries: excluded_libraries: - jquery.chosen @@ -309,6 +313,7 @@ libraries: requirements: cdn: true bootstrap: true + clientside_validation: true spam: true langcode: en third_party_settings: diff --git a/config/sync/webform.webform.attend_the_tech_and_rev_workshop.yml b/config/sync/webform.webform.attend_the_tech_and_rev_workshop.yml index 65d14db..51ea451 100644 --- a/config/sync/webform.webform.attend_the_tech_and_rev_workshop.yml +++ b/config/sync/webform.webform.attend_the_tech_and_rev_workshop.yml @@ -1,3 +1,4 @@ +uuid: 23478458-4054-4226-beac-4aa007c044c3 langcode: en status: open dependencies: { } @@ -43,7 +44,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -103,11 +104,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -153,6 +162,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -202,4 +213,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: 23478458-4054-4226-beac-4aa007c044c3 diff --git a/config/sync/webform.webform.blog_posts.yml b/config/sync/webform.webform.blog_posts.yml index 9f21191..ea9396e 100644 --- a/config/sync/webform.webform.blog_posts.yml +++ b/config/sync/webform.webform.blog_posts.yml @@ -1,3 +1,4 @@ +uuid: d57a0f50-13eb-4c78-a398-7d685d50322f langcode: en status: open dependencies: { } @@ -36,7 +37,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -96,11 +97,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -146,6 +155,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -195,4 +206,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: d57a0f50-13eb-4c78-a398-7d685d50322f diff --git a/config/sync/webform.webform.capacitacion.yml b/config/sync/webform.webform.capacitacion.yml index 41a8f43..c667e1b 100644 --- a/config/sync/webform.webform.capacitacion.yml +++ b/config/sync/webform.webform.capacitacion.yml @@ -1,3 +1,4 @@ +uuid: 1270ffba-cf31-4bfc-8eb3-a5192a1d47ea langcode: en status: open dependencies: { } @@ -54,7 +55,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -114,11 +115,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -166,6 +175,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -215,4 +226,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: 1270ffba-cf31-4bfc-8eb3-a5192a1d47ea diff --git a/config/sync/webform.webform.contact.yml b/config/sync/webform.webform.contact.yml index 9ff8b8d..886e34c 100644 --- a/config/sync/webform.webform.contact.yml +++ b/config/sync/webform.webform.contact.yml @@ -5,8 +5,6 @@ dependencies: enforced: module: - webform -_core: - default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww open: null close: null weight: 0 @@ -57,7 +55,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -117,11 +115,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -167,6 +173,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -218,6 +226,7 @@ handlers: email_notification: id: email label: 'Email notification' + notes: '' handler_id: email_notification status: true conditions: { } @@ -259,3 +268,5 @@ handlers: theme_name: '' parameters: { } variants: { } +_core: + default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww diff --git a/config/sync/webform.webform.contact_confirm.yml b/config/sync/webform.webform.contact_confirm.yml index 66d6ee4..c3efb09 100644 --- a/config/sync/webform.webform.contact_confirm.yml +++ b/config/sync/webform.webform.contact_confirm.yml @@ -1,3 +1,4 @@ +uuid: 9b05041e-37e3-4ee5-ab00-2faa67fdb9f3 langcode: en status: open dependencies: { } @@ -41,7 +42,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -101,11 +102,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -151,6 +160,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -200,4 +211,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: 9b05041e-37e3-4ee5-ab00-2faa67fdb9f3 diff --git a/config/sync/webform.webform.drupal_8_9_content_migrations.yml b/config/sync/webform.webform.drupal_8_9_content_migrations.yml index 3f98fa6..ddfc93b 100644 --- a/config/sync/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/sync/webform.webform.drupal_8_9_content_migrations.yml @@ -60,7 +60,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -120,11 +120,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -173,6 +181,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -224,6 +234,7 @@ handlers: stripe: id: stripe label: Stripe + notes: '' handler_id: stripe status: true conditions: { } @@ -243,6 +254,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.drutopia_intake.yml b/config/sync/webform.webform.drutopia_intake.yml index 247ff58..9d25602 100644 --- a/config/sync/webform.webform.drutopia_intake.yml +++ b/config/sync/webform.webform.drutopia_intake.yml @@ -1,3 +1,4 @@ +uuid: cd3d862d-7e0e-45ca-856d-a4078ff574c8 langcode: en status: open dependencies: { } @@ -67,7 +68,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -127,11 +128,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -177,6 +186,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -226,4 +237,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: cd3d862d-7e0e-45ca-856d-a4078ff574c8 diff --git a/config/sync/webform.webform.drutopia_platform_intake.yml b/config/sync/webform.webform.drutopia_platform_intake.yml index 74a0059..40f1e1c 100644 --- a/config/sync/webform.webform.drutopia_platform_intake.yml +++ b/config/sync/webform.webform.drutopia_platform_intake.yml @@ -39,7 +39,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -99,11 +99,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -149,6 +157,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -200,6 +210,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.find_it_platform.yml b/config/sync/webform.webform.find_it_platform.yml index 639b310..7a2b0f9 100644 --- a/config/sync/webform.webform.find_it_platform.yml +++ b/config/sync/webform.webform.find_it_platform.yml @@ -30,7 +30,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -92,11 +92,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -142,6 +150,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: diff --git a/config/sync/webform.webform.general_services.yml b/config/sync/webform.webform.general_services.yml index c4c8109..30e0a18 100644 --- a/config/sync/webform.webform.general_services.yml +++ b/config/sync/webform.webform.general_services.yml @@ -1,3 +1,4 @@ +uuid: 439948f3-c134-40f5-a8a2-2c2b834e4cf9 langcode: en status: open dependencies: { } @@ -43,7 +44,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -103,11 +104,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -153,6 +162,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -202,4 +213,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: 439948f3-c134-40f5-a8a2-2c2b834e4cf9 diff --git a/config/sync/webform.webform.getting_started_with_drupal_9.yml b/config/sync/webform.webform.getting_started_with_drupal_9.yml index 3e93710..2dfa378 100644 --- a/config/sync/webform.webform.getting_started_with_drupal_9.yml +++ b/config/sync/webform.webform.getting_started_with_drupal_9.yml @@ -60,7 +60,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -120,11 +120,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -173,6 +181,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -224,6 +234,7 @@ handlers: stripe: id: stripe label: Stripe + notes: '' handler_id: stripe status: true conditions: { } @@ -243,6 +254,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.getting_started_with_react_js.yml b/config/sync/webform.webform.getting_started_with_react_js.yml index e534c6a..d4ec4a1 100644 --- a/config/sync/webform.webform.getting_started_with_react_js.yml +++ b/config/sync/webform.webform.getting_started_with_react_js.yml @@ -60,7 +60,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -120,11 +120,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -173,6 +181,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -224,6 +234,7 @@ handlers: stripe: id: stripe label: Stripe + notes: '' handler_id: stripe status: true conditions: { } @@ -243,6 +254,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.join_the_movement.yml b/config/sync/webform.webform.join_the_movement.yml index dd0721c..e49623c 100644 --- a/config/sync/webform.webform.join_the_movement.yml +++ b/config/sync/webform.webform.join_the_movement.yml @@ -1,3 +1,4 @@ +uuid: 31bef3a4-a584-4234-bd2f-ab081d1d5704 langcode: en status: open dependencies: @@ -36,7 +37,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -96,11 +97,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -146,6 +155,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -197,6 +208,7 @@ handlers: mailchimp: id: mailchimp label: MailChimp + notes: '' handler_id: mailchimp status: true conditions: { } @@ -209,4 +221,3 @@ handlers: interest_groups: { } control: '' variants: { } -uuid: 31bef3a4-a584-4234-bd2f-ab081d1d5704 diff --git a/config/sync/webform.webform.join_the_movement_confirm.yml b/config/sync/webform.webform.join_the_movement_confirm.yml index f99f18d..20e9150 100644 --- a/config/sync/webform.webform.join_the_movement_confirm.yml +++ b/config/sync/webform.webform.join_the_movement_confirm.yml @@ -1,3 +1,4 @@ +uuid: e00580b9-1381-408d-8ddc-e8314675680e langcode: en status: open dependencies: { } @@ -26,7 +27,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -86,11 +87,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -136,6 +145,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -185,4 +196,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: e00580b9-1381-408d-8ddc-e8314675680e diff --git a/config/sync/webform.webform.june_2020_webinars.yml b/config/sync/webform.webform.june_2020_webinars.yml index 0b6d9d8..2a6a684 100644 --- a/config/sync/webform.webform.june_2020_webinars.yml +++ b/config/sync/webform.webform.june_2020_webinars.yml @@ -40,7 +40,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -100,11 +100,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -150,6 +158,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -201,6 +211,7 @@ handlers: email: id: email label: 'Webinar notification email' + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.lms.yml b/config/sync/webform.webform.lms.yml index f90997a..611d104 100644 --- a/config/sync/webform.webform.lms.yml +++ b/config/sync/webform.webform.lms.yml @@ -45,7 +45,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -105,11 +105,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -155,6 +163,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -206,6 +216,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.migrations.yml b/config/sync/webform.webform.migrations.yml index 68d61a0..3df0a84 100644 --- a/config/sync/webform.webform.migrations.yml +++ b/config/sync/webform.webform.migrations.yml @@ -1,3 +1,4 @@ +uuid: 51839431-8d15-4b15-b7e6-e0a70dd6f679 langcode: en status: open dependencies: @@ -36,7 +37,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -96,11 +97,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -146,6 +155,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -197,6 +208,7 @@ handlers: mailchimp: id: mailchimp label: MailChimp + notes: '' handler_id: mailchimp status: true conditions: { } @@ -211,6 +223,7 @@ handlers: email: id: email label: 'Migrations email notification' + notes: '' handler_id: email status: true conditions: { } @@ -245,4 +258,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: 51839431-8d15-4b15-b7e6-e0a70dd6f679 diff --git a/config/sync/webform.webform.migrations_training_confirm.yml b/config/sync/webform.webform.migrations_training_confirm.yml index 299ebb8..c39166a 100644 --- a/config/sync/webform.webform.migrations_training_confirm.yml +++ b/config/sync/webform.webform.migrations_training_confirm.yml @@ -1,3 +1,4 @@ +uuid: c45ac27c-cac5-4fc1-9413-f8d60fdd2fbe langcode: en status: open dependencies: { } @@ -30,7 +31,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -90,11 +91,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -140,6 +149,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -189,4 +200,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: c45ac27c-cac5-4fc1-9413-f8d60fdd2fbe diff --git a/config/sync/webform.webform.newsletter.yml b/config/sync/webform.webform.newsletter.yml index 0c1b58d..c532be3 100644 --- a/config/sync/webform.webform.newsletter.yml +++ b/config/sync/webform.webform.newsletter.yml @@ -47,7 +47,7 @@ settings: page: true page_submit_path: /newsletter-signup-form page_confirm_path: /newsletter-signup-thanks - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -107,11 +107,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -157,6 +165,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: diff --git a/config/sync/webform.webform.purchase_training_migrate_api.yml b/config/sync/webform.webform.purchase_training_migrate_api.yml index 0b89ce0..7e93844 100644 --- a/config/sync/webform.webform.purchase_training_migrate_api.yml +++ b/config/sync/webform.webform.purchase_training_migrate_api.yml @@ -60,7 +60,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -120,11 +120,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -173,6 +181,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -224,6 +234,7 @@ handlers: stripe: id: stripe label: Stripe + notes: '' handler_id: stripe status: true conditions: { } @@ -243,6 +254,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.request.yml b/config/sync/webform.webform.request.yml index 250d2a2..3766e13 100644 --- a/config/sync/webform.webform.request.yml +++ b/config/sync/webform.webform.request.yml @@ -37,7 +37,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -97,11 +97,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -147,6 +155,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -198,6 +208,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.showandtell.yml b/config/sync/webform.webform.showandtell.yml index 7b847e1..c1a100c 100644 --- a/config/sync/webform.webform.showandtell.yml +++ b/config/sync/webform.webform.showandtell.yml @@ -77,7 +77,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -137,11 +137,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -187,6 +195,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: diff --git a/config/sync/webform.webform.speaker_request_agaric.yml b/config/sync/webform.webform.speaker_request_agaric.yml index 97b7470..bfa7186 100644 --- a/config/sync/webform.webform.speaker_request_agaric.yml +++ b/config/sync/webform.webform.speaker_request_agaric.yml @@ -151,7 +151,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -213,11 +213,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -263,6 +271,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -314,6 +324,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.speaker_request_clayton_dewey.yml b/config/sync/webform.webform.speaker_request_clayton_dewey.yml index 8cac8ce..9264463 100644 --- a/config/sync/webform.webform.speaker_request_clayton_dewey.yml +++ b/config/sync/webform.webform.speaker_request_clayton_dewey.yml @@ -1,3 +1,4 @@ +uuid: a4189539-46d5-486f-8e0e-ec913e2093e5 langcode: en status: open dependencies: { } @@ -63,7 +64,7 @@ settings: page: true page_submit_path: /people/clayton-dewey/speaking-request page_confirm_path: /people/clayton-dewey/speaking-request-received - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -125,11 +126,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -175,6 +184,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -226,6 +237,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } @@ -260,4 +272,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: a4189539-46d5-486f-8e0e-ec913e2093e5 diff --git a/config/sync/webform.webform.speaker_request_mauricio_dinarte.yml b/config/sync/webform.webform.speaker_request_mauricio_dinarte.yml index 3e49969..84f5863 100644 --- a/config/sync/webform.webform.speaker_request_mauricio_dinarte.yml +++ b/config/sync/webform.webform.speaker_request_mauricio_dinarte.yml @@ -1,3 +1,4 @@ +uuid: 69315a59-1746-485d-873a-1815072dd1d0 langcode: en status: open dependencies: { } @@ -63,7 +64,7 @@ settings: page: true page_submit_path: /people/mauricio-dinarte/speaking-request page_confirm_path: /people/mauricio-dinarte/speaking-request-received - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -125,11 +126,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -175,6 +184,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -226,6 +237,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } @@ -260,4 +272,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: 69315a59-1746-485d-873a-1815072dd1d0 diff --git a/config/sync/webform.webform.speaker_request_michele_metts.yml b/config/sync/webform.webform.speaker_request_michele_metts.yml index 6b33368..e66f1ab 100644 --- a/config/sync/webform.webform.speaker_request_michele_metts.yml +++ b/config/sync/webform.webform.speaker_request_michele_metts.yml @@ -1,3 +1,4 @@ +uuid: ab839464-7156-4b3b-a13b-a5502e429e70 langcode: en status: open dependencies: { } @@ -63,7 +64,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -125,11 +126,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -175,6 +184,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -226,6 +237,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } @@ -260,4 +272,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: ab839464-7156-4b3b-a13b-a5502e429e70 diff --git a/config/sync/webform.webform.speaker_request_micky_metts.yml b/config/sync/webform.webform.speaker_request_micky_metts.yml index d0c811e..67804dc 100644 --- a/config/sync/webform.webform.speaker_request_micky_metts.yml +++ b/config/sync/webform.webform.speaker_request_micky_metts.yml @@ -1,3 +1,4 @@ +uuid: 36bb8d28-cf95-4fe6-a299-aae734f204c9 langcode: en status: closed dependencies: { } @@ -63,7 +64,7 @@ settings: page: true page_submit_path: /people/micky-metts/speaking-request page_confirm_path: /people/micky-metts/speaking-request-received - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -125,11 +126,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -175,6 +184,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -226,6 +237,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } @@ -260,4 +272,3 @@ handlers: theme_name: '' parameters: { } variants: { } -uuid: 36bb8d28-cf95-4fe6-a299-aae734f204c9 diff --git a/config/sync/webform.webform.training.yml b/config/sync/webform.webform.training.yml index a41ac1c..246c1fb 100644 --- a/config/sync/webform.webform.training.yml +++ b/config/sync/webform.webform.training.yml @@ -57,7 +57,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -117,11 +117,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -167,6 +175,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -218,6 +228,7 @@ handlers: email: id: email label: 'Training email notification' + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.training_discount.yml b/config/sync/webform.webform.training_discount.yml index b4d0d78..fcad6d7 100644 --- a/config/sync/webform.webform.training_discount.yml +++ b/config/sync/webform.webform.training_discount.yml @@ -66,7 +66,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: source_entity_webform form_submit_once: false form_exception_message: '' @@ -126,11 +126,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -179,6 +187,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -230,6 +240,7 @@ handlers: stripe: id: stripe label: Stripe + notes: '' handler_id: stripe status: true conditions: { } @@ -249,6 +260,7 @@ handlers: email: id: email label: Email + notes: '' handler_id: email status: true conditions: { } diff --git a/config/sync/webform.webform.training_notification_request.yml b/config/sync/webform.webform.training_notification_request.yml index 061d0db..9f0bcd9 100644 --- a/config/sync/webform.webform.training_notification_request.yml +++ b/config/sync/webform.webform.training_notification_request.yml @@ -52,7 +52,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -112,11 +112,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -162,6 +170,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: diff --git a/config/sync/webform.webform.training_request_draft.yml b/config/sync/webform.webform.training_request_draft.yml index 7af593b..c1fdb80 100644 --- a/config/sync/webform.webform.training_request_draft.yml +++ b/config/sync/webform.webform.training_request_draft.yml @@ -46,7 +46,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -106,11 +106,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -156,6 +164,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: diff --git a/config/sync/webform.webform.workshops.yml b/config/sync/webform.webform.workshops.yml index a5b559c..c38d4aa 100644 --- a/config/sync/webform.webform.workshops.yml +++ b/config/sync/webform.webform.workshops.yml @@ -1,3 +1,4 @@ +uuid: 4a21f8bf-6290-4198-852f-20ab29d8a72a langcode: en status: open dependencies: { } @@ -27,7 +28,7 @@ settings: page: true page_submit_path: '' page_confirm_path: '' - page_admin_theme: false + page_theme_name: '' form_title: both form_submit_once: false form_exception_message: '' @@ -87,11 +88,19 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' wizard_track: '' + wizard_prev_button_label: '' + wizard_next_button_label: '' + wizard_toggle: false + wizard_toggle_show_label: '' + wizard_toggle_hide_label: '' preview: 0 preview_label: '' preview_title: '' @@ -137,6 +146,8 @@ settings: results_customize: false token_view: false token_update: false + token_delete: false + serial_disabled: false access: create: roles: @@ -186,4 +197,3 @@ access: permissions: { } handlers: { } variants: { } -uuid: 4a21f8bf-6290-4198-852f-20ab29d8a72a From 3855ddb4e399ec9fed3c2d818ec7f5acd9fc18af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 21 Apr 2021 23:34:09 -0400 Subject: [PATCH 041/236] Commit updated composer lock file --- composer.lock | 196 ++++++++++++++++---------------------------------- 1 file changed, 62 insertions(+), 134 deletions(-) diff --git a/composer.lock b/composer.lock index 4f46840..ba55b74 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "9ba00a0d873c07987df2cba36a28d448", + "content-hash": "4ed66379c4ff91bf2850dbbc4c7476a8", "packages": [ { "name": "algolia/places", @@ -204,16 +204,16 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "1.32.1", + "version": "1.33.1", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749" + "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", - "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388", + "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388", "shasum": "" }, "require": { @@ -223,6 +223,9 @@ "symfony/filesystem": "^2.7 || ^3.4 || ^4.0", "twig/twig": "^1.41 || ^2.12" }, + "conflict": { + "drush/drush": "< 10.3.2" + }, "bin": [ "bin/dcg" ], @@ -247,9 +250,9 @@ "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/1.32.1" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1" }, - "time": "2020-07-15T06:08:04+00:00" + "time": "2020-12-05T05:59:11+00:00" }, { "name": "choices/choices", @@ -3325,20 +3328,23 @@ }, { "name": "drupal/config_filter", - "version": "1.8.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-1.8" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "5def5f97e79d6f5af6bb7007f012443475c90bfe" + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "dc6bc8107255066507cfc1d6766e664c3673cda0" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8.8 || ^9" + }, + "conflict": { + "drush/drush": "<10" }, "suggest": { "drupal/config_split": "Split site configuration for different environments." @@ -3346,8 +3352,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1603870062", + "version": "8.x-2.2", + "datestamp": "1601934694", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6809,30 +6815,19 @@ }, { "name": "drupal/gdpr", - "version": "2.0.0-alpha7", + "version": "dev-2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "8.x-2.0-alpha7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gdpr-8.x-2.0-alpha7.zip", - "reference": "8.x-2.0-alpha7", - "shasum": "07d2ebdd811e069f564bdd27158a67e17d031679" + "reference": "8777999faf3f6483d79fa9a5a40b789bb6590d49" }, "require": { - "cweagans/composer-patches": "~1.0", "drupal/checklistapi": "^1.0", - "drupal/core": "~8.4", + "drupal/core": "^8 || ^9", "drupal/entity": "^1.0", - "drupal/entity_reference_revisions": "^1.4", + "drupal/entity_reference_revisions": "^1.8", "drupal/message": "^1.0", - "drupal/token": "^1.1", - "drush/drush": "~9.0", - "ext-zip": "*", - "fzaninotto/faker": "^1.7", - "php": "^7.1" + "drupal/token": "^1.7" }, "require-dev": { "drupal/anonymizer": "*", @@ -6842,11 +6837,19 @@ "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": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "8.x-2.0-alpha7", - "datestamp": "1552919885", + "version": "8.x-2.0-alpha7+27-dev", + "datestamp": "1594399233", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -10199,51 +10202,46 @@ }, { "name": "drush/drush", - "version": "9.7.3", + "version": "10.3.6", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210" + "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210", - "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a", + "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.28.1", - "composer/semver": "^1.4", - "consolidation/annotated-command": "^2.12", + "chi-teck/drupal-code-generator": "^1.32.1", + "composer/semver": "^1.4 || ^3", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", - "consolidation/output-formatters": "^3.3.1", - "consolidation/robo": "^1.4.6", + "consolidation/robo": "^1.4.11 || ^2", "consolidation/site-alias": "^3.0.0@stable", - "consolidation/site-process": "^2.0.3", + "consolidation/site-process": "^2.1 || ^4", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", + "guzzlehttp/guzzle": "^6.3 || ^7.0", "league/container": "~2", - "php": ">=5.6.0", + "php": ">=7.1.3", "psr/log": "~1.0", "psy/psysh": "~0.6", - "symfony/console": "^3.4", "symfony/event-dispatcher": "^3.4 || ^4.0", - "symfony/finder": "^3.4 || ^4.0", - "symfony/process": "^3.4", - "symfony/var-dumper": "^3.4 || ^4.0", - "symfony/yaml": "^3.4", - "webflo/drupal-finder": "^1.1", + "symfony/finder": "^3.4 || ^4.0 || ^5", + "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", + "symfony/yaml": "^3.4 || ^4.0", + "webflo/drupal-finder": "^1.2", "webmozart/path-util": "^2.1.0" }, "require-dev": { - "composer/installers": "^1.2", + "composer/installers": "^1.7", "cweagans/composer-patches": "~1.0", + "david-garcia/phpwhois": "4.3.0", "drupal/alinks": "1.0.0", - "drupal/core-recommended": "^8.9", - "drupal/devel": "^2", - "drupal/empty_theme": "1.0", - "g1a/composer-test-scenarios": "^3", + "drupal/core-recommended": "^8.8", "lox/xhprof": "dev-master", "phpunit/phpunit": "^4.8.36 || ^6.1", "squizlabs/php_codesniffer": "^2.7 || ^3", @@ -10279,21 +10277,6 @@ "sut/drush/contrib/{$name}": [ "type:drupal-drush" ] - }, - "scenarios": { - "php5": { - "config": { - "platform": { - "php": "5.6.38" - } - }, - "require-dev": { - "drupal/core-recommended": "~8.6.0" - } - } - }, - "branch-alias": { - "dev-master": "9.x-dev" } }, "autoload": { @@ -10347,7 +10330,7 @@ "irc": "irc://irc.freenode.org/drush", "issues": "https://github.com/drush-ops/drush/issues", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/9.7.3" + "source": "https://github.com/drush-ops/drush/tree/10.3.6" }, "funding": [ { @@ -10355,7 +10338,7 @@ "type": "github" } ], - "time": "2021-03-22T17:00:48+00:00" + "time": "2020-11-11T04:36:51+00:00" }, { "name": "drutopia/drutopia", @@ -10695,61 +10678,6 @@ }, "time": "2018-12-11T22:56:31+00:00" }, - { - "name": "fzaninotto/faker", - "version": "v1.9.2", - "source": { - "type": "git", - "url": "https://github.com/fzaninotto/Faker.git", - "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", - "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", - "shasum": "" - }, - "require": { - "php": "^5.3.3 || ^7.0" - }, - "require-dev": { - "ext-intl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^2.9.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, - "autoload": { - "psr-4": { - "Faker\\": "src/Faker/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "François Zaninotto" - } - ], - "description": "Faker is a PHP library that generates fake data for you.", - "keywords": [ - "data", - "faker", - "fixtures" - ], - "support": { - "issues": "https://github.com/fzaninotto/Faker/issues", - "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2" - }, - "abandoned": true, - "time": "2020-12-11T09:56:16+00:00" - }, { "name": "grasmash/expander", "version": "1.0.0", @@ -14088,20 +14016,20 @@ }, { "name": "symfony/finder", - "version": "v4.4.20", + "version": "v5.2.4", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6" + "reference": "0d639a0943822626290d169965804f79400e6a04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6", - "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6", + "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04", + "reference": "0d639a0943822626290d169965804f79400e6a04", "shasum": "" }, "require": { - "php": ">=7.1.3" + "php": ">=7.2.5" }, "type": "library", "autoload": { @@ -14129,7 +14057,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v4.4.20" + "source": "https://github.com/symfony/finder/tree/v5.2.4" }, "funding": [ { @@ -14145,7 +14073,7 @@ "type": "tidelift" } ], - "time": "2021-02-12T10:48:09+00:00" + "time": "2021-02-15T18:55:04+00:00" }, { "name": "symfony/http-foundation", From 2b2094454558c5fc6fb384a49c59688946654c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 2 Jul 2021 12:57:45 -0400 Subject: [PATCH 042/236] Update dependencies --- composer.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index d0d9d2d..48a25c5 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ "drupal/drutopia_site": "dev-1.x", "drupal/google_analytics": "^2.3", "drupal/honeypot": "^1.29", - "drupal/hotjar": "^1.2", + "drupal/hotjar": "^1.5", "drupal/http_cache_control": "^1.0", "drupal/http_client_error_status": "^1.0", "drupal/indieweb": "1.x-dev", @@ -58,13 +58,12 @@ "drupal/twigsuggest": "1.x-dev", "drupal/ui_patterns": "^1.0@RC", "drupal/viewsreference": "^1.2", - "drupal/webform": "^5.0@RC", + "drupal/webform": "^6.0", "drupal/webform_mailchimp": "^5.4", "drupal/wysiwyg_linebreaks": "^1.9", "drush/drush": "^10.0", "drutopia/drutopia": "^1.0-beta1", - "wikimedia/composer-merge-plugin": "^2.0", - "zaporylie/composer-drupal-optimizations": "^1.0" + "wikimedia/composer-merge-plugin": "^2.0" }, "require-dev": { "behat/behat": "^3.4", From 9642c21c01b5b88120c4112f537216ae2b79c068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 06:52:52 -0400 Subject: [PATCH 043/236] Commit meaningless ddev update --- .ddev/.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 28eb786..5003016 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -16,8 +16,8 @@ /commands/.gitattributes /commands/db/mysql /commands/host/launch -/commands/web/live /commands/web/xdebug +/commands/web/live /config.*.y*ml /db_snapshots /import-db From 53a80038ff47a1fd9b38892a3fa681b293361e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 06:59:52 -0400 Subject: [PATCH 044/236] Commit updated composer lock with very many minor version updates --- composer.lock | 1146 ++++++++++++++++++++++++++++++------------------- 1 file changed, 694 insertions(+), 452 deletions(-) diff --git a/composer.lock b/composer.lock index ba55b74..91ce467 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4ed66379c4ff91bf2850dbbc4c7476a8", + "content-hash": "d8fef263ce189cf052aed138c3acd6bc", "packages": [ { "name": "algolia/places", @@ -271,10 +271,10 @@ }, { "name": "ckeditor/autogrow", - "version": "4.14.1", + "version": "4.16.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.14.1.zip" + "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.16.1.zip" }, "require": { "composer/installers": "~1.0" @@ -301,10 +301,10 @@ }, { "name": "ckeditor/fakeobjects", - "version": "4.14.1", + "version": "4.16.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.1.zip" + "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.16.1.zip" }, "require": { "composer/installers": "~1.0" @@ -316,10 +316,10 @@ }, { "name": "ckeditor/image", - "version": "4.14.1", + "version": "4.16.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/image/releases/image_4.14.1.zip" + "url": "https://download.ckeditor.com/image/releases/image_4.16.1.zip" }, "require": { "composer/installers": "~1.0" @@ -331,10 +331,10 @@ }, { "name": "ckeditor/link", - "version": "4.14.1", + "version": "4.16.1", "dist": { "type": "zip", - "url": "https://download.ckeditor.com/link/releases/link_4.14.1.zip" + "url": "https://download.ckeditor.com/link/releases/link_4.16.1.zip" }, "require": { "composer/installers": "~1.0" @@ -346,10 +346,10 @@ }, { "name": "codemirror/codemirror", - "version": "5.53.2", + "version": "5.61.1", "dist": { "type": "zip", - "url": "https://github.com/components/codemirror/archive/5.53.2.zip" + "url": "https://github.com/components/codemirror/archive/5.61.1.zip" }, "require": { "composer/installers": "~1.0" @@ -361,16 +361,16 @@ }, { "name": "commerceguys/addressing", - "version": "v1.2.0", + "version": "v1.2.1", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a" + "reference": "311040bd78ea2ea82105dd1f17205c449ac8de47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/00c263fa945e7f78524bbb6b99d331f3b493be2a", - "reference": "00c263fa945e7f78524bbb6b99d331f3b493be2a", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/311040bd78ea2ea82105dd1f17205c449ac8de47", + "reference": "311040bd78ea2ea82105dd1f17205c449ac8de47", "shasum": "" }, "require": { @@ -418,22 +418,22 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v1.2.0" + "source": "https://github.com/commerceguys/addressing/tree/v1.2.1" }, - "time": "2021-03-14T20:04:10+00:00" + "time": "2021-05-17T08:05:21+00:00" }, { "name": "composer/installers", - "version": "v1.10.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d" + "reference": "ae03311f45dfe194412081526be2e003960df74b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d", - "reference": "1a0357fccad9d1cc1ea0c9a05b8847fbccccb78d", + "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b", + "reference": "ae03311f45dfe194412081526be2e003960df74b", "shasum": "" }, "require": { @@ -527,6 +527,7 @@ "majima", "mako", "mediawiki", + "miaoxing", "modulework", "modx", "moodle", @@ -544,6 +545,7 @@ "sydes", "sylius", "symfony", + "tastyigniter", "typo3", "wordpress", "yawik", @@ -552,7 +554,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v1.10.0" + "source": "https://github.com/composer/installers/tree/v1.11.0" }, "funding": [ { @@ -568,7 +570,7 @@ "type": "tidelift" } ], - "time": "2021-01-14T11:07:16+00:00" + "time": "2021-04-28T06:42:17+00:00" }, { "name": "composer/semver", @@ -1455,16 +1457,16 @@ }, { "name": "cweagans/composer-patches", - "version": "1.7.0", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf" + "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/ae02121445ad75f4eaff800cc532b5e6233e2ddf", - "reference": "ae02121445ad75f4eaff800cc532b5e6233e2ddf", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c", + "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c", "shasum": "" }, "require": { @@ -1497,9 +1499,9 @@ "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.0" + "source": "https://github.com/cweagans/composer-patches/tree/1.7.1" }, - "time": "2020-09-30T17:56:20+00:00" + "time": "2021-06-08T15:12:46+00:00" }, { "name": "dflydev/dot-access-data", @@ -2230,7 +2232,7 @@ }, { "name": "drupal/admin_toolbar_links_access_filter", - "version": "3.0.0", + "version": "3.0.1", "require": { "drupal/admin_toolbar": "*", "drupal/core": "^8.8.0 || ^9.0" @@ -2238,8 +2240,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "3.0.0", - "datestamp": "1611311186", + "version": "3.0.1", + "datestamp": "1622644077", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2288,7 +2290,7 @@ }, { "name": "drupal/admin_toolbar_tools", - "version": "3.0.0", + "version": "3.0.1", "require": { "drupal/admin_toolbar": "*", "drupal/core": "^8.8.0 || ^9.0" @@ -2296,8 +2298,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "3.0.0", - "datestamp": "1611311186", + "version": "3.0.1", + "datestamp": "1622644077", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2380,6 +2382,10 @@ { "name": "floretan", "homepage": "https://www.drupal.org/user/66163" + }, + { + "name": "nord102", + "homepage": "https://www.drupal.org/user/3471419" } ], "description": "Limit which text formats are available for each field instance.", @@ -2703,17 +2709,17 @@ }, { "name": "drupal/captcha", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "2eaf6f00ea256652c09f785b26dc933cc5b3dd26" + "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "e35a2ce42b652f833d140f7571d1eef0e06b0edc" }, "require": { "drupal/core": "^8.8 || ^9" @@ -2721,8 +2727,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591160977", + "version": "8.x-1.2", + "datestamp": "1619673374", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3859,16 +3865,16 @@ }, { "name": "drupal/core", - "version": "8.9.14", + "version": "8.9.16", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "84796e158cd3bd50af08974dd62931d0cc78dc7e" + "reference": "498effa27ae5111f53f04fbe80fd05369a88c53d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/84796e158cd3bd50af08974dd62931d0cc78dc7e", - "reference": "84796e158cd3bd50af08974dd62931d0cc78dc7e", + "url": "https://api.github.com/repos/drupal/core/zipball/498effa27ae5111f53f04fbe80fd05369a88c53d", + "reference": "498effa27ae5111f53f04fbe80fd05369a88c53d", "shasum": "" }, "require": { @@ -4087,13 +4093,13 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/8.9.14" + "source": "https://github.com/drupal/core/tree/8.9.16" }, - "time": "2021-04-20T23:05:40+00:00" + "time": "2021-05-25T09:17:58+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.14", + "version": "8.9.16", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -4137,22 +4143,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.5" + "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4" }, "time": "2020-08-07T22:30:30+00:00" }, { "name": "drupal/core-recommended", - "version": "8.9.14", + "version": "8.9.16", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "4e468b0df84cdcf6f30594feb4e080c5c6ea7ab3" + "reference": "ec38f5cb75ca1848f2247a645d4a4dee4abe4c28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/4e468b0df84cdcf6f30594feb4e080c5c6ea7ab3", - "reference": "4e468b0df84cdcf6f30594feb4e080c5c6ea7ab3", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ec38f5cb75ca1848f2247a645d4a4dee4abe4c28", + "reference": "ec38f5cb75ca1848f2247a645d4a4dee4abe4c28", "shasum": "" }, "require": { @@ -4164,7 +4170,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.14", + "drupal/core": "8.9.16", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4177,7 +4183,7 @@ "laminas/laminas-zendframework-bridge": "1.0.4", "masterminds/html5": "2.3.0", "paragonie/random_compat": "v9.99.99", - "pear/archive_tar": "1.4.12", + "pear/archive_tar": "1.4.13", "pear/console_getopt": "v1.4.3", "pear/pear-core-minimal": "v1.10.10", "pear/pear_exception": "v1.0.1", @@ -4222,32 +4228,32 @@ ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/8.9.14" + "source": "https://github.com/drupal/core-recommended/tree/8.9.16" }, - "time": "2021-04-20T23:05:40+00:00" + "time": "2021-05-25T09:17:58+00:00" }, { "name": "drupal/crop", - "version": "1.5.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-1.5" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "c03541907d59874ca8a81f574258f6c0de8cbdc8" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1516357085", + "version": "8.x-2.1", + "datestamp": "1585251827", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4285,17 +4291,17 @@ }, { "name": "drupal/ctools", - "version": "3.5.0", + "version": "3.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "8.x-3.5" + "reference": "8.x-3.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.5.zip", - "reference": "8.x-3.5", - "shasum": "0113cd1e787ff3bde088c836c2d79d14136b0013" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip", + "reference": "8.x-3.7", + "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e" }, "require": { "drupal/core": "^8.8 || ^9" @@ -4303,8 +4309,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.5", - "datestamp": "1618592931", + "version": "8.x-3.7", + "datestamp": "1623860918", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4641,21 +4647,21 @@ }, { "name": "drupal/drutopia_action", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_action.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_action-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "97f778fc126e9f6107bffcf9b89185a42e39e74c" + "url": "https://ftp.drupal.org/files/projects/drutopia_action-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "152af38111c9a134d83a9a1d3008ff22eb1b733e" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", "drupal/drutopia_site": "*", @@ -4671,8 +4677,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214664", + "version": "8.x-1.1", + "datestamp": "1621285719", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4725,22 +4731,22 @@ }, { "name": "drupal/drutopia_article", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_article.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_article-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "41358f80e06b26cad2065fc74b60397138a7b132" + "url": "https://ftp.drupal.org/files/projects/drutopia_article-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "b354a30fb179eb3ef7d3150efc6c2c6100fa72ee" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", @@ -4761,8 +4767,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214723", + "version": "8.x-1.1", + "datestamp": "1621286116", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4807,22 +4813,22 @@ }, { "name": "drupal/drutopia_blog", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_blog.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_blog-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f92291e5a1a2ba2c2724fe63a5cd743f4c2649d6" + "url": "https://ftp.drupal.org/files/projects/drutopia_blog-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "6667fbe0a2567e6e82e8b382b11d77affc46e8ad" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", @@ -4843,8 +4849,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214767", + "version": "8.x-1.1", + "datestamp": "1621286219", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4896,25 +4902,27 @@ }, { "name": "drupal/drutopia_campaign", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_campaign.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f4135d8e51e63ad5c66b97c9a5de67902f81355f" + "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "9fef0bb6103eb3a07100ba87978223d74c5c4bed" }, "require": { + "drupal/block_visibility_groups": "*", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "^1.0", "drupal/drutopia_seo": "^1.0", "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", + "drupal/facets": "*", "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/metatag": "*", @@ -4925,8 +4933,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214813", + "version": "8.x-1.1", + "datestamp": "1621286321", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4978,28 +4986,28 @@ }, { "name": "drupal/drutopia_comment", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_comment.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_comment-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "fa259408f8d3750a9ceedc45aa6c1714913ca13e" + "url": "https://ftp.drupal.org/files/projects/drutopia_comment-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "f6f9a8e2279d46df1adfa66b507f2a8c687f4e86" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214864", + "version": "8.x-1.1", + "datestamp": "1621286434", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5058,21 +5066,21 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_core.git", - "reference": "e0750f22b4325aec04a479dc428c8739fec48f39" + "reference": "13299289df05de2aeb4ac6625cad45bbd53f343d" }, "require": { - "drupal/config_actions": "^1.1", - "drupal/config_perms": "^2.0-beta2", - "drupal/core": "^8.8", - "drupal/crop": "^1.5", - "drupal/ds": "^3.7", + "drupal/config_actions": "^1.3", + "drupal/config_perms": "^2.0", + "drupal/core": "^8.9 || ^9", + "drupal/crop": "^2.1", + "drupal/ds": "^3.12", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^1.5", - "drupal/faqfield": "^1.1", - "drupal/focal_point": "^1.4", - "drupal/metatag": "^1.13", + "drupal/facets": "^1.8", + "drupal/faqfield": "^7.0", + "drupal/focal_point": "^1.5", + "drupal/metatag": "^1.16", "drupal/paragraphs": "^1.12", - "drupal/search_api": "^1.17", + "drupal/search_api": "^1.19", "drupal/search_api_db": "*", "drupal/video_embed_field": "^2.4" }, @@ -5082,8 +5090,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0+2-dev", - "datestamp": "1611594376", + "version": "8.x-1.2+0-dev", + "datestamp": "1622150366", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -5139,22 +5147,22 @@ }, { "name": "drupal/drutopia_event", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_event.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_event-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "cf598b86dc55e324f3f0d7bea796789c37defeac" + "url": "https://ftp.drupal.org/files/projects/drutopia_event-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "9296f027401941107cc3099d5879e5ad8b3234a3" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5172,8 +5180,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214946", + "version": "8.x-1.1", + "datestamp": "1621286639", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5225,23 +5233,23 @@ }, { "name": "drupal/drutopia_group", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_group.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_group-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "3c009a4bdb9139cd8f599d633f0a3d579775c0f8" + "url": "https://ftp.drupal.org/files/projects/drutopia_group-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "6a7836d4663d76303b3a5c3fabb859ef69eb007d" }, "require": { "drupal/address": "^1.8", "drupal/config_actions": "*", "drupal/config_perms": "*", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "*", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", @@ -5254,8 +5262,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591214977", + "version": "8.x-1.1", + "datestamp": "1621286726", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5307,22 +5315,22 @@ }, { "name": "drupal/drutopia_landing_page", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", - "reference": "8.x-1.0" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_landing_page-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "3bcd4a176c3961e870c2903480b33eac9d696e4c" + "url": "https://ftp.drupal.org/files/projects/drutopia_landing_page-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "de8d56c0112ce748e9a3e6bc0e4018e8cce2e24f" }, "require": { "cweagans/composer-patches": "^1.5.0", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5337,8 +5345,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215018", + "version": "8.x-1.2", + "datestamp": "1624383397", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5390,21 +5398,21 @@ }, { "name": "drupal/drutopia_page", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_page.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_page-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "ffaed1879acd8e3f7ff65df69d9b98203a2b580c" + "url": "https://ftp.drupal.org/files/projects/drutopia_page-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "741582b9a39009fb0dc8459e01cf8f95ad63d76b" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5418,8 +5426,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215057", + "version": "8.x-1.1", + "datestamp": "1621287140", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5470,21 +5478,21 @@ }, { "name": "drupal/drutopia_people", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_people.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_people-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f78f614330448665cfc59f3f8698bc06593d0109" + "url": "https://ftp.drupal.org/files/projects/drutopia_people-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "3523571dacf8e8eaf49e76dff644705141efb4e7" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "*", "drupal/drutopia_core": "^1.0", "drupal/drutopia_seo": "^1.0", @@ -5500,8 +5508,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215089", + "version": "8.x-1.1", + "datestamp": "1621287220", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5556,29 +5564,29 @@ }, { "name": "drupal/drutopia_related_content", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_related_content.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "c632edf4b56c435f3055f5d1117b8ab00fafa6cd" + "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "79c84c8f47e9b48cf8fcbbd284f265b65518bd3b" }, "require": { "drupal/block_visibility_groups": "^1.3", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "^1.0-beta3", "drupal/similarterms": "^1.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215142", + "version": "8.x-1.1", + "datestamp": "1621287575", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5630,22 +5638,22 @@ }, { "name": "drupal/drutopia_resource", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_resource.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_resource-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "1f0100c3c9d5c93361a2df20a51e5aedf2d50cd2" + "url": "https://ftp.drupal.org/files/projects/drutopia_resource-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "fceb8271f7477483b701efb8e8627c3495db5e2b" }, "require": { "drupal/block_visibility_groups": "^1.3", "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^1.0", @@ -5664,8 +5672,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215175", + "version": "8.x-1.1", + "datestamp": "1621289334", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5720,21 +5728,21 @@ }, { "name": "drupal/drutopia_search", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_search.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_search-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "a4f404521dca59a3be844e3fe8e896f1c5b9b83a" + "url": "https://ftp.drupal.org/files/projects/drutopia_search-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "eb8f7c7c6b1df8a7dd68a4d92f27054063f978b3" }, "require": { "drupal/block_visibility_groups": "^1.3", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "^1.0", "drupal/facets": "*", "drupal/search_api": "*", @@ -5743,8 +5751,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215256", + "version": "8.x-1.1", + "datestamp": "1621287820", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5796,21 +5804,21 @@ }, { "name": "drupal/drutopia_seo", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_seo.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_seo-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "7609299b49a5393a7b3fcbc58b3606a63c86f33a" + "url": "https://ftp.drupal.org/files/projects/drutopia_seo-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "af41f9c756d958f4b3afd076b737608f52c5a8e2" }, "require": { "drupal/config_actions": "^1.1", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "*", "drupal/metatag": "^1.13", "drupal/redirect": "^1.6", @@ -5819,8 +5827,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215275", + "version": "8.x-1.1", + "datestamp": "1621287991", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5879,7 +5887,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "32be42a3a1a8957189d27bbf973238399a1668ae" + "reference": "eb914783d49bcd402920cc24b45ac60aa31b2783" }, "require": { "drupal/admin_toolbar": "^2.2", @@ -5888,7 +5896,7 @@ "drupal/autosave_form": "^1.1", "drupal/ckeditorheight": "^1.8", "drupal/config_actions": "^1.1", - "drupal/core": "^8 || ^9", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "^1.0", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", @@ -5903,8 +5911,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0+1-dev", - "datestamp": "1596662672", + "version": "8.x-1.0+2-dev", + "datestamp": "1619128425", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -5955,27 +5963,27 @@ }, { "name": "drupal/drutopia_social", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_social.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_social-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "4b3e33fa332417b498dcb470c55d19df4973dd26" + "url": "https://ftp.drupal.org/files/projects/drutopia_social-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "a000b52043b7fb81be18f325c0d4e694ec560191" }, "require": { - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/social_media_links": "^2.6" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215359", + "version": "8.x-1.1", + "datestamp": "1621288156", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6020,21 +6028,21 @@ }, { "name": "drupal/drutopia_storyline", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_storyline.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_storyline-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "9922b7986256b7c758443ae0120fbb90c30ad92c" + "url": "https://ftp.drupal.org/files/projects/drutopia_storyline-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "1f62443c7ad316b45d09b51f6a1e00fcfd1e2030" }, "require": { "drupal/config_actions": "*", - "drupal/core": "^8", + "drupal/core": "^8.9 || ^9", "drupal/drutopia_core": "^1.0", "drupal/drutopia_page": "^1.0", "drupal/entity_reference_revisions": "*", @@ -6048,8 +6056,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215426", + "version": "8.x-1.1", + "datestamp": "1621288236", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6102,26 +6110,26 @@ }, { "name": "drupal/drutopia_user", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_user.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_user-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "54394ff756a2ad08cddfb57cbdccbb0ccd5987b0" + "url": "https://ftp.drupal.org/files/projects/drutopia_user-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "371aaddc62123b7e635d3f16531462472871a4e8" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8.9 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215448", + "version": "8.x-1.1", + "datestamp": "1621288305", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6176,17 +6184,17 @@ }, { "name": "drupal/ds", - "version": "3.12.0", + "version": "3.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.12" + "reference": "8.x-3.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.12.zip", - "reference": "8.x-3.12", - "shasum": "0df49ccc28af94186a6c08aa4233f435c539b273" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.13.zip", + "reference": "8.x-3.13", + "shasum": "86c87f1bf845d26594ae3ce0061d8f311bdce73c" }, "require": { "drupal/core": "^8.8 || ^9" @@ -6198,8 +6206,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.12", - "datestamp": "1615995335", + "version": "8.x-3.13", + "datestamp": "1624456614", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6492,29 +6500,32 @@ }, { "name": "drupal/facets", - "version": "1.7.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "8.x-1.7" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "5a8a1092617c4dde96f691e23300d0d436c5fcb3" + "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "f621b84b59c5315db14a0529df5dfc74ca5bc9de" }, "require": { "drupal/core": "^8.8 || ^9" }, + "conflict": { + "drupal/search_api": "<1.14" + }, "require-dev": { - "drupal/search_api": "~1.5" + "drupal/search_api": "~1.14" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1613751460", + "version": "8.x-1.8", + "datestamp": "1620838256", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6560,26 +6571,27 @@ }, { "name": "drupal/faqfield", - "version": "1.1.0", + "version": "7.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/faqfield.git", - "reference": "8.x-1.1" + "reference": "8.x-7.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "61aeccae9ebf2347567df1a891772e88e9452aa6" + "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-7.0.zip", + "reference": "8.x-7.0", + "shasum": "8788719564a23c1b8472568b9c9b15593d61e1c8" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui_accordion": "^1.1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1519216085", + "version": "8.x-7.0", + "datestamp": "1591226895", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6819,7 +6831,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "8777999faf3f6483d79fa9a5a40b789bb6590d49" + "reference": "225604a11eb04cce2df302ac285f90e06af65641" }, "require": { "drupal/checklistapi": "^1.0", @@ -6848,8 +6860,8 @@ "dev-2.x": "2.x-dev" }, "drupal": { - "version": "8.x-2.0-alpha7+27-dev", - "datestamp": "1594399233", + "version": "8.x-2.0-alpha7+30-dev", + "datestamp": "1621970422", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -6870,6 +6882,14 @@ "name": "Kosa Ilma", "homepage": "https://www.drupal.org/user/3435475" }, + { + "name": "alexdmccabe", + "homepage": "https://www.drupal.org/user/1358588" + }, + { + "name": "andrewbelcher", + "homepage": "https://www.drupal.org/user/655282" + }, { "name": "back-2-95", "homepage": "https://www.drupal.org/user/327328" @@ -6919,7 +6939,7 @@ }, { "name": "drupal/gnode", - "version": "1.3.0", + "version": "1.4.0", "require": { "drupal/core": "^8.8 || ^9", "drupal/group": "*" @@ -6927,8 +6947,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1601990196", + "version": "8.x-1.4", + "datestamp": "1625063515", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7024,28 +7044,28 @@ }, { "name": "drupal/group", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/group.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "167129a35353800e7ec1dc3302a4de7da1dae837" + "url": "https://ftp.drupal.org/files/projects/group-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "385a70f421dc3142c9c91876ac8b35ae3afa107e" }, "require": { "drupal/core": "^8.9 || ^9", - "drupal/entity": "^1.0", + "drupal/entity": "^1.2", "drupal/variationcache": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1601990196", + "version": "8.x-1.4", + "datestamp": "1625063515", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7329,6 +7349,139 @@ "source": "https://git.drupalcode.org/project/indieweb" } }, + { + "name": "drupal/jquery_ui", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui.git", + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.4", + "datestamp": "1582149957", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "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": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "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": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "988a3da3b0bc3042e2f42fd20e401272f8369bbd" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1584106477", + "security-coverage": { + "status": "covered", + "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/mailchimp", "version": "2.0.2", @@ -7606,17 +7759,17 @@ }, { "name": "drupal/menu_block", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "3da96af15c3a5f5f1966e28b6e87b74228617998" + "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "6d021a24a6a8691becbecf02ac236a7d8626d4d0" }, "require": { "drupal/core": "^8 || ^9" @@ -7624,8 +7777,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1587721600", + "version": "8.x-1.7", + "datestamp": "1619638238", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7965,6 +8118,10 @@ "name": "drupalspoons", "homepage": "https://www.drupal.org/user/3647684" }, + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, { "name": "mikeryan", "homepage": "https://www.drupal.org/user/4420" @@ -8037,30 +8194,27 @@ }, { "name": "drupal/minimalhtml", - "version": "1.2.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "8.x-1.2" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/minimalhtml-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "7c40d8d7da7882f3562fd371d0fff10419dae682" + "url": "https://ftp.drupal.org/files/projects/minimalhtml-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "5bcee953dc62eccccbc8f915a98528a603a67c99" }, "require": { "drupal/core": "^8 || ^9", "drupal/wysiwyg_linebreaks": "^1.9" }, - "require-dev": { - "drupal/wysiwyg_linebreaks": "*" - }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1599750975", + "version": "8.x-1.4", + "datestamp": "1625523944", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8298,17 +8452,17 @@ }, { "name": "drupal/paragraphs_features", - "version": "1.11.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "8.x-1.11" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "1fc02d1c72cfcce0dab40aa115f8da211712ab73" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "62b30c1f145929c2027b329eed300fcacbc2ae44" }, "require": { "drupal/core": "^8.7.7 || ^9", @@ -8320,8 +8474,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1600331588", + "version": "8.x-1.12", + "datestamp": "1625838473", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8367,29 +8521,29 @@ }, { "name": "drupal/paranoia", - "version": "1.0.0-alpha1", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paranoia.git", - "reference": "8.x-1.0-alpha1" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paranoia-8.x-1.0-alpha1.zip", - "reference": "8.x-1.0-alpha1", - "shasum": "4beb9c8ad6fdcc4feb0dc78bc8ce0d56560f707e" + "url": "https://ftp.drupal.org/files/projects/paranoia-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "a5a1a6d0d51d5ee93052299b2cceda207e205ee2" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.9 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha1", - "datestamp": "1506626344", + "version": "8.x-1.0-rc1", + "datestamp": "1619724399", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -9213,7 +9367,7 @@ "extra": { "drupal": { "version": "8.x-2.8", - "datestamp": "1615222638", + "datestamp": "1615222684", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9380,29 +9534,29 @@ }, { "name": "drupal/subprofiles", - "version": "1.0.0-alpha2", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/subprofiles.git", - "reference": "8.x-1.0-alpha2" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/subprofiles-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "ea694c467ea7834056d3f4961bd142f41d0acc33" + "url": "https://ftp.drupal.org/files/projects/subprofiles-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "f026baab069c7e81d091925c714cb205a22828c3" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.9 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1507856720", + "version": "8.x-1.0", + "datestamp": "1619564567", "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" } } }, @@ -9620,7 +9774,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "79bf1ed5513252b855b0f2fcd788e8b8be6090df" + "reference": "25e0102076d52f2cead484abf1ff1e040f5bb868" }, "require": { "drupal/core": "^8 || ^9" @@ -9631,8 +9785,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-beta2+3-dev", - "datestamp": "1614593059", + "version": "8.x-1.0-beta3+2-dev", + "datestamp": "1621454264", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -9976,26 +10130,26 @@ }, { "name": "drupal/webform", - "version": "5.25.0", + "version": "6.0.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "8.x-5.25" + "reference": "6.0.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-8.x-5.25.zip", - "reference": "8.x-5.25", - "shasum": "115f8bc21549abc080543eb772166eb4fd2a162e" + "url": "https://ftp.drupal.org/files/projects/webform-6.0.4.zip", + "reference": "6.0.4", + "shasum": "8b87ffb19f980e9d77957dfb2d784a1a68619d57" }, "require": { - "drupal/core": "^8.8" + "drupal/core": "^8.8 || ^9" }, "require-dev": { "drupal/address": "~1.0", "drupal/bootstrap": "~3.0", "drupal/captcha": "~1.0", - "drupal/chosen": "~2.0", + "drupal/chosen": "~3.0", "drupal/clientside_validation": "~3.0", "drupal/clientside_validation_jquery": "*", "drupal/devel": "~3.0", @@ -10003,6 +10157,9 @@ "drupal/entity_print": "~2.0", "drupal/gnode": "*", "drupal/group": "1.0", + "drupal/jquery_ui": "~1.0", + "drupal/jquery_ui_checkboxradio": "~1.0", + "drupal/jquery_ui_datepicker": "~1.0", "drupal/lingotek": "~3.0", "drupal/mailsystem": "~4.0", "drupal/paragraphs": "~1.0", @@ -10024,11 +10181,15 @@ "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": { "drupal": { - "version": "8.x-5.25", - "datestamp": "1614873338", + "version": "6.0.4", + "datestamp": "1624461046", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10036,7 +10197,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10" } } }, @@ -10158,26 +10319,26 @@ }, { "name": "drupal/wysiwyg_linebreaks", - "version": "1.10.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git", - "reference": "8.x-1.10" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/wysiwyg_linebreaks-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "64f529906354e9689f1a1926ef68959fc627a3ca" + "url": "https://ftp.drupal.org/files/projects/wysiwyg_linebreaks-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "ba7a0c4585449eedbdad19b6d83603c46e5456e7" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1542910380", + "version": "8.x-1.11", + "datestamp": "1619132688", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10192,6 +10353,10 @@ { "name": "geerlingguy", "homepage": "https://www.drupal.org/user/389011" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" } ], "description": "Plugin to allow legacy content editing and more sane formatting in wysiwyg editors.", @@ -11291,10 +11456,10 @@ }, { "name": "jquery/inputmask", - "version": "5.0.5", + "version": "5.0.6", "dist": { "type": "zip", - "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.5.zip" + "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.6.zip" }, "require": { "composer/installers": "~1.0" @@ -11366,10 +11531,10 @@ }, { "name": "jquery/timepicker", - "version": "1.13.14", + "version": "1.13.18", "dist": { "type": "zip", - "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.14.zip" + "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.18.zip" }, "require": { "composer/installers": "~1.0" @@ -12243,16 +12408,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.10.4", + "version": "v4.11.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" + "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", - "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fe14cf3672a149364fb66dfe11bf6549af899f94", + "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94", "shasum": "" }, "require": { @@ -12293,9 +12458,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.11.0" }, - "time": "2020-12-20T10:01:03+00:00" + "time": "2021-07-03T13:36:55+00:00" }, { "name": "p3k/http", @@ -12702,16 +12867,16 @@ }, { "name": "pear/archive_tar", - "version": "1.4.12", + "version": "1.4.13", "source": { "type": "git", "url": "https://github.com/pear/Archive_Tar.git", - "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495" + "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/19bb8e95490d3e3ad92fcac95500ca80bdcc7495", - "reference": "19bb8e95490d3e3ad92fcac95500ca80bdcc7495", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011", + "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011", "shasum": "" }, "require": { @@ -12778,7 +12943,7 @@ "type": "patreon" } ], - "time": "2021-01-18T19:32:54+00:00" + "time": "2021-02-16T10:50:50+00:00" }, { "name": "pear/console_getopt", @@ -12940,10 +13105,10 @@ }, { "name": "progress-tracker/progress-tracker", - "version": "1.4.0", + "version": "2.0.6", "dist": { "type": "zip", - "url": "https://github.com/NigelOToole/progress-tracker/archive/v1.4.0.zip" + "url": "https://github.com/NigelOToole/progress-tracker/archive/2.0.6.zip" }, "require": { "composer/installers": "~1.0" @@ -13354,16 +13519,16 @@ }, { "name": "stripe/stripe-php", - "version": "v7.77.0", + "version": "v7.88.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "f6724447481f6fb8c2e714165e092adad9ca470a" + "reference": "7203d00ba9b09830c0c5d5c06a9558db43b8e0ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/f6724447481f6fb8c2e714165e092adad9ca470a", - "reference": "f6724447481f6fb8c2e714165e092adad9ca470a", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7203d00ba9b09830c0c5d5c06a9558db43b8e0ea", + "reference": "7203d00ba9b09830c0c5d5c06a9558db43b8e0ea", "shasum": "" }, "require": { @@ -13409,9 +13574,9 @@ ], "support": { "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v7.77.0" + "source": "https://github.com/stripe/stripe-php/tree/v7.88.0" }, - "time": "2021-04-12T17:19:16+00:00" + "time": "2021-07-09T20:01:03+00:00" }, { "name": "svg-pan-zoom/svg-pan-zoom", @@ -13954,16 +14119,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.21", + "version": "v4.4.26", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "940826c465be2690c9fae91b2793481e5cbd6834" + "reference": "a501126eb6ec9288a3434af01b3d4499ec1268a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/940826c465be2690c9fae91b2793481e5cbd6834", - "reference": "940826c465be2690c9fae91b2793481e5cbd6834", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/a501126eb6ec9288a3434af01b3d4499ec1268a0", + "reference": "a501126eb6ec9288a3434af01b3d4499ec1268a0", "shasum": "" }, "require": { @@ -13996,7 +14161,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.21" + "source": "https://github.com/symfony/filesystem/tree/v4.4.26" }, "funding": [ { @@ -14012,20 +14177,20 @@ "type": "tidelift" } ], - "time": "2021-03-28T09:59:32+00:00" + "time": "2021-06-30T07:12:23+00:00" }, { "name": "symfony/finder", - "version": "v5.2.4", + "version": "v5.3.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0d639a0943822626290d169965804f79400e6a04" + "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04", - "reference": "0d639a0943822626290d169965804f79400e6a04", + "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", + "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", "shasum": "" }, "require": { @@ -14057,7 +14222,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.2.4" + "source": "https://github.com/symfony/finder/tree/v5.3.0" }, "funding": [ { @@ -14073,7 +14238,7 @@ "type": "tidelift" } ], - "time": "2021-02-15T18:55:04+00:00" + "time": "2021-05-26T12:52:38+00:00" }, { "name": "symfony/http-foundation", @@ -14782,16 +14947,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.22.1", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", - "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", "shasum": "" }, "require": { @@ -14800,7 +14965,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.22-dev" + "dev-main": "1.23-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14845,7 +15010,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.1" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" }, "funding": [ { @@ -14861,7 +15026,7 @@ "type": "tidelift" } ], - "time": "2021-01-07T16:49:33+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-util", @@ -15446,16 +15611,16 @@ }, { "name": "symfony/var-dumper", - "version": "v4.4.21", + "version": "v4.4.26", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806" + "reference": "a586efdf2aa832d05b9249e9115d24f6a2691160" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0da0e174f728996f5d5072d6a9f0a42259dbc806", - "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a586efdf2aa832d05b9249e9115d24f6a2691160", + "reference": "a586efdf2aa832d05b9249e9115d24f6a2691160", "shasum": "" }, "require": { @@ -15515,7 +15680,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v4.4.21" + "source": "https://github.com/symfony/var-dumper/tree/v4.4.26" }, "funding": [ { @@ -15531,7 +15696,7 @@ "type": "tidelift" } ], - "time": "2021-03-27T19:49:03+00:00" + "time": "2021-06-17T06:35:48+00:00" }, { "name": "symfony/yaml", @@ -15609,22 +15774,37 @@ ], "time": "2020-05-11T07:51:54+00:00" }, + { + "name": "tabby/tabby", + "version": "12.0.3", + "dist": { + "type": "zip", + "url": "https://github.com/cferdinandi/tabby/archive/v12.0.3.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "tabby" + } + }, { "name": "thinkshout/mailchimp-api-php", - "version": "2.0.0", + "version": "v2.1.0", "source": { "type": "git", "url": "https://github.com/thinkshout/mailchimp-api-php.git", - "reference": "ffa6cf96efe3a7e8e0de8309737a7dae40f51981" + "reference": "83ea6bcfe01b52d79b068e03c05cbfaea6c1b820" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/ffa6cf96efe3a7e8e0de8309737a7dae40f51981", - "reference": "ffa6cf96efe3a7e8e0de8309737a7dae40f51981", + "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/83ea6bcfe01b52d79b068e03c05cbfaea6c1b820", + "reference": "83ea6bcfe01b52d79b068e03c05cbfaea6c1b820", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.2.1", + "guzzlehttp/guzzle": "^6.2.1|^7.0.0", "php": ">=5.4.0" }, "require-dev": { @@ -15646,9 +15826,39 @@ ], "support": { "issues": "https://github.com/thinkshout/mailchimp-api-php/issues", - "source": "https://github.com/thinkshout/mailchimp-api-php/tree/master" + "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v2.1.0" }, - "time": "2018-02-27T17:52:03+00:00" + "time": "2021-04-27T19:29:12+00:00" + }, + { + "name": "tippyjs/5.x", + "version": "5.2.1", + "dist": { + "type": "file", + "url": "https://unpkg.com/tippy.js@5.2.1/dist/tippy-bundle.iife.min.js" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "tippyjs/5.x" + } + }, + { + "name": "tippyjs/6.x", + "version": "6.2.6", + "dist": { + "type": "file", + "url": "https://unpkg.com/tippy.js@6.2.6/dist/tippy-bundle.umd.min.js" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "tippyjs/6.x" + } }, { "name": "twig/twig", @@ -15976,53 +16186,6 @@ "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1" }, "time": "2021-02-24T05:28:06+00:00" - }, - { - "name": "zaporylie/composer-drupal-optimizations", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/zaporylie/composer-drupal-optimizations.git", - "reference": "a7f409a765164fd13ac0bd00e19109165c51b369" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/a7f409a765164fd13ac0bd00e19109165c51b369", - "reference": "a7f409a765164fd13ac0bd00e19109165c51b369", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1 || ^2.0" - }, - "require-dev": { - "composer/composer": "^1.6", - "phpunit/phpunit": "^6" - }, - "type": "composer-plugin", - "extra": { - "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin" - }, - "autoload": { - "psr-4": { - "zaporylie\\ComposerDrupalOptimizations\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Jakub Piasecki", - "email": "jakub@piaseccy.pl" - } - ], - "description": "Composer plugin to improve composer performance for Drupal projects", - "support": { - "issues": "https://github.com/zaporylie/composer-drupal-optimizations/issues", - "source": "https://github.com/zaporylie/composer-drupal-optimizations/tree/1.2.0" - }, - "time": "2020-10-22T13:26:00+00:00" } ], "packages-dev": [ @@ -16469,16 +16632,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.4.20", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "cfa8d92f95294747e3abc04969efee51ed374424" + "reference": "729b1f0eca3ef18ea4e1a29b166145aff75d8fa1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/cfa8d92f95294747e3abc04969efee51ed374424", - "reference": "cfa8d92f95294747e3abc04969efee51ed374424", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/729b1f0eca3ef18ea4e1a29b166145aff75d8fa1", + "reference": "729b1f0eca3ef18ea4e1a29b166145aff75d8fa1", "shasum": "" }, "require": { @@ -16520,7 +16683,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v4.4.20" + "source": "https://github.com/symfony/browser-kit/tree/v4.4.25" }, "funding": [ { @@ -16536,20 +16699,20 @@ "type": "tidelift" } ], - "time": "2021-02-18T10:52:56+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { "name": "symfony/config", - "version": "v5.2.4", + "version": "v5.3.3", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263" + "reference": "a69e0c55528b47df88d3c4067ddedf32d485d662" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/212d54675bf203ff8aef7d8cee8eecfb72f4a263", - "reference": "212d54675bf203ff8aef7d8cee8eecfb72f4a263", + "url": "https://api.github.com/repos/symfony/config/zipball/a69e0c55528b47df88d3c4067ddedf32d485d662", + "reference": "a69e0c55528b47df88d3c4067ddedf32d485d662", "shasum": "" }, "require": { @@ -16557,7 +16720,8 @@ "symfony/deprecation-contracts": "^2.1", "symfony/filesystem": "^4.4|^5.0", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php81": "^1.22" }, "conflict": { "symfony/finder": "<4.4" @@ -16598,7 +16762,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v5.2.4" + "source": "https://github.com/symfony/config/tree/v5.3.3" }, "funding": [ { @@ -16614,20 +16778,20 @@ "type": "tidelift" } ], - "time": "2021-02-23T23:58:19+00:00" + "time": "2021-06-24T08:13:00+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.20", + "version": "v4.4.25", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8" + "reference": "c1e29de6dc893b130b45d20d8051efbb040560a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/f907d3e53ecb2a5fad8609eb2f30525287a734c8", - "reference": "f907d3e53ecb2a5fad8609eb2f30525287a734c8", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1e29de6dc893b130b45d20d8051efbb040560a9", + "reference": "c1e29de6dc893b130b45d20d8051efbb040560a9", "shasum": "" }, "require": { @@ -16663,7 +16827,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v4.4.20" + "source": "https://github.com/symfony/css-selector/tree/v4.4.25" }, "funding": [ { @@ -16679,7 +16843,7 @@ "type": "tidelift" } ], - "time": "2021-01-27T09:09:26+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { "name": "symfony/deprecation-contracts", @@ -16807,6 +16971,85 @@ "source": "https://github.com/symfony/dom-crawler/tree/4.2" }, "time": "2019-06-13T10:57:15+00:00" + }, + { + "name": "symfony/polyfill-php81", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "e66119f3de95efc359483f810c4c3e6436279436" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436", + "reference": "e66119f3de95efc359483f810c4c3e6436279436", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 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.23.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": "2021-05-21T13:25:03+00:00" } ], "aliases": [], @@ -16825,12 +17068,11 @@ "drupal/regionincontent": 20, "drupal/swiftmailer": 10, "drupal/twigsuggest": 20, - "drupal/ui_patterns": 5, - "drupal/webform": 5 + "drupal/ui_patterns": 5 }, "prefer-stable": true, "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "2.0.0" + "plugin-api-version": "2.1.0" } From 115eacb9fe1ce618152f75c3b8cbd9a0505a18a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 07:18:30 -0400 Subject: [PATCH 045/236] Adopt standard folder name for database exports --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ee0d84d..f3cd890 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,7 @@ web/themes/custom/*/src vendor/ ## Ignore folder for SQL dumps -/data +/backup ## Ignore other template-built files: drush/sites/local.site.yml From 0f394481d197863093a5cc165efce9a2ce4beb52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 07:22:45 -0400 Subject: [PATCH 046/236] Add nuke script file to delete all composer-managed everything --- scripts/nuke.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 scripts/nuke.sh diff --git a/scripts/nuke.sh b/scripts/nuke.sh new file mode 100755 index 0000000..b6ab03b --- /dev/null +++ b/scripts/nuke.sh @@ -0,0 +1,33 @@ +# Delete Drupal core and any contrib directories. +rm -rf web/core +rm -rf web/modules/contrib +rm -rf web/themes/contrib +rm -rf web/profiles/contrib +rm -rf drush/Commands/contrib + +# Delete Drupal root files. +rm -f web/.csslintrc +rm -f web/.editorconfig +rm -f web/.eslintignore +rm -f web/.eslintrc.json +rm -f web/.gitattributes +rm -f web/.gitignore +rm -f web/.ht.router.php +rm -f web/autoload.php +rm -f web/example.gitignore +rm -f web/index.php +rm -f web/INSTALL.txt +rm -f web/robots.txt +rm -f web/README.txt +rm -f web/update.php +rm -f web/web.config + +# Delete any Drupal scaffold files. +rm -f .editorconfig +rm -f .gitattributes + +# Delete any third party libraries. +# rm -rf web/libraries + +# Delete the vendor directory. +rm -rf vendor From 2f45fe92a21f42120e9e9e638c6c24202dbb523f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 07:54:51 -0400 Subject: [PATCH 047/236] Add working CSS compiling script that bypasses node/grunt --- scripts/css.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/css.sh diff --git a/scripts/css.sh b/scripts/css.sh new file mode 100755 index 0000000..75acc9c --- /dev/null +++ b/scripts/css.sh @@ -0,0 +1,9 @@ +#!/bin/bash +set -e +# Confirmed with echo `pwd` that as long as we use via composer it's always in +# /var/www/html (aka the project root). +proj_dir="$(cd $(dirname ${0})/../ && pwd)" # Parent of this script folder. +[ "$proj_dir" != "/var/www/html" ] && { echo "Script running from unexpected path - are you running within ddev, as you should? Try ddev composer css"; exit 1; } +cd /var/www/html/web/themes/custom/agarica/patternlibrary +sassc agaric/sass/agaric.scss agaric/css/agaric.css +echo "Don't forget to commit any updates in the submodule web/themes/custom/agarica/patternlibrary" From bd72dc0486286dd7541089ddd7c3365dd57de848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:00:38 -0400 Subject: [PATCH 048/236] Update pattern library --- web/themes/custom/agarica/patternlibrary | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/themes/custom/agarica/patternlibrary b/web/themes/custom/agarica/patternlibrary index b925a57..9cf4362 160000 --- a/web/themes/custom/agarica/patternlibrary +++ b/web/themes/custom/agarica/patternlibrary @@ -1 +1 @@ -Subproject commit b925a57e3250dca0409e858add0e614a9fa2fffa +Subproject commit 9cf4362e0780aee1f1a167685b0c9c7634b05e00 From c7a757b9c01f86306b7e3128dc2cafbd9ed0b45e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:01:39 -0400 Subject: [PATCH 049/236] Update name of ignored backup directory --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f3cd890..77ff9b8 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,7 @@ web/themes/custom/*/src vendor/ ## Ignore folder for SQL dumps -/backup +/backups ## Ignore other template-built files: drush/sites/local.site.yml From 10998145197b4b33aead6b6c0d4c1f8858c3f304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:02:01 -0400 Subject: [PATCH 050/236] Add script for bringing down database, with backups and drop --- scripts/pull.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 scripts/pull.sh diff --git a/scripts/pull.sh b/scripts/pull.sh new file mode 100755 index 0000000..c86a32b --- /dev/null +++ b/scripts/pull.sh @@ -0,0 +1,16 @@ +#!/bin/bash +set -e +# Confirmed with echo `pwd` that as long as we use via composer it's always in +# /var/www/html (aka the project root). +proj_dir="$(cd $(dirname ${0})/../ && pwd)" # Parent of this script folder. +[ "$proj_dir" != "/var/www/html" ] && { echo "Script running from unexpected path - are you running within ddev, as you should?"; exit 1; } +backup_file="$(date +%Y%m%dT%H%M%S)_pre_pull.sql" +[ ! -d /var/www/html/backups ] && mkdir /var/www/html/backups || true +echo "Backing up current db to backups/${backup_file}..." +drush sql-dump > /var/www/html/backups/${backup_file} +echo "Dropping local db..." +drush -y sql-drop +echo "Pulling db from live into local..." +drush -y sql-sync @live @self +drush cr +echo "Done" From a83fc897c7c1454b456d19512151e2d1751fff9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:02:15 -0400 Subject: [PATCH 051/236] Add composer commands for our shell scripts --- composer.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 48a25c5..1aa3456 100644 --- a/composer.json +++ b/composer.json @@ -114,10 +114,9 @@ } }, "scripts": { - "nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib", - "quick-start": [ - "composer install", - "php docroot/core/scripts/drupal quick-start drutopia --no-interaction" - ] + "nuke": "scripts/nuke.sh", + "pull": "scripts/pull.sh", + "pull-files": "drush -y rsync @live:%files @self:%files", + "css": "scripts/css.sh" } } From b1b12e05053aee2aa37758e924d5e06610d6d4db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:14:19 -0400 Subject: [PATCH 052/236] Move config out of redundant sync directory --- config/{sync => }/.htaccess | 0 config/{sync => }/antibot.settings.yml | 0 config/{sync => }/automated_cron.settings.yml | 0 config/{sync => }/autosave_form.messages.yml | 0 config/{sync => }/autosave_form.settings.yml | 0 config/{sync => }/block.block.agarica_account_menu.yml | 0 config/{sync => }/block.block.agarica_branding.yml | 0 config/{sync => }/block.block.agarica_content.yml | 0 config/{sync => }/block.block.agarica_footer_menu.yml | 0 config/{sync => }/block.block.agarica_group_operations.yml | 0 config/{sync => }/block.block.agarica_help.yml | 0 config/{sync => }/block.block.agarica_home_page_custom_1.yml | 0 config/{sync => }/block.block.agarica_home_page_custom_2.yml | 0 config/{sync => }/block.block.agarica_home_page_custom_3.yml | 0 config/{sync => }/block.block.agarica_local_actions.yml | 0 config/{sync => }/block.block.agarica_local_tasks.yml | 0 config/{sync => }/block.block.agarica_main_menu.yml | 0 config/{sync => }/block.block.agarica_messages.yml | 0 config/{sync => }/block.block.agarica_page_title.yml | 0 config/{sync => }/block.block.agarica_powered_by_drutopia.yml | 0 config/{sync => }/block.block.agarica_socialmedialinks.yml | 0 ...agarica_views_block__related_content_block_related_content.yml | 0 config/{sync => }/block.block.agaricnewsletter.yml | 0 config/{sync => }/block.block.article_topics_facet.yml | 0 config/{sync => }/block.block.article_type_facet.yml | 0 config/{sync => }/block.block.blog_topics_facet.yml | 0 config/{sync => }/block.block.bulma_account_menu.yml | 0 config/{sync => }/block.block.bulma_branding.yml | 0 config/{sync => }/block.block.bulma_content.yml | 0 config/{sync => }/block.block.bulma_help.yml | 0 config/{sync => }/block.block.bulma_local_tasks.yml | 0 config/{sync => }/block.block.bulma_main_menu.yml | 0 config/{sync => }/block.block.bulma_messages.yml | 0 config/{sync => }/block.block.bulma_page_title.yml | 0 config/{sync => }/block.block.bulma_powered.yml | 0 config/{sync => }/block.block.bulma_tools.yml | 0 config/{sync => }/block.block.content_search_form_global.yml | 0 config/{sync => }/block.block.content_search_form_search.yml | 0 config/{sync => }/block.block.event_topics_facet.yml | 0 config/{sync => }/block.block.event_type_facet.yml | 0 config/{sync => }/block.block.exposedformsearchpage_1.yml | 0 config/{sync => }/block.block.exposedformsearchpage_1_2.yml | 0 config/{sync => }/block.block.footer_about_us.yml | 0 config/{sync => }/block.block.footer_get_involved.yml | 0 config/{sync => }/block.block.footer_our_work.yml | 0 config/{sync => }/block.block.group_operations.yml | 0 config/{sync => }/block.block.hireagaric.yml | 0 config/{sync => }/block.block.home_page_custom_1.yml | 0 config/{sync => }/block.block.home_page_custom_2.yml | 0 config/{sync => }/block.block.home_page_custom_3.yml | 0 config/{sync => }/block.block.home_page_feature.yml | 0 config/{sync => }/block.block.languageswitcher.yml | 0 config/{sync => }/block.block.mainnavigation.yml | 0 config/{sync => }/block.block.octavia_account_menu.yml | 0 config/{sync => }/block.block.octavia_branding.yml | 0 config/{sync => }/block.block.octavia_content.yml | 0 config/{sync => }/block.block.octavia_footer_menu.yml | 0 config/{sync => }/block.block.octavia_help.yml | 0 config/{sync => }/block.block.octavia_local_actions.yml | 0 config/{sync => }/block.block.octavia_local_tasks.yml | 0 config/{sync => }/block.block.octavia_main_menu.yml | 0 config/{sync => }/block.block.octavia_messages.yml | 0 config/{sync => }/block.block.octavia_page_title.yml | 0 config/{sync => }/block.block.octavia_powered_by_drutopia.yml | 0 config/{sync => }/block.block.resource_topics_facet.yml | 0 config/{sync => }/block.block.resource_type_facet.yml | 0 config/{sync => }/block.block.seven_breadcrumbs.yml | 0 config/{sync => }/block.block.seven_content.yml | 0 config/{sync => }/block.block.seven_help.yml | 0 config/{sync => }/block.block.seven_local_actions.yml | 0 config/{sync => }/block.block.seven_login.yml | 0 config/{sync => }/block.block.seven_messages.yml | 0 config/{sync => }/block.block.seven_page_title.yml | 0 config/{sync => }/block.block.seven_primary_local_tasks.yml | 0 config/{sync => }/block.block.seven_secondary_local_tasks.yml | 0 config/{sync => }/block.block.socialmedialinks.yml | 0 config/{sync => }/block.block.upcomingtrainingsfromagaric.yml | 0 config/{sync => }/block.block.userlogin.yml | 0 ...k.block.views_block__related_content_block_related_content.yml | 0 config/{sync => }/block_content.type.basic.yml | 0 config/{sync => }/block_content.type.content_reference.yml | 0 config/{sync => }/block_content.type.slide.yml | 0 ...k_visibility_groups.block_visibility_group.article_listing.yml | 0 ...lock_visibility_groups.block_visibility_group.blog_listing.yml | 0 ...ock_visibility_groups.block_visibility_group.event_listing.yml | 0 .../block_visibility_groups.block_visibility_group.home_page.yml | 0 ..._visibility_groups.block_visibility_group.resource_listing.yml | 0 .../block_visibility_groups.block_visibility_group.search.yml | 0 config/{sync => }/bulma.settings.yml | 0 config/{sync => }/coffee.configuration.yml | 0 config/{sync => }/comment.type.comment.yml | 0 config/{sync => }/comment_notify.settings.yml | 0 ...nfig_perms.custom_perms_entity.administer_account_settings.yml | 0 .../config_perms.custom_perms_entity.administer_date_time.yml | 0 .../config_perms.custom_perms_entity.administer_error_logs.yml | 0 .../config_perms.custom_perms_entity.administer_file_system.yml | 0 .../config_perms.custom_perms_entity.administer_groups.yml | 0 ...nfig_perms.custom_perms_entity.administer_site_information.yml | 0 .../config_perms.custom_perms_entity.edit_contact_form.yml | 0 .../config_snapshot.snapshot.config_sync.module.address.yml | 0 .../config_snapshot.snapshot.config_sync.module.admin_toolbar.yml | 0 ...g_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.agaric_migration.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.allowed_formats.yml | 0 .../config_snapshot.snapshot.config_sync.module.antibot.yml | 0 ...config_snapshot.snapshot.config_sync.module.automated_cron.yml | 0 .../config_snapshot.snapshot.config_sync.module.autosave_form.yml | 0 ...ig_snapshot.snapshot.config_sync.module.better_normalizers.yml | 0 .../config_snapshot.snapshot.config_sync.module.block.yml | 0 .../config_snapshot.snapshot.config_sync.module.block_content.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.block_theme_sync.yml | 0 ...apshot.snapshot.config_sync.module.block_visibility_groups.yml | 0 .../config_snapshot.snapshot.config_sync.module.breakpoint.yml | 0 .../config_snapshot.snapshot.config_sync.module.ckeditor.yml | 0 ...fig_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml | 0 .../config_snapshot.snapshot.config_sync.module.coffee.yml | 0 .../config_snapshot.snapshot.config_sync.module.color.yml | 0 .../config_snapshot.snapshot.config_sync.module.comment.yml | 0 ...config_snapshot.snapshot.config_sync.module.comment_notify.yml | 0 .../config_snapshot.snapshot.config_sync.module.components.yml | 0 .../config_snapshot.snapshot.config_sync.module.config.yml | 0 ...config_snapshot.snapshot.config_sync.module.config_actions.yml | 0 ...apshot.snapshot.config_sync.module.config_actions_provider.yml | 0 .../config_snapshot.snapshot.config_sync.module.config_distro.yml | 0 .../config_snapshot.snapshot.config_sync.module.config_filter.yml | 0 .../config_snapshot.snapshot.config_sync.module.config_merge.yml | 0 ...fig_snapshot.snapshot.config_sync.module.config_normalizer.yml | 0 .../config_snapshot.snapshot.config_sync.module.config_perms.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.config_provider.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.config_snapshot.yml | 0 .../config_snapshot.snapshot.config_sync.module.config_sync.yml | 0 ...ig_snapshot.snapshot.config_sync.module.config_translation.yml | 0 .../config_snapshot.snapshot.config_sync.module.config_update.yml | 0 .../config_snapshot.snapshot.config_sync.module.contact.yml | 0 ...g_snapshot.snapshot.config_sync.module.content_translation.yml | 0 .../config_snapshot.snapshot.config_sync.module.contextual.yml | 0 .../config_snapshot.snapshot.config_sync.module.crop.yml | 0 .../config_snapshot.snapshot.config_sync.module.ctools.yml | 0 .../config_snapshot.snapshot.config_sync.module.customerror.yml | 0 .../config_snapshot.snapshot.config_sync.module.datetime.yml | 0 ...config_snapshot.snapshot.config_sync.module.datetime_range.yml | 0 .../config_snapshot.snapshot.config_sync.module.dblog.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.default_content.yml | 0 .../config_snapshot.snapshot.config_sync.module.diff.yml | 0 ...fig_snapshot.snapshot.config_sync.module.dropdown_language.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.drutopia_action.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.drutopia_article.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia_blog.yml | 0 ...fig_snapshot.snapshot.config_sync.module.drutopia_campaign.yml | 0 ...g_snapshot.snapshot.config_sync.module.drutopia_case_study.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.drutopia_comment.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia_core.yml | 0 ...shot.snapshot.config_sync.module.drutopia_creative_license.yml | 0 ...config_snapshot.snapshot.config_sync.module.drutopia_event.yml | 0 ...config_snapshot.snapshot.config_sync.module.drutopia_group.yml | 0 ...ig_snapshot.snapshot.config_sync.module.drutopia_home_page.yml | 0 ...snapshot.snapshot.config_sync.module.drutopia_landing_page.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia_page.yml | 0 ...apshot.snapshot.config_sync.module.drutopia_page_storyline.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.drutopia_people.yml | 0 ...pshot.snapshot.config_sync.module.drutopia_related_content.yml | 0 ...fig_snapshot.snapshot.config_sync.module.drutopia_resource.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.drutopia_search.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia_seo.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia_site.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.drutopia_social.yml | 0 ...ig_snapshot.snapshot.config_sync.module.drutopia_storyline.yml | 0 .../config_snapshot.snapshot.config_sync.module.drutopia_user.yml | 0 .../{sync => }/config_snapshot.snapshot.config_sync.module.ds.yml | 0 ...ig_snapshot.snapshot.config_sync.module.dynamic_page_cache.yml | 0 .../config_snapshot.snapshot.config_sync.module.editor.yml | 0 ...hot.snapshot.config_sync.module.entity_reference_revisions.yml | 0 ...ig_snapshot.snapshot.config_sync.module.exclude_node_title.yml | 0 .../config_snapshot.snapshot.config_sync.module.facets.yml | 0 .../config_snapshot.snapshot.config_sync.module.faqfield.yml | 0 .../config_snapshot.snapshot.config_sync.module.field.yml | 0 .../config_snapshot.snapshot.config_sync.module.field_group.yml | 0 .../config_snapshot.snapshot.config_sync.module.field_ui.yml | 0 .../config_snapshot.snapshot.config_sync.module.file.yml | 0 .../config_snapshot.snapshot.config_sync.module.filter.yml | 0 .../config_snapshot.snapshot.config_sync.module.focal_point.yml | 0 .../config_snapshot.snapshot.config_sync.module.gnode.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.google_analytics.yml | 0 .../config_snapshot.snapshot.config_sync.module.group.yml | 0 .../config_snapshot.snapshot.config_sync.module.hal.yml | 0 .../config_snapshot.snapshot.config_sync.module.help.yml | 0 .../config_snapshot.snapshot.config_sync.module.history.yml | 0 .../config_snapshot.snapshot.config_sync.module.honeypot.yml | 0 ...pshot.snapshot.config_sync.module.http_client_error_status.yml | 0 .../config_snapshot.snapshot.config_sync.module.image.yml | 0 .../config_snapshot.snapshot.config_sync.module.indieweb.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.indieweb_context.yml | 0 .../config_snapshot.snapshot.config_sync.module.indieweb_feed.yml | 0 ..._snapshot.snapshot.config_sync.module.indieweb_microformat.yml | 0 ...g_snapshot.snapshot.config_sync.module.indieweb_webmention.yml | 0 .../config_snapshot.snapshot.config_sync.module.language.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.layout_discovery.yml | 0 .../config_snapshot.snapshot.config_sync.module.link.yml | 0 .../config_snapshot.snapshot.config_sync.module.locale.yml | 0 .../config_snapshot.snapshot.config_sync.module.mailchimp.yml | 0 .../config_snapshot.snapshot.config_sync.module.markdown.yml | 0 .../config_snapshot.snapshot.config_sync.module.menu_block.yml | 0 ...fig_snapshot.snapshot.config_sync.module.menu_link_content.yml | 0 ...ig_snapshot.snapshot.config_sync.module.menu_trail_by_path.yml | 0 .../config_snapshot.snapshot.config_sync.module.menu_ui.yml | 0 .../config_snapshot.snapshot.config_sync.module.metatag.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.metatag_facebook.yml | 0 ...ig_snapshot.snapshot.config_sync.module.metatag_open_graph.yml | 0 ...snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml | 0 .../config_snapshot.snapshot.config_sync.module.migrate.yml | 0 ...config_snapshot.snapshot.config_sync.module.migrate_drupal.yml | 0 .../config_snapshot.snapshot.config_sync.module.migrate_plus.yml | 0 .../config_snapshot.snapshot.config_sync.module.migrate_tools.yml | 0 .../config_snapshot.snapshot.config_sync.module.minimalhtml.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.multiline_config.yml | 0 .../config_snapshot.snapshot.config_sync.module.node.yml | 0 .../config_snapshot.snapshot.config_sync.module.options.yml | 0 .../config_snapshot.snapshot.config_sync.module.page_cache.yml | 0 .../config_snapshot.snapshot.config_sync.module.paragraphs.yml | 0 ...g_snapshot.snapshot.config_sync.module.paragraphs_features.yml | 0 .../config_snapshot.snapshot.config_sync.module.path.yml | 0 .../config_snapshot.snapshot.config_sync.module.path_alias.yml | 0 .../config_snapshot.snapshot.config_sync.module.pathauto.yml | 0 .../config_snapshot.snapshot.config_sync.module.preview_link.yml | 0 .../config_snapshot.snapshot.config_sync.module.quickedit.yml | 0 .../config_snapshot.snapshot.config_sync.module.rdf.yml | 0 .../config_snapshot.snapshot.config_sync.module.redirect.yml | 0 .../config_snapshot.snapshot.config_sync.module.redirect_404.yml | 0 ...onfig_snapshot.snapshot.config_sync.module.regionincontent.yml | 0 ...nfig_snapshot.snapshot.config_sync.module.responsive_image.yml | 0 .../config_snapshot.snapshot.config_sync.module.scn.yml | 0 .../config_snapshot.snapshot.config_sync.module.search_api.yml | 0 .../config_snapshot.snapshot.config_sync.module.search_api_db.yml | 0 .../config_snapshot.snapshot.config_sync.module.serialization.yml | 0 .../config_snapshot.snapshot.config_sync.module.shortcut.yml | 0 .../config_snapshot.snapshot.config_sync.module.similarterms.yml | 0 .../config_snapshot.snapshot.config_sync.module.skins.yml | 0 ...ig_snapshot.snapshot.config_sync.module.social_media_links.yml | 0 .../config_snapshot.snapshot.config_sync.module.statistics.yml | 0 .../config_snapshot.snapshot.config_sync.module.stripe.yml | 0 .../config_snapshot.snapshot.config_sync.module.syslog.yml | 0 .../config_snapshot.snapshot.config_sync.module.system.yml | 0 .../config_snapshot.snapshot.config_sync.module.taxonomy.yml | 0 .../config_snapshot.snapshot.config_sync.module.telephone.yml | 0 .../config_snapshot.snapshot.config_sync.module.text.yml | 0 ...pshot.snapshot.config_sync.module.textarea_widget_for_text.yml | 0 .../config_snapshot.snapshot.config_sync.module.token.yml | 0 .../config_snapshot.snapshot.config_sync.module.toolbar.yml | 0 .../config_snapshot.snapshot.config_sync.module.tour.yml | 0 .../config_snapshot.snapshot.config_sync.module.twigsuggest.yml | 0 .../config_snapshot.snapshot.config_sync.module.ui_patterns.yml | 0 ...config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml | 0 ...g_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml | 0 ...g_snapshot.snapshot.config_sync.module.ui_patterns_library.yml | 0 .../config_snapshot.snapshot.config_sync.module.update.yml | 0 .../config_snapshot.snapshot.config_sync.module.user.yml | 0 ...fig_snapshot.snapshot.config_sync.module.video_embed_field.yml | 0 .../config_snapshot.snapshot.config_sync.module.views.yml | 0 .../config_snapshot.snapshot.config_sync.module.views_ui.yml | 0 ...config_snapshot.snapshot.config_sync.module.viewsreference.yml | 0 .../config_snapshot.snapshot.config_sync.module.webform.yml | 0 ...fig_snapshot.snapshot.config_sync.module.webform_mailchimp.yml | 0 ...apshot.snapshot.config_sync.module.webform_scheduled_email.yml | 0 .../config_snapshot.snapshot.config_sync.module.webform_ui.yml | 0 ...ig_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml | 0 .../config_snapshot.snapshot.config_sync.theme.agarica.yml | 0 .../config_snapshot.snapshot.config_sync.theme.bulma.yml | 0 .../config_snapshot.snapshot.config_sync.theme.classy.yml | 0 .../config_snapshot.snapshot.config_sync.theme.octavia.yml | 0 .../config_snapshot.snapshot.config_sync.theme.seven.yml | 0 .../config_snapshot.snapshot.config_sync.theme.stable.yml | 0 config/{sync => }/contact.form.feedback.yml | 0 config/{sync => }/contact.form.personal.yml | 0 config/{sync => }/contact.settings.yml | 0 .../core.base_field_override.block_content.basic.changed.yml | 0 .../core.base_field_override.block_content.basic.info.yml | 0 .../core.base_field_override.block_content.basic.metatag.yml | 0 .../core.base_field_override.block_content.basic.status.yml | 0 .../core.base_field_override.block_content.slide.changed.yml | 0 .../core.base_field_override.block_content.slide.info.yml | 0 .../core.base_field_override.block_content.slide.metatag.yml | 0 .../core.base_field_override.block_content.slide.status.yml | 0 .../core.base_field_override.comment.comment.changed.yml | 0 .../core.base_field_override.comment.comment.created.yml | 0 .../core.base_field_override.comment.comment.homepage.yml | 0 .../core.base_field_override.comment.comment.hostname.yml | 0 .../{sync => }/core.base_field_override.comment.comment.mail.yml | 0 .../{sync => }/core.base_field_override.comment.comment.name.yml | 0 .../core.base_field_override.comment.comment.status.yml | 0 .../core.base_field_override.comment.comment.subject.yml | 0 .../{sync => }/core.base_field_override.comment.comment.uid.yml | 0 .../{sync => }/core.base_field_override.group.group.changed.yml | 0 .../{sync => }/core.base_field_override.group.group.created.yml | 0 config/{sync => }/core.base_field_override.group.group.label.yml | 0 .../{sync => }/core.base_field_override.group.group.metatag.yml | 0 config/{sync => }/core.base_field_override.group.group.path.yml | 0 config/{sync => }/core.base_field_override.group.group.uid.yml | 0 ...ield_override.group_content.group-group_membership.changed.yml | 0 ...ield_override.group_content.group-group_membership.created.yml | 0 ..._field_override.group_content.group-group_membership.label.yml | 0 ...ield_override.group_content.group-group_membership.metatag.yml | 0 ...e_field_override.group_content.group-group_membership.path.yml | 0 ...se_field_override.group_content.group-group_membership.uid.yml | 0 ...field_override.menu_link_content.menu_link_content.changed.yml | 0 ...d_override.menu_link_content.menu_link_content.description.yml | 0 ...field_override.menu_link_content.menu_link_content.metatag.yml | 0 ...e_field_override.menu_link_content.menu_link_content.title.yml | 0 .../{sync => }/core.base_field_override.node.action.changed.yml | 0 .../{sync => }/core.base_field_override.node.action.created.yml | 0 .../{sync => }/core.base_field_override.node.action.menu_link.yml | 0 .../{sync => }/core.base_field_override.node.action.metatag.yml | 0 config/{sync => }/core.base_field_override.node.action.path.yml | 0 .../{sync => }/core.base_field_override.node.action.promote.yml | 0 config/{sync => }/core.base_field_override.node.action.status.yml | 0 config/{sync => }/core.base_field_override.node.action.sticky.yml | 0 config/{sync => }/core.base_field_override.node.action.title.yml | 0 config/{sync => }/core.base_field_override.node.action.uid.yml | 0 .../{sync => }/core.base_field_override.node.article.changed.yml | 0 .../{sync => }/core.base_field_override.node.article.created.yml | 0 .../core.base_field_override.node.article.menu_link.yml | 0 .../{sync => }/core.base_field_override.node.article.metatag.yml | 0 config/{sync => }/core.base_field_override.node.article.path.yml | 0 .../{sync => }/core.base_field_override.node.article.promote.yml | 0 .../{sync => }/core.base_field_override.node.article.status.yml | 0 .../{sync => }/core.base_field_override.node.article.sticky.yml | 0 config/{sync => }/core.base_field_override.node.article.title.yml | 0 config/{sync => }/core.base_field_override.node.article.uid.yml | 0 config/{sync => }/core.base_field_override.node.blog.changed.yml | 0 config/{sync => }/core.base_field_override.node.blog.created.yml | 0 .../{sync => }/core.base_field_override.node.blog.menu_link.yml | 0 config/{sync => }/core.base_field_override.node.blog.metatag.yml | 0 config/{sync => }/core.base_field_override.node.blog.path.yml | 0 config/{sync => }/core.base_field_override.node.blog.promote.yml | 0 config/{sync => }/core.base_field_override.node.blog.status.yml | 0 config/{sync => }/core.base_field_override.node.blog.sticky.yml | 0 config/{sync => }/core.base_field_override.node.blog.title.yml | 0 config/{sync => }/core.base_field_override.node.blog.uid.yml | 0 .../{sync => }/core.base_field_override.node.campaign.changed.yml | 0 .../{sync => }/core.base_field_override.node.campaign.created.yml | 0 .../core.base_field_override.node.campaign.menu_link.yml | 0 .../{sync => }/core.base_field_override.node.campaign.metatag.yml | 0 config/{sync => }/core.base_field_override.node.campaign.path.yml | 0 .../{sync => }/core.base_field_override.node.campaign.promote.yml | 0 .../{sync => }/core.base_field_override.node.campaign.status.yml | 0 .../{sync => }/core.base_field_override.node.campaign.sticky.yml | 0 .../{sync => }/core.base_field_override.node.campaign.title.yml | 0 config/{sync => }/core.base_field_override.node.campaign.uid.yml | 0 .../core.base_field_override.node.case_study.changed.yml | 0 .../core.base_field_override.node.case_study.created.yml | 0 .../core.base_field_override.node.case_study.menu_link.yml | 0 .../core.base_field_override.node.case_study.metatag.yml | 0 .../{sync => }/core.base_field_override.node.case_study.path.yml | 0 .../core.base_field_override.node.case_study.promote.yml | 0 .../core.base_field_override.node.case_study.status.yml | 0 .../core.base_field_override.node.case_study.sticky.yml | 0 .../{sync => }/core.base_field_override.node.case_study.title.yml | 0 .../{sync => }/core.base_field_override.node.case_study.uid.yml | 0 config/{sync => }/core.base_field_override.node.event.changed.yml | 0 config/{sync => }/core.base_field_override.node.event.created.yml | 0 .../{sync => }/core.base_field_override.node.event.menu_link.yml | 0 config/{sync => }/core.base_field_override.node.event.metatag.yml | 0 config/{sync => }/core.base_field_override.node.event.path.yml | 0 config/{sync => }/core.base_field_override.node.event.promote.yml | 0 config/{sync => }/core.base_field_override.node.event.status.yml | 0 config/{sync => }/core.base_field_override.node.event.sticky.yml | 0 config/{sync => }/core.base_field_override.node.event.title.yml | 0 config/{sync => }/core.base_field_override.node.event.uid.yml | 0 .../core.base_field_override.node.landing_page.changed.yml | 0 .../core.base_field_override.node.landing_page.created.yml | 0 .../core.base_field_override.node.landing_page.menu_link.yml | 0 .../core.base_field_override.node.landing_page.metatag.yml | 0 .../core.base_field_override.node.landing_page.path.yml | 0 .../core.base_field_override.node.landing_page.promote.yml | 0 .../core.base_field_override.node.landing_page.status.yml | 0 .../core.base_field_override.node.landing_page.sticky.yml | 0 .../core.base_field_override.node.landing_page.title.yml | 0 .../{sync => }/core.base_field_override.node.landing_page.uid.yml | 0 config/{sync => }/core.base_field_override.node.page.metatag.yml | 0 config/{sync => }/core.base_field_override.node.page.path.yml | 0 config/{sync => }/core.base_field_override.node.page.promote.yml | 0 config/{sync => }/core.base_field_override.node.page.status.yml | 0 config/{sync => }/core.base_field_override.node.page.sticky.yml | 0 config/{sync => }/core.base_field_override.node.page.uid.yml | 0 .../{sync => }/core.base_field_override.node.people.changed.yml | 0 .../{sync => }/core.base_field_override.node.people.created.yml | 0 .../{sync => }/core.base_field_override.node.people.menu_link.yml | 0 .../{sync => }/core.base_field_override.node.people.metatag.yml | 0 config/{sync => }/core.base_field_override.node.people.path.yml | 0 .../{sync => }/core.base_field_override.node.people.promote.yml | 0 config/{sync => }/core.base_field_override.node.people.status.yml | 0 config/{sync => }/core.base_field_override.node.people.sticky.yml | 0 config/{sync => }/core.base_field_override.node.people.title.yml | 0 config/{sync => }/core.base_field_override.node.people.uid.yml | 0 .../{sync => }/core.base_field_override.node.resource.changed.yml | 0 .../{sync => }/core.base_field_override.node.resource.created.yml | 0 .../core.base_field_override.node.resource.menu_link.yml | 0 .../{sync => }/core.base_field_override.node.resource.metatag.yml | 0 config/{sync => }/core.base_field_override.node.resource.path.yml | 0 .../{sync => }/core.base_field_override.node.resource.promote.yml | 0 .../{sync => }/core.base_field_override.node.resource.status.yml | 0 .../{sync => }/core.base_field_override.node.resource.sticky.yml | 0 .../{sync => }/core.base_field_override.node.resource.title.yml | 0 config/{sync => }/core.base_field_override.node.resource.uid.yml | 0 .../{sync => }/core.base_field_override.paragraph.faq.created.yml | 0 .../{sync => }/core.base_field_override.paragraph.faq.status.yml | 0 .../core.base_field_override.paragraph.file.created.yml | 0 .../{sync => }/core.base_field_override.paragraph.file.status.yml | 0 .../core.base_field_override.paragraph.image.created.yml | 0 .../core.base_field_override.paragraph.image.status.yml | 0 ...base_field_override.paragraph.quotation_with_image.created.yml | 0 ....base_field_override.paragraph.quotation_with_image.status.yml | 0 .../core.base_field_override.paragraph.slide.created.yml | 0 .../core.base_field_override.paragraph.slide.status.yml | 0 ...ore.base_field_override.paragraph.storyline_header.created.yml | 0 ...core.base_field_override.paragraph.storyline_header.status.yml | 0 .../core.base_field_override.paragraph.storyline_item.created.yml | 0 .../core.base_field_override.paragraph.storyline_item.status.yml | 0 .../core.base_field_override.paragraph.text.created.yml | 0 .../{sync => }/core.base_field_override.paragraph.text.status.yml | 0 .../core.base_field_override.paragraph.title.created.yml | 0 .../core.base_field_override.paragraph.title.status.yml | 0 .../core.base_field_override.paragraph.update.created.yml | 0 .../core.base_field_override.paragraph.update.status.yml | 0 .../core.base_field_override.paragraph.video.created.yml | 0 .../core.base_field_override.paragraph.video.status.yml | 0 .../core.base_field_override.paragraph.view.created.yml | 0 .../{sync => }/core.base_field_override.paragraph.view.status.yml | 0 .../core.base_field_override.paragraph.webform.created.yml | 0 .../core.base_field_override.paragraph.webform.status.yml | 0 .../core.base_field_override.shortcut.default.metatag.yml | 0 .../core.base_field_override.shortcut.default.title.yml | 0 ...core.base_field_override.taxonomy_term.action_type.changed.yml | 0 ....base_field_override.taxonomy_term.action_type.description.yml | 0 ...core.base_field_override.taxonomy_term.action_type.metatag.yml | 0 .../core.base_field_override.taxonomy_term.action_type.name.yml | 0 .../core.base_field_override.taxonomy_term.action_type.path.yml | 0 .../core.base_field_override.taxonomy_term.action_type.status.yml | 0 ...ore.base_field_override.taxonomy_term.article_type.changed.yml | 0 ...base_field_override.taxonomy_term.article_type.description.yml | 0 ...ore.base_field_override.taxonomy_term.article_type.metatag.yml | 0 .../core.base_field_override.taxonomy_term.article_type.name.yml | 0 .../core.base_field_override.taxonomy_term.article_type.path.yml | 0 ...core.base_field_override.taxonomy_term.article_type.status.yml | 0 .../core.base_field_override.taxonomy_term.event_type.changed.yml | 0 ...e.base_field_override.taxonomy_term.event_type.description.yml | 0 .../core.base_field_override.taxonomy_term.event_type.metatag.yml | 0 .../core.base_field_override.taxonomy_term.event_type.name.yml | 0 .../core.base_field_override.taxonomy_term.event_type.path.yml | 0 .../core.base_field_override.taxonomy_term.event_type.status.yml | 0 .../core.base_field_override.taxonomy_term.group_type.changed.yml | 0 ...e.base_field_override.taxonomy_term.group_type.description.yml | 0 .../core.base_field_override.taxonomy_term.group_type.metatag.yml | 0 .../core.base_field_override.taxonomy_term.group_type.name.yml | 0 .../core.base_field_override.taxonomy_term.group_type.path.yml | 0 .../core.base_field_override.taxonomy_term.group_type.status.yml | 0 .../core.base_field_override.taxonomy_term.license.changed.yml | 0 ...core.base_field_override.taxonomy_term.license.description.yml | 0 .../core.base_field_override.taxonomy_term.license.metatag.yml | 0 .../core.base_field_override.taxonomy_term.license.name.yml | 0 .../core.base_field_override.taxonomy_term.license.path.yml | 0 .../core.base_field_override.taxonomy_term.license.status.yml | 0 ...core.base_field_override.taxonomy_term.people_type.changed.yml | 0 ....base_field_override.taxonomy_term.people_type.description.yml | 0 ...core.base_field_override.taxonomy_term.people_type.metatag.yml | 0 .../core.base_field_override.taxonomy_term.people_type.name.yml | 0 .../core.base_field_override.taxonomy_term.people_type.path.yml | 0 .../core.base_field_override.taxonomy_term.people_type.status.yml | 0 ...re.base_field_override.taxonomy_term.resource_type.changed.yml | 0 ...ase_field_override.taxonomy_term.resource_type.description.yml | 0 ...re.base_field_override.taxonomy_term.resource_type.metatag.yml | 0 .../core.base_field_override.taxonomy_term.resource_type.name.yml | 0 .../core.base_field_override.taxonomy_term.resource_type.path.yml | 0 ...ore.base_field_override.taxonomy_term.resource_type.status.yml | 0 .../core.base_field_override.taxonomy_term.services.changed.yml | 0 ...ore.base_field_override.taxonomy_term.services.description.yml | 0 .../core.base_field_override.taxonomy_term.services.metatag.yml | 0 .../core.base_field_override.taxonomy_term.services.name.yml | 0 .../core.base_field_override.taxonomy_term.services.path.yml | 0 .../core.base_field_override.taxonomy_term.services.status.yml | 0 .../core.base_field_override.taxonomy_term.tags.changed.yml | 0 .../core.base_field_override.taxonomy_term.tags.description.yml | 0 .../core.base_field_override.taxonomy_term.tags.metatag.yml | 0 .../core.base_field_override.taxonomy_term.tags.name.yml | 0 .../core.base_field_override.taxonomy_term.tags.path.yml | 0 .../core.base_field_override.taxonomy_term.tags.status.yml | 0 ...ore.base_field_override.taxonomy_term.technologies.changed.yml | 0 ...base_field_override.taxonomy_term.technologies.description.yml | 0 ...ore.base_field_override.taxonomy_term.technologies.metatag.yml | 0 .../core.base_field_override.taxonomy_term.technologies.name.yml | 0 .../core.base_field_override.taxonomy_term.technologies.path.yml | 0 ...core.base_field_override.taxonomy_term.technologies.status.yml | 0 .../core.base_field_override.taxonomy_term.topics.changed.yml | 0 .../core.base_field_override.taxonomy_term.topics.description.yml | 0 .../core.base_field_override.taxonomy_term.topics.metatag.yml | 0 .../core.base_field_override.taxonomy_term.topics.name.yml | 0 .../core.base_field_override.taxonomy_term.topics.path.yml | 0 .../core.base_field_override.taxonomy_term.topics.status.yml | 0 config/{sync => }/core.base_field_override.user.user.changed.yml | 0 config/{sync => }/core.base_field_override.user.user.metatag.yml | 0 config/{sync => }/core.base_field_override.user.user.path.yml | 0 config/{sync => }/core.date_format.fallback.yml | 0 config/{sync => }/core.date_format.html_date.yml | 0 config/{sync => }/core.date_format.html_datetime.yml | 0 config/{sync => }/core.date_format.html_month.yml | 0 config/{sync => }/core.date_format.html_time.yml | 0 config/{sync => }/core.date_format.html_week.yml | 0 config/{sync => }/core.date_format.html_year.yml | 0 config/{sync => }/core.date_format.html_yearless_date.yml | 0 config/{sync => }/core.date_format.long.yml | 0 config/{sync => }/core.date_format.medium.yml | 0 config/{sync => }/core.date_format.month_day_year.yml | 0 config/{sync => }/core.date_format.short.yml | 0 .../core.entity_form_display.block_content.basic.default.yml | 0 ...ntity_form_display.block_content.content_reference.default.yml | 0 .../core.entity_form_display.block_content.slide.default.yml | 0 .../core.entity_form_display.comment.comment.default.yml | 0 .../core.entity_form_display.contact_message.personal.default.yml | 0 .../{sync => }/core.entity_form_display.group.group.default.yml | 0 ..._form_display.group_content.group-group_membership.default.yml | 0 .../{sync => }/core.entity_form_display.node.action.default.yml | 0 .../{sync => }/core.entity_form_display.node.article.default.yml | 0 config/{sync => }/core.entity_form_display.node.blog.default.yml | 0 .../{sync => }/core.entity_form_display.node.campaign.default.yml | 0 .../core.entity_form_display.node.case_study.default.yml | 0 config/{sync => }/core.entity_form_display.node.event.default.yml | 0 .../core.entity_form_display.node.landing_page.default.yml | 0 config/{sync => }/core.entity_form_display.node.page.default.yml | 0 .../{sync => }/core.entity_form_display.node.people.default.yml | 0 .../{sync => }/core.entity_form_display.node.resource.default.yml | 0 ...re.entity_form_display.paragraph.content_reference.default.yml | 0 ...ore.entity_form_display.paragraph.embedded_content.default.yml | 0 .../{sync => }/core.entity_form_display.paragraph.faq.default.yml | 0 .../core.entity_form_display.paragraph.file.default.yml | 0 .../core.entity_form_display.paragraph.image.default.yml | 0 ...entity_form_display.paragraph.quotation_with_image.default.yml | 0 .../core.entity_form_display.paragraph.slide.default.yml | 0 ...ore.entity_form_display.paragraph.storyline_header.default.yml | 0 .../core.entity_form_display.paragraph.storyline_item.default.yml | 0 .../core.entity_form_display.paragraph.text.default.yml | 0 .../core.entity_form_display.paragraph.title.default.yml | 0 .../core.entity_form_display.paragraph.update.default.yml | 0 .../core.entity_form_display.paragraph.video.default.yml | 0 .../core.entity_form_display.paragraph.view.default.yml | 0 .../core.entity_form_display.paragraph.webform.default.yml | 0 config/{sync => }/core.entity_form_display.user.user.default.yml | 0 config/{sync => }/core.entity_form_mode.user.register.yml | 0 .../core.entity_view_display.block_content.basic.default.yml | 0 ...ntity_view_display.block_content.content_reference.default.yml | 0 .../core.entity_view_display.block_content.slide.columnar.yml | 0 .../core.entity_view_display.block_content.slide.default.yml | 0 .../core.entity_view_display.comment.comment.default.yml | 0 .../{sync => }/core.entity_view_display.group.group.default.yml | 0 config/{sync => }/core.entity_view_display.group.group.full.yml | 0 config/{sync => }/core.entity_view_display.group.group.teaser.yml | 0 ..._view_display.group_content.group-group_membership.default.yml | 0 config/{sync => }/core.entity_view_display.node.action.box.yml | 0 config/{sync => }/core.entity_view_display.node.action.card.yml | 0 .../{sync => }/core.entity_view_display.node.action.default.yml | 0 config/{sync => }/core.entity_view_display.node.action.full.yml | 0 .../core.entity_view_display.node.action.search_index.yml | 0 .../core.entity_view_display.node.action.simple_card.yml | 0 config/{sync => }/core.entity_view_display.node.action.teaser.yml | 0 config/{sync => }/core.entity_view_display.node.action.tile.yml | 0 config/{sync => }/core.entity_view_display.node.article.box.yml | 0 config/{sync => }/core.entity_view_display.node.article.card.yml | 0 .../{sync => }/core.entity_view_display.node.article.default.yml | 0 config/{sync => }/core.entity_view_display.node.article.full.yml | 0 config/{sync => }/core.entity_view_display.node.article.media.yml | 0 config/{sync => }/core.entity_view_display.node.article.rss.yml | 0 .../core.entity_view_display.node.article.search_index.yml | 0 .../core.entity_view_display.node.article.simple_card.yml | 0 .../{sync => }/core.entity_view_display.node.article.teaser.yml | 0 config/{sync => }/core.entity_view_display.node.blog.card.yml | 0 config/{sync => }/core.entity_view_display.node.blog.default.yml | 0 config/{sync => }/core.entity_view_display.node.blog.full.yml | 0 config/{sync => }/core.entity_view_display.node.blog.media.yml | 0 config/{sync => }/core.entity_view_display.node.blog.rss.yml | 0 .../{sync => }/core.entity_view_display.node.blog.rss_teaser.yml | 0 .../core.entity_view_display.node.blog.search_index.yml | 0 .../{sync => }/core.entity_view_display.node.blog.simple_card.yml | 0 config/{sync => }/core.entity_view_display.node.blog.teaser.yml | 0 config/{sync => }/core.entity_view_display.node.campaign.card.yml | 0 .../{sync => }/core.entity_view_display.node.campaign.default.yml | 0 config/{sync => }/core.entity_view_display.node.campaign.full.yml | 0 .../core.entity_view_display.node.campaign.search_index.yml | 0 .../core.entity_view_display.node.campaign.simple_card.yml | 0 .../{sync => }/core.entity_view_display.node.campaign.teaser.yml | 0 .../{sync => }/core.entity_view_display.node.case_study.card.yml | 0 .../core.entity_view_display.node.case_study.default.yml | 0 .../{sync => }/core.entity_view_display.node.case_study.full.yml | 0 .../core.entity_view_display.node.case_study.search_index.yml | 0 .../core.entity_view_display.node.case_study.small_card.yml | 0 .../core.entity_view_display.node.case_study.teaser.yml | 0 .../{sync => }/core.entity_view_display.node.case_study.tile.yml | 0 config/{sync => }/core.entity_view_display.node.event.default.yml | 0 config/{sync => }/core.entity_view_display.node.event.full.yml | 0 config/{sync => }/core.entity_view_display.node.event.micro.yml | 0 .../core.entity_view_display.node.event.search_index.yml | 0 .../core.entity_view_display.node.event.simple_card.yml | 0 config/{sync => }/core.entity_view_display.node.event.teaser.yml | 0 .../core.entity_view_display.node.landing_page.default.yml | 0 .../core.entity_view_display.node.landing_page.full.yml | 0 .../core.entity_view_display.node.landing_page.simple_card.yml | 0 .../core.entity_view_display.node.landing_page.teaser.yml | 0 config/{sync => }/core.entity_view_display.node.page.default.yml | 0 config/{sync => }/core.entity_view_display.node.page.embedded.yml | 0 config/{sync => }/core.entity_view_display.node.page.full.yml | 0 config/{sync => }/core.entity_view_display.node.page.teaser.yml | 0 .../{sync => }/core.entity_view_display.node.people.default.yml | 0 config/{sync => }/core.entity_view_display.node.people.full.yml | 0 .../core.entity_view_display.node.people.search_index.yml | 0 .../core.entity_view_display.node.people.small_card.yml | 0 config/{sync => }/core.entity_view_display.node.people.teaser.yml | 0 config/{sync => }/core.entity_view_display.node.resource.card.yml | 0 .../{sync => }/core.entity_view_display.node.resource.default.yml | 0 config/{sync => }/core.entity_view_display.node.resource.full.yml | 0 .../core.entity_view_display.node.resource.search_index.yml | 0 .../core.entity_view_display.node.resource.simple_card.yml | 0 .../{sync => }/core.entity_view_display.node.resource.teaser.yml | 0 ...re.entity_view_display.paragraph.content_reference.default.yml | 0 ...ore.entity_view_display.paragraph.embedded_content.default.yml | 0 .../{sync => }/core.entity_view_display.paragraph.faq.default.yml | 0 .../core.entity_view_display.paragraph.file.default.yml | 0 .../core.entity_view_display.paragraph.image.default.yml | 0 ...entity_view_display.paragraph.quotation_with_image.default.yml | 0 .../core.entity_view_display.paragraph.slide.columnar.yml | 0 .../core.entity_view_display.paragraph.slide.default.yml | 0 ...ore.entity_view_display.paragraph.storyline_header.default.yml | 0 .../core.entity_view_display.paragraph.storyline_item.default.yml | 0 .../core.entity_view_display.paragraph.text.default.yml | 0 .../core.entity_view_display.paragraph.title.columnar.yml | 0 .../core.entity_view_display.paragraph.title.default.yml | 0 .../core.entity_view_display.paragraph.update.default.yml | 0 .../core.entity_view_display.paragraph.video.default.yml | 0 .../core.entity_view_display.paragraph.view.default.yml | 0 .../core.entity_view_display.paragraph.webform.default.yml | 0 .../core.entity_view_display.taxonomy_term.license.default.yml | 0 config/{sync => }/core.entity_view_display.user.user.compact.yml | 0 config/{sync => }/core.entity_view_display.user.user.default.yml | 0 config/{sync => }/core.entity_view_mode.block.token.yml | 0 .../{sync => }/core.entity_view_mode.block_content.columnar.yml | 0 config/{sync => }/core.entity_view_mode.block_content.full.yml | 0 config/{sync => }/core.entity_view_mode.block_content.token.yml | 0 config/{sync => }/core.entity_view_mode.comment.full.yml | 0 .../core.entity_view_mode.comment.indieweb_microformat.yml | 0 config/{sync => }/core.entity_view_mode.comment.token.yml | 0 config/{sync => }/core.entity_view_mode.contact_message.token.yml | 0 config/{sync => }/core.entity_view_mode.file.token.yml | 0 config/{sync => }/core.entity_view_mode.group.full.yml | 0 config/{sync => }/core.entity_view_mode.group.teaser.yml | 0 .../{sync => }/core.entity_view_mode.menu_link_content.token.yml | 0 config/{sync => }/core.entity_view_mode.node.box.yml | 0 config/{sync => }/core.entity_view_mode.node.card.yml | 0 config/{sync => }/core.entity_view_mode.node.diff.yml | 0 config/{sync => }/core.entity_view_mode.node.embedded.yml | 0 config/{sync => }/core.entity_view_mode.node.full.yml | 0 .../core.entity_view_mode.node.indieweb_microformat.yml | 0 config/{sync => }/core.entity_view_mode.node.media.yml | 0 config/{sync => }/core.entity_view_mode.node.micro.yml | 0 config/{sync => }/core.entity_view_mode.node.rss.yml | 0 config/{sync => }/core.entity_view_mode.node.rss_teaser.yml | 0 config/{sync => }/core.entity_view_mode.node.search_index.yml | 0 config/{sync => }/core.entity_view_mode.node.search_result.yml | 0 config/{sync => }/core.entity_view_mode.node.simple_card.yml | 0 config/{sync => }/core.entity_view_mode.node.small_card.yml | 0 config/{sync => }/core.entity_view_mode.node.teaser.yml | 0 config/{sync => }/core.entity_view_mode.node.tile.yml | 0 config/{sync => }/core.entity_view_mode.node.token.yml | 0 config/{sync => }/core.entity_view_mode.paragraph.columnar.yml | 0 config/{sync => }/core.entity_view_mode.paragraph.preview.yml | 0 config/{sync => }/core.entity_view_mode.shortcut.token.yml | 0 config/{sync => }/core.entity_view_mode.taxonomy_term.full.yml | 0 config/{sync => }/core.entity_view_mode.taxonomy_term.token.yml | 0 config/{sync => }/core.entity_view_mode.tour.token.yml | 0 config/{sync => }/core.entity_view_mode.user.compact.yml | 0 config/{sync => }/core.entity_view_mode.user.full.yml | 0 config/{sync => }/core.entity_view_mode.user.token.yml | 0 config/{sync => }/core.extension.yml | 0 config/{sync => }/core.menu.static_menu_link_overrides.yml | 0 config/{sync => }/crop.settings.yml | 0 config/{sync => }/crop.type.focal_point.yml | 0 config/{sync => }/customerror.settings.yml | 0 config/{sync => }/dblog.settings.yml | 0 config/{sync => }/diff.settings.yml | 0 config/{sync => }/dropdown_language.setting.yml | 0 config/{sync => }/ds.settings.yml | 0 config/{sync => }/editor.editor.basic_html.yml | 0 config/{sync => }/editor.editor.full_html.yml | 0 config/{sync => }/editor.editor.minimalhtml.yml | 0 config/{sync => }/editor.editor.minimalhtmltitle.yml | 0 config/{sync => }/exclude_node_title.settings.yml | 0 config/{sync => }/facets.facet.article_topics.yml | 0 config/{sync => }/facets.facet.article_type.yml | 0 config/{sync => }/facets.facet.blog_topics.yml | 0 config/{sync => }/facets.facet.event_topics.yml | 0 config/{sync => }/facets.facet.event_type.yml | 0 config/{sync => }/facets.facet.resource_topics.yml | 0 config/{sync => }/facets.facet.resource_type.yml | 0 ...ts.facet_source.search_api__views_page__blog__page_listing.yml | 0 config/{sync => }/field.field.block_content.basic.body.yml | 0 ...ld.block_content.content_reference.field_content_reference.yml | 0 config/{sync => }/field.field.block_content.slide.field_slide.yml | 0 config/{sync => }/field.field.comment.comment.comment_body.yml | 0 config/{sync => }/field.field.group.group.field_group_address.yml | 0 .../field.field.group.group.field_group_description.yml | 0 config/{sync => }/field.field.group.group.field_group_email.yml | 0 config/{sync => }/field.field.group.group.field_group_image.yml | 0 config/{sync => }/field.field.group.group.field_group_phone.yml | 0 config/{sync => }/field.field.group.group.field_group_summary.yml | 0 config/{sync => }/field.field.group.group.field_group_type.yml | 0 config/{sync => }/field.field.group.group.field_group_website.yml | 0 ...eld.field.group_content.group-group_membership.group_roles.yml | 0 config/{sync => }/field.field.node.action.body.yml | 0 .../{sync => }/field.field.node.action.field_action_end_date.yml | 0 config/{sync => }/field.field.node.action.field_action_link.yml | 0 config/{sync => }/field.field.node.action.field_action_type.yml | 0 .../{sync => }/field.field.node.action.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.action.field_image.yml | 0 config/{sync => }/field.field.node.action.field_meta_tags.yml | 0 config/{sync => }/field.field.node.action.field_summary.yml | 0 config/{sync => }/field.field.node.action.field_tags.yml | 0 config/{sync => }/field.field.node.action.field_topics.yml | 0 config/{sync => }/field.field.node.article.body.yml | 0 config/{sync => }/field.field.node.article.comment.yml | 0 config/{sync => }/field.field.node.article.field_article_type.yml | 0 config/{sync => }/field.field.node.article.field_authors.yml | 0 .../{sync => }/field.field.node.article.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.article.field_image.yml | 0 config/{sync => }/field.field.node.article.field_meta_tags.yml | 0 config/{sync => }/field.field.node.article.field_summary.yml | 0 config/{sync => }/field.field.node.article.field_tags.yml | 0 config/{sync => }/field.field.node.article.field_topics.yml | 0 config/{sync => }/field.field.node.blog.body.yml | 0 config/{sync => }/field.field.node.blog.comment.yml | 0 config/{sync => }/field.field.node.blog.field_authors.yml | 0 config/{sync => }/field.field.node.blog.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.blog.field_image.yml | 0 config/{sync => }/field.field.node.blog.field_meta_tags.yml | 0 config/{sync => }/field.field.node.blog.field_summary.yml | 0 config/{sync => }/field.field.node.blog.field_tags.yml | 0 config/{sync => }/field.field.node.blog.field_topics.yml | 0 config/{sync => }/field.field.node.campaign.body.yml | 0 .../{sync => }/field.field.node.campaign.field_body_paragraph.yml | 0 .../field.field.node.campaign.field_campaign_demands.yml | 0 .../field.field.node.campaign.field_campaign_updates.yml | 0 config/{sync => }/field.field.node.campaign.field_image.yml | 0 config/{sync => }/field.field.node.campaign.field_meta_tags.yml | 0 config/{sync => }/field.field.node.campaign.field_summary.yml | 0 config/{sync => }/field.field.node.case_study.body.yml | 0 .../field.field.node.case_study.field_body_paragraph.yml | 0 .../field.field.node.case_study.field_case_study_client.yml | 0 .../field.field.node.case_study.field_case_study_partners.yml | 0 .../field.field.node.case_study.field_case_study_status.yml | 0 .../field.field.node.case_study.field_case_study_subtitle.yml | 0 .../field.field.node.case_study.field_case_study_team.yml | 0 .../field.field.node.case_study.field_case_study_year.yml | 0 config/{sync => }/field.field.node.case_study.field_image.yml | 0 config/{sync => }/field.field.node.case_study.field_license.yml | 0 config/{sync => }/field.field.node.case_study.field_meta_tags.yml | 0 config/{sync => }/field.field.node.case_study.field_services.yml | 0 config/{sync => }/field.field.node.case_study.field_summary.yml | 0 .../{sync => }/field.field.node.case_study.field_technologies.yml | 0 config/{sync => }/field.field.node.event.body.yml | 0 config/{sync => }/field.field.node.event.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.event.field_event_date.yml | 0 config/{sync => }/field.field.node.event.field_event_type.yml | 0 config/{sync => }/field.field.node.event.field_image.yml | 0 config/{sync => }/field.field.node.event.field_meta_tags.yml | 0 config/{sync => }/field.field.node.event.field_summary.yml | 0 config/{sync => }/field.field.node.event.field_tags.yml | 0 config/{sync => }/field.field.node.event.field_topics.yml | 0 .../field.field.node.landing_page.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.landing_page.field_image.yml | 0 .../{sync => }/field.field.node.landing_page.field_meta_tags.yml | 0 config/{sync => }/field.field.node.page.body.yml | 0 config/{sync => }/field.field.node.page.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.page.field_meta_tags.yml | 0 config/{sync => }/field.field.node.page.field_storyline.yml | 0 config/{sync => }/field.field.node.page.field_summary.yml | 0 .../{sync => }/field.field.node.people.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.people.field_image.yml | 0 config/{sync => }/field.field.node.people.field_meta_tags.yml | 0 config/{sync => }/field.field.node.people.field_people_email.yml | 0 .../{sync => }/field.field.node.people.field_people_position.yml | 0 .../field.field.node.people.field_people_public_gpg_key.yml | 0 .../field.field.node.people.field_people_social_media.yml | 0 config/{sync => }/field.field.node.people.field_people_type.yml | 0 config/{sync => }/field.field.node.people.field_summary.yml | 0 config/{sync => }/field.field.node.resource.body.yml | 0 .../{sync => }/field.field.node.resource.field_body_paragraph.yml | 0 config/{sync => }/field.field.node.resource.field_image.yml | 0 config/{sync => }/field.field.node.resource.field_meta_tags.yml | 0 .../{sync => }/field.field.node.resource.field_resource_file.yml | 0 .../{sync => }/field.field.node.resource.field_resource_link.yml | 0 .../{sync => }/field.field.node.resource.field_resource_type.yml | 0 .../{sync => }/field.field.node.resource.field_resource_video.yml | 0 config/{sync => }/field.field.node.resource.field_summary.yml | 0 config/{sync => }/field.field.node.resource.field_tags.yml | 0 config/{sync => }/field.field.node.resource.field_topics.yml | 0 ....field.paragraph.content_reference.field_content_reference.yml | 0 ...d.field.paragraph.embedded_content.field_content_reference.yml | 0 config/{sync => }/field.field.paragraph.faq.field_faq.yml | 0 config/{sync => }/field.field.paragraph.file.field_file.yml | 0 config/{sync => }/field.field.paragraph.image.field_image.yml | 0 .../field.field.paragraph.quotation_with_image.field_image.yml | 0 ...field.field.paragraph.quotation_with_image.field_quotation.yml | 0 ...eld.paragraph.quotation_with_image.field_style_escape_flow.yml | 0 config/{sync => }/field.field.paragraph.slide.field_image.yml | 0 config/{sync => }/field.field.paragraph.slide.field_link.yml | 0 config/{sync => }/field.field.paragraph.slide.field_text.yml | 0 ...ld.field.paragraph.storyline_header.field_storyline_header.yml | 0 ...eld.field.paragraph.storyline_item.field_storyline_heading.yml | 0 .../field.field.paragraph.storyline_item.field_text.yml | 0 .../{sync => }/field.field.paragraph.text.field_style_classes.yml | 0 .../field.field.paragraph.text.field_style_escape_flow.yml | 0 config/{sync => }/field.field.paragraph.text.field_text.yml | 0 config/{sync => }/field.field.paragraph.title.field_image.yml | 0 .../field.field.paragraph.title.field_style_classes.yml | 0 .../{sync => }/field.field.paragraph.title.field_style_color.yml | 0 .../field.field.paragraph.title.field_style_titlebar.yml | 0 config/{sync => }/field.field.paragraph.title.field_subtitle.yml | 0 config/{sync => }/field.field.paragraph.title.field_title.yml | 0 config/{sync => }/field.field.paragraph.update.field_text.yml | 0 .../{sync => }/field.field.paragraph.update.field_update_date.yml | 0 .../{sync => }/field.field.paragraph.video.field_video_embed.yml | 0 .../field.field.paragraph.view.field_style_escape_flow.yml | 0 .../field.field.paragraph.view.field_view_reference.yml | 0 config/{sync => }/field.field.paragraph.webform.field_webform.yml | 0 config/{sync => }/field.field.user.user.user_picture.yml | 0 config/{sync => }/field.settings.yml | 0 config/{sync => }/field.storage.block_content.body.yml | 0 .../field.storage.block_content.field_content_reference.yml | 0 config/{sync => }/field.storage.block_content.field_slide.yml | 0 config/{sync => }/field.storage.comment.comment_body.yml | 0 config/{sync => }/field.storage.comment.indieweb_webmention.yml | 0 config/{sync => }/field.storage.group.field_group_address.yml | 0 config/{sync => }/field.storage.group.field_group_description.yml | 0 config/{sync => }/field.storage.group.field_group_email.yml | 0 config/{sync => }/field.storage.group.field_group_image.yml | 0 config/{sync => }/field.storage.group.field_group_phone.yml | 0 config/{sync => }/field.storage.group.field_group_summary.yml | 0 config/{sync => }/field.storage.group.field_group_type.yml | 0 config/{sync => }/field.storage.group.field_group_website.yml | 0 config/{sync => }/field.storage.group_content.group_roles.yml | 0 config/{sync => }/field.storage.node.body.yml | 0 config/{sync => }/field.storage.node.comment.yml | 0 config/{sync => }/field.storage.node.field_action_end_date.yml | 0 config/{sync => }/field.storage.node.field_action_link.yml | 0 config/{sync => }/field.storage.node.field_action_type.yml | 0 config/{sync => }/field.storage.node.field_article_type.yml | 0 config/{sync => }/field.storage.node.field_authors.yml | 0 config/{sync => }/field.storage.node.field_body_paragraph.yml | 0 config/{sync => }/field.storage.node.field_campaign_demands.yml | 0 config/{sync => }/field.storage.node.field_campaign_updates.yml | 0 config/{sync => }/field.storage.node.field_case_study_client.yml | 0 .../{sync => }/field.storage.node.field_case_study_partners.yml | 0 config/{sync => }/field.storage.node.field_case_study_status.yml | 0 .../{sync => }/field.storage.node.field_case_study_subtitle.yml | 0 config/{sync => }/field.storage.node.field_case_study_team.yml | 0 config/{sync => }/field.storage.node.field_case_study_year.yml | 0 config/{sync => }/field.storage.node.field_event_date.yml | 0 config/{sync => }/field.storage.node.field_event_type.yml | 0 config/{sync => }/field.storage.node.field_image.yml | 0 config/{sync => }/field.storage.node.field_license.yml | 0 config/{sync => }/field.storage.node.field_meta_tags.yml | 0 config/{sync => }/field.storage.node.field_paragraph.yml | 0 config/{sync => }/field.storage.node.field_people_email.yml | 0 config/{sync => }/field.storage.node.field_people_position.yml | 0 .../{sync => }/field.storage.node.field_people_public_gpg_key.yml | 0 .../{sync => }/field.storage.node.field_people_social_media.yml | 0 config/{sync => }/field.storage.node.field_people_type.yml | 0 config/{sync => }/field.storage.node.field_resource_file.yml | 0 config/{sync => }/field.storage.node.field_resource_link.yml | 0 config/{sync => }/field.storage.node.field_resource_type.yml | 0 config/{sync => }/field.storage.node.field_resource_video.yml | 0 config/{sync => }/field.storage.node.field_services.yml | 0 config/{sync => }/field.storage.node.field_storyline.yml | 0 config/{sync => }/field.storage.node.field_summary.yml | 0 config/{sync => }/field.storage.node.field_tags.yml | 0 config/{sync => }/field.storage.node.field_technologies.yml | 0 config/{sync => }/field.storage.node.field_topics.yml | 0 .../field.storage.paragraph.field_content_reference.yml | 0 config/{sync => }/field.storage.paragraph.field_faq.yml | 0 config/{sync => }/field.storage.paragraph.field_file.yml | 0 config/{sync => }/field.storage.paragraph.field_image.yml | 0 config/{sync => }/field.storage.paragraph.field_link.yml | 0 config/{sync => }/field.storage.paragraph.field_quotation.yml | 0 .../{sync => }/field.storage.paragraph.field_storyline_header.yml | 0 .../field.storage.paragraph.field_storyline_heading.yml | 0 config/{sync => }/field.storage.paragraph.field_style_classes.yml | 0 config/{sync => }/field.storage.paragraph.field_style_color.yml | 0 .../field.storage.paragraph.field_style_escape_flow.yml | 0 .../{sync => }/field.storage.paragraph.field_style_titlebar.yml | 0 config/{sync => }/field.storage.paragraph.field_subtitle.yml | 0 config/{sync => }/field.storage.paragraph.field_text.yml | 0 config/{sync => }/field.storage.paragraph.field_title.yml | 0 config/{sync => }/field.storage.paragraph.field_update_date.yml | 0 config/{sync => }/field.storage.paragraph.field_video_embed.yml | 0 .../{sync => }/field.storage.paragraph.field_view_reference.yml | 0 config/{sync => }/field.storage.paragraph.field_webform.yml | 0 config/{sync => }/field.storage.user.user_picture.yml | 0 config/{sync => }/field_ui.settings.yml | 0 config/{sync => }/file.settings.yml | 0 config/{sync => }/filter.format.basic_html.yml | 0 config/{sync => }/filter.format.full_html.yml | 0 config/{sync => }/filter.format.markdown.yml | 0 config/{sync => }/filter.format.minimalhtml.yml | 0 config/{sync => }/filter.format.minimalhtmltitle.yml | 0 config/{sync => }/filter.format.plain_text.yml | 0 config/{sync => }/filter.format.restricted_html.yml | 0 config/{sync => }/filter.settings.yml | 0 config/{sync => }/focal_point.settings.yml | 0 config/{sync => }/google_analytics.settings.yml | 0 config/{sync => }/group.content_type.group-group_membership.yml | 0 config/{sync => }/group.role.group-0b0baeca9.yml | 0 config/{sync => }/group.role.group-1ac17d355.yml | 0 config/{sync => }/group.role.group-2d8610827.yml | 0 config/{sync => }/group.role.group-443ed8e03.yml | 0 config/{sync => }/group.role.group-5165abfe1.yml | 0 config/{sync => }/group.role.group-a416e6833.yml | 0 config/{sync => }/group.role.group-anonymous.yml | 0 config/{sync => }/group.role.group-ec70061de.yml | 0 config/{sync => }/group.role.group-member.yml | 0 config/{sync => }/group.role.group-outsider.yml | 0 config/{sync => }/group.settings.yml | 0 config/{sync => }/group.type.group.yml | 0 config/{sync => }/hal.settings.yml | 0 config/{sync => }/honeypot.settings.yml | 0 config/{sync => }/image.settings.yml | 0 config/{sync => }/image.style.landscape.yml | 0 config/{sync => }/image.style.large.yml | 0 config/{sync => }/image.style.max_1300x1300.yml | 0 config/{sync => }/image.style.max_2600x2600.yml | 0 config/{sync => }/image.style.max_325x325.yml | 0 config/{sync => }/image.style.max_650x650.yml | 0 config/{sync => }/image.style.medium.yml | 0 config/{sync => }/image.style.small_landscape.yml | 0 config/{sync => }/image.style.small_square.yml | 0 config/{sync => }/image.style.square_thumbnail.yml | 0 config/{sync => }/image.style.thumbnail.yml | 0 config/{sync => }/indieweb_context.settings.yml | 0 config/{sync => }/indieweb_microformat.settings.yml | 0 config/{sync => }/indieweb_webmention.comment.yml | 0 config/{sync => }/indieweb_webmention.settings.yml | 0 .../{sync => }/language.content_settings.block_content.basic.yml | 0 .../language.content_settings.block_content.content_reference.yml | 0 .../{sync => }/language.content_settings.block_content.slide.yml | 0 config/{sync => }/language.content_settings.comment.comment.yml | 0 .../language.content_settings.contact_message.feedback.yml | 0 .../language.content_settings.contact_message.personal.yml | 0 config/{sync => }/language.content_settings.file.file.yml | 0 config/{sync => }/language.content_settings.group.group.yml | 0 ...uage.content_settings.group_content.group-group_membership.yml | 0 ...e.content_settings.indieweb_webmention.indieweb_webmention.yml | 0 ...guage.content_settings.menu_link_content.menu_link_content.yml | 0 config/{sync => }/language.content_settings.node.action.yml | 0 config/{sync => }/language.content_settings.node.article.yml | 0 config/{sync => }/language.content_settings.node.blog.yml | 0 config/{sync => }/language.content_settings.node.campaign.yml | 0 config/{sync => }/language.content_settings.node.case_study.yml | 0 config/{sync => }/language.content_settings.node.event.yml | 0 config/{sync => }/language.content_settings.node.landing_page.yml | 0 config/{sync => }/language.content_settings.node.page.yml | 0 config/{sync => }/language.content_settings.node.people.yml | 0 config/{sync => }/language.content_settings.node.resource.yml | 0 config/{sync => }/language.content_settings.paragraph.faq.yml | 0 config/{sync => }/language.content_settings.paragraph.file.yml | 0 config/{sync => }/language.content_settings.paragraph.image.yml | 0 .../language.content_settings.paragraph.quotation_with_image.yml | 0 config/{sync => }/language.content_settings.paragraph.slide.yml | 0 .../language.content_settings.paragraph.storyline_header.yml | 0 .../language.content_settings.paragraph.storyline_item.yml | 0 config/{sync => }/language.content_settings.paragraph.text.yml | 0 config/{sync => }/language.content_settings.paragraph.title.yml | 0 config/{sync => }/language.content_settings.paragraph.update.yml | 0 config/{sync => }/language.content_settings.paragraph.video.yml | 0 config/{sync => }/language.content_settings.paragraph.view.yml | 0 config/{sync => }/language.content_settings.paragraph.webform.yml | 0 .../language.content_settings.path_alias.path_alias.yml | 0 config/{sync => }/language.content_settings.redirect.redirect.yml | 0 config/{sync => }/language.content_settings.shortcut.default.yml | 0 .../language.content_settings.taxonomy_term.action_type.yml | 0 .../language.content_settings.taxonomy_term.article_type.yml | 0 .../language.content_settings.taxonomy_term.event_type.yml | 0 .../language.content_settings.taxonomy_term.group_type.yml | 0 .../language.content_settings.taxonomy_term.license.yml | 0 .../language.content_settings.taxonomy_term.people_type.yml | 0 .../language.content_settings.taxonomy_term.resource_type.yml | 0 .../language.content_settings.taxonomy_term.services.yml | 0 .../{sync => }/language.content_settings.taxonomy_term.tags.yml | 0 .../language.content_settings.taxonomy_term.technologies.yml | 0 .../{sync => }/language.content_settings.taxonomy_term.topics.yml | 0 config/{sync => }/language.content_settings.user.user.yml | 0 ...ttings.webform_submission.attend_the_tech_and_rev_workshop.yml | 0 .../language.content_settings.webform_submission.contact.yml | 0 ...guage.content_settings.webform_submission.general_services.yml | 0 .../language.content_settings.webform_submission.training.yml | 0 config/{sync => }/language.entity.en.yml | 0 config/{sync => }/language.entity.es.yml | 0 config/{sync => }/language.entity.und.yml | 0 config/{sync => }/language.entity.zxx.yml | 0 config/{sync => }/language.mappings.yml | 0 config/{sync => }/language.negotiation.yml | 0 config/{sync => }/language.types.yml | 0 .../language/es/block.block.agarica_powered_by_drutopia.yml | 0 config/{sync => }/language/es/block.block.bulma_main_menu.yml | 0 config/{sync => }/language/es/block.block.octavia_main_menu.yml | 0 .../es/block_visibility_groups.block_visibility_group.search.yml | 0 config/{sync => }/language/es/contact.form.feedback.yml | 0 config/{sync => }/language/es/contact.form.personal.yml | 0 .../language/es/core.base_field_override.node.people.title.yml | 0 .../language/es/core.entity_view_mode.paragraph.preview.yml | 0 .../language/es/field.field.block_content.basic.body.yml | 0 .../language/es/field.field.group.group.field_group_email.yml | 0 config/{sync => }/language/es/field.field.node.action.body.yml | 0 .../{sync => }/language/es/field.field.node.action.field_tags.yml | 0 config/{sync => }/language/es/field.field.node.article.body.yml | 0 .../{sync => }/language/es/field.field.node.article.comment.yml | 0 .../language/es/field.field.node.article.field_tags.yml | 0 config/{sync => }/language/es/field.field.node.blog.body.yml | 0 config/{sync => }/language/es/field.field.node.blog.comment.yml | 0 .../{sync => }/language/es/field.field.node.blog.field_tags.yml | 0 config/{sync => }/language/es/field.field.node.campaign.body.yml | 0 .../{sync => }/language/es/field.field.node.case_study.body.yml | 0 .../es/field.field.node.case_study.field_case_study_status.yml | 0 .../language/es/field.field.node.case_study.field_services.yml | 0 config/{sync => }/language/es/field.field.node.event.body.yml | 0 .../{sync => }/language/es/field.field.node.event.field_tags.yml | 0 config/{sync => }/language/es/field.field.node.page.body.yml | 0 config/{sync => }/language/es/field.field.node.resource.body.yml | 0 .../language/es/field.field.node.resource.field_tags.yml | 0 config/{sync => }/language/es/group.type.group.yml | 0 config/{sync => }/language/es/metatag.metatag_defaults.front.yml | 0 config/{sync => }/language/es/metatag.metatag_defaults.node.yml | 0 config/{sync => }/language/es/metatag.metatag_defaults.user.yml | 0 config/{sync => }/language/es/node.type.action.yml | 0 config/{sync => }/language/es/node.type.case_study.yml | 0 config/{sync => }/language/es/node.type.page.yml | 0 config/{sync => }/language/es/pathauto.pattern.case_study.yml | 0 config/{sync => }/language/es/pathauto.pattern.group.yml | 0 config/{sync => }/language/es/search_api.index.action.yml | 0 config/{sync => }/language/es/search_api.index.case_study.yml | 0 config/{sync => }/language/es/shortcut.set.default.yml | 0 config/{sync => }/language/es/system.menu.main.yml | 0 config/{sync => }/language/es/taxonomy.vocabulary.services.yml | 0 config/{sync => }/language/es/taxonomy.vocabulary.tags.yml | 0 config/{sync => }/language/es/tour.tour.locale.yml | 0 .../{sync => }/language/es/tour.tour.search-api-index-fields.yml | 0 config/{sync => }/language/es/tour.tour.search-api-index.yml | 0 config/{sync => }/language/es/tour.tour.search-api-server.yml | 0 config/{sync => }/language/es/tour.tour.views-ui.yml | 0 config/{sync => }/language/es/views.view.action.yml | 0 config/{sync => }/language/es/views.view.archive.yml | 0 config/{sync => }/language/es/views.view.article.yml | 0 config/{sync => }/language/es/views.view.block_content.yml | 0 config/{sync => }/language/es/views.view.blog.yml | 0 config/{sync => }/language/es/views.view.campaign.yml | 0 config/{sync => }/language/es/views.view.case_study.yml | 0 config/{sync => }/language/es/views.view.comment.yml | 0 config/{sync => }/language/es/views.view.comments_recent.yml | 0 config/{sync => }/language/es/views.view.content.yml | 0 config/{sync => }/language/es/views.view.content_recent.yml | 0 config/{sync => }/language/es/views.view.event.yml | 0 config/{sync => }/language/es/views.view.files.yml | 0 config/{sync => }/language/es/views.view.frontpage.yml | 0 config/{sync => }/language/es/views.view.glossary.yml | 0 config/{sync => }/language/es/views.view.group.yml | 0 config/{sync => }/language/es/views.view.group_content.yml | 0 config/{sync => }/language/es/views.view.group_members.yml | 0 config/{sync => }/language/es/views.view.group_nodes.yml | 0 config/{sync => }/language/es/views.view.people.yml | 0 config/{sync => }/language/es/views.view.redirect.yml | 0 config/{sync => }/language/es/views.view.redirect_404.yml | 0 config/{sync => }/language/es/views.view.resource.yml | 0 config/{sync => }/language/es/views.view.search.yml | 0 config/{sync => }/language/es/views.view.taxonomy_term.yml | 0 config/{sync => }/language/es/views.view.user_admin_people.yml | 0 config/{sync => }/language/es/views.view.watchdog.yml | 0 config/{sync => }/language/es/views.view.webform_submissions.yml | 0 config/{sync => }/language/es/views.view.webmentions.yml | 0 config/{sync => }/language/es/views.view.who_s_new.yml | 0 config/{sync => }/language/es/webform.settings.yml | 0 config/{sync => }/language/es/webform.webform.capacitacion.yml | 0 config/{sync => }/language/es/webform.webform.contact.yml | 0 config/{sync => }/language/es/webform.webform.contacto.yml | 0 config/{sync => }/language/es/webform.webform.training.yml | 0 config/{sync => }/locale.settings.yml | 0 config/{sync => }/mailchimp.settings.yml | 0 config/{sync => }/markdown.settings.yml | 0 config/{sync => }/menu_ui.settings.yml | 0 config/{sync => }/metatag.metatag_defaults.403.yml | 0 config/{sync => }/metatag.metatag_defaults.404.yml | 0 config/{sync => }/metatag.metatag_defaults.front.yml | 0 config/{sync => }/metatag.metatag_defaults.global.yml | 0 config/{sync => }/metatag.metatag_defaults.node.yml | 0 config/{sync => }/metatag.metatag_defaults.taxonomy_term.yml | 0 config/{sync => }/metatag.metatag_defaults.user.yml | 0 config/{sync => }/migrate_drupal.settings.yml | 0 config/{sync => }/migrate_plus.migration_group.agaric.yml | 0 config/{sync => }/migrate_plus.migration_group.default.yml | 0 config/{sync => }/node.settings.yml | 0 config/{sync => }/node.type.action.yml | 0 config/{sync => }/node.type.article.yml | 0 config/{sync => }/node.type.blog.yml | 0 config/{sync => }/node.type.campaign.yml | 0 config/{sync => }/node.type.case_study.yml | 0 config/{sync => }/node.type.event.yml | 0 config/{sync => }/node.type.landing_page.yml | 0 config/{sync => }/node.type.page.yml | 0 config/{sync => }/node.type.people.yml | 0 config/{sync => }/node.type.resource.yml | 0 config/{sync => }/octavia.settings.yml | 0 .../{sync => }/paragraphs.paragraphs_type.content_reference.yml | 0 config/{sync => }/paragraphs.paragraphs_type.embedded_content.yml | 0 config/{sync => }/paragraphs.paragraphs_type.faq.yml | 0 config/{sync => }/paragraphs.paragraphs_type.file.yml | 0 config/{sync => }/paragraphs.paragraphs_type.image.yml | 0 .../paragraphs.paragraphs_type.quotation_with_image.yml | 0 config/{sync => }/paragraphs.paragraphs_type.slide.yml | 0 config/{sync => }/paragraphs.paragraphs_type.storyline_header.yml | 0 config/{sync => }/paragraphs.paragraphs_type.storyline_item.yml | 0 config/{sync => }/paragraphs.paragraphs_type.text.yml | 0 config/{sync => }/paragraphs.paragraphs_type.title.yml | 0 config/{sync => }/paragraphs.paragraphs_type.update.yml | 0 config/{sync => }/paragraphs.paragraphs_type.video.yml | 0 config/{sync => }/paragraphs.paragraphs_type.view.yml | 0 config/{sync => }/paragraphs.paragraphs_type.webform.yml | 0 config/{sync => }/paragraphs.settings.yml | 0 config/{sync => }/paragraphs_features.settings.yml | 0 config/{sync => }/pathauto.pattern.article_type.yml | 0 config/{sync => }/pathauto.pattern.case_study.yml | 0 config/{sync => }/pathauto.pattern.event_type.yml | 0 config/{sync => }/pathauto.pattern.group.yml | 0 config/{sync => }/pathauto.pattern.group_content.yml | 0 config/{sync => }/pathauto.pattern.group_membership.yml | 0 config/{sync => }/pathauto.pattern.group_type.yml | 0 config/{sync => }/pathauto.pattern.node_action.yml | 0 config/{sync => }/pathauto.pattern.node_article.yml | 0 config/{sync => }/pathauto.pattern.node_blog.yml | 0 config/{sync => }/pathauto.pattern.node_campaign.yml | 0 config/{sync => }/pathauto.pattern.node_event.yml | 0 config/{sync => }/pathauto.pattern.node_landing_page.yml | 0 config/{sync => }/pathauto.pattern.node_page.yml | 0 config/{sync => }/pathauto.pattern.node_resource.yml | 0 config/{sync => }/pathauto.pattern.people_node.yml | 0 config/{sync => }/pathauto.pattern.people_type.yml | 0 config/{sync => }/pathauto.pattern.vocabulary_terms.yml | 0 config/{sync => }/pathauto.settings.yml | 0 config/{sync => }/preview_link.settings.yml | 0 config/{sync => }/rdf.mapping.comment.comment.yml | 0 config/{sync => }/rdf.mapping.node.article.yml | 0 config/{sync => }/rdf.mapping.node.page.yml | 0 config/{sync => }/rdf.mapping.taxonomy_term.tags.yml | 0 config/{sync => }/rdf.mapping.taxonomy_term.topics.yml | 0 config/{sync => }/rdf.mapping.user.user.yml | 0 config/{sync => }/redirect.settings.yml | 0 config/{sync => }/redirect_404.settings.yml | 0 config/{sync => }/responsive_image.styles.narrow.yml | 0 config/{sync => }/responsive_image.styles.wide.yml | 0 config/{sync => }/scn.settings.yml | 0 config/{sync => }/search_api.index.action.yml | 0 config/{sync => }/search_api.index.article.yml | 0 config/{sync => }/search_api.index.blog.yml | 0 config/{sync => }/search_api.index.campaign.yml | 0 config/{sync => }/search_api.index.case_study.yml | 0 config/{sync => }/search_api.index.content.yml | 0 config/{sync => }/search_api.index.event.yml | 0 config/{sync => }/search_api.index.people.yml | 0 config/{sync => }/search_api.index.resource.yml | 0 config/{sync => }/search_api.server.database.yml | 0 config/{sync => }/search_api.settings.yml | 0 config/{sync => }/search_api_db.settings.yml | 0 config/{sync => }/serialization.settings.yml | 0 config/{sync => }/seven.settings.yml | 0 config/{sync => }/shortcut.set.default.yml | 0 config/{sync => }/statistics.settings.yml | 0 config/{sync => }/stripe.settings.yml | 0 config/{sync => }/syslog.settings.yml | 0 config/{sync => }/system.action.comment_delete_action.yml | 0 config/{sync => }/system.action.comment_publish_action.yml | 0 config/{sync => }/system.action.comment_save_action.yml | 0 config/{sync => }/system.action.comment_unpublish_action.yml | 0 config/{sync => }/system.action.node_delete_action.yml | 0 config/{sync => }/system.action.node_make_sticky_action.yml | 0 config/{sync => }/system.action.node_make_unsticky_action.yml | 0 config/{sync => }/system.action.node_promote_action.yml | 0 config/{sync => }/system.action.node_publish_action.yml | 0 config/{sync => }/system.action.node_save_action.yml | 0 config/{sync => }/system.action.node_unpromote_action.yml | 0 config/{sync => }/system.action.node_unpublish_action.yml | 0 config/{sync => }/system.action.pathauto_update_alias_node.yml | 0 config/{sync => }/system.action.pathauto_update_alias_user.yml | 0 config/{sync => }/system.action.redirect_delete_action.yml | 0 .../system.action.user_add_role_action.administrator.yml | 0 .../{sync => }/system.action.user_add_role_action.contributor.yml | 0 config/{sync => }/system.action.user_add_role_action.editor.yml | 0 config/{sync => }/system.action.user_add_role_action.manager.yml | 0 config/{sync => }/system.action.user_add_role_action.partner.yml | 0 config/{sync => }/system.action.user_add_role_action.past.yml | 0 config/{sync => }/system.action.user_add_role_action.staff.yml | 0 config/{sync => }/system.action.user_block_user_action.yml | 0 config/{sync => }/system.action.user_cancel_user_action.yml | 0 .../system.action.user_remove_role_action.administrator.yml | 0 .../system.action.user_remove_role_action.contributor.yml | 0 .../{sync => }/system.action.user_remove_role_action.editor.yml | 0 .../{sync => }/system.action.user_remove_role_action.manager.yml | 0 .../{sync => }/system.action.user_remove_role_action.partner.yml | 0 config/{sync => }/system.action.user_remove_role_action.past.yml | 0 config/{sync => }/system.action.user_remove_role_action.staff.yml | 0 config/{sync => }/system.action.user_unblock_user_action.yml | 0 .../{sync => }/system.action.webform_submission_delete_action.yml | 0 .../system.action.webform_submission_make_lock_action.yml | 0 .../system.action.webform_submission_make_sticky_action.yml | 0 .../system.action.webform_submission_make_unlock_action.yml | 0 .../system.action.webform_submission_make_unsticky_action.yml | 0 config/{sync => }/system.action.webmention_delete_action.yml | 0 config/{sync => }/system.action.webmention_publish_action.yml | 0 config/{sync => }/system.action.webmention_unpublish_action.yml | 0 config/{sync => }/system.authorize.yml | 0 config/{sync => }/system.cron.yml | 0 config/{sync => }/system.date.yml | 0 config/{sync => }/system.diff.yml | 0 config/{sync => }/system.file.yml | 0 config/{sync => }/system.image.gd.yml | 0 config/{sync => }/system.image.yml | 0 config/{sync => }/system.logging.yml | 0 config/{sync => }/system.mail.yml | 0 config/{sync => }/system.maintenance.yml | 0 config/{sync => }/system.menu.account.yml | 0 config/{sync => }/system.menu.admin.yml | 0 config/{sync => }/system.menu.footer.yml | 0 config/{sync => }/system.menu.main.yml | 0 config/{sync => }/system.menu.tools.yml | 0 config/{sync => }/system.performance.yml | 0 config/{sync => }/system.rss.yml | 0 config/{sync => }/system.site.yml | 0 config/{sync => }/system.theme.global.yml | 0 config/{sync => }/system.theme.yml | 0 config/{sync => }/taxonomy.settings.yml | 0 config/{sync => }/taxonomy.vocabulary.action_type.yml | 0 config/{sync => }/taxonomy.vocabulary.article_type.yml | 0 config/{sync => }/taxonomy.vocabulary.event_type.yml | 0 config/{sync => }/taxonomy.vocabulary.group_type.yml | 0 config/{sync => }/taxonomy.vocabulary.license.yml | 0 config/{sync => }/taxonomy.vocabulary.people_type.yml | 0 config/{sync => }/taxonomy.vocabulary.resource_type.yml | 0 config/{sync => }/taxonomy.vocabulary.services.yml | 0 config/{sync => }/taxonomy.vocabulary.tags.yml | 0 config/{sync => }/taxonomy.vocabulary.technologies.yml | 0 config/{sync => }/taxonomy.vocabulary.topics.yml | 0 config/{sync => }/text.settings.yml | 0 config/{sync => }/tour.tour.honeypot.yml | 0 config/{sync => }/tour.tour.language-add.yml | 0 config/{sync => }/tour.tour.language-edit.yml | 0 config/{sync => }/tour.tour.language.yml | 0 config/{sync => }/tour.tour.locale.yml | 0 config/{sync => }/tour.tour.search-api-index-fields.yml | 0 config/{sync => }/tour.tour.search-api-index-form.yml | 0 config/{sync => }/tour.tour.search-api-index-processors.yml | 0 config/{sync => }/tour.tour.search-api-index.yml | 0 config/{sync => }/tour.tour.search-api-server-form.yml | 0 config/{sync => }/tour.tour.search-api-server.yml | 0 config/{sync => }/tour.tour.views-ui.yml | 0 config/{sync => }/update.settings.yml | 0 config/{sync => }/user.flood.yml | 0 config/{sync => }/user.mail.yml | 0 config/{sync => }/user.role.administrator.yml | 0 config/{sync => }/user.role.anonymous.yml | 0 config/{sync => }/user.role.authenticated.yml | 0 config/{sync => }/user.role.contributor.yml | 0 config/{sync => }/user.role.editor.yml | 0 config/{sync => }/user.role.manager.yml | 0 config/{sync => }/user.role.partner.yml | 0 config/{sync => }/user.role.past.yml | 0 config/{sync => }/user.role.staff.yml | 0 config/{sync => }/user.settings.yml | 0 config/{sync => }/views.settings.yml | 0 config/{sync => }/views.view.action.yml | 0 config/{sync => }/views.view.archive.yml | 0 config/{sync => }/views.view.article.yml | 0 config/{sync => }/views.view.block_content.yml | 0 config/{sync => }/views.view.blog.yml | 0 config/{sync => }/views.view.campaign.yml | 0 config/{sync => }/views.view.case_study.yml | 0 config/{sync => }/views.view.comment.yml | 0 config/{sync => }/views.view.comments_recent.yml | 0 config/{sync => }/views.view.content.yml | 0 config/{sync => }/views.view.content_recent.yml | 0 config/{sync => }/views.view.event.yml | 0 config/{sync => }/views.view.files.yml | 0 config/{sync => }/views.view.frontpage.yml | 0 config/{sync => }/views.view.glossary.yml | 0 config/{sync => }/views.view.group.yml | 0 config/{sync => }/views.view.group_content.yml | 0 config/{sync => }/views.view.group_members.yml | 0 config/{sync => }/views.view.group_nodes.yml | 0 config/{sync => }/views.view.people.yml | 0 config/{sync => }/views.view.redirect.yml | 0 config/{sync => }/views.view.redirect_404.yml | 0 config/{sync => }/views.view.related_content.yml | 0 config/{sync => }/views.view.resource.yml | 0 config/{sync => }/views.view.search.yml | 0 config/{sync => }/views.view.taxonomy_term.yml | 0 config/{sync => }/views.view.user_admin_people.yml | 0 config/{sync => }/views.view.watchdog.yml | 0 config/{sync => }/views.view.webform_submissions.yml | 0 config/{sync => }/views.view.webmentions.yml | 0 config/{sync => }/views.view.who_s_new.yml | 0 config/{sync => }/views.view.who_s_online.yml | 0 config/{sync => }/webform.settings.yml | 0 .../webform.webform.attend_the_tech_and_rev_workshop.yml | 0 config/{sync => }/webform.webform.blog_posts.yml | 0 config/{sync => }/webform.webform.capacitacion.yml | 0 config/{sync => }/webform.webform.contact.yml | 0 config/{sync => }/webform.webform.contact_confirm.yml | 0 .../{sync => }/webform.webform.drupal_8_9_content_migrations.yml | 0 config/{sync => }/webform.webform.drutopia_intake.yml | 0 config/{sync => }/webform.webform.drutopia_platform_intake.yml | 0 config/{sync => }/webform.webform.find_it_platform.yml | 0 config/{sync => }/webform.webform.general_services.yml | 0 .../{sync => }/webform.webform.getting_started_with_drupal_9.yml | 0 .../{sync => }/webform.webform.getting_started_with_react_js.yml | 0 config/{sync => }/webform.webform.join_the_movement.yml | 0 config/{sync => }/webform.webform.join_the_movement_confirm.yml | 0 config/{sync => }/webform.webform.june_2020_webinars.yml | 0 config/{sync => }/webform.webform.lms.yml | 0 config/{sync => }/webform.webform.migrations.yml | 0 config/{sync => }/webform.webform.migrations_training_confirm.yml | 0 config/{sync => }/webform.webform.newsletter.yml | 0 .../{sync => }/webform.webform.purchase_training_migrate_api.yml | 0 config/{sync => }/webform.webform.request.yml | 0 config/{sync => }/webform.webform.showandtell.yml | 0 config/{sync => }/webform.webform.speaker_request_agaric.yml | 0 .../{sync => }/webform.webform.speaker_request_clayton_dewey.yml | 0 .../webform.webform.speaker_request_mauricio_dinarte.yml | 0 .../{sync => }/webform.webform.speaker_request_michele_metts.yml | 0 config/{sync => }/webform.webform.speaker_request_micky_metts.yml | 0 config/{sync => }/webform.webform.training.yml | 0 config/{sync => }/webform.webform.training_discount.yml | 0 .../{sync => }/webform.webform.training_notification_request.yml | 0 config/{sync => }/webform.webform.training_request_draft.yml | 0 config/{sync => }/webform.webform.workshops.yml | 0 config/{sync => }/webform.webform_options.country_codes.yml | 0 config/{sync => }/webform.webform_options.country_names.yml | 0 config/{sync => }/webform.webform_options.days.yml | 0 config/{sync => }/webform.webform_options.education.yml | 0 config/{sync => }/webform.webform_options.employment_status.yml | 0 config/{sync => }/webform.webform_options.ethnicity.yml | 0 config/{sync => }/webform.webform_options.gender.yml | 0 config/{sync => }/webform.webform_options.industry.yml | 0 config/{sync => }/webform.webform_options.languages.yml | 0 config/{sync => }/webform.webform_options.likert_agreement.yml | 0 config/{sync => }/webform.webform_options.likert_comparison.yml | 0 config/{sync => }/webform.webform_options.likert_importance.yml | 0 config/{sync => }/webform.webform_options.likert_quality.yml | 0 config/{sync => }/webform.webform_options.likert_satisfaction.yml | 0 config/{sync => }/webform.webform_options.likert_ten_scale.yml | 0 config/{sync => }/webform.webform_options.likert_would_you.yml | 0 config/{sync => }/webform.webform_options.marital_status.yml | 0 config/{sync => }/webform.webform_options.months.yml | 0 config/{sync => }/webform.webform_options.phone_types.yml | 0 config/{sync => }/webform.webform_options.relationship.yml | 0 config/{sync => }/webform.webform_options.size.yml | 0 config/{sync => }/webform.webform_options.state_codes.yml | 0 config/{sync => }/webform.webform_options.state_names.yml | 0 .../{sync => }/webform.webform_options.state_province_codes.yml | 0 .../{sync => }/webform.webform_options.state_province_names.yml | 0 config/{sync => }/webform.webform_options.time_zones.yml | 0 config/{sync => }/webform.webform_options.yes_no.yml | 0 config/{sync => }/webform_scheduled_email.settings.yml | 0 1372 files changed, 0 insertions(+), 0 deletions(-) rename config/{sync => }/.htaccess (100%) rename config/{sync => }/antibot.settings.yml (100%) rename config/{sync => }/automated_cron.settings.yml (100%) rename config/{sync => }/autosave_form.messages.yml (100%) rename config/{sync => }/autosave_form.settings.yml (100%) rename config/{sync => }/block.block.agarica_account_menu.yml (100%) rename config/{sync => }/block.block.agarica_branding.yml (100%) rename config/{sync => }/block.block.agarica_content.yml (100%) rename config/{sync => }/block.block.agarica_footer_menu.yml (100%) rename config/{sync => }/block.block.agarica_group_operations.yml (100%) rename config/{sync => }/block.block.agarica_help.yml (100%) rename config/{sync => }/block.block.agarica_home_page_custom_1.yml (100%) rename config/{sync => }/block.block.agarica_home_page_custom_2.yml (100%) rename config/{sync => }/block.block.agarica_home_page_custom_3.yml (100%) rename config/{sync => }/block.block.agarica_local_actions.yml (100%) rename config/{sync => }/block.block.agarica_local_tasks.yml (100%) rename config/{sync => }/block.block.agarica_main_menu.yml (100%) rename config/{sync => }/block.block.agarica_messages.yml (100%) rename config/{sync => }/block.block.agarica_page_title.yml (100%) rename config/{sync => }/block.block.agarica_powered_by_drutopia.yml (100%) rename config/{sync => }/block.block.agarica_socialmedialinks.yml (100%) rename config/{sync => }/block.block.agarica_views_block__related_content_block_related_content.yml (100%) rename config/{sync => }/block.block.agaricnewsletter.yml (100%) rename config/{sync => }/block.block.article_topics_facet.yml (100%) rename config/{sync => }/block.block.article_type_facet.yml (100%) rename config/{sync => }/block.block.blog_topics_facet.yml (100%) rename config/{sync => }/block.block.bulma_account_menu.yml (100%) rename config/{sync => }/block.block.bulma_branding.yml (100%) rename config/{sync => }/block.block.bulma_content.yml (100%) rename config/{sync => }/block.block.bulma_help.yml (100%) rename config/{sync => }/block.block.bulma_local_tasks.yml (100%) rename config/{sync => }/block.block.bulma_main_menu.yml (100%) rename config/{sync => }/block.block.bulma_messages.yml (100%) rename config/{sync => }/block.block.bulma_page_title.yml (100%) rename config/{sync => }/block.block.bulma_powered.yml (100%) rename config/{sync => }/block.block.bulma_tools.yml (100%) rename config/{sync => }/block.block.content_search_form_global.yml (100%) rename config/{sync => }/block.block.content_search_form_search.yml (100%) rename config/{sync => }/block.block.event_topics_facet.yml (100%) rename config/{sync => }/block.block.event_type_facet.yml (100%) rename config/{sync => }/block.block.exposedformsearchpage_1.yml (100%) rename config/{sync => }/block.block.exposedformsearchpage_1_2.yml (100%) rename config/{sync => }/block.block.footer_about_us.yml (100%) rename config/{sync => }/block.block.footer_get_involved.yml (100%) rename config/{sync => }/block.block.footer_our_work.yml (100%) rename config/{sync => }/block.block.group_operations.yml (100%) rename config/{sync => }/block.block.hireagaric.yml (100%) rename config/{sync => }/block.block.home_page_custom_1.yml (100%) rename config/{sync => }/block.block.home_page_custom_2.yml (100%) rename config/{sync => }/block.block.home_page_custom_3.yml (100%) rename config/{sync => }/block.block.home_page_feature.yml (100%) rename config/{sync => }/block.block.languageswitcher.yml (100%) rename config/{sync => }/block.block.mainnavigation.yml (100%) rename config/{sync => }/block.block.octavia_account_menu.yml (100%) rename config/{sync => }/block.block.octavia_branding.yml (100%) rename config/{sync => }/block.block.octavia_content.yml (100%) rename config/{sync => }/block.block.octavia_footer_menu.yml (100%) rename config/{sync => }/block.block.octavia_help.yml (100%) rename config/{sync => }/block.block.octavia_local_actions.yml (100%) rename config/{sync => }/block.block.octavia_local_tasks.yml (100%) rename config/{sync => }/block.block.octavia_main_menu.yml (100%) rename config/{sync => }/block.block.octavia_messages.yml (100%) rename config/{sync => }/block.block.octavia_page_title.yml (100%) rename config/{sync => }/block.block.octavia_powered_by_drutopia.yml (100%) rename config/{sync => }/block.block.resource_topics_facet.yml (100%) rename config/{sync => }/block.block.resource_type_facet.yml (100%) rename config/{sync => }/block.block.seven_breadcrumbs.yml (100%) rename config/{sync => }/block.block.seven_content.yml (100%) rename config/{sync => }/block.block.seven_help.yml (100%) rename config/{sync => }/block.block.seven_local_actions.yml (100%) rename config/{sync => }/block.block.seven_login.yml (100%) rename config/{sync => }/block.block.seven_messages.yml (100%) rename config/{sync => }/block.block.seven_page_title.yml (100%) rename config/{sync => }/block.block.seven_primary_local_tasks.yml (100%) rename config/{sync => }/block.block.seven_secondary_local_tasks.yml (100%) rename config/{sync => }/block.block.socialmedialinks.yml (100%) rename config/{sync => }/block.block.upcomingtrainingsfromagaric.yml (100%) rename config/{sync => }/block.block.userlogin.yml (100%) rename config/{sync => }/block.block.views_block__related_content_block_related_content.yml (100%) rename config/{sync => }/block_content.type.basic.yml (100%) rename config/{sync => }/block_content.type.content_reference.yml (100%) rename config/{sync => }/block_content.type.slide.yml (100%) rename config/{sync => }/block_visibility_groups.block_visibility_group.article_listing.yml (100%) rename config/{sync => }/block_visibility_groups.block_visibility_group.blog_listing.yml (100%) rename config/{sync => }/block_visibility_groups.block_visibility_group.event_listing.yml (100%) rename config/{sync => }/block_visibility_groups.block_visibility_group.home_page.yml (100%) rename config/{sync => }/block_visibility_groups.block_visibility_group.resource_listing.yml (100%) rename config/{sync => }/block_visibility_groups.block_visibility_group.search.yml (100%) rename config/{sync => }/bulma.settings.yml (100%) rename config/{sync => }/coffee.configuration.yml (100%) rename config/{sync => }/comment.type.comment.yml (100%) rename config/{sync => }/comment_notify.settings.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.administer_account_settings.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.administer_date_time.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.administer_error_logs.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.administer_file_system.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.administer_groups.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.administer_site_information.yml (100%) rename config/{sync => }/config_perms.custom_perms_entity.edit_contact_form.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.address.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.agaric_migration.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.allowed_formats.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.antibot.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.automated_cron.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.autosave_form.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.better_normalizers.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.block.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.block_content.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.breakpoint.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ckeditor.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.coffee.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.color.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.comment.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.comment_notify.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.components.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_actions.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_distro.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_filter.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_merge.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_normalizer.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_perms.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_provider.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_snapshot.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_sync.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_translation.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.config_update.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.contact.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.content_translation.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.contextual.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.crop.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ctools.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.customerror.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.datetime.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.datetime_range.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.dblog.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.default_content.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.diff.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.dropdown_language.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_action.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_article.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_core.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_event.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_group.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_page.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_people.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_search.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_site.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_social.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.drutopia_user.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ds.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.dynamic_page_cache.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.editor.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.entity_reference_revisions.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.facets.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.faqfield.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.field.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.field_group.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.field_ui.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.file.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.filter.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.focal_point.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.gnode.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.google_analytics.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.group.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.hal.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.help.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.history.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.honeypot.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.http_client_error_status.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.image.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.indieweb.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.indieweb_context.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.indieweb_feed.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.indieweb_microformat.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.indieweb_webmention.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.language.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.layout_discovery.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.link.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.locale.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.mailchimp.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.markdown.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.menu_block.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.menu_link_content.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.menu_trail_by_path.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.menu_ui.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.metatag.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.migrate.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.migrate_plus.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.migrate_tools.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.minimalhtml.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.multiline_config.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.node.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.options.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.page_cache.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.paragraphs.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.path.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.path_alias.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.pathauto.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.preview_link.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.quickedit.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.rdf.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.redirect.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.redirect_404.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.regionincontent.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.responsive_image.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.scn.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.search_api.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.search_api_db.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.serialization.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.shortcut.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.similarterms.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.skins.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.social_media_links.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.statistics.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.stripe.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.syslog.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.system.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.taxonomy.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.telephone.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.text.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.token.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.toolbar.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.tour.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.twigsuggest.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ui_patterns.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.update.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.user.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.video_embed_field.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.views.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.views_ui.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.viewsreference.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.webform.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.webform_ui.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.theme.agarica.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.theme.bulma.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.theme.classy.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.theme.octavia.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.theme.seven.yml (100%) rename config/{sync => }/config_snapshot.snapshot.config_sync.theme.stable.yml (100%) rename config/{sync => }/contact.form.feedback.yml (100%) rename config/{sync => }/contact.form.personal.yml (100%) rename config/{sync => }/contact.settings.yml (100%) rename config/{sync => }/core.base_field_override.block_content.basic.changed.yml (100%) rename config/{sync => }/core.base_field_override.block_content.basic.info.yml (100%) rename config/{sync => }/core.base_field_override.block_content.basic.metatag.yml (100%) rename config/{sync => }/core.base_field_override.block_content.basic.status.yml (100%) rename config/{sync => }/core.base_field_override.block_content.slide.changed.yml (100%) rename config/{sync => }/core.base_field_override.block_content.slide.info.yml (100%) rename config/{sync => }/core.base_field_override.block_content.slide.metatag.yml (100%) rename config/{sync => }/core.base_field_override.block_content.slide.status.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.changed.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.created.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.homepage.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.hostname.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.mail.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.name.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.status.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.subject.yml (100%) rename config/{sync => }/core.base_field_override.comment.comment.uid.yml (100%) rename config/{sync => }/core.base_field_override.group.group.changed.yml (100%) rename config/{sync => }/core.base_field_override.group.group.created.yml (100%) rename config/{sync => }/core.base_field_override.group.group.label.yml (100%) rename config/{sync => }/core.base_field_override.group.group.metatag.yml (100%) rename config/{sync => }/core.base_field_override.group.group.path.yml (100%) rename config/{sync => }/core.base_field_override.group.group.uid.yml (100%) rename config/{sync => }/core.base_field_override.group_content.group-group_membership.changed.yml (100%) rename config/{sync => }/core.base_field_override.group_content.group-group_membership.created.yml (100%) rename config/{sync => }/core.base_field_override.group_content.group-group_membership.label.yml (100%) rename config/{sync => }/core.base_field_override.group_content.group-group_membership.metatag.yml (100%) rename config/{sync => }/core.base_field_override.group_content.group-group_membership.path.yml (100%) rename config/{sync => }/core.base_field_override.group_content.group-group_membership.uid.yml (100%) rename config/{sync => }/core.base_field_override.menu_link_content.menu_link_content.changed.yml (100%) rename config/{sync => }/core.base_field_override.menu_link_content.menu_link_content.description.yml (100%) rename config/{sync => }/core.base_field_override.menu_link_content.menu_link_content.metatag.yml (100%) rename config/{sync => }/core.base_field_override.menu_link_content.menu_link_content.title.yml (100%) rename config/{sync => }/core.base_field_override.node.action.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.action.created.yml (100%) rename config/{sync => }/core.base_field_override.node.action.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.action.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.action.path.yml (100%) rename config/{sync => }/core.base_field_override.node.action.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.action.status.yml (100%) rename config/{sync => }/core.base_field_override.node.action.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.action.title.yml (100%) rename config/{sync => }/core.base_field_override.node.action.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.article.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.article.created.yml (100%) rename config/{sync => }/core.base_field_override.node.article.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.article.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.article.path.yml (100%) rename config/{sync => }/core.base_field_override.node.article.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.article.status.yml (100%) rename config/{sync => }/core.base_field_override.node.article.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.article.title.yml (100%) rename config/{sync => }/core.base_field_override.node.article.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.created.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.path.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.status.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.title.yml (100%) rename config/{sync => }/core.base_field_override.node.blog.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.created.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.path.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.status.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.title.yml (100%) rename config/{sync => }/core.base_field_override.node.campaign.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.created.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.path.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.status.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.title.yml (100%) rename config/{sync => }/core.base_field_override.node.case_study.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.event.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.event.created.yml (100%) rename config/{sync => }/core.base_field_override.node.event.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.event.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.event.path.yml (100%) rename config/{sync => }/core.base_field_override.node.event.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.event.status.yml (100%) rename config/{sync => }/core.base_field_override.node.event.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.event.title.yml (100%) rename config/{sync => }/core.base_field_override.node.event.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.created.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.path.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.status.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.title.yml (100%) rename config/{sync => }/core.base_field_override.node.landing_page.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.page.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.page.path.yml (100%) rename config/{sync => }/core.base_field_override.node.page.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.page.status.yml (100%) rename config/{sync => }/core.base_field_override.node.page.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.page.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.people.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.people.created.yml (100%) rename config/{sync => }/core.base_field_override.node.people.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.people.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.people.path.yml (100%) rename config/{sync => }/core.base_field_override.node.people.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.people.status.yml (100%) rename config/{sync => }/core.base_field_override.node.people.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.people.title.yml (100%) rename config/{sync => }/core.base_field_override.node.people.uid.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.changed.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.created.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.menu_link.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.metatag.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.path.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.promote.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.status.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.sticky.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.title.yml (100%) rename config/{sync => }/core.base_field_override.node.resource.uid.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.faq.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.faq.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.file.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.file.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.image.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.image.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.quotation_with_image.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.quotation_with_image.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.slide.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.slide.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.storyline_header.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.storyline_header.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.storyline_item.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.storyline_item.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.text.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.text.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.title.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.title.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.update.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.update.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.video.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.video.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.view.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.view.status.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.webform.created.yml (100%) rename config/{sync => }/core.base_field_override.paragraph.webform.status.yml (100%) rename config/{sync => }/core.base_field_override.shortcut.default.metatag.yml (100%) rename config/{sync => }/core.base_field_override.shortcut.default.title.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.action_type.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.action_type.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.action_type.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.action_type.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.action_type.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.action_type.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.article_type.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.article_type.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.article_type.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.article_type.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.article_type.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.article_type.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.event_type.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.event_type.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.event_type.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.event_type.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.event_type.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.event_type.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.group_type.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.group_type.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.group_type.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.group_type.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.group_type.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.group_type.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.license.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.license.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.license.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.license.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.license.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.license.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.people_type.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.people_type.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.people_type.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.people_type.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.people_type.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.people_type.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.resource_type.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.resource_type.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.resource_type.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.resource_type.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.resource_type.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.resource_type.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.services.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.services.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.services.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.services.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.services.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.services.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.tags.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.tags.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.tags.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.tags.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.tags.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.tags.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.technologies.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.technologies.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.technologies.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.technologies.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.technologies.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.technologies.status.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.topics.changed.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.topics.description.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.topics.metatag.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.topics.name.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.topics.path.yml (100%) rename config/{sync => }/core.base_field_override.taxonomy_term.topics.status.yml (100%) rename config/{sync => }/core.base_field_override.user.user.changed.yml (100%) rename config/{sync => }/core.base_field_override.user.user.metatag.yml (100%) rename config/{sync => }/core.base_field_override.user.user.path.yml (100%) rename config/{sync => }/core.date_format.fallback.yml (100%) rename config/{sync => }/core.date_format.html_date.yml (100%) rename config/{sync => }/core.date_format.html_datetime.yml (100%) rename config/{sync => }/core.date_format.html_month.yml (100%) rename config/{sync => }/core.date_format.html_time.yml (100%) rename config/{sync => }/core.date_format.html_week.yml (100%) rename config/{sync => }/core.date_format.html_year.yml (100%) rename config/{sync => }/core.date_format.html_yearless_date.yml (100%) rename config/{sync => }/core.date_format.long.yml (100%) rename config/{sync => }/core.date_format.medium.yml (100%) rename config/{sync => }/core.date_format.month_day_year.yml (100%) rename config/{sync => }/core.date_format.short.yml (100%) rename config/{sync => }/core.entity_form_display.block_content.basic.default.yml (100%) rename config/{sync => }/core.entity_form_display.block_content.content_reference.default.yml (100%) rename config/{sync => }/core.entity_form_display.block_content.slide.default.yml (100%) rename config/{sync => }/core.entity_form_display.comment.comment.default.yml (100%) rename config/{sync => }/core.entity_form_display.contact_message.personal.default.yml (100%) rename config/{sync => }/core.entity_form_display.group.group.default.yml (100%) rename config/{sync => }/core.entity_form_display.group_content.group-group_membership.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.action.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.article.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.blog.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.campaign.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.case_study.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.event.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.landing_page.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.page.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.people.default.yml (100%) rename config/{sync => }/core.entity_form_display.node.resource.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.content_reference.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.embedded_content.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.faq.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.file.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.image.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.quotation_with_image.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.slide.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.storyline_header.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.storyline_item.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.text.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.title.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.update.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.video.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.view.default.yml (100%) rename config/{sync => }/core.entity_form_display.paragraph.webform.default.yml (100%) rename config/{sync => }/core.entity_form_display.user.user.default.yml (100%) rename config/{sync => }/core.entity_form_mode.user.register.yml (100%) rename config/{sync => }/core.entity_view_display.block_content.basic.default.yml (100%) rename config/{sync => }/core.entity_view_display.block_content.content_reference.default.yml (100%) rename config/{sync => }/core.entity_view_display.block_content.slide.columnar.yml (100%) rename config/{sync => }/core.entity_view_display.block_content.slide.default.yml (100%) rename config/{sync => }/core.entity_view_display.comment.comment.default.yml (100%) rename config/{sync => }/core.entity_view_display.group.group.default.yml (100%) rename config/{sync => }/core.entity_view_display.group.group.full.yml (100%) rename config/{sync => }/core.entity_view_display.group.group.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.group_content.group-group_membership.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.box.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.card.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.action.tile.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.box.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.card.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.media.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.rss.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.article.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.card.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.media.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.rss.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.rss_teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.blog.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.campaign.card.yml (100%) rename config/{sync => }/core.entity_view_display.node.campaign.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.campaign.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.campaign.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.campaign.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.campaign.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.card.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.small_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.case_study.tile.yml (100%) rename config/{sync => }/core.entity_view_display.node.event.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.event.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.event.micro.yml (100%) rename config/{sync => }/core.entity_view_display.node.event.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.event.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.event.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.landing_page.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.landing_page.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.landing_page.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.landing_page.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.page.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.page.embedded.yml (100%) rename config/{sync => }/core.entity_view_display.node.page.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.page.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.people.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.people.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.people.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.people.small_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.people.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.node.resource.card.yml (100%) rename config/{sync => }/core.entity_view_display.node.resource.default.yml (100%) rename config/{sync => }/core.entity_view_display.node.resource.full.yml (100%) rename config/{sync => }/core.entity_view_display.node.resource.search_index.yml (100%) rename config/{sync => }/core.entity_view_display.node.resource.simple_card.yml (100%) rename config/{sync => }/core.entity_view_display.node.resource.teaser.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.content_reference.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.embedded_content.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.faq.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.file.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.image.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.quotation_with_image.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.slide.columnar.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.slide.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.storyline_header.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.storyline_item.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.text.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.title.columnar.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.title.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.update.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.video.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.view.default.yml (100%) rename config/{sync => }/core.entity_view_display.paragraph.webform.default.yml (100%) rename config/{sync => }/core.entity_view_display.taxonomy_term.license.default.yml (100%) rename config/{sync => }/core.entity_view_display.user.user.compact.yml (100%) rename config/{sync => }/core.entity_view_display.user.user.default.yml (100%) rename config/{sync => }/core.entity_view_mode.block.token.yml (100%) rename config/{sync => }/core.entity_view_mode.block_content.columnar.yml (100%) rename config/{sync => }/core.entity_view_mode.block_content.full.yml (100%) rename config/{sync => }/core.entity_view_mode.block_content.token.yml (100%) rename config/{sync => }/core.entity_view_mode.comment.full.yml (100%) rename config/{sync => }/core.entity_view_mode.comment.indieweb_microformat.yml (100%) rename config/{sync => }/core.entity_view_mode.comment.token.yml (100%) rename config/{sync => }/core.entity_view_mode.contact_message.token.yml (100%) rename config/{sync => }/core.entity_view_mode.file.token.yml (100%) rename config/{sync => }/core.entity_view_mode.group.full.yml (100%) rename config/{sync => }/core.entity_view_mode.group.teaser.yml (100%) rename config/{sync => }/core.entity_view_mode.menu_link_content.token.yml (100%) rename config/{sync => }/core.entity_view_mode.node.box.yml (100%) rename config/{sync => }/core.entity_view_mode.node.card.yml (100%) rename config/{sync => }/core.entity_view_mode.node.diff.yml (100%) rename config/{sync => }/core.entity_view_mode.node.embedded.yml (100%) rename config/{sync => }/core.entity_view_mode.node.full.yml (100%) rename config/{sync => }/core.entity_view_mode.node.indieweb_microformat.yml (100%) rename config/{sync => }/core.entity_view_mode.node.media.yml (100%) rename config/{sync => }/core.entity_view_mode.node.micro.yml (100%) rename config/{sync => }/core.entity_view_mode.node.rss.yml (100%) rename config/{sync => }/core.entity_view_mode.node.rss_teaser.yml (100%) rename config/{sync => }/core.entity_view_mode.node.search_index.yml (100%) rename config/{sync => }/core.entity_view_mode.node.search_result.yml (100%) rename config/{sync => }/core.entity_view_mode.node.simple_card.yml (100%) rename config/{sync => }/core.entity_view_mode.node.small_card.yml (100%) rename config/{sync => }/core.entity_view_mode.node.teaser.yml (100%) rename config/{sync => }/core.entity_view_mode.node.tile.yml (100%) rename config/{sync => }/core.entity_view_mode.node.token.yml (100%) rename config/{sync => }/core.entity_view_mode.paragraph.columnar.yml (100%) rename config/{sync => }/core.entity_view_mode.paragraph.preview.yml (100%) rename config/{sync => }/core.entity_view_mode.shortcut.token.yml (100%) rename config/{sync => }/core.entity_view_mode.taxonomy_term.full.yml (100%) rename config/{sync => }/core.entity_view_mode.taxonomy_term.token.yml (100%) rename config/{sync => }/core.entity_view_mode.tour.token.yml (100%) rename config/{sync => }/core.entity_view_mode.user.compact.yml (100%) rename config/{sync => }/core.entity_view_mode.user.full.yml (100%) rename config/{sync => }/core.entity_view_mode.user.token.yml (100%) rename config/{sync => }/core.extension.yml (100%) rename config/{sync => }/core.menu.static_menu_link_overrides.yml (100%) rename config/{sync => }/crop.settings.yml (100%) rename config/{sync => }/crop.type.focal_point.yml (100%) rename config/{sync => }/customerror.settings.yml (100%) rename config/{sync => }/dblog.settings.yml (100%) rename config/{sync => }/diff.settings.yml (100%) rename config/{sync => }/dropdown_language.setting.yml (100%) rename config/{sync => }/ds.settings.yml (100%) rename config/{sync => }/editor.editor.basic_html.yml (100%) rename config/{sync => }/editor.editor.full_html.yml (100%) rename config/{sync => }/editor.editor.minimalhtml.yml (100%) rename config/{sync => }/editor.editor.minimalhtmltitle.yml (100%) rename config/{sync => }/exclude_node_title.settings.yml (100%) rename config/{sync => }/facets.facet.article_topics.yml (100%) rename config/{sync => }/facets.facet.article_type.yml (100%) rename config/{sync => }/facets.facet.blog_topics.yml (100%) rename config/{sync => }/facets.facet.event_topics.yml (100%) rename config/{sync => }/facets.facet.event_type.yml (100%) rename config/{sync => }/facets.facet.resource_topics.yml (100%) rename config/{sync => }/facets.facet.resource_type.yml (100%) rename config/{sync => }/facets.facet_source.search_api__views_page__blog__page_listing.yml (100%) rename config/{sync => }/field.field.block_content.basic.body.yml (100%) rename config/{sync => }/field.field.block_content.content_reference.field_content_reference.yml (100%) rename config/{sync => }/field.field.block_content.slide.field_slide.yml (100%) rename config/{sync => }/field.field.comment.comment.comment_body.yml (100%) rename config/{sync => }/field.field.group.group.field_group_address.yml (100%) rename config/{sync => }/field.field.group.group.field_group_description.yml (100%) rename config/{sync => }/field.field.group.group.field_group_email.yml (100%) rename config/{sync => }/field.field.group.group.field_group_image.yml (100%) rename config/{sync => }/field.field.group.group.field_group_phone.yml (100%) rename config/{sync => }/field.field.group.group.field_group_summary.yml (100%) rename config/{sync => }/field.field.group.group.field_group_type.yml (100%) rename config/{sync => }/field.field.group.group.field_group_website.yml (100%) rename config/{sync => }/field.field.group_content.group-group_membership.group_roles.yml (100%) rename config/{sync => }/field.field.node.action.body.yml (100%) rename config/{sync => }/field.field.node.action.field_action_end_date.yml (100%) rename config/{sync => }/field.field.node.action.field_action_link.yml (100%) rename config/{sync => }/field.field.node.action.field_action_type.yml (100%) rename config/{sync => }/field.field.node.action.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.action.field_image.yml (100%) rename config/{sync => }/field.field.node.action.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.action.field_summary.yml (100%) rename config/{sync => }/field.field.node.action.field_tags.yml (100%) rename config/{sync => }/field.field.node.action.field_topics.yml (100%) rename config/{sync => }/field.field.node.article.body.yml (100%) rename config/{sync => }/field.field.node.article.comment.yml (100%) rename config/{sync => }/field.field.node.article.field_article_type.yml (100%) rename config/{sync => }/field.field.node.article.field_authors.yml (100%) rename config/{sync => }/field.field.node.article.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.article.field_image.yml (100%) rename config/{sync => }/field.field.node.article.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.article.field_summary.yml (100%) rename config/{sync => }/field.field.node.article.field_tags.yml (100%) rename config/{sync => }/field.field.node.article.field_topics.yml (100%) rename config/{sync => }/field.field.node.blog.body.yml (100%) rename config/{sync => }/field.field.node.blog.comment.yml (100%) rename config/{sync => }/field.field.node.blog.field_authors.yml (100%) rename config/{sync => }/field.field.node.blog.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.blog.field_image.yml (100%) rename config/{sync => }/field.field.node.blog.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.blog.field_summary.yml (100%) rename config/{sync => }/field.field.node.blog.field_tags.yml (100%) rename config/{sync => }/field.field.node.blog.field_topics.yml (100%) rename config/{sync => }/field.field.node.campaign.body.yml (100%) rename config/{sync => }/field.field.node.campaign.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.campaign.field_campaign_demands.yml (100%) rename config/{sync => }/field.field.node.campaign.field_campaign_updates.yml (100%) rename config/{sync => }/field.field.node.campaign.field_image.yml (100%) rename config/{sync => }/field.field.node.campaign.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.campaign.field_summary.yml (100%) rename config/{sync => }/field.field.node.case_study.body.yml (100%) rename config/{sync => }/field.field.node.case_study.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.case_study.field_case_study_client.yml (100%) rename config/{sync => }/field.field.node.case_study.field_case_study_partners.yml (100%) rename config/{sync => }/field.field.node.case_study.field_case_study_status.yml (100%) rename config/{sync => }/field.field.node.case_study.field_case_study_subtitle.yml (100%) rename config/{sync => }/field.field.node.case_study.field_case_study_team.yml (100%) rename config/{sync => }/field.field.node.case_study.field_case_study_year.yml (100%) rename config/{sync => }/field.field.node.case_study.field_image.yml (100%) rename config/{sync => }/field.field.node.case_study.field_license.yml (100%) rename config/{sync => }/field.field.node.case_study.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.case_study.field_services.yml (100%) rename config/{sync => }/field.field.node.case_study.field_summary.yml (100%) rename config/{sync => }/field.field.node.case_study.field_technologies.yml (100%) rename config/{sync => }/field.field.node.event.body.yml (100%) rename config/{sync => }/field.field.node.event.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.event.field_event_date.yml (100%) rename config/{sync => }/field.field.node.event.field_event_type.yml (100%) rename config/{sync => }/field.field.node.event.field_image.yml (100%) rename config/{sync => }/field.field.node.event.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.event.field_summary.yml (100%) rename config/{sync => }/field.field.node.event.field_tags.yml (100%) rename config/{sync => }/field.field.node.event.field_topics.yml (100%) rename config/{sync => }/field.field.node.landing_page.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.landing_page.field_image.yml (100%) rename config/{sync => }/field.field.node.landing_page.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.page.body.yml (100%) rename config/{sync => }/field.field.node.page.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.page.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.page.field_storyline.yml (100%) rename config/{sync => }/field.field.node.page.field_summary.yml (100%) rename config/{sync => }/field.field.node.people.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.people.field_image.yml (100%) rename config/{sync => }/field.field.node.people.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.people.field_people_email.yml (100%) rename config/{sync => }/field.field.node.people.field_people_position.yml (100%) rename config/{sync => }/field.field.node.people.field_people_public_gpg_key.yml (100%) rename config/{sync => }/field.field.node.people.field_people_social_media.yml (100%) rename config/{sync => }/field.field.node.people.field_people_type.yml (100%) rename config/{sync => }/field.field.node.people.field_summary.yml (100%) rename config/{sync => }/field.field.node.resource.body.yml (100%) rename config/{sync => }/field.field.node.resource.field_body_paragraph.yml (100%) rename config/{sync => }/field.field.node.resource.field_image.yml (100%) rename config/{sync => }/field.field.node.resource.field_meta_tags.yml (100%) rename config/{sync => }/field.field.node.resource.field_resource_file.yml (100%) rename config/{sync => }/field.field.node.resource.field_resource_link.yml (100%) rename config/{sync => }/field.field.node.resource.field_resource_type.yml (100%) rename config/{sync => }/field.field.node.resource.field_resource_video.yml (100%) rename config/{sync => }/field.field.node.resource.field_summary.yml (100%) rename config/{sync => }/field.field.node.resource.field_tags.yml (100%) rename config/{sync => }/field.field.node.resource.field_topics.yml (100%) rename config/{sync => }/field.field.paragraph.content_reference.field_content_reference.yml (100%) rename config/{sync => }/field.field.paragraph.embedded_content.field_content_reference.yml (100%) rename config/{sync => }/field.field.paragraph.faq.field_faq.yml (100%) rename config/{sync => }/field.field.paragraph.file.field_file.yml (100%) rename config/{sync => }/field.field.paragraph.image.field_image.yml (100%) rename config/{sync => }/field.field.paragraph.quotation_with_image.field_image.yml (100%) rename config/{sync => }/field.field.paragraph.quotation_with_image.field_quotation.yml (100%) rename config/{sync => }/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml (100%) rename config/{sync => }/field.field.paragraph.slide.field_image.yml (100%) rename config/{sync => }/field.field.paragraph.slide.field_link.yml (100%) rename config/{sync => }/field.field.paragraph.slide.field_text.yml (100%) rename config/{sync => }/field.field.paragraph.storyline_header.field_storyline_header.yml (100%) rename config/{sync => }/field.field.paragraph.storyline_item.field_storyline_heading.yml (100%) rename config/{sync => }/field.field.paragraph.storyline_item.field_text.yml (100%) rename config/{sync => }/field.field.paragraph.text.field_style_classes.yml (100%) rename config/{sync => }/field.field.paragraph.text.field_style_escape_flow.yml (100%) rename config/{sync => }/field.field.paragraph.text.field_text.yml (100%) rename config/{sync => }/field.field.paragraph.title.field_image.yml (100%) rename config/{sync => }/field.field.paragraph.title.field_style_classes.yml (100%) rename config/{sync => }/field.field.paragraph.title.field_style_color.yml (100%) rename config/{sync => }/field.field.paragraph.title.field_style_titlebar.yml (100%) rename config/{sync => }/field.field.paragraph.title.field_subtitle.yml (100%) rename config/{sync => }/field.field.paragraph.title.field_title.yml (100%) rename config/{sync => }/field.field.paragraph.update.field_text.yml (100%) rename config/{sync => }/field.field.paragraph.update.field_update_date.yml (100%) rename config/{sync => }/field.field.paragraph.video.field_video_embed.yml (100%) rename config/{sync => }/field.field.paragraph.view.field_style_escape_flow.yml (100%) rename config/{sync => }/field.field.paragraph.view.field_view_reference.yml (100%) rename config/{sync => }/field.field.paragraph.webform.field_webform.yml (100%) rename config/{sync => }/field.field.user.user.user_picture.yml (100%) rename config/{sync => }/field.settings.yml (100%) rename config/{sync => }/field.storage.block_content.body.yml (100%) rename config/{sync => }/field.storage.block_content.field_content_reference.yml (100%) rename config/{sync => }/field.storage.block_content.field_slide.yml (100%) rename config/{sync => }/field.storage.comment.comment_body.yml (100%) rename config/{sync => }/field.storage.comment.indieweb_webmention.yml (100%) rename config/{sync => }/field.storage.group.field_group_address.yml (100%) rename config/{sync => }/field.storage.group.field_group_description.yml (100%) rename config/{sync => }/field.storage.group.field_group_email.yml (100%) rename config/{sync => }/field.storage.group.field_group_image.yml (100%) rename config/{sync => }/field.storage.group.field_group_phone.yml (100%) rename config/{sync => }/field.storage.group.field_group_summary.yml (100%) rename config/{sync => }/field.storage.group.field_group_type.yml (100%) rename config/{sync => }/field.storage.group.field_group_website.yml (100%) rename config/{sync => }/field.storage.group_content.group_roles.yml (100%) rename config/{sync => }/field.storage.node.body.yml (100%) rename config/{sync => }/field.storage.node.comment.yml (100%) rename config/{sync => }/field.storage.node.field_action_end_date.yml (100%) rename config/{sync => }/field.storage.node.field_action_link.yml (100%) rename config/{sync => }/field.storage.node.field_action_type.yml (100%) rename config/{sync => }/field.storage.node.field_article_type.yml (100%) rename config/{sync => }/field.storage.node.field_authors.yml (100%) rename config/{sync => }/field.storage.node.field_body_paragraph.yml (100%) rename config/{sync => }/field.storage.node.field_campaign_demands.yml (100%) rename config/{sync => }/field.storage.node.field_campaign_updates.yml (100%) rename config/{sync => }/field.storage.node.field_case_study_client.yml (100%) rename config/{sync => }/field.storage.node.field_case_study_partners.yml (100%) rename config/{sync => }/field.storage.node.field_case_study_status.yml (100%) rename config/{sync => }/field.storage.node.field_case_study_subtitle.yml (100%) rename config/{sync => }/field.storage.node.field_case_study_team.yml (100%) rename config/{sync => }/field.storage.node.field_case_study_year.yml (100%) rename config/{sync => }/field.storage.node.field_event_date.yml (100%) rename config/{sync => }/field.storage.node.field_event_type.yml (100%) rename config/{sync => }/field.storage.node.field_image.yml (100%) rename config/{sync => }/field.storage.node.field_license.yml (100%) rename config/{sync => }/field.storage.node.field_meta_tags.yml (100%) rename config/{sync => }/field.storage.node.field_paragraph.yml (100%) rename config/{sync => }/field.storage.node.field_people_email.yml (100%) rename config/{sync => }/field.storage.node.field_people_position.yml (100%) rename config/{sync => }/field.storage.node.field_people_public_gpg_key.yml (100%) rename config/{sync => }/field.storage.node.field_people_social_media.yml (100%) rename config/{sync => }/field.storage.node.field_people_type.yml (100%) rename config/{sync => }/field.storage.node.field_resource_file.yml (100%) rename config/{sync => }/field.storage.node.field_resource_link.yml (100%) rename config/{sync => }/field.storage.node.field_resource_type.yml (100%) rename config/{sync => }/field.storage.node.field_resource_video.yml (100%) rename config/{sync => }/field.storage.node.field_services.yml (100%) rename config/{sync => }/field.storage.node.field_storyline.yml (100%) rename config/{sync => }/field.storage.node.field_summary.yml (100%) rename config/{sync => }/field.storage.node.field_tags.yml (100%) rename config/{sync => }/field.storage.node.field_technologies.yml (100%) rename config/{sync => }/field.storage.node.field_topics.yml (100%) rename config/{sync => }/field.storage.paragraph.field_content_reference.yml (100%) rename config/{sync => }/field.storage.paragraph.field_faq.yml (100%) rename config/{sync => }/field.storage.paragraph.field_file.yml (100%) rename config/{sync => }/field.storage.paragraph.field_image.yml (100%) rename config/{sync => }/field.storage.paragraph.field_link.yml (100%) rename config/{sync => }/field.storage.paragraph.field_quotation.yml (100%) rename config/{sync => }/field.storage.paragraph.field_storyline_header.yml (100%) rename config/{sync => }/field.storage.paragraph.field_storyline_heading.yml (100%) rename config/{sync => }/field.storage.paragraph.field_style_classes.yml (100%) rename config/{sync => }/field.storage.paragraph.field_style_color.yml (100%) rename config/{sync => }/field.storage.paragraph.field_style_escape_flow.yml (100%) rename config/{sync => }/field.storage.paragraph.field_style_titlebar.yml (100%) rename config/{sync => }/field.storage.paragraph.field_subtitle.yml (100%) rename config/{sync => }/field.storage.paragraph.field_text.yml (100%) rename config/{sync => }/field.storage.paragraph.field_title.yml (100%) rename config/{sync => }/field.storage.paragraph.field_update_date.yml (100%) rename config/{sync => }/field.storage.paragraph.field_video_embed.yml (100%) rename config/{sync => }/field.storage.paragraph.field_view_reference.yml (100%) rename config/{sync => }/field.storage.paragraph.field_webform.yml (100%) rename config/{sync => }/field.storage.user.user_picture.yml (100%) rename config/{sync => }/field_ui.settings.yml (100%) rename config/{sync => }/file.settings.yml (100%) rename config/{sync => }/filter.format.basic_html.yml (100%) rename config/{sync => }/filter.format.full_html.yml (100%) rename config/{sync => }/filter.format.markdown.yml (100%) rename config/{sync => }/filter.format.minimalhtml.yml (100%) rename config/{sync => }/filter.format.minimalhtmltitle.yml (100%) rename config/{sync => }/filter.format.plain_text.yml (100%) rename config/{sync => }/filter.format.restricted_html.yml (100%) rename config/{sync => }/filter.settings.yml (100%) rename config/{sync => }/focal_point.settings.yml (100%) rename config/{sync => }/google_analytics.settings.yml (100%) rename config/{sync => }/group.content_type.group-group_membership.yml (100%) rename config/{sync => }/group.role.group-0b0baeca9.yml (100%) rename config/{sync => }/group.role.group-1ac17d355.yml (100%) rename config/{sync => }/group.role.group-2d8610827.yml (100%) rename config/{sync => }/group.role.group-443ed8e03.yml (100%) rename config/{sync => }/group.role.group-5165abfe1.yml (100%) rename config/{sync => }/group.role.group-a416e6833.yml (100%) rename config/{sync => }/group.role.group-anonymous.yml (100%) rename config/{sync => }/group.role.group-ec70061de.yml (100%) rename config/{sync => }/group.role.group-member.yml (100%) rename config/{sync => }/group.role.group-outsider.yml (100%) rename config/{sync => }/group.settings.yml (100%) rename config/{sync => }/group.type.group.yml (100%) rename config/{sync => }/hal.settings.yml (100%) rename config/{sync => }/honeypot.settings.yml (100%) rename config/{sync => }/image.settings.yml (100%) rename config/{sync => }/image.style.landscape.yml (100%) rename config/{sync => }/image.style.large.yml (100%) rename config/{sync => }/image.style.max_1300x1300.yml (100%) rename config/{sync => }/image.style.max_2600x2600.yml (100%) rename config/{sync => }/image.style.max_325x325.yml (100%) rename config/{sync => }/image.style.max_650x650.yml (100%) rename config/{sync => }/image.style.medium.yml (100%) rename config/{sync => }/image.style.small_landscape.yml (100%) rename config/{sync => }/image.style.small_square.yml (100%) rename config/{sync => }/image.style.square_thumbnail.yml (100%) rename config/{sync => }/image.style.thumbnail.yml (100%) rename config/{sync => }/indieweb_context.settings.yml (100%) rename config/{sync => }/indieweb_microformat.settings.yml (100%) rename config/{sync => }/indieweb_webmention.comment.yml (100%) rename config/{sync => }/indieweb_webmention.settings.yml (100%) rename config/{sync => }/language.content_settings.block_content.basic.yml (100%) rename config/{sync => }/language.content_settings.block_content.content_reference.yml (100%) rename config/{sync => }/language.content_settings.block_content.slide.yml (100%) rename config/{sync => }/language.content_settings.comment.comment.yml (100%) rename config/{sync => }/language.content_settings.contact_message.feedback.yml (100%) rename config/{sync => }/language.content_settings.contact_message.personal.yml (100%) rename config/{sync => }/language.content_settings.file.file.yml (100%) rename config/{sync => }/language.content_settings.group.group.yml (100%) rename config/{sync => }/language.content_settings.group_content.group-group_membership.yml (100%) rename config/{sync => }/language.content_settings.indieweb_webmention.indieweb_webmention.yml (100%) rename config/{sync => }/language.content_settings.menu_link_content.menu_link_content.yml (100%) rename config/{sync => }/language.content_settings.node.action.yml (100%) rename config/{sync => }/language.content_settings.node.article.yml (100%) rename config/{sync => }/language.content_settings.node.blog.yml (100%) rename config/{sync => }/language.content_settings.node.campaign.yml (100%) rename config/{sync => }/language.content_settings.node.case_study.yml (100%) rename config/{sync => }/language.content_settings.node.event.yml (100%) rename config/{sync => }/language.content_settings.node.landing_page.yml (100%) rename config/{sync => }/language.content_settings.node.page.yml (100%) rename config/{sync => }/language.content_settings.node.people.yml (100%) rename config/{sync => }/language.content_settings.node.resource.yml (100%) rename config/{sync => }/language.content_settings.paragraph.faq.yml (100%) rename config/{sync => }/language.content_settings.paragraph.file.yml (100%) rename config/{sync => }/language.content_settings.paragraph.image.yml (100%) rename config/{sync => }/language.content_settings.paragraph.quotation_with_image.yml (100%) rename config/{sync => }/language.content_settings.paragraph.slide.yml (100%) rename config/{sync => }/language.content_settings.paragraph.storyline_header.yml (100%) rename config/{sync => }/language.content_settings.paragraph.storyline_item.yml (100%) rename config/{sync => }/language.content_settings.paragraph.text.yml (100%) rename config/{sync => }/language.content_settings.paragraph.title.yml (100%) rename config/{sync => }/language.content_settings.paragraph.update.yml (100%) rename config/{sync => }/language.content_settings.paragraph.video.yml (100%) rename config/{sync => }/language.content_settings.paragraph.view.yml (100%) rename config/{sync => }/language.content_settings.paragraph.webform.yml (100%) rename config/{sync => }/language.content_settings.path_alias.path_alias.yml (100%) rename config/{sync => }/language.content_settings.redirect.redirect.yml (100%) rename config/{sync => }/language.content_settings.shortcut.default.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.action_type.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.article_type.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.event_type.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.group_type.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.license.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.people_type.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.resource_type.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.services.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.tags.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.technologies.yml (100%) rename config/{sync => }/language.content_settings.taxonomy_term.topics.yml (100%) rename config/{sync => }/language.content_settings.user.user.yml (100%) rename config/{sync => }/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml (100%) rename config/{sync => }/language.content_settings.webform_submission.contact.yml (100%) rename config/{sync => }/language.content_settings.webform_submission.general_services.yml (100%) rename config/{sync => }/language.content_settings.webform_submission.training.yml (100%) rename config/{sync => }/language.entity.en.yml (100%) rename config/{sync => }/language.entity.es.yml (100%) rename config/{sync => }/language.entity.und.yml (100%) rename config/{sync => }/language.entity.zxx.yml (100%) rename config/{sync => }/language.mappings.yml (100%) rename config/{sync => }/language.negotiation.yml (100%) rename config/{sync => }/language.types.yml (100%) rename config/{sync => }/language/es/block.block.agarica_powered_by_drutopia.yml (100%) rename config/{sync => }/language/es/block.block.bulma_main_menu.yml (100%) rename config/{sync => }/language/es/block.block.octavia_main_menu.yml (100%) rename config/{sync => }/language/es/block_visibility_groups.block_visibility_group.search.yml (100%) rename config/{sync => }/language/es/contact.form.feedback.yml (100%) rename config/{sync => }/language/es/contact.form.personal.yml (100%) rename config/{sync => }/language/es/core.base_field_override.node.people.title.yml (100%) rename config/{sync => }/language/es/core.entity_view_mode.paragraph.preview.yml (100%) rename config/{sync => }/language/es/field.field.block_content.basic.body.yml (100%) rename config/{sync => }/language/es/field.field.group.group.field_group_email.yml (100%) rename config/{sync => }/language/es/field.field.node.action.body.yml (100%) rename config/{sync => }/language/es/field.field.node.action.field_tags.yml (100%) rename config/{sync => }/language/es/field.field.node.article.body.yml (100%) rename config/{sync => }/language/es/field.field.node.article.comment.yml (100%) rename config/{sync => }/language/es/field.field.node.article.field_tags.yml (100%) rename config/{sync => }/language/es/field.field.node.blog.body.yml (100%) rename config/{sync => }/language/es/field.field.node.blog.comment.yml (100%) rename config/{sync => }/language/es/field.field.node.blog.field_tags.yml (100%) rename config/{sync => }/language/es/field.field.node.campaign.body.yml (100%) rename config/{sync => }/language/es/field.field.node.case_study.body.yml (100%) rename config/{sync => }/language/es/field.field.node.case_study.field_case_study_status.yml (100%) rename config/{sync => }/language/es/field.field.node.case_study.field_services.yml (100%) rename config/{sync => }/language/es/field.field.node.event.body.yml (100%) rename config/{sync => }/language/es/field.field.node.event.field_tags.yml (100%) rename config/{sync => }/language/es/field.field.node.page.body.yml (100%) rename config/{sync => }/language/es/field.field.node.resource.body.yml (100%) rename config/{sync => }/language/es/field.field.node.resource.field_tags.yml (100%) rename config/{sync => }/language/es/group.type.group.yml (100%) rename config/{sync => }/language/es/metatag.metatag_defaults.front.yml (100%) rename config/{sync => }/language/es/metatag.metatag_defaults.node.yml (100%) rename config/{sync => }/language/es/metatag.metatag_defaults.user.yml (100%) rename config/{sync => }/language/es/node.type.action.yml (100%) rename config/{sync => }/language/es/node.type.case_study.yml (100%) rename config/{sync => }/language/es/node.type.page.yml (100%) rename config/{sync => }/language/es/pathauto.pattern.case_study.yml (100%) rename config/{sync => }/language/es/pathauto.pattern.group.yml (100%) rename config/{sync => }/language/es/search_api.index.action.yml (100%) rename config/{sync => }/language/es/search_api.index.case_study.yml (100%) rename config/{sync => }/language/es/shortcut.set.default.yml (100%) rename config/{sync => }/language/es/system.menu.main.yml (100%) rename config/{sync => }/language/es/taxonomy.vocabulary.services.yml (100%) rename config/{sync => }/language/es/taxonomy.vocabulary.tags.yml (100%) rename config/{sync => }/language/es/tour.tour.locale.yml (100%) rename config/{sync => }/language/es/tour.tour.search-api-index-fields.yml (100%) rename config/{sync => }/language/es/tour.tour.search-api-index.yml (100%) rename config/{sync => }/language/es/tour.tour.search-api-server.yml (100%) rename config/{sync => }/language/es/tour.tour.views-ui.yml (100%) rename config/{sync => }/language/es/views.view.action.yml (100%) rename config/{sync => }/language/es/views.view.archive.yml (100%) rename config/{sync => }/language/es/views.view.article.yml (100%) rename config/{sync => }/language/es/views.view.block_content.yml (100%) rename config/{sync => }/language/es/views.view.blog.yml (100%) rename config/{sync => }/language/es/views.view.campaign.yml (100%) rename config/{sync => }/language/es/views.view.case_study.yml (100%) rename config/{sync => }/language/es/views.view.comment.yml (100%) rename config/{sync => }/language/es/views.view.comments_recent.yml (100%) rename config/{sync => }/language/es/views.view.content.yml (100%) rename config/{sync => }/language/es/views.view.content_recent.yml (100%) rename config/{sync => }/language/es/views.view.event.yml (100%) rename config/{sync => }/language/es/views.view.files.yml (100%) rename config/{sync => }/language/es/views.view.frontpage.yml (100%) rename config/{sync => }/language/es/views.view.glossary.yml (100%) rename config/{sync => }/language/es/views.view.group.yml (100%) rename config/{sync => }/language/es/views.view.group_content.yml (100%) rename config/{sync => }/language/es/views.view.group_members.yml (100%) rename config/{sync => }/language/es/views.view.group_nodes.yml (100%) rename config/{sync => }/language/es/views.view.people.yml (100%) rename config/{sync => }/language/es/views.view.redirect.yml (100%) rename config/{sync => }/language/es/views.view.redirect_404.yml (100%) rename config/{sync => }/language/es/views.view.resource.yml (100%) rename config/{sync => }/language/es/views.view.search.yml (100%) rename config/{sync => }/language/es/views.view.taxonomy_term.yml (100%) rename config/{sync => }/language/es/views.view.user_admin_people.yml (100%) rename config/{sync => }/language/es/views.view.watchdog.yml (100%) rename config/{sync => }/language/es/views.view.webform_submissions.yml (100%) rename config/{sync => }/language/es/views.view.webmentions.yml (100%) rename config/{sync => }/language/es/views.view.who_s_new.yml (100%) rename config/{sync => }/language/es/webform.settings.yml (100%) rename config/{sync => }/language/es/webform.webform.capacitacion.yml (100%) rename config/{sync => }/language/es/webform.webform.contact.yml (100%) rename config/{sync => }/language/es/webform.webform.contacto.yml (100%) rename config/{sync => }/language/es/webform.webform.training.yml (100%) rename config/{sync => }/locale.settings.yml (100%) rename config/{sync => }/mailchimp.settings.yml (100%) rename config/{sync => }/markdown.settings.yml (100%) rename config/{sync => }/menu_ui.settings.yml (100%) rename config/{sync => }/metatag.metatag_defaults.403.yml (100%) rename config/{sync => }/metatag.metatag_defaults.404.yml (100%) rename config/{sync => }/metatag.metatag_defaults.front.yml (100%) rename config/{sync => }/metatag.metatag_defaults.global.yml (100%) rename config/{sync => }/metatag.metatag_defaults.node.yml (100%) rename config/{sync => }/metatag.metatag_defaults.taxonomy_term.yml (100%) rename config/{sync => }/metatag.metatag_defaults.user.yml (100%) rename config/{sync => }/migrate_drupal.settings.yml (100%) rename config/{sync => }/migrate_plus.migration_group.agaric.yml (100%) rename config/{sync => }/migrate_plus.migration_group.default.yml (100%) rename config/{sync => }/node.settings.yml (100%) rename config/{sync => }/node.type.action.yml (100%) rename config/{sync => }/node.type.article.yml (100%) rename config/{sync => }/node.type.blog.yml (100%) rename config/{sync => }/node.type.campaign.yml (100%) rename config/{sync => }/node.type.case_study.yml (100%) rename config/{sync => }/node.type.event.yml (100%) rename config/{sync => }/node.type.landing_page.yml (100%) rename config/{sync => }/node.type.page.yml (100%) rename config/{sync => }/node.type.people.yml (100%) rename config/{sync => }/node.type.resource.yml (100%) rename config/{sync => }/octavia.settings.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.content_reference.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.embedded_content.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.faq.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.file.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.image.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.quotation_with_image.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.slide.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.storyline_header.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.storyline_item.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.text.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.title.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.update.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.video.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.view.yml (100%) rename config/{sync => }/paragraphs.paragraphs_type.webform.yml (100%) rename config/{sync => }/paragraphs.settings.yml (100%) rename config/{sync => }/paragraphs_features.settings.yml (100%) rename config/{sync => }/pathauto.pattern.article_type.yml (100%) rename config/{sync => }/pathauto.pattern.case_study.yml (100%) rename config/{sync => }/pathauto.pattern.event_type.yml (100%) rename config/{sync => }/pathauto.pattern.group.yml (100%) rename config/{sync => }/pathauto.pattern.group_content.yml (100%) rename config/{sync => }/pathauto.pattern.group_membership.yml (100%) rename config/{sync => }/pathauto.pattern.group_type.yml (100%) rename config/{sync => }/pathauto.pattern.node_action.yml (100%) rename config/{sync => }/pathauto.pattern.node_article.yml (100%) rename config/{sync => }/pathauto.pattern.node_blog.yml (100%) rename config/{sync => }/pathauto.pattern.node_campaign.yml (100%) rename config/{sync => }/pathauto.pattern.node_event.yml (100%) rename config/{sync => }/pathauto.pattern.node_landing_page.yml (100%) rename config/{sync => }/pathauto.pattern.node_page.yml (100%) rename config/{sync => }/pathauto.pattern.node_resource.yml (100%) rename config/{sync => }/pathauto.pattern.people_node.yml (100%) rename config/{sync => }/pathauto.pattern.people_type.yml (100%) rename config/{sync => }/pathauto.pattern.vocabulary_terms.yml (100%) rename config/{sync => }/pathauto.settings.yml (100%) rename config/{sync => }/preview_link.settings.yml (100%) rename config/{sync => }/rdf.mapping.comment.comment.yml (100%) rename config/{sync => }/rdf.mapping.node.article.yml (100%) rename config/{sync => }/rdf.mapping.node.page.yml (100%) rename config/{sync => }/rdf.mapping.taxonomy_term.tags.yml (100%) rename config/{sync => }/rdf.mapping.taxonomy_term.topics.yml (100%) rename config/{sync => }/rdf.mapping.user.user.yml (100%) rename config/{sync => }/redirect.settings.yml (100%) rename config/{sync => }/redirect_404.settings.yml (100%) rename config/{sync => }/responsive_image.styles.narrow.yml (100%) rename config/{sync => }/responsive_image.styles.wide.yml (100%) rename config/{sync => }/scn.settings.yml (100%) rename config/{sync => }/search_api.index.action.yml (100%) rename config/{sync => }/search_api.index.article.yml (100%) rename config/{sync => }/search_api.index.blog.yml (100%) rename config/{sync => }/search_api.index.campaign.yml (100%) rename config/{sync => }/search_api.index.case_study.yml (100%) rename config/{sync => }/search_api.index.content.yml (100%) rename config/{sync => }/search_api.index.event.yml (100%) rename config/{sync => }/search_api.index.people.yml (100%) rename config/{sync => }/search_api.index.resource.yml (100%) rename config/{sync => }/search_api.server.database.yml (100%) rename config/{sync => }/search_api.settings.yml (100%) rename config/{sync => }/search_api_db.settings.yml (100%) rename config/{sync => }/serialization.settings.yml (100%) rename config/{sync => }/seven.settings.yml (100%) rename config/{sync => }/shortcut.set.default.yml (100%) rename config/{sync => }/statistics.settings.yml (100%) rename config/{sync => }/stripe.settings.yml (100%) rename config/{sync => }/syslog.settings.yml (100%) rename config/{sync => }/system.action.comment_delete_action.yml (100%) rename config/{sync => }/system.action.comment_publish_action.yml (100%) rename config/{sync => }/system.action.comment_save_action.yml (100%) rename config/{sync => }/system.action.comment_unpublish_action.yml (100%) rename config/{sync => }/system.action.node_delete_action.yml (100%) rename config/{sync => }/system.action.node_make_sticky_action.yml (100%) rename config/{sync => }/system.action.node_make_unsticky_action.yml (100%) rename config/{sync => }/system.action.node_promote_action.yml (100%) rename config/{sync => }/system.action.node_publish_action.yml (100%) rename config/{sync => }/system.action.node_save_action.yml (100%) rename config/{sync => }/system.action.node_unpromote_action.yml (100%) rename config/{sync => }/system.action.node_unpublish_action.yml (100%) rename config/{sync => }/system.action.pathauto_update_alias_node.yml (100%) rename config/{sync => }/system.action.pathauto_update_alias_user.yml (100%) rename config/{sync => }/system.action.redirect_delete_action.yml (100%) rename config/{sync => }/system.action.user_add_role_action.administrator.yml (100%) rename config/{sync => }/system.action.user_add_role_action.contributor.yml (100%) rename config/{sync => }/system.action.user_add_role_action.editor.yml (100%) rename config/{sync => }/system.action.user_add_role_action.manager.yml (100%) rename config/{sync => }/system.action.user_add_role_action.partner.yml (100%) rename config/{sync => }/system.action.user_add_role_action.past.yml (100%) rename config/{sync => }/system.action.user_add_role_action.staff.yml (100%) rename config/{sync => }/system.action.user_block_user_action.yml (100%) rename config/{sync => }/system.action.user_cancel_user_action.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.administrator.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.contributor.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.editor.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.manager.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.partner.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.past.yml (100%) rename config/{sync => }/system.action.user_remove_role_action.staff.yml (100%) rename config/{sync => }/system.action.user_unblock_user_action.yml (100%) rename config/{sync => }/system.action.webform_submission_delete_action.yml (100%) rename config/{sync => }/system.action.webform_submission_make_lock_action.yml (100%) rename config/{sync => }/system.action.webform_submission_make_sticky_action.yml (100%) rename config/{sync => }/system.action.webform_submission_make_unlock_action.yml (100%) rename config/{sync => }/system.action.webform_submission_make_unsticky_action.yml (100%) rename config/{sync => }/system.action.webmention_delete_action.yml (100%) rename config/{sync => }/system.action.webmention_publish_action.yml (100%) rename config/{sync => }/system.action.webmention_unpublish_action.yml (100%) rename config/{sync => }/system.authorize.yml (100%) rename config/{sync => }/system.cron.yml (100%) rename config/{sync => }/system.date.yml (100%) rename config/{sync => }/system.diff.yml (100%) rename config/{sync => }/system.file.yml (100%) rename config/{sync => }/system.image.gd.yml (100%) rename config/{sync => }/system.image.yml (100%) rename config/{sync => }/system.logging.yml (100%) rename config/{sync => }/system.mail.yml (100%) rename config/{sync => }/system.maintenance.yml (100%) rename config/{sync => }/system.menu.account.yml (100%) rename config/{sync => }/system.menu.admin.yml (100%) rename config/{sync => }/system.menu.footer.yml (100%) rename config/{sync => }/system.menu.main.yml (100%) rename config/{sync => }/system.menu.tools.yml (100%) rename config/{sync => }/system.performance.yml (100%) rename config/{sync => }/system.rss.yml (100%) rename config/{sync => }/system.site.yml (100%) rename config/{sync => }/system.theme.global.yml (100%) rename config/{sync => }/system.theme.yml (100%) rename config/{sync => }/taxonomy.settings.yml (100%) rename config/{sync => }/taxonomy.vocabulary.action_type.yml (100%) rename config/{sync => }/taxonomy.vocabulary.article_type.yml (100%) rename config/{sync => }/taxonomy.vocabulary.event_type.yml (100%) rename config/{sync => }/taxonomy.vocabulary.group_type.yml (100%) rename config/{sync => }/taxonomy.vocabulary.license.yml (100%) rename config/{sync => }/taxonomy.vocabulary.people_type.yml (100%) rename config/{sync => }/taxonomy.vocabulary.resource_type.yml (100%) rename config/{sync => }/taxonomy.vocabulary.services.yml (100%) rename config/{sync => }/taxonomy.vocabulary.tags.yml (100%) rename config/{sync => }/taxonomy.vocabulary.technologies.yml (100%) rename config/{sync => }/taxonomy.vocabulary.topics.yml (100%) rename config/{sync => }/text.settings.yml (100%) rename config/{sync => }/tour.tour.honeypot.yml (100%) rename config/{sync => }/tour.tour.language-add.yml (100%) rename config/{sync => }/tour.tour.language-edit.yml (100%) rename config/{sync => }/tour.tour.language.yml (100%) rename config/{sync => }/tour.tour.locale.yml (100%) rename config/{sync => }/tour.tour.search-api-index-fields.yml (100%) rename config/{sync => }/tour.tour.search-api-index-form.yml (100%) rename config/{sync => }/tour.tour.search-api-index-processors.yml (100%) rename config/{sync => }/tour.tour.search-api-index.yml (100%) rename config/{sync => }/tour.tour.search-api-server-form.yml (100%) rename config/{sync => }/tour.tour.search-api-server.yml (100%) rename config/{sync => }/tour.tour.views-ui.yml (100%) rename config/{sync => }/update.settings.yml (100%) rename config/{sync => }/user.flood.yml (100%) rename config/{sync => }/user.mail.yml (100%) rename config/{sync => }/user.role.administrator.yml (100%) rename config/{sync => }/user.role.anonymous.yml (100%) rename config/{sync => }/user.role.authenticated.yml (100%) rename config/{sync => }/user.role.contributor.yml (100%) rename config/{sync => }/user.role.editor.yml (100%) rename config/{sync => }/user.role.manager.yml (100%) rename config/{sync => }/user.role.partner.yml (100%) rename config/{sync => }/user.role.past.yml (100%) rename config/{sync => }/user.role.staff.yml (100%) rename config/{sync => }/user.settings.yml (100%) rename config/{sync => }/views.settings.yml (100%) rename config/{sync => }/views.view.action.yml (100%) rename config/{sync => }/views.view.archive.yml (100%) rename config/{sync => }/views.view.article.yml (100%) rename config/{sync => }/views.view.block_content.yml (100%) rename config/{sync => }/views.view.blog.yml (100%) rename config/{sync => }/views.view.campaign.yml (100%) rename config/{sync => }/views.view.case_study.yml (100%) rename config/{sync => }/views.view.comment.yml (100%) rename config/{sync => }/views.view.comments_recent.yml (100%) rename config/{sync => }/views.view.content.yml (100%) rename config/{sync => }/views.view.content_recent.yml (100%) rename config/{sync => }/views.view.event.yml (100%) rename config/{sync => }/views.view.files.yml (100%) rename config/{sync => }/views.view.frontpage.yml (100%) rename config/{sync => }/views.view.glossary.yml (100%) rename config/{sync => }/views.view.group.yml (100%) rename config/{sync => }/views.view.group_content.yml (100%) rename config/{sync => }/views.view.group_members.yml (100%) rename config/{sync => }/views.view.group_nodes.yml (100%) rename config/{sync => }/views.view.people.yml (100%) rename config/{sync => }/views.view.redirect.yml (100%) rename config/{sync => }/views.view.redirect_404.yml (100%) rename config/{sync => }/views.view.related_content.yml (100%) rename config/{sync => }/views.view.resource.yml (100%) rename config/{sync => }/views.view.search.yml (100%) rename config/{sync => }/views.view.taxonomy_term.yml (100%) rename config/{sync => }/views.view.user_admin_people.yml (100%) rename config/{sync => }/views.view.watchdog.yml (100%) rename config/{sync => }/views.view.webform_submissions.yml (100%) rename config/{sync => }/views.view.webmentions.yml (100%) rename config/{sync => }/views.view.who_s_new.yml (100%) rename config/{sync => }/views.view.who_s_online.yml (100%) rename config/{sync => }/webform.settings.yml (100%) rename config/{sync => }/webform.webform.attend_the_tech_and_rev_workshop.yml (100%) rename config/{sync => }/webform.webform.blog_posts.yml (100%) rename config/{sync => }/webform.webform.capacitacion.yml (100%) rename config/{sync => }/webform.webform.contact.yml (100%) rename config/{sync => }/webform.webform.contact_confirm.yml (100%) rename config/{sync => }/webform.webform.drupal_8_9_content_migrations.yml (100%) rename config/{sync => }/webform.webform.drutopia_intake.yml (100%) rename config/{sync => }/webform.webform.drutopia_platform_intake.yml (100%) rename config/{sync => }/webform.webform.find_it_platform.yml (100%) rename config/{sync => }/webform.webform.general_services.yml (100%) rename config/{sync => }/webform.webform.getting_started_with_drupal_9.yml (100%) rename config/{sync => }/webform.webform.getting_started_with_react_js.yml (100%) rename config/{sync => }/webform.webform.join_the_movement.yml (100%) rename config/{sync => }/webform.webform.join_the_movement_confirm.yml (100%) rename config/{sync => }/webform.webform.june_2020_webinars.yml (100%) rename config/{sync => }/webform.webform.lms.yml (100%) rename config/{sync => }/webform.webform.migrations.yml (100%) rename config/{sync => }/webform.webform.migrations_training_confirm.yml (100%) rename config/{sync => }/webform.webform.newsletter.yml (100%) rename config/{sync => }/webform.webform.purchase_training_migrate_api.yml (100%) rename config/{sync => }/webform.webform.request.yml (100%) rename config/{sync => }/webform.webform.showandtell.yml (100%) rename config/{sync => }/webform.webform.speaker_request_agaric.yml (100%) rename config/{sync => }/webform.webform.speaker_request_clayton_dewey.yml (100%) rename config/{sync => }/webform.webform.speaker_request_mauricio_dinarte.yml (100%) rename config/{sync => }/webform.webform.speaker_request_michele_metts.yml (100%) rename config/{sync => }/webform.webform.speaker_request_micky_metts.yml (100%) rename config/{sync => }/webform.webform.training.yml (100%) rename config/{sync => }/webform.webform.training_discount.yml (100%) rename config/{sync => }/webform.webform.training_notification_request.yml (100%) rename config/{sync => }/webform.webform.training_request_draft.yml (100%) rename config/{sync => }/webform.webform.workshops.yml (100%) rename config/{sync => }/webform.webform_options.country_codes.yml (100%) rename config/{sync => }/webform.webform_options.country_names.yml (100%) rename config/{sync => }/webform.webform_options.days.yml (100%) rename config/{sync => }/webform.webform_options.education.yml (100%) rename config/{sync => }/webform.webform_options.employment_status.yml (100%) rename config/{sync => }/webform.webform_options.ethnicity.yml (100%) rename config/{sync => }/webform.webform_options.gender.yml (100%) rename config/{sync => }/webform.webform_options.industry.yml (100%) rename config/{sync => }/webform.webform_options.languages.yml (100%) rename config/{sync => }/webform.webform_options.likert_agreement.yml (100%) rename config/{sync => }/webform.webform_options.likert_comparison.yml (100%) rename config/{sync => }/webform.webform_options.likert_importance.yml (100%) rename config/{sync => }/webform.webform_options.likert_quality.yml (100%) rename config/{sync => }/webform.webform_options.likert_satisfaction.yml (100%) rename config/{sync => }/webform.webform_options.likert_ten_scale.yml (100%) rename config/{sync => }/webform.webform_options.likert_would_you.yml (100%) rename config/{sync => }/webform.webform_options.marital_status.yml (100%) rename config/{sync => }/webform.webform_options.months.yml (100%) rename config/{sync => }/webform.webform_options.phone_types.yml (100%) rename config/{sync => }/webform.webform_options.relationship.yml (100%) rename config/{sync => }/webform.webform_options.size.yml (100%) rename config/{sync => }/webform.webform_options.state_codes.yml (100%) rename config/{sync => }/webform.webform_options.state_names.yml (100%) rename config/{sync => }/webform.webform_options.state_province_codes.yml (100%) rename config/{sync => }/webform.webform_options.state_province_names.yml (100%) rename config/{sync => }/webform.webform_options.time_zones.yml (100%) rename config/{sync => }/webform.webform_options.yes_no.yml (100%) rename config/{sync => }/webform_scheduled_email.settings.yml (100%) diff --git a/config/sync/.htaccess b/config/.htaccess similarity index 100% rename from config/sync/.htaccess rename to config/.htaccess diff --git a/config/sync/antibot.settings.yml b/config/antibot.settings.yml similarity index 100% rename from config/sync/antibot.settings.yml rename to config/antibot.settings.yml diff --git a/config/sync/automated_cron.settings.yml b/config/automated_cron.settings.yml similarity index 100% rename from config/sync/automated_cron.settings.yml rename to config/automated_cron.settings.yml diff --git a/config/sync/autosave_form.messages.yml b/config/autosave_form.messages.yml similarity index 100% rename from config/sync/autosave_form.messages.yml rename to config/autosave_form.messages.yml diff --git a/config/sync/autosave_form.settings.yml b/config/autosave_form.settings.yml similarity index 100% rename from config/sync/autosave_form.settings.yml rename to config/autosave_form.settings.yml diff --git a/config/sync/block.block.agarica_account_menu.yml b/config/block.block.agarica_account_menu.yml similarity index 100% rename from config/sync/block.block.agarica_account_menu.yml rename to config/block.block.agarica_account_menu.yml diff --git a/config/sync/block.block.agarica_branding.yml b/config/block.block.agarica_branding.yml similarity index 100% rename from config/sync/block.block.agarica_branding.yml rename to config/block.block.agarica_branding.yml diff --git a/config/sync/block.block.agarica_content.yml b/config/block.block.agarica_content.yml similarity index 100% rename from config/sync/block.block.agarica_content.yml rename to config/block.block.agarica_content.yml diff --git a/config/sync/block.block.agarica_footer_menu.yml b/config/block.block.agarica_footer_menu.yml similarity index 100% rename from config/sync/block.block.agarica_footer_menu.yml rename to config/block.block.agarica_footer_menu.yml diff --git a/config/sync/block.block.agarica_group_operations.yml b/config/block.block.agarica_group_operations.yml similarity index 100% rename from config/sync/block.block.agarica_group_operations.yml rename to config/block.block.agarica_group_operations.yml diff --git a/config/sync/block.block.agarica_help.yml b/config/block.block.agarica_help.yml similarity index 100% rename from config/sync/block.block.agarica_help.yml rename to config/block.block.agarica_help.yml diff --git a/config/sync/block.block.agarica_home_page_custom_1.yml b/config/block.block.agarica_home_page_custom_1.yml similarity index 100% rename from config/sync/block.block.agarica_home_page_custom_1.yml rename to config/block.block.agarica_home_page_custom_1.yml diff --git a/config/sync/block.block.agarica_home_page_custom_2.yml b/config/block.block.agarica_home_page_custom_2.yml similarity index 100% rename from config/sync/block.block.agarica_home_page_custom_2.yml rename to config/block.block.agarica_home_page_custom_2.yml diff --git a/config/sync/block.block.agarica_home_page_custom_3.yml b/config/block.block.agarica_home_page_custom_3.yml similarity index 100% rename from config/sync/block.block.agarica_home_page_custom_3.yml rename to config/block.block.agarica_home_page_custom_3.yml diff --git a/config/sync/block.block.agarica_local_actions.yml b/config/block.block.agarica_local_actions.yml similarity index 100% rename from config/sync/block.block.agarica_local_actions.yml rename to config/block.block.agarica_local_actions.yml diff --git a/config/sync/block.block.agarica_local_tasks.yml b/config/block.block.agarica_local_tasks.yml similarity index 100% rename from config/sync/block.block.agarica_local_tasks.yml rename to config/block.block.agarica_local_tasks.yml diff --git a/config/sync/block.block.agarica_main_menu.yml b/config/block.block.agarica_main_menu.yml similarity index 100% rename from config/sync/block.block.agarica_main_menu.yml rename to config/block.block.agarica_main_menu.yml diff --git a/config/sync/block.block.agarica_messages.yml b/config/block.block.agarica_messages.yml similarity index 100% rename from config/sync/block.block.agarica_messages.yml rename to config/block.block.agarica_messages.yml diff --git a/config/sync/block.block.agarica_page_title.yml b/config/block.block.agarica_page_title.yml similarity index 100% rename from config/sync/block.block.agarica_page_title.yml rename to config/block.block.agarica_page_title.yml diff --git a/config/sync/block.block.agarica_powered_by_drutopia.yml b/config/block.block.agarica_powered_by_drutopia.yml similarity index 100% rename from config/sync/block.block.agarica_powered_by_drutopia.yml rename to config/block.block.agarica_powered_by_drutopia.yml diff --git a/config/sync/block.block.agarica_socialmedialinks.yml b/config/block.block.agarica_socialmedialinks.yml similarity index 100% rename from config/sync/block.block.agarica_socialmedialinks.yml rename to config/block.block.agarica_socialmedialinks.yml diff --git a/config/sync/block.block.agarica_views_block__related_content_block_related_content.yml b/config/block.block.agarica_views_block__related_content_block_related_content.yml similarity index 100% rename from config/sync/block.block.agarica_views_block__related_content_block_related_content.yml rename to config/block.block.agarica_views_block__related_content_block_related_content.yml diff --git a/config/sync/block.block.agaricnewsletter.yml b/config/block.block.agaricnewsletter.yml similarity index 100% rename from config/sync/block.block.agaricnewsletter.yml rename to config/block.block.agaricnewsletter.yml diff --git a/config/sync/block.block.article_topics_facet.yml b/config/block.block.article_topics_facet.yml similarity index 100% rename from config/sync/block.block.article_topics_facet.yml rename to config/block.block.article_topics_facet.yml diff --git a/config/sync/block.block.article_type_facet.yml b/config/block.block.article_type_facet.yml similarity index 100% rename from config/sync/block.block.article_type_facet.yml rename to config/block.block.article_type_facet.yml diff --git a/config/sync/block.block.blog_topics_facet.yml b/config/block.block.blog_topics_facet.yml similarity index 100% rename from config/sync/block.block.blog_topics_facet.yml rename to config/block.block.blog_topics_facet.yml diff --git a/config/sync/block.block.bulma_account_menu.yml b/config/block.block.bulma_account_menu.yml similarity index 100% rename from config/sync/block.block.bulma_account_menu.yml rename to config/block.block.bulma_account_menu.yml diff --git a/config/sync/block.block.bulma_branding.yml b/config/block.block.bulma_branding.yml similarity index 100% rename from config/sync/block.block.bulma_branding.yml rename to config/block.block.bulma_branding.yml diff --git a/config/sync/block.block.bulma_content.yml b/config/block.block.bulma_content.yml similarity index 100% rename from config/sync/block.block.bulma_content.yml rename to config/block.block.bulma_content.yml diff --git a/config/sync/block.block.bulma_help.yml b/config/block.block.bulma_help.yml similarity index 100% rename from config/sync/block.block.bulma_help.yml rename to config/block.block.bulma_help.yml diff --git a/config/sync/block.block.bulma_local_tasks.yml b/config/block.block.bulma_local_tasks.yml similarity index 100% rename from config/sync/block.block.bulma_local_tasks.yml rename to config/block.block.bulma_local_tasks.yml diff --git a/config/sync/block.block.bulma_main_menu.yml b/config/block.block.bulma_main_menu.yml similarity index 100% rename from config/sync/block.block.bulma_main_menu.yml rename to config/block.block.bulma_main_menu.yml diff --git a/config/sync/block.block.bulma_messages.yml b/config/block.block.bulma_messages.yml similarity index 100% rename from config/sync/block.block.bulma_messages.yml rename to config/block.block.bulma_messages.yml diff --git a/config/sync/block.block.bulma_page_title.yml b/config/block.block.bulma_page_title.yml similarity index 100% rename from config/sync/block.block.bulma_page_title.yml rename to config/block.block.bulma_page_title.yml diff --git a/config/sync/block.block.bulma_powered.yml b/config/block.block.bulma_powered.yml similarity index 100% rename from config/sync/block.block.bulma_powered.yml rename to config/block.block.bulma_powered.yml diff --git a/config/sync/block.block.bulma_tools.yml b/config/block.block.bulma_tools.yml similarity index 100% rename from config/sync/block.block.bulma_tools.yml rename to config/block.block.bulma_tools.yml diff --git a/config/sync/block.block.content_search_form_global.yml b/config/block.block.content_search_form_global.yml similarity index 100% rename from config/sync/block.block.content_search_form_global.yml rename to config/block.block.content_search_form_global.yml diff --git a/config/sync/block.block.content_search_form_search.yml b/config/block.block.content_search_form_search.yml similarity index 100% rename from config/sync/block.block.content_search_form_search.yml rename to config/block.block.content_search_form_search.yml diff --git a/config/sync/block.block.event_topics_facet.yml b/config/block.block.event_topics_facet.yml similarity index 100% rename from config/sync/block.block.event_topics_facet.yml rename to config/block.block.event_topics_facet.yml diff --git a/config/sync/block.block.event_type_facet.yml b/config/block.block.event_type_facet.yml similarity index 100% rename from config/sync/block.block.event_type_facet.yml rename to config/block.block.event_type_facet.yml diff --git a/config/sync/block.block.exposedformsearchpage_1.yml b/config/block.block.exposedformsearchpage_1.yml similarity index 100% rename from config/sync/block.block.exposedformsearchpage_1.yml rename to config/block.block.exposedformsearchpage_1.yml diff --git a/config/sync/block.block.exposedformsearchpage_1_2.yml b/config/block.block.exposedformsearchpage_1_2.yml similarity index 100% rename from config/sync/block.block.exposedformsearchpage_1_2.yml rename to config/block.block.exposedformsearchpage_1_2.yml diff --git a/config/sync/block.block.footer_about_us.yml b/config/block.block.footer_about_us.yml similarity index 100% rename from config/sync/block.block.footer_about_us.yml rename to config/block.block.footer_about_us.yml diff --git a/config/sync/block.block.footer_get_involved.yml b/config/block.block.footer_get_involved.yml similarity index 100% rename from config/sync/block.block.footer_get_involved.yml rename to config/block.block.footer_get_involved.yml diff --git a/config/sync/block.block.footer_our_work.yml b/config/block.block.footer_our_work.yml similarity index 100% rename from config/sync/block.block.footer_our_work.yml rename to config/block.block.footer_our_work.yml diff --git a/config/sync/block.block.group_operations.yml b/config/block.block.group_operations.yml similarity index 100% rename from config/sync/block.block.group_operations.yml rename to config/block.block.group_operations.yml diff --git a/config/sync/block.block.hireagaric.yml b/config/block.block.hireagaric.yml similarity index 100% rename from config/sync/block.block.hireagaric.yml rename to config/block.block.hireagaric.yml diff --git a/config/sync/block.block.home_page_custom_1.yml b/config/block.block.home_page_custom_1.yml similarity index 100% rename from config/sync/block.block.home_page_custom_1.yml rename to config/block.block.home_page_custom_1.yml diff --git a/config/sync/block.block.home_page_custom_2.yml b/config/block.block.home_page_custom_2.yml similarity index 100% rename from config/sync/block.block.home_page_custom_2.yml rename to config/block.block.home_page_custom_2.yml diff --git a/config/sync/block.block.home_page_custom_3.yml b/config/block.block.home_page_custom_3.yml similarity index 100% rename from config/sync/block.block.home_page_custom_3.yml rename to config/block.block.home_page_custom_3.yml diff --git a/config/sync/block.block.home_page_feature.yml b/config/block.block.home_page_feature.yml similarity index 100% rename from config/sync/block.block.home_page_feature.yml rename to config/block.block.home_page_feature.yml diff --git a/config/sync/block.block.languageswitcher.yml b/config/block.block.languageswitcher.yml similarity index 100% rename from config/sync/block.block.languageswitcher.yml rename to config/block.block.languageswitcher.yml diff --git a/config/sync/block.block.mainnavigation.yml b/config/block.block.mainnavigation.yml similarity index 100% rename from config/sync/block.block.mainnavigation.yml rename to config/block.block.mainnavigation.yml diff --git a/config/sync/block.block.octavia_account_menu.yml b/config/block.block.octavia_account_menu.yml similarity index 100% rename from config/sync/block.block.octavia_account_menu.yml rename to config/block.block.octavia_account_menu.yml diff --git a/config/sync/block.block.octavia_branding.yml b/config/block.block.octavia_branding.yml similarity index 100% rename from config/sync/block.block.octavia_branding.yml rename to config/block.block.octavia_branding.yml diff --git a/config/sync/block.block.octavia_content.yml b/config/block.block.octavia_content.yml similarity index 100% rename from config/sync/block.block.octavia_content.yml rename to config/block.block.octavia_content.yml diff --git a/config/sync/block.block.octavia_footer_menu.yml b/config/block.block.octavia_footer_menu.yml similarity index 100% rename from config/sync/block.block.octavia_footer_menu.yml rename to config/block.block.octavia_footer_menu.yml diff --git a/config/sync/block.block.octavia_help.yml b/config/block.block.octavia_help.yml similarity index 100% rename from config/sync/block.block.octavia_help.yml rename to config/block.block.octavia_help.yml diff --git a/config/sync/block.block.octavia_local_actions.yml b/config/block.block.octavia_local_actions.yml similarity index 100% rename from config/sync/block.block.octavia_local_actions.yml rename to config/block.block.octavia_local_actions.yml diff --git a/config/sync/block.block.octavia_local_tasks.yml b/config/block.block.octavia_local_tasks.yml similarity index 100% rename from config/sync/block.block.octavia_local_tasks.yml rename to config/block.block.octavia_local_tasks.yml diff --git a/config/sync/block.block.octavia_main_menu.yml b/config/block.block.octavia_main_menu.yml similarity index 100% rename from config/sync/block.block.octavia_main_menu.yml rename to config/block.block.octavia_main_menu.yml diff --git a/config/sync/block.block.octavia_messages.yml b/config/block.block.octavia_messages.yml similarity index 100% rename from config/sync/block.block.octavia_messages.yml rename to config/block.block.octavia_messages.yml diff --git a/config/sync/block.block.octavia_page_title.yml b/config/block.block.octavia_page_title.yml similarity index 100% rename from config/sync/block.block.octavia_page_title.yml rename to config/block.block.octavia_page_title.yml diff --git a/config/sync/block.block.octavia_powered_by_drutopia.yml b/config/block.block.octavia_powered_by_drutopia.yml similarity index 100% rename from config/sync/block.block.octavia_powered_by_drutopia.yml rename to config/block.block.octavia_powered_by_drutopia.yml diff --git a/config/sync/block.block.resource_topics_facet.yml b/config/block.block.resource_topics_facet.yml similarity index 100% rename from config/sync/block.block.resource_topics_facet.yml rename to config/block.block.resource_topics_facet.yml diff --git a/config/sync/block.block.resource_type_facet.yml b/config/block.block.resource_type_facet.yml similarity index 100% rename from config/sync/block.block.resource_type_facet.yml rename to config/block.block.resource_type_facet.yml diff --git a/config/sync/block.block.seven_breadcrumbs.yml b/config/block.block.seven_breadcrumbs.yml similarity index 100% rename from config/sync/block.block.seven_breadcrumbs.yml rename to config/block.block.seven_breadcrumbs.yml diff --git a/config/sync/block.block.seven_content.yml b/config/block.block.seven_content.yml similarity index 100% rename from config/sync/block.block.seven_content.yml rename to config/block.block.seven_content.yml diff --git a/config/sync/block.block.seven_help.yml b/config/block.block.seven_help.yml similarity index 100% rename from config/sync/block.block.seven_help.yml rename to config/block.block.seven_help.yml diff --git a/config/sync/block.block.seven_local_actions.yml b/config/block.block.seven_local_actions.yml similarity index 100% rename from config/sync/block.block.seven_local_actions.yml rename to config/block.block.seven_local_actions.yml diff --git a/config/sync/block.block.seven_login.yml b/config/block.block.seven_login.yml similarity index 100% rename from config/sync/block.block.seven_login.yml rename to config/block.block.seven_login.yml diff --git a/config/sync/block.block.seven_messages.yml b/config/block.block.seven_messages.yml similarity index 100% rename from config/sync/block.block.seven_messages.yml rename to config/block.block.seven_messages.yml diff --git a/config/sync/block.block.seven_page_title.yml b/config/block.block.seven_page_title.yml similarity index 100% rename from config/sync/block.block.seven_page_title.yml rename to config/block.block.seven_page_title.yml diff --git a/config/sync/block.block.seven_primary_local_tasks.yml b/config/block.block.seven_primary_local_tasks.yml similarity index 100% rename from config/sync/block.block.seven_primary_local_tasks.yml rename to config/block.block.seven_primary_local_tasks.yml diff --git a/config/sync/block.block.seven_secondary_local_tasks.yml b/config/block.block.seven_secondary_local_tasks.yml similarity index 100% rename from config/sync/block.block.seven_secondary_local_tasks.yml rename to config/block.block.seven_secondary_local_tasks.yml diff --git a/config/sync/block.block.socialmedialinks.yml b/config/block.block.socialmedialinks.yml similarity index 100% rename from config/sync/block.block.socialmedialinks.yml rename to config/block.block.socialmedialinks.yml diff --git a/config/sync/block.block.upcomingtrainingsfromagaric.yml b/config/block.block.upcomingtrainingsfromagaric.yml similarity index 100% rename from config/sync/block.block.upcomingtrainingsfromagaric.yml rename to config/block.block.upcomingtrainingsfromagaric.yml diff --git a/config/sync/block.block.userlogin.yml b/config/block.block.userlogin.yml similarity index 100% rename from config/sync/block.block.userlogin.yml rename to config/block.block.userlogin.yml diff --git a/config/sync/block.block.views_block__related_content_block_related_content.yml b/config/block.block.views_block__related_content_block_related_content.yml similarity index 100% rename from config/sync/block.block.views_block__related_content_block_related_content.yml rename to config/block.block.views_block__related_content_block_related_content.yml diff --git a/config/sync/block_content.type.basic.yml b/config/block_content.type.basic.yml similarity index 100% rename from config/sync/block_content.type.basic.yml rename to config/block_content.type.basic.yml diff --git a/config/sync/block_content.type.content_reference.yml b/config/block_content.type.content_reference.yml similarity index 100% rename from config/sync/block_content.type.content_reference.yml rename to config/block_content.type.content_reference.yml diff --git a/config/sync/block_content.type.slide.yml b/config/block_content.type.slide.yml similarity index 100% rename from config/sync/block_content.type.slide.yml rename to config/block_content.type.slide.yml diff --git a/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml b/config/block_visibility_groups.block_visibility_group.article_listing.yml similarity index 100% rename from config/sync/block_visibility_groups.block_visibility_group.article_listing.yml rename to config/block_visibility_groups.block_visibility_group.article_listing.yml diff --git a/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml b/config/block_visibility_groups.block_visibility_group.blog_listing.yml similarity index 100% rename from config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml rename to config/block_visibility_groups.block_visibility_group.blog_listing.yml diff --git a/config/sync/block_visibility_groups.block_visibility_group.event_listing.yml b/config/block_visibility_groups.block_visibility_group.event_listing.yml similarity index 100% rename from config/sync/block_visibility_groups.block_visibility_group.event_listing.yml rename to config/block_visibility_groups.block_visibility_group.event_listing.yml diff --git a/config/sync/block_visibility_groups.block_visibility_group.home_page.yml b/config/block_visibility_groups.block_visibility_group.home_page.yml similarity index 100% rename from config/sync/block_visibility_groups.block_visibility_group.home_page.yml rename to config/block_visibility_groups.block_visibility_group.home_page.yml diff --git a/config/sync/block_visibility_groups.block_visibility_group.resource_listing.yml b/config/block_visibility_groups.block_visibility_group.resource_listing.yml similarity index 100% rename from config/sync/block_visibility_groups.block_visibility_group.resource_listing.yml rename to config/block_visibility_groups.block_visibility_group.resource_listing.yml diff --git a/config/sync/block_visibility_groups.block_visibility_group.search.yml b/config/block_visibility_groups.block_visibility_group.search.yml similarity index 100% rename from config/sync/block_visibility_groups.block_visibility_group.search.yml rename to config/block_visibility_groups.block_visibility_group.search.yml diff --git a/config/sync/bulma.settings.yml b/config/bulma.settings.yml similarity index 100% rename from config/sync/bulma.settings.yml rename to config/bulma.settings.yml diff --git a/config/sync/coffee.configuration.yml b/config/coffee.configuration.yml similarity index 100% rename from config/sync/coffee.configuration.yml rename to config/coffee.configuration.yml diff --git a/config/sync/comment.type.comment.yml b/config/comment.type.comment.yml similarity index 100% rename from config/sync/comment.type.comment.yml rename to config/comment.type.comment.yml diff --git a/config/sync/comment_notify.settings.yml b/config/comment_notify.settings.yml similarity index 100% rename from config/sync/comment_notify.settings.yml rename to config/comment_notify.settings.yml diff --git a/config/sync/config_perms.custom_perms_entity.administer_account_settings.yml b/config/config_perms.custom_perms_entity.administer_account_settings.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.administer_account_settings.yml rename to config/config_perms.custom_perms_entity.administer_account_settings.yml diff --git a/config/sync/config_perms.custom_perms_entity.administer_date_time.yml b/config/config_perms.custom_perms_entity.administer_date_time.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.administer_date_time.yml rename to config/config_perms.custom_perms_entity.administer_date_time.yml diff --git a/config/sync/config_perms.custom_perms_entity.administer_error_logs.yml b/config/config_perms.custom_perms_entity.administer_error_logs.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.administer_error_logs.yml rename to config/config_perms.custom_perms_entity.administer_error_logs.yml diff --git a/config/sync/config_perms.custom_perms_entity.administer_file_system.yml b/config/config_perms.custom_perms_entity.administer_file_system.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.administer_file_system.yml rename to config/config_perms.custom_perms_entity.administer_file_system.yml diff --git a/config/sync/config_perms.custom_perms_entity.administer_groups.yml b/config/config_perms.custom_perms_entity.administer_groups.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.administer_groups.yml rename to config/config_perms.custom_perms_entity.administer_groups.yml diff --git a/config/sync/config_perms.custom_perms_entity.administer_site_information.yml b/config/config_perms.custom_perms_entity.administer_site_information.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.administer_site_information.yml rename to config/config_perms.custom_perms_entity.administer_site_information.yml diff --git a/config/sync/config_perms.custom_perms_entity.edit_contact_form.yml b/config/config_perms.custom_perms_entity.edit_contact_form.yml similarity index 100% rename from config/sync/config_perms.custom_perms_entity.edit_contact_form.yml rename to config/config_perms.custom_perms_entity.edit_contact_form.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.address.yml b/config/config_snapshot.snapshot.config_sync.module.address.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.address.yml rename to config/config_snapshot.snapshot.config_sync.module.address.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml b/config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml rename to config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml b/config/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml rename to config/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.agaric_migration.yml b/config/config_snapshot.snapshot.config_sync.module.agaric_migration.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.agaric_migration.yml rename to config/config_snapshot.snapshot.config_sync.module.agaric_migration.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.allowed_formats.yml b/config/config_snapshot.snapshot.config_sync.module.allowed_formats.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.allowed_formats.yml rename to config/config_snapshot.snapshot.config_sync.module.allowed_formats.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml b/config/config_snapshot.snapshot.config_sync.module.antibot.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml rename to config/config_snapshot.snapshot.config_sync.module.antibot.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml b/config/config_snapshot.snapshot.config_sync.module.automated_cron.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml rename to config/config_snapshot.snapshot.config_sync.module.automated_cron.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml b/config/config_snapshot.snapshot.config_sync.module.autosave_form.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml rename to config/config_snapshot.snapshot.config_sync.module.autosave_form.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml b/config/config_snapshot.snapshot.config_sync.module.better_normalizers.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml rename to config/config_snapshot.snapshot.config_sync.module.better_normalizers.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block.yml b/config/config_snapshot.snapshot.config_sync.module.block.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.block.yml rename to config/config_snapshot.snapshot.config_sync.module.block.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml b/config/config_snapshot.snapshot.config_sync.module.block_content.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml rename to config/config_snapshot.snapshot.config_sync.module.block_content.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml b/config/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml rename to config/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml b/config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml rename to config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.breakpoint.yml b/config/config_snapshot.snapshot.config_sync.module.breakpoint.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.breakpoint.yml rename to config/config_snapshot.snapshot.config_sync.module.breakpoint.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml b/config/config_snapshot.snapshot.config_sync.module.ckeditor.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml rename to config/config_snapshot.snapshot.config_sync.module.ckeditor.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml b/config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml rename to config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.coffee.yml b/config/config_snapshot.snapshot.config_sync.module.coffee.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.coffee.yml rename to config/config_snapshot.snapshot.config_sync.module.coffee.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.color.yml b/config/config_snapshot.snapshot.config_sync.module.color.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.color.yml rename to config/config_snapshot.snapshot.config_sync.module.color.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml b/config/config_snapshot.snapshot.config_sync.module.comment.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.comment.yml rename to config/config_snapshot.snapshot.config_sync.module.comment.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml rename to config/config_snapshot.snapshot.config_sync.module.comment_notify.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.components.yml b/config/config_snapshot.snapshot.config_sync.module.components.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.components.yml rename to config/config_snapshot.snapshot.config_sync.module.components.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config.yml b/config/config_snapshot.snapshot.config_sync.module.config.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config.yml rename to config/config_snapshot.snapshot.config_sync.module.config.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_actions.yml b/config/config_snapshot.snapshot.config_sync.module.config_actions.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_actions.yml rename to config/config_snapshot.snapshot.config_sync.module.config_actions.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml b/config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml rename to config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_distro.yml b/config/config_snapshot.snapshot.config_sync.module.config_distro.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_distro.yml rename to config/config_snapshot.snapshot.config_sync.module.config_distro.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_filter.yml b/config/config_snapshot.snapshot.config_sync.module.config_filter.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_filter.yml rename to config/config_snapshot.snapshot.config_sync.module.config_filter.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_merge.yml b/config/config_snapshot.snapshot.config_sync.module.config_merge.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_merge.yml rename to config/config_snapshot.snapshot.config_sync.module.config_merge.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_normalizer.yml b/config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_normalizer.yml rename to config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml b/config/config_snapshot.snapshot.config_sync.module.config_perms.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml rename to config/config_snapshot.snapshot.config_sync.module.config_perms.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_provider.yml b/config/config_snapshot.snapshot.config_sync.module.config_provider.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_provider.yml rename to config/config_snapshot.snapshot.config_sync.module.config_provider.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_snapshot.yml b/config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_snapshot.yml rename to config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_sync.yml b/config/config_snapshot.snapshot.config_sync.module.config_sync.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_sync.yml rename to config/config_snapshot.snapshot.config_sync.module.config_sync.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_translation.yml b/config/config_snapshot.snapshot.config_sync.module.config_translation.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_translation.yml rename to config/config_snapshot.snapshot.config_sync.module.config_translation.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_update.yml b/config/config_snapshot.snapshot.config_sync.module.config_update.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.config_update.yml rename to config/config_snapshot.snapshot.config_sync.module.config_update.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml b/config/config_snapshot.snapshot.config_sync.module.contact.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.contact.yml rename to config/config_snapshot.snapshot.config_sync.module.contact.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.content_translation.yml b/config/config_snapshot.snapshot.config_sync.module.content_translation.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.content_translation.yml rename to config/config_snapshot.snapshot.config_sync.module.content_translation.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.contextual.yml b/config/config_snapshot.snapshot.config_sync.module.contextual.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.contextual.yml rename to config/config_snapshot.snapshot.config_sync.module.contextual.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml b/config/config_snapshot.snapshot.config_sync.module.crop.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.crop.yml rename to config/config_snapshot.snapshot.config_sync.module.crop.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ctools.yml b/config/config_snapshot.snapshot.config_sync.module.ctools.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ctools.yml rename to config/config_snapshot.snapshot.config_sync.module.ctools.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.customerror.yml b/config/config_snapshot.snapshot.config_sync.module.customerror.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.customerror.yml rename to config/config_snapshot.snapshot.config_sync.module.customerror.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.datetime.yml b/config/config_snapshot.snapshot.config_sync.module.datetime.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.datetime.yml rename to config/config_snapshot.snapshot.config_sync.module.datetime.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.datetime_range.yml b/config/config_snapshot.snapshot.config_sync.module.datetime_range.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.datetime_range.yml rename to config/config_snapshot.snapshot.config_sync.module.datetime_range.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml b/config/config_snapshot.snapshot.config_sync.module.dblog.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml rename to config/config_snapshot.snapshot.config_sync.module.dblog.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.default_content.yml b/config/config_snapshot.snapshot.config_sync.module.default_content.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.default_content.yml rename to config/config_snapshot.snapshot.config_sync.module.default_content.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.diff.yml b/config/config_snapshot.snapshot.config_sync.module.diff.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.diff.yml rename to config/config_snapshot.snapshot.config_sync.module.diff.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.dropdown_language.yml b/config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.dropdown_language.yml rename to config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_action.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_action.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_action.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_action.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_article.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_article.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_campaign.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_case_study.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_creative_license.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_event.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_event.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_event.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_event.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_group.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_group.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_group.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_group.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_home_page.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_page.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_page.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_page_storyline.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_people.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_people.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_resource.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_search.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_search.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_site.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_site.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_social.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_social.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_social.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_social.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_storyline.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_user.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_user.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.drutopia_user.yml rename to config/config_snapshot.snapshot.config_sync.module.drutopia_user.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ds.yml b/config/config_snapshot.snapshot.config_sync.module.ds.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ds.yml rename to config/config_snapshot.snapshot.config_sync.module.ds.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.dynamic_page_cache.yml b/config/config_snapshot.snapshot.config_sync.module.dynamic_page_cache.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.dynamic_page_cache.yml rename to config/config_snapshot.snapshot.config_sync.module.dynamic_page_cache.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.editor.yml b/config/config_snapshot.snapshot.config_sync.module.editor.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.editor.yml rename to config/config_snapshot.snapshot.config_sync.module.editor.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.entity_reference_revisions.yml b/config/config_snapshot.snapshot.config_sync.module.entity_reference_revisions.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.entity_reference_revisions.yml rename to config/config_snapshot.snapshot.config_sync.module.entity_reference_revisions.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml b/config/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml rename to config/config_snapshot.snapshot.config_sync.module.exclude_node_title.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.facets.yml b/config/config_snapshot.snapshot.config_sync.module.facets.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.facets.yml rename to config/config_snapshot.snapshot.config_sync.module.facets.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.faqfield.yml b/config/config_snapshot.snapshot.config_sync.module.faqfield.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.faqfield.yml rename to config/config_snapshot.snapshot.config_sync.module.faqfield.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.field.yml b/config/config_snapshot.snapshot.config_sync.module.field.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.field.yml rename to config/config_snapshot.snapshot.config_sync.module.field.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.field_group.yml b/config/config_snapshot.snapshot.config_sync.module.field_group.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.field_group.yml rename to config/config_snapshot.snapshot.config_sync.module.field_group.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml b/config/config_snapshot.snapshot.config_sync.module.field_ui.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.field_ui.yml rename to config/config_snapshot.snapshot.config_sync.module.field_ui.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.file.yml b/config/config_snapshot.snapshot.config_sync.module.file.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.file.yml rename to config/config_snapshot.snapshot.config_sync.module.file.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.filter.yml b/config/config_snapshot.snapshot.config_sync.module.filter.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.filter.yml rename to config/config_snapshot.snapshot.config_sync.module.filter.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.focal_point.yml b/config/config_snapshot.snapshot.config_sync.module.focal_point.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.focal_point.yml rename to config/config_snapshot.snapshot.config_sync.module.focal_point.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.gnode.yml b/config/config_snapshot.snapshot.config_sync.module.gnode.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.gnode.yml rename to config/config_snapshot.snapshot.config_sync.module.gnode.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.google_analytics.yml b/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.google_analytics.yml rename to config/config_snapshot.snapshot.config_sync.module.google_analytics.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.group.yml b/config/config_snapshot.snapshot.config_sync.module.group.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.group.yml rename to config/config_snapshot.snapshot.config_sync.module.group.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.hal.yml b/config/config_snapshot.snapshot.config_sync.module.hal.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.hal.yml rename to config/config_snapshot.snapshot.config_sync.module.hal.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.help.yml b/config/config_snapshot.snapshot.config_sync.module.help.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.help.yml rename to config/config_snapshot.snapshot.config_sync.module.help.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.history.yml b/config/config_snapshot.snapshot.config_sync.module.history.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.history.yml rename to config/config_snapshot.snapshot.config_sync.module.history.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.honeypot.yml b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.honeypot.yml rename to config/config_snapshot.snapshot.config_sync.module.honeypot.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.http_client_error_status.yml b/config/config_snapshot.snapshot.config_sync.module.http_client_error_status.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.http_client_error_status.yml rename to config/config_snapshot.snapshot.config_sync.module.http_client_error_status.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.image.yml b/config/config_snapshot.snapshot.config_sync.module.image.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.image.yml rename to config/config_snapshot.snapshot.config_sync.module.image.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.indieweb.yml b/config/config_snapshot.snapshot.config_sync.module.indieweb.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.indieweb.yml rename to config/config_snapshot.snapshot.config_sync.module.indieweb.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.indieweb_context.yml b/config/config_snapshot.snapshot.config_sync.module.indieweb_context.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.indieweb_context.yml rename to config/config_snapshot.snapshot.config_sync.module.indieweb_context.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.indieweb_feed.yml b/config/config_snapshot.snapshot.config_sync.module.indieweb_feed.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.indieweb_feed.yml rename to config/config_snapshot.snapshot.config_sync.module.indieweb_feed.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.indieweb_microformat.yml b/config/config_snapshot.snapshot.config_sync.module.indieweb_microformat.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.indieweb_microformat.yml rename to config/config_snapshot.snapshot.config_sync.module.indieweb_microformat.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.indieweb_webmention.yml b/config/config_snapshot.snapshot.config_sync.module.indieweb_webmention.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.indieweb_webmention.yml rename to config/config_snapshot.snapshot.config_sync.module.indieweb_webmention.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.language.yml b/config/config_snapshot.snapshot.config_sync.module.language.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.language.yml rename to config/config_snapshot.snapshot.config_sync.module.language.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.layout_discovery.yml b/config/config_snapshot.snapshot.config_sync.module.layout_discovery.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.layout_discovery.yml rename to config/config_snapshot.snapshot.config_sync.module.layout_discovery.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.link.yml b/config/config_snapshot.snapshot.config_sync.module.link.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.link.yml rename to config/config_snapshot.snapshot.config_sync.module.link.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.locale.yml b/config/config_snapshot.snapshot.config_sync.module.locale.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.locale.yml rename to config/config_snapshot.snapshot.config_sync.module.locale.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.mailchimp.yml b/config/config_snapshot.snapshot.config_sync.module.mailchimp.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.mailchimp.yml rename to config/config_snapshot.snapshot.config_sync.module.mailchimp.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.markdown.yml b/config/config_snapshot.snapshot.config_sync.module.markdown.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.markdown.yml rename to config/config_snapshot.snapshot.config_sync.module.markdown.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.menu_block.yml b/config/config_snapshot.snapshot.config_sync.module.menu_block.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.menu_block.yml rename to config/config_snapshot.snapshot.config_sync.module.menu_block.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.menu_link_content.yml b/config/config_snapshot.snapshot.config_sync.module.menu_link_content.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.menu_link_content.yml rename to config/config_snapshot.snapshot.config_sync.module.menu_link_content.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.menu_trail_by_path.yml b/config/config_snapshot.snapshot.config_sync.module.menu_trail_by_path.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.menu_trail_by_path.yml rename to config/config_snapshot.snapshot.config_sync.module.menu_trail_by_path.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml b/config/config_snapshot.snapshot.config_sync.module.menu_ui.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.menu_ui.yml rename to config/config_snapshot.snapshot.config_sync.module.menu_ui.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml b/config/config_snapshot.snapshot.config_sync.module.metatag.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.metatag.yml rename to config/config_snapshot.snapshot.config_sync.module.metatag.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml b/config/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml rename to config/config_snapshot.snapshot.config_sync.module.metatag_facebook.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml b/config/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml rename to config/config_snapshot.snapshot.config_sync.module.metatag_open_graph.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml b/config/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml rename to config/config_snapshot.snapshot.config_sync.module.metatag_twitter_cards.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.migrate.yml b/config/config_snapshot.snapshot.config_sync.module.migrate.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.migrate.yml rename to config/config_snapshot.snapshot.config_sync.module.migrate.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml b/config/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml rename to config/config_snapshot.snapshot.config_sync.module.migrate_drupal.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.migrate_plus.yml b/config/config_snapshot.snapshot.config_sync.module.migrate_plus.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.migrate_plus.yml rename to config/config_snapshot.snapshot.config_sync.module.migrate_plus.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.migrate_tools.yml b/config/config_snapshot.snapshot.config_sync.module.migrate_tools.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.migrate_tools.yml rename to config/config_snapshot.snapshot.config_sync.module.migrate_tools.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.minimalhtml.yml b/config/config_snapshot.snapshot.config_sync.module.minimalhtml.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.minimalhtml.yml rename to config/config_snapshot.snapshot.config_sync.module.minimalhtml.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml b/config/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml rename to config/config_snapshot.snapshot.config_sync.module.minimalhtmltitle.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.multiline_config.yml b/config/config_snapshot.snapshot.config_sync.module.multiline_config.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.multiline_config.yml rename to config/config_snapshot.snapshot.config_sync.module.multiline_config.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.node.yml b/config/config_snapshot.snapshot.config_sync.module.node.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.node.yml rename to config/config_snapshot.snapshot.config_sync.module.node.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.options.yml b/config/config_snapshot.snapshot.config_sync.module.options.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.options.yml rename to config/config_snapshot.snapshot.config_sync.module.options.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.page_cache.yml b/config/config_snapshot.snapshot.config_sync.module.page_cache.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.page_cache.yml rename to config/config_snapshot.snapshot.config_sync.module.page_cache.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml b/config/config_snapshot.snapshot.config_sync.module.paragraphs.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.paragraphs.yml rename to config/config_snapshot.snapshot.config_sync.module.paragraphs.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml b/config/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml rename to config/config_snapshot.snapshot.config_sync.module.paragraphs_features.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.path.yml b/config/config_snapshot.snapshot.config_sync.module.path.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.path.yml rename to config/config_snapshot.snapshot.config_sync.module.path.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.path_alias.yml b/config/config_snapshot.snapshot.config_sync.module.path_alias.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.path_alias.yml rename to config/config_snapshot.snapshot.config_sync.module.path_alias.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml b/config/config_snapshot.snapshot.config_sync.module.pathauto.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.pathauto.yml rename to config/config_snapshot.snapshot.config_sync.module.pathauto.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.preview_link.yml b/config/config_snapshot.snapshot.config_sync.module.preview_link.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.preview_link.yml rename to config/config_snapshot.snapshot.config_sync.module.preview_link.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.quickedit.yml b/config/config_snapshot.snapshot.config_sync.module.quickedit.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.quickedit.yml rename to config/config_snapshot.snapshot.config_sync.module.quickedit.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.rdf.yml b/config/config_snapshot.snapshot.config_sync.module.rdf.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.rdf.yml rename to config/config_snapshot.snapshot.config_sync.module.rdf.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.redirect.yml b/config/config_snapshot.snapshot.config_sync.module.redirect.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.redirect.yml rename to config/config_snapshot.snapshot.config_sync.module.redirect.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.redirect_404.yml b/config/config_snapshot.snapshot.config_sync.module.redirect_404.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.redirect_404.yml rename to config/config_snapshot.snapshot.config_sync.module.redirect_404.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.regionincontent.yml b/config/config_snapshot.snapshot.config_sync.module.regionincontent.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.regionincontent.yml rename to config/config_snapshot.snapshot.config_sync.module.regionincontent.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.responsive_image.yml b/config/config_snapshot.snapshot.config_sync.module.responsive_image.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.responsive_image.yml rename to config/config_snapshot.snapshot.config_sync.module.responsive_image.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.scn.yml b/config/config_snapshot.snapshot.config_sync.module.scn.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.scn.yml rename to config/config_snapshot.snapshot.config_sync.module.scn.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml b/config/config_snapshot.snapshot.config_sync.module.search_api.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.search_api.yml rename to config/config_snapshot.snapshot.config_sync.module.search_api.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml b/config/config_snapshot.snapshot.config_sync.module.search_api_db.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.search_api_db.yml rename to config/config_snapshot.snapshot.config_sync.module.search_api_db.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.serialization.yml b/config/config_snapshot.snapshot.config_sync.module.serialization.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.serialization.yml rename to config/config_snapshot.snapshot.config_sync.module.serialization.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml b/config/config_snapshot.snapshot.config_sync.module.shortcut.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.shortcut.yml rename to config/config_snapshot.snapshot.config_sync.module.shortcut.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.similarterms.yml b/config/config_snapshot.snapshot.config_sync.module.similarterms.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.similarterms.yml rename to config/config_snapshot.snapshot.config_sync.module.similarterms.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.skins.yml b/config/config_snapshot.snapshot.config_sync.module.skins.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.skins.yml rename to config/config_snapshot.snapshot.config_sync.module.skins.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.social_media_links.yml b/config/config_snapshot.snapshot.config_sync.module.social_media_links.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.social_media_links.yml rename to config/config_snapshot.snapshot.config_sync.module.social_media_links.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.statistics.yml b/config/config_snapshot.snapshot.config_sync.module.statistics.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.statistics.yml rename to config/config_snapshot.snapshot.config_sync.module.statistics.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.stripe.yml b/config/config_snapshot.snapshot.config_sync.module.stripe.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.stripe.yml rename to config/config_snapshot.snapshot.config_sync.module.stripe.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.syslog.yml b/config/config_snapshot.snapshot.config_sync.module.syslog.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.syslog.yml rename to config/config_snapshot.snapshot.config_sync.module.syslog.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.system.yml b/config/config_snapshot.snapshot.config_sync.module.system.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.system.yml rename to config/config_snapshot.snapshot.config_sync.module.system.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml b/config/config_snapshot.snapshot.config_sync.module.taxonomy.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.taxonomy.yml rename to config/config_snapshot.snapshot.config_sync.module.taxonomy.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.telephone.yml b/config/config_snapshot.snapshot.config_sync.module.telephone.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.telephone.yml rename to config/config_snapshot.snapshot.config_sync.module.telephone.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.text.yml b/config/config_snapshot.snapshot.config_sync.module.text.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.text.yml rename to config/config_snapshot.snapshot.config_sync.module.text.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml b/config/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml rename to config/config_snapshot.snapshot.config_sync.module.textarea_widget_for_text.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.token.yml b/config/config_snapshot.snapshot.config_sync.module.token.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.token.yml rename to config/config_snapshot.snapshot.config_sync.module.token.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.toolbar.yml b/config/config_snapshot.snapshot.config_sync.module.toolbar.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.toolbar.yml rename to config/config_snapshot.snapshot.config_sync.module.toolbar.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.tour.yml b/config/config_snapshot.snapshot.config_sync.module.tour.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.tour.yml rename to config/config_snapshot.snapshot.config_sync.module.tour.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.twigsuggest.yml b/config/config_snapshot.snapshot.config_sync.module.twigsuggest.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.twigsuggest.yml rename to config/config_snapshot.snapshot.config_sync.module.twigsuggest.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns.yml rename to config/config_snapshot.snapshot.config_sync.module.ui_patterns.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml rename to config/config_snapshot.snapshot.config_sync.module.ui_patterns_ds.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml rename to config/config_snapshot.snapshot.config_sync.module.ui_patterns_layouts.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml b/config/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml rename to config/config_snapshot.snapshot.config_sync.module.ui_patterns_library.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.update.yml b/config/config_snapshot.snapshot.config_sync.module.update.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.update.yml rename to config/config_snapshot.snapshot.config_sync.module.update.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.user.yml b/config/config_snapshot.snapshot.config_sync.module.user.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.user.yml rename to config/config_snapshot.snapshot.config_sync.module.user.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.video_embed_field.yml b/config/config_snapshot.snapshot.config_sync.module.video_embed_field.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.video_embed_field.yml rename to config/config_snapshot.snapshot.config_sync.module.video_embed_field.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.views.yml b/config/config_snapshot.snapshot.config_sync.module.views.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.views.yml rename to config/config_snapshot.snapshot.config_sync.module.views.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml b/config/config_snapshot.snapshot.config_sync.module.views_ui.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.views_ui.yml rename to config/config_snapshot.snapshot.config_sync.module.views_ui.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.viewsreference.yml b/config/config_snapshot.snapshot.config_sync.module.viewsreference.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.viewsreference.yml rename to config/config_snapshot.snapshot.config_sync.module.viewsreference.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.webform.yml b/config/config_snapshot.snapshot.config_sync.module.webform.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.webform.yml rename to config/config_snapshot.snapshot.config_sync.module.webform.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml b/config/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml rename to config/config_snapshot.snapshot.config_sync.module.webform_mailchimp.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml b/config/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml rename to config/config_snapshot.snapshot.config_sync.module.webform_scheduled_email.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.webform_ui.yml b/config/config_snapshot.snapshot.config_sync.module.webform_ui.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.webform_ui.yml rename to config/config_snapshot.snapshot.config_sync.module.webform_ui.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml b/config/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml rename to config/config_snapshot.snapshot.config_sync.module.wysiwyg_linebreaks.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.agarica.yml b/config/config_snapshot.snapshot.config_sync.theme.agarica.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.theme.agarica.yml rename to config/config_snapshot.snapshot.config_sync.theme.agarica.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml b/config/config_snapshot.snapshot.config_sync.theme.bulma.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.theme.bulma.yml rename to config/config_snapshot.snapshot.config_sync.theme.bulma.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.classy.yml b/config/config_snapshot.snapshot.config_sync.theme.classy.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.theme.classy.yml rename to config/config_snapshot.snapshot.config_sync.theme.classy.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml b/config/config_snapshot.snapshot.config_sync.theme.octavia.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.theme.octavia.yml rename to config/config_snapshot.snapshot.config_sync.theme.octavia.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.seven.yml b/config/config_snapshot.snapshot.config_sync.theme.seven.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.theme.seven.yml rename to config/config_snapshot.snapshot.config_sync.theme.seven.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.theme.stable.yml b/config/config_snapshot.snapshot.config_sync.theme.stable.yml similarity index 100% rename from config/sync/config_snapshot.snapshot.config_sync.theme.stable.yml rename to config/config_snapshot.snapshot.config_sync.theme.stable.yml diff --git a/config/sync/contact.form.feedback.yml b/config/contact.form.feedback.yml similarity index 100% rename from config/sync/contact.form.feedback.yml rename to config/contact.form.feedback.yml diff --git a/config/sync/contact.form.personal.yml b/config/contact.form.personal.yml similarity index 100% rename from config/sync/contact.form.personal.yml rename to config/contact.form.personal.yml diff --git a/config/sync/contact.settings.yml b/config/contact.settings.yml similarity index 100% rename from config/sync/contact.settings.yml rename to config/contact.settings.yml diff --git a/config/sync/core.base_field_override.block_content.basic.changed.yml b/config/core.base_field_override.block_content.basic.changed.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.basic.changed.yml rename to config/core.base_field_override.block_content.basic.changed.yml diff --git a/config/sync/core.base_field_override.block_content.basic.info.yml b/config/core.base_field_override.block_content.basic.info.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.basic.info.yml rename to config/core.base_field_override.block_content.basic.info.yml diff --git a/config/sync/core.base_field_override.block_content.basic.metatag.yml b/config/core.base_field_override.block_content.basic.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.basic.metatag.yml rename to config/core.base_field_override.block_content.basic.metatag.yml diff --git a/config/sync/core.base_field_override.block_content.basic.status.yml b/config/core.base_field_override.block_content.basic.status.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.basic.status.yml rename to config/core.base_field_override.block_content.basic.status.yml diff --git a/config/sync/core.base_field_override.block_content.slide.changed.yml b/config/core.base_field_override.block_content.slide.changed.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.slide.changed.yml rename to config/core.base_field_override.block_content.slide.changed.yml diff --git a/config/sync/core.base_field_override.block_content.slide.info.yml b/config/core.base_field_override.block_content.slide.info.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.slide.info.yml rename to config/core.base_field_override.block_content.slide.info.yml diff --git a/config/sync/core.base_field_override.block_content.slide.metatag.yml b/config/core.base_field_override.block_content.slide.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.slide.metatag.yml rename to config/core.base_field_override.block_content.slide.metatag.yml diff --git a/config/sync/core.base_field_override.block_content.slide.status.yml b/config/core.base_field_override.block_content.slide.status.yml similarity index 100% rename from config/sync/core.base_field_override.block_content.slide.status.yml rename to config/core.base_field_override.block_content.slide.status.yml diff --git a/config/sync/core.base_field_override.comment.comment.changed.yml b/config/core.base_field_override.comment.comment.changed.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.changed.yml rename to config/core.base_field_override.comment.comment.changed.yml diff --git a/config/sync/core.base_field_override.comment.comment.created.yml b/config/core.base_field_override.comment.comment.created.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.created.yml rename to config/core.base_field_override.comment.comment.created.yml diff --git a/config/sync/core.base_field_override.comment.comment.homepage.yml b/config/core.base_field_override.comment.comment.homepage.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.homepage.yml rename to config/core.base_field_override.comment.comment.homepage.yml diff --git a/config/sync/core.base_field_override.comment.comment.hostname.yml b/config/core.base_field_override.comment.comment.hostname.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.hostname.yml rename to config/core.base_field_override.comment.comment.hostname.yml diff --git a/config/sync/core.base_field_override.comment.comment.mail.yml b/config/core.base_field_override.comment.comment.mail.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.mail.yml rename to config/core.base_field_override.comment.comment.mail.yml diff --git a/config/sync/core.base_field_override.comment.comment.name.yml b/config/core.base_field_override.comment.comment.name.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.name.yml rename to config/core.base_field_override.comment.comment.name.yml diff --git a/config/sync/core.base_field_override.comment.comment.status.yml b/config/core.base_field_override.comment.comment.status.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.status.yml rename to config/core.base_field_override.comment.comment.status.yml diff --git a/config/sync/core.base_field_override.comment.comment.subject.yml b/config/core.base_field_override.comment.comment.subject.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.subject.yml rename to config/core.base_field_override.comment.comment.subject.yml diff --git a/config/sync/core.base_field_override.comment.comment.uid.yml b/config/core.base_field_override.comment.comment.uid.yml similarity index 100% rename from config/sync/core.base_field_override.comment.comment.uid.yml rename to config/core.base_field_override.comment.comment.uid.yml diff --git a/config/sync/core.base_field_override.group.group.changed.yml b/config/core.base_field_override.group.group.changed.yml similarity index 100% rename from config/sync/core.base_field_override.group.group.changed.yml rename to config/core.base_field_override.group.group.changed.yml diff --git a/config/sync/core.base_field_override.group.group.created.yml b/config/core.base_field_override.group.group.created.yml similarity index 100% rename from config/sync/core.base_field_override.group.group.created.yml rename to config/core.base_field_override.group.group.created.yml diff --git a/config/sync/core.base_field_override.group.group.label.yml b/config/core.base_field_override.group.group.label.yml similarity index 100% rename from config/sync/core.base_field_override.group.group.label.yml rename to config/core.base_field_override.group.group.label.yml diff --git a/config/sync/core.base_field_override.group.group.metatag.yml b/config/core.base_field_override.group.group.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.group.group.metatag.yml rename to config/core.base_field_override.group.group.metatag.yml diff --git a/config/sync/core.base_field_override.group.group.path.yml b/config/core.base_field_override.group.group.path.yml similarity index 100% rename from config/sync/core.base_field_override.group.group.path.yml rename to config/core.base_field_override.group.group.path.yml diff --git a/config/sync/core.base_field_override.group.group.uid.yml b/config/core.base_field_override.group.group.uid.yml similarity index 100% rename from config/sync/core.base_field_override.group.group.uid.yml rename to config/core.base_field_override.group.group.uid.yml diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.changed.yml b/config/core.base_field_override.group_content.group-group_membership.changed.yml similarity index 100% rename from config/sync/core.base_field_override.group_content.group-group_membership.changed.yml rename to config/core.base_field_override.group_content.group-group_membership.changed.yml diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.created.yml b/config/core.base_field_override.group_content.group-group_membership.created.yml similarity index 100% rename from config/sync/core.base_field_override.group_content.group-group_membership.created.yml rename to config/core.base_field_override.group_content.group-group_membership.created.yml diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.label.yml b/config/core.base_field_override.group_content.group-group_membership.label.yml similarity index 100% rename from config/sync/core.base_field_override.group_content.group-group_membership.label.yml rename to config/core.base_field_override.group_content.group-group_membership.label.yml diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.metatag.yml b/config/core.base_field_override.group_content.group-group_membership.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.group_content.group-group_membership.metatag.yml rename to config/core.base_field_override.group_content.group-group_membership.metatag.yml diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.path.yml b/config/core.base_field_override.group_content.group-group_membership.path.yml similarity index 100% rename from config/sync/core.base_field_override.group_content.group-group_membership.path.yml rename to config/core.base_field_override.group_content.group-group_membership.path.yml diff --git a/config/sync/core.base_field_override.group_content.group-group_membership.uid.yml b/config/core.base_field_override.group_content.group-group_membership.uid.yml similarity index 100% rename from config/sync/core.base_field_override.group_content.group-group_membership.uid.yml rename to config/core.base_field_override.group_content.group-group_membership.uid.yml diff --git a/config/sync/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 similarity index 100% rename from config/sync/core.base_field_override.menu_link_content.menu_link_content.changed.yml rename to config/core.base_field_override.menu_link_content.menu_link_content.changed.yml diff --git a/config/sync/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 similarity index 100% rename from config/sync/core.base_field_override.menu_link_content.menu_link_content.description.yml rename to config/core.base_field_override.menu_link_content.menu_link_content.description.yml diff --git a/config/sync/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 similarity index 100% rename from config/sync/core.base_field_override.menu_link_content.menu_link_content.metatag.yml rename to config/core.base_field_override.menu_link_content.menu_link_content.metatag.yml diff --git a/config/sync/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 similarity index 100% rename from config/sync/core.base_field_override.menu_link_content.menu_link_content.title.yml rename to config/core.base_field_override.menu_link_content.menu_link_content.title.yml diff --git a/config/sync/core.base_field_override.node.action.changed.yml b/config/core.base_field_override.node.action.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.changed.yml rename to config/core.base_field_override.node.action.changed.yml diff --git a/config/sync/core.base_field_override.node.action.created.yml b/config/core.base_field_override.node.action.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.created.yml rename to config/core.base_field_override.node.action.created.yml diff --git a/config/sync/core.base_field_override.node.action.menu_link.yml b/config/core.base_field_override.node.action.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.menu_link.yml rename to config/core.base_field_override.node.action.menu_link.yml diff --git a/config/sync/core.base_field_override.node.action.metatag.yml b/config/core.base_field_override.node.action.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.metatag.yml rename to config/core.base_field_override.node.action.metatag.yml diff --git a/config/sync/core.base_field_override.node.action.path.yml b/config/core.base_field_override.node.action.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.path.yml rename to config/core.base_field_override.node.action.path.yml diff --git a/config/sync/core.base_field_override.node.action.promote.yml b/config/core.base_field_override.node.action.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.promote.yml rename to config/core.base_field_override.node.action.promote.yml diff --git a/config/sync/core.base_field_override.node.action.status.yml b/config/core.base_field_override.node.action.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.status.yml rename to config/core.base_field_override.node.action.status.yml diff --git a/config/sync/core.base_field_override.node.action.sticky.yml b/config/core.base_field_override.node.action.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.sticky.yml rename to config/core.base_field_override.node.action.sticky.yml diff --git a/config/sync/core.base_field_override.node.action.title.yml b/config/core.base_field_override.node.action.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.title.yml rename to config/core.base_field_override.node.action.title.yml diff --git a/config/sync/core.base_field_override.node.action.uid.yml b/config/core.base_field_override.node.action.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.action.uid.yml rename to config/core.base_field_override.node.action.uid.yml diff --git a/config/sync/core.base_field_override.node.article.changed.yml b/config/core.base_field_override.node.article.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.changed.yml rename to config/core.base_field_override.node.article.changed.yml diff --git a/config/sync/core.base_field_override.node.article.created.yml b/config/core.base_field_override.node.article.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.created.yml rename to config/core.base_field_override.node.article.created.yml diff --git a/config/sync/core.base_field_override.node.article.menu_link.yml b/config/core.base_field_override.node.article.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.menu_link.yml rename to config/core.base_field_override.node.article.menu_link.yml diff --git a/config/sync/core.base_field_override.node.article.metatag.yml b/config/core.base_field_override.node.article.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.metatag.yml rename to config/core.base_field_override.node.article.metatag.yml diff --git a/config/sync/core.base_field_override.node.article.path.yml b/config/core.base_field_override.node.article.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.path.yml rename to config/core.base_field_override.node.article.path.yml diff --git a/config/sync/core.base_field_override.node.article.promote.yml b/config/core.base_field_override.node.article.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.promote.yml rename to config/core.base_field_override.node.article.promote.yml diff --git a/config/sync/core.base_field_override.node.article.status.yml b/config/core.base_field_override.node.article.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.status.yml rename to config/core.base_field_override.node.article.status.yml diff --git a/config/sync/core.base_field_override.node.article.sticky.yml b/config/core.base_field_override.node.article.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.sticky.yml rename to config/core.base_field_override.node.article.sticky.yml diff --git a/config/sync/core.base_field_override.node.article.title.yml b/config/core.base_field_override.node.article.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.title.yml rename to config/core.base_field_override.node.article.title.yml diff --git a/config/sync/core.base_field_override.node.article.uid.yml b/config/core.base_field_override.node.article.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.article.uid.yml rename to config/core.base_field_override.node.article.uid.yml diff --git a/config/sync/core.base_field_override.node.blog.changed.yml b/config/core.base_field_override.node.blog.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.changed.yml rename to config/core.base_field_override.node.blog.changed.yml diff --git a/config/sync/core.base_field_override.node.blog.created.yml b/config/core.base_field_override.node.blog.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.created.yml rename to config/core.base_field_override.node.blog.created.yml diff --git a/config/sync/core.base_field_override.node.blog.menu_link.yml b/config/core.base_field_override.node.blog.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.menu_link.yml rename to config/core.base_field_override.node.blog.menu_link.yml diff --git a/config/sync/core.base_field_override.node.blog.metatag.yml b/config/core.base_field_override.node.blog.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.metatag.yml rename to config/core.base_field_override.node.blog.metatag.yml diff --git a/config/sync/core.base_field_override.node.blog.path.yml b/config/core.base_field_override.node.blog.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.path.yml rename to config/core.base_field_override.node.blog.path.yml diff --git a/config/sync/core.base_field_override.node.blog.promote.yml b/config/core.base_field_override.node.blog.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.promote.yml rename to config/core.base_field_override.node.blog.promote.yml diff --git a/config/sync/core.base_field_override.node.blog.status.yml b/config/core.base_field_override.node.blog.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.status.yml rename to config/core.base_field_override.node.blog.status.yml diff --git a/config/sync/core.base_field_override.node.blog.sticky.yml b/config/core.base_field_override.node.blog.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.sticky.yml rename to config/core.base_field_override.node.blog.sticky.yml diff --git a/config/sync/core.base_field_override.node.blog.title.yml b/config/core.base_field_override.node.blog.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.title.yml rename to config/core.base_field_override.node.blog.title.yml diff --git a/config/sync/core.base_field_override.node.blog.uid.yml b/config/core.base_field_override.node.blog.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.blog.uid.yml rename to config/core.base_field_override.node.blog.uid.yml diff --git a/config/sync/core.base_field_override.node.campaign.changed.yml b/config/core.base_field_override.node.campaign.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.changed.yml rename to config/core.base_field_override.node.campaign.changed.yml diff --git a/config/sync/core.base_field_override.node.campaign.created.yml b/config/core.base_field_override.node.campaign.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.created.yml rename to config/core.base_field_override.node.campaign.created.yml diff --git a/config/sync/core.base_field_override.node.campaign.menu_link.yml b/config/core.base_field_override.node.campaign.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.menu_link.yml rename to config/core.base_field_override.node.campaign.menu_link.yml diff --git a/config/sync/core.base_field_override.node.campaign.metatag.yml b/config/core.base_field_override.node.campaign.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.metatag.yml rename to config/core.base_field_override.node.campaign.metatag.yml diff --git a/config/sync/core.base_field_override.node.campaign.path.yml b/config/core.base_field_override.node.campaign.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.path.yml rename to config/core.base_field_override.node.campaign.path.yml diff --git a/config/sync/core.base_field_override.node.campaign.promote.yml b/config/core.base_field_override.node.campaign.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.promote.yml rename to config/core.base_field_override.node.campaign.promote.yml diff --git a/config/sync/core.base_field_override.node.campaign.status.yml b/config/core.base_field_override.node.campaign.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.status.yml rename to config/core.base_field_override.node.campaign.status.yml diff --git a/config/sync/core.base_field_override.node.campaign.sticky.yml b/config/core.base_field_override.node.campaign.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.sticky.yml rename to config/core.base_field_override.node.campaign.sticky.yml diff --git a/config/sync/core.base_field_override.node.campaign.title.yml b/config/core.base_field_override.node.campaign.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.title.yml rename to config/core.base_field_override.node.campaign.title.yml diff --git a/config/sync/core.base_field_override.node.campaign.uid.yml b/config/core.base_field_override.node.campaign.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.campaign.uid.yml rename to config/core.base_field_override.node.campaign.uid.yml diff --git a/config/sync/core.base_field_override.node.case_study.changed.yml b/config/core.base_field_override.node.case_study.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.changed.yml rename to config/core.base_field_override.node.case_study.changed.yml diff --git a/config/sync/core.base_field_override.node.case_study.created.yml b/config/core.base_field_override.node.case_study.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.created.yml rename to config/core.base_field_override.node.case_study.created.yml diff --git a/config/sync/core.base_field_override.node.case_study.menu_link.yml b/config/core.base_field_override.node.case_study.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.menu_link.yml rename to config/core.base_field_override.node.case_study.menu_link.yml diff --git a/config/sync/core.base_field_override.node.case_study.metatag.yml b/config/core.base_field_override.node.case_study.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.metatag.yml rename to config/core.base_field_override.node.case_study.metatag.yml diff --git a/config/sync/core.base_field_override.node.case_study.path.yml b/config/core.base_field_override.node.case_study.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.path.yml rename to config/core.base_field_override.node.case_study.path.yml diff --git a/config/sync/core.base_field_override.node.case_study.promote.yml b/config/core.base_field_override.node.case_study.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.promote.yml rename to config/core.base_field_override.node.case_study.promote.yml diff --git a/config/sync/core.base_field_override.node.case_study.status.yml b/config/core.base_field_override.node.case_study.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.status.yml rename to config/core.base_field_override.node.case_study.status.yml diff --git a/config/sync/core.base_field_override.node.case_study.sticky.yml b/config/core.base_field_override.node.case_study.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.sticky.yml rename to config/core.base_field_override.node.case_study.sticky.yml diff --git a/config/sync/core.base_field_override.node.case_study.title.yml b/config/core.base_field_override.node.case_study.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.title.yml rename to config/core.base_field_override.node.case_study.title.yml diff --git a/config/sync/core.base_field_override.node.case_study.uid.yml b/config/core.base_field_override.node.case_study.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.case_study.uid.yml rename to config/core.base_field_override.node.case_study.uid.yml diff --git a/config/sync/core.base_field_override.node.event.changed.yml b/config/core.base_field_override.node.event.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.changed.yml rename to config/core.base_field_override.node.event.changed.yml diff --git a/config/sync/core.base_field_override.node.event.created.yml b/config/core.base_field_override.node.event.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.created.yml rename to config/core.base_field_override.node.event.created.yml diff --git a/config/sync/core.base_field_override.node.event.menu_link.yml b/config/core.base_field_override.node.event.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.menu_link.yml rename to config/core.base_field_override.node.event.menu_link.yml diff --git a/config/sync/core.base_field_override.node.event.metatag.yml b/config/core.base_field_override.node.event.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.metatag.yml rename to config/core.base_field_override.node.event.metatag.yml diff --git a/config/sync/core.base_field_override.node.event.path.yml b/config/core.base_field_override.node.event.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.path.yml rename to config/core.base_field_override.node.event.path.yml diff --git a/config/sync/core.base_field_override.node.event.promote.yml b/config/core.base_field_override.node.event.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.promote.yml rename to config/core.base_field_override.node.event.promote.yml diff --git a/config/sync/core.base_field_override.node.event.status.yml b/config/core.base_field_override.node.event.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.status.yml rename to config/core.base_field_override.node.event.status.yml diff --git a/config/sync/core.base_field_override.node.event.sticky.yml b/config/core.base_field_override.node.event.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.sticky.yml rename to config/core.base_field_override.node.event.sticky.yml diff --git a/config/sync/core.base_field_override.node.event.title.yml b/config/core.base_field_override.node.event.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.title.yml rename to config/core.base_field_override.node.event.title.yml diff --git a/config/sync/core.base_field_override.node.event.uid.yml b/config/core.base_field_override.node.event.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.event.uid.yml rename to config/core.base_field_override.node.event.uid.yml diff --git a/config/sync/core.base_field_override.node.landing_page.changed.yml b/config/core.base_field_override.node.landing_page.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.changed.yml rename to config/core.base_field_override.node.landing_page.changed.yml diff --git a/config/sync/core.base_field_override.node.landing_page.created.yml b/config/core.base_field_override.node.landing_page.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.created.yml rename to config/core.base_field_override.node.landing_page.created.yml diff --git a/config/sync/core.base_field_override.node.landing_page.menu_link.yml b/config/core.base_field_override.node.landing_page.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.menu_link.yml rename to config/core.base_field_override.node.landing_page.menu_link.yml diff --git a/config/sync/core.base_field_override.node.landing_page.metatag.yml b/config/core.base_field_override.node.landing_page.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.metatag.yml rename to config/core.base_field_override.node.landing_page.metatag.yml diff --git a/config/sync/core.base_field_override.node.landing_page.path.yml b/config/core.base_field_override.node.landing_page.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.path.yml rename to config/core.base_field_override.node.landing_page.path.yml diff --git a/config/sync/core.base_field_override.node.landing_page.promote.yml b/config/core.base_field_override.node.landing_page.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.promote.yml rename to config/core.base_field_override.node.landing_page.promote.yml diff --git a/config/sync/core.base_field_override.node.landing_page.status.yml b/config/core.base_field_override.node.landing_page.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.status.yml rename to config/core.base_field_override.node.landing_page.status.yml diff --git a/config/sync/core.base_field_override.node.landing_page.sticky.yml b/config/core.base_field_override.node.landing_page.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.sticky.yml rename to config/core.base_field_override.node.landing_page.sticky.yml diff --git a/config/sync/core.base_field_override.node.landing_page.title.yml b/config/core.base_field_override.node.landing_page.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.title.yml rename to config/core.base_field_override.node.landing_page.title.yml diff --git a/config/sync/core.base_field_override.node.landing_page.uid.yml b/config/core.base_field_override.node.landing_page.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.landing_page.uid.yml rename to config/core.base_field_override.node.landing_page.uid.yml diff --git a/config/sync/core.base_field_override.node.page.metatag.yml b/config/core.base_field_override.node.page.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.metatag.yml rename to config/core.base_field_override.node.page.metatag.yml diff --git a/config/sync/core.base_field_override.node.page.path.yml b/config/core.base_field_override.node.page.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.path.yml rename to config/core.base_field_override.node.page.path.yml diff --git a/config/sync/core.base_field_override.node.page.promote.yml b/config/core.base_field_override.node.page.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.promote.yml rename to config/core.base_field_override.node.page.promote.yml diff --git a/config/sync/core.base_field_override.node.page.status.yml b/config/core.base_field_override.node.page.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.status.yml rename to config/core.base_field_override.node.page.status.yml diff --git a/config/sync/core.base_field_override.node.page.sticky.yml b/config/core.base_field_override.node.page.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.sticky.yml rename to config/core.base_field_override.node.page.sticky.yml diff --git a/config/sync/core.base_field_override.node.page.uid.yml b/config/core.base_field_override.node.page.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.page.uid.yml rename to config/core.base_field_override.node.page.uid.yml diff --git a/config/sync/core.base_field_override.node.people.changed.yml b/config/core.base_field_override.node.people.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.changed.yml rename to config/core.base_field_override.node.people.changed.yml diff --git a/config/sync/core.base_field_override.node.people.created.yml b/config/core.base_field_override.node.people.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.created.yml rename to config/core.base_field_override.node.people.created.yml diff --git a/config/sync/core.base_field_override.node.people.menu_link.yml b/config/core.base_field_override.node.people.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.menu_link.yml rename to config/core.base_field_override.node.people.menu_link.yml diff --git a/config/sync/core.base_field_override.node.people.metatag.yml b/config/core.base_field_override.node.people.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.metatag.yml rename to config/core.base_field_override.node.people.metatag.yml diff --git a/config/sync/core.base_field_override.node.people.path.yml b/config/core.base_field_override.node.people.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.path.yml rename to config/core.base_field_override.node.people.path.yml diff --git a/config/sync/core.base_field_override.node.people.promote.yml b/config/core.base_field_override.node.people.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.promote.yml rename to config/core.base_field_override.node.people.promote.yml diff --git a/config/sync/core.base_field_override.node.people.status.yml b/config/core.base_field_override.node.people.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.status.yml rename to config/core.base_field_override.node.people.status.yml diff --git a/config/sync/core.base_field_override.node.people.sticky.yml b/config/core.base_field_override.node.people.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.sticky.yml rename to config/core.base_field_override.node.people.sticky.yml diff --git a/config/sync/core.base_field_override.node.people.title.yml b/config/core.base_field_override.node.people.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.title.yml rename to config/core.base_field_override.node.people.title.yml diff --git a/config/sync/core.base_field_override.node.people.uid.yml b/config/core.base_field_override.node.people.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.people.uid.yml rename to config/core.base_field_override.node.people.uid.yml diff --git a/config/sync/core.base_field_override.node.resource.changed.yml b/config/core.base_field_override.node.resource.changed.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.changed.yml rename to config/core.base_field_override.node.resource.changed.yml diff --git a/config/sync/core.base_field_override.node.resource.created.yml b/config/core.base_field_override.node.resource.created.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.created.yml rename to config/core.base_field_override.node.resource.created.yml diff --git a/config/sync/core.base_field_override.node.resource.menu_link.yml b/config/core.base_field_override.node.resource.menu_link.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.menu_link.yml rename to config/core.base_field_override.node.resource.menu_link.yml diff --git a/config/sync/core.base_field_override.node.resource.metatag.yml b/config/core.base_field_override.node.resource.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.metatag.yml rename to config/core.base_field_override.node.resource.metatag.yml diff --git a/config/sync/core.base_field_override.node.resource.path.yml b/config/core.base_field_override.node.resource.path.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.path.yml rename to config/core.base_field_override.node.resource.path.yml diff --git a/config/sync/core.base_field_override.node.resource.promote.yml b/config/core.base_field_override.node.resource.promote.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.promote.yml rename to config/core.base_field_override.node.resource.promote.yml diff --git a/config/sync/core.base_field_override.node.resource.status.yml b/config/core.base_field_override.node.resource.status.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.status.yml rename to config/core.base_field_override.node.resource.status.yml diff --git a/config/sync/core.base_field_override.node.resource.sticky.yml b/config/core.base_field_override.node.resource.sticky.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.sticky.yml rename to config/core.base_field_override.node.resource.sticky.yml diff --git a/config/sync/core.base_field_override.node.resource.title.yml b/config/core.base_field_override.node.resource.title.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.title.yml rename to config/core.base_field_override.node.resource.title.yml diff --git a/config/sync/core.base_field_override.node.resource.uid.yml b/config/core.base_field_override.node.resource.uid.yml similarity index 100% rename from config/sync/core.base_field_override.node.resource.uid.yml rename to config/core.base_field_override.node.resource.uid.yml diff --git a/config/sync/core.base_field_override.paragraph.faq.created.yml b/config/core.base_field_override.paragraph.faq.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.faq.created.yml rename to config/core.base_field_override.paragraph.faq.created.yml diff --git a/config/sync/core.base_field_override.paragraph.faq.status.yml b/config/core.base_field_override.paragraph.faq.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.faq.status.yml rename to config/core.base_field_override.paragraph.faq.status.yml diff --git a/config/sync/core.base_field_override.paragraph.file.created.yml b/config/core.base_field_override.paragraph.file.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.file.created.yml rename to config/core.base_field_override.paragraph.file.created.yml diff --git a/config/sync/core.base_field_override.paragraph.file.status.yml b/config/core.base_field_override.paragraph.file.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.file.status.yml rename to config/core.base_field_override.paragraph.file.status.yml diff --git a/config/sync/core.base_field_override.paragraph.image.created.yml b/config/core.base_field_override.paragraph.image.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.image.created.yml rename to config/core.base_field_override.paragraph.image.created.yml diff --git a/config/sync/core.base_field_override.paragraph.image.status.yml b/config/core.base_field_override.paragraph.image.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.image.status.yml rename to config/core.base_field_override.paragraph.image.status.yml diff --git a/config/sync/core.base_field_override.paragraph.quotation_with_image.created.yml b/config/core.base_field_override.paragraph.quotation_with_image.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.quotation_with_image.created.yml rename to config/core.base_field_override.paragraph.quotation_with_image.created.yml diff --git a/config/sync/core.base_field_override.paragraph.quotation_with_image.status.yml b/config/core.base_field_override.paragraph.quotation_with_image.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.quotation_with_image.status.yml rename to config/core.base_field_override.paragraph.quotation_with_image.status.yml diff --git a/config/sync/core.base_field_override.paragraph.slide.created.yml b/config/core.base_field_override.paragraph.slide.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.slide.created.yml rename to config/core.base_field_override.paragraph.slide.created.yml diff --git a/config/sync/core.base_field_override.paragraph.slide.status.yml b/config/core.base_field_override.paragraph.slide.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.slide.status.yml rename to config/core.base_field_override.paragraph.slide.status.yml diff --git a/config/sync/core.base_field_override.paragraph.storyline_header.created.yml b/config/core.base_field_override.paragraph.storyline_header.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.storyline_header.created.yml rename to config/core.base_field_override.paragraph.storyline_header.created.yml diff --git a/config/sync/core.base_field_override.paragraph.storyline_header.status.yml b/config/core.base_field_override.paragraph.storyline_header.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.storyline_header.status.yml rename to config/core.base_field_override.paragraph.storyline_header.status.yml diff --git a/config/sync/core.base_field_override.paragraph.storyline_item.created.yml b/config/core.base_field_override.paragraph.storyline_item.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.storyline_item.created.yml rename to config/core.base_field_override.paragraph.storyline_item.created.yml diff --git a/config/sync/core.base_field_override.paragraph.storyline_item.status.yml b/config/core.base_field_override.paragraph.storyline_item.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.storyline_item.status.yml rename to config/core.base_field_override.paragraph.storyline_item.status.yml diff --git a/config/sync/core.base_field_override.paragraph.text.created.yml b/config/core.base_field_override.paragraph.text.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.text.created.yml rename to config/core.base_field_override.paragraph.text.created.yml diff --git a/config/sync/core.base_field_override.paragraph.text.status.yml b/config/core.base_field_override.paragraph.text.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.text.status.yml rename to config/core.base_field_override.paragraph.text.status.yml diff --git a/config/sync/core.base_field_override.paragraph.title.created.yml b/config/core.base_field_override.paragraph.title.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.title.created.yml rename to config/core.base_field_override.paragraph.title.created.yml diff --git a/config/sync/core.base_field_override.paragraph.title.status.yml b/config/core.base_field_override.paragraph.title.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.title.status.yml rename to config/core.base_field_override.paragraph.title.status.yml diff --git a/config/sync/core.base_field_override.paragraph.update.created.yml b/config/core.base_field_override.paragraph.update.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.update.created.yml rename to config/core.base_field_override.paragraph.update.created.yml diff --git a/config/sync/core.base_field_override.paragraph.update.status.yml b/config/core.base_field_override.paragraph.update.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.update.status.yml rename to config/core.base_field_override.paragraph.update.status.yml diff --git a/config/sync/core.base_field_override.paragraph.video.created.yml b/config/core.base_field_override.paragraph.video.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.video.created.yml rename to config/core.base_field_override.paragraph.video.created.yml diff --git a/config/sync/core.base_field_override.paragraph.video.status.yml b/config/core.base_field_override.paragraph.video.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.video.status.yml rename to config/core.base_field_override.paragraph.video.status.yml diff --git a/config/sync/core.base_field_override.paragraph.view.created.yml b/config/core.base_field_override.paragraph.view.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.view.created.yml rename to config/core.base_field_override.paragraph.view.created.yml diff --git a/config/sync/core.base_field_override.paragraph.view.status.yml b/config/core.base_field_override.paragraph.view.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.view.status.yml rename to config/core.base_field_override.paragraph.view.status.yml diff --git a/config/sync/core.base_field_override.paragraph.webform.created.yml b/config/core.base_field_override.paragraph.webform.created.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.webform.created.yml rename to config/core.base_field_override.paragraph.webform.created.yml diff --git a/config/sync/core.base_field_override.paragraph.webform.status.yml b/config/core.base_field_override.paragraph.webform.status.yml similarity index 100% rename from config/sync/core.base_field_override.paragraph.webform.status.yml rename to config/core.base_field_override.paragraph.webform.status.yml diff --git a/config/sync/core.base_field_override.shortcut.default.metatag.yml b/config/core.base_field_override.shortcut.default.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.shortcut.default.metatag.yml rename to config/core.base_field_override.shortcut.default.metatag.yml diff --git a/config/sync/core.base_field_override.shortcut.default.title.yml b/config/core.base_field_override.shortcut.default.title.yml similarity index 100% rename from config/sync/core.base_field_override.shortcut.default.title.yml rename to config/core.base_field_override.shortcut.default.title.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.action_type.changed.yml b/config/core.base_field_override.taxonomy_term.action_type.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.action_type.changed.yml rename to config/core.base_field_override.taxonomy_term.action_type.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.action_type.description.yml b/config/core.base_field_override.taxonomy_term.action_type.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.action_type.description.yml rename to config/core.base_field_override.taxonomy_term.action_type.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.action_type.metatag.yml b/config/core.base_field_override.taxonomy_term.action_type.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.action_type.metatag.yml rename to config/core.base_field_override.taxonomy_term.action_type.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.action_type.name.yml b/config/core.base_field_override.taxonomy_term.action_type.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.action_type.name.yml rename to config/core.base_field_override.taxonomy_term.action_type.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.action_type.path.yml b/config/core.base_field_override.taxonomy_term.action_type.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.action_type.path.yml rename to config/core.base_field_override.taxonomy_term.action_type.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.action_type.status.yml b/config/core.base_field_override.taxonomy_term.action_type.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.action_type.status.yml rename to config/core.base_field_override.taxonomy_term.action_type.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.article_type.changed.yml b/config/core.base_field_override.taxonomy_term.article_type.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.article_type.changed.yml rename to config/core.base_field_override.taxonomy_term.article_type.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.article_type.description.yml b/config/core.base_field_override.taxonomy_term.article_type.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.article_type.description.yml rename to config/core.base_field_override.taxonomy_term.article_type.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.article_type.metatag.yml b/config/core.base_field_override.taxonomy_term.article_type.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.article_type.metatag.yml rename to config/core.base_field_override.taxonomy_term.article_type.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.article_type.name.yml b/config/core.base_field_override.taxonomy_term.article_type.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.article_type.name.yml rename to config/core.base_field_override.taxonomy_term.article_type.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.article_type.path.yml b/config/core.base_field_override.taxonomy_term.article_type.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.article_type.path.yml rename to config/core.base_field_override.taxonomy_term.article_type.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.article_type.status.yml b/config/core.base_field_override.taxonomy_term.article_type.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.article_type.status.yml rename to config/core.base_field_override.taxonomy_term.article_type.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.event_type.changed.yml b/config/core.base_field_override.taxonomy_term.event_type.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.event_type.changed.yml rename to config/core.base_field_override.taxonomy_term.event_type.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.event_type.description.yml b/config/core.base_field_override.taxonomy_term.event_type.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.event_type.description.yml rename to config/core.base_field_override.taxonomy_term.event_type.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.event_type.metatag.yml b/config/core.base_field_override.taxonomy_term.event_type.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.event_type.metatag.yml rename to config/core.base_field_override.taxonomy_term.event_type.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.event_type.name.yml b/config/core.base_field_override.taxonomy_term.event_type.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.event_type.name.yml rename to config/core.base_field_override.taxonomy_term.event_type.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.event_type.path.yml b/config/core.base_field_override.taxonomy_term.event_type.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.event_type.path.yml rename to config/core.base_field_override.taxonomy_term.event_type.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.event_type.status.yml b/config/core.base_field_override.taxonomy_term.event_type.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.event_type.status.yml rename to config/core.base_field_override.taxonomy_term.event_type.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.group_type.changed.yml b/config/core.base_field_override.taxonomy_term.group_type.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.group_type.changed.yml rename to config/core.base_field_override.taxonomy_term.group_type.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.group_type.description.yml b/config/core.base_field_override.taxonomy_term.group_type.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.group_type.description.yml rename to config/core.base_field_override.taxonomy_term.group_type.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.group_type.metatag.yml b/config/core.base_field_override.taxonomy_term.group_type.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.group_type.metatag.yml rename to config/core.base_field_override.taxonomy_term.group_type.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.group_type.name.yml b/config/core.base_field_override.taxonomy_term.group_type.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.group_type.name.yml rename to config/core.base_field_override.taxonomy_term.group_type.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.group_type.path.yml b/config/core.base_field_override.taxonomy_term.group_type.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.group_type.path.yml rename to config/core.base_field_override.taxonomy_term.group_type.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.group_type.status.yml b/config/core.base_field_override.taxonomy_term.group_type.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.group_type.status.yml rename to config/core.base_field_override.taxonomy_term.group_type.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.license.changed.yml b/config/core.base_field_override.taxonomy_term.license.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.license.changed.yml rename to config/core.base_field_override.taxonomy_term.license.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.license.description.yml b/config/core.base_field_override.taxonomy_term.license.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.license.description.yml rename to config/core.base_field_override.taxonomy_term.license.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.license.metatag.yml b/config/core.base_field_override.taxonomy_term.license.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.license.metatag.yml rename to config/core.base_field_override.taxonomy_term.license.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.license.name.yml b/config/core.base_field_override.taxonomy_term.license.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.license.name.yml rename to config/core.base_field_override.taxonomy_term.license.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.license.path.yml b/config/core.base_field_override.taxonomy_term.license.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.license.path.yml rename to config/core.base_field_override.taxonomy_term.license.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.license.status.yml b/config/core.base_field_override.taxonomy_term.license.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.license.status.yml rename to config/core.base_field_override.taxonomy_term.license.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.people_type.changed.yml b/config/core.base_field_override.taxonomy_term.people_type.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.people_type.changed.yml rename to config/core.base_field_override.taxonomy_term.people_type.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.people_type.description.yml b/config/core.base_field_override.taxonomy_term.people_type.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.people_type.description.yml rename to config/core.base_field_override.taxonomy_term.people_type.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.people_type.metatag.yml b/config/core.base_field_override.taxonomy_term.people_type.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.people_type.metatag.yml rename to config/core.base_field_override.taxonomy_term.people_type.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.people_type.name.yml b/config/core.base_field_override.taxonomy_term.people_type.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.people_type.name.yml rename to config/core.base_field_override.taxonomy_term.people_type.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.people_type.path.yml b/config/core.base_field_override.taxonomy_term.people_type.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.people_type.path.yml rename to config/core.base_field_override.taxonomy_term.people_type.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.people_type.status.yml b/config/core.base_field_override.taxonomy_term.people_type.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.people_type.status.yml rename to config/core.base_field_override.taxonomy_term.people_type.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.resource_type.changed.yml b/config/core.base_field_override.taxonomy_term.resource_type.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.resource_type.changed.yml rename to config/core.base_field_override.taxonomy_term.resource_type.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.resource_type.description.yml b/config/core.base_field_override.taxonomy_term.resource_type.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.resource_type.description.yml rename to config/core.base_field_override.taxonomy_term.resource_type.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.resource_type.metatag.yml b/config/core.base_field_override.taxonomy_term.resource_type.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.resource_type.metatag.yml rename to config/core.base_field_override.taxonomy_term.resource_type.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.resource_type.name.yml b/config/core.base_field_override.taxonomy_term.resource_type.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.resource_type.name.yml rename to config/core.base_field_override.taxonomy_term.resource_type.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.resource_type.path.yml b/config/core.base_field_override.taxonomy_term.resource_type.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.resource_type.path.yml rename to config/core.base_field_override.taxonomy_term.resource_type.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.resource_type.status.yml b/config/core.base_field_override.taxonomy_term.resource_type.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.resource_type.status.yml rename to config/core.base_field_override.taxonomy_term.resource_type.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.services.changed.yml b/config/core.base_field_override.taxonomy_term.services.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.services.changed.yml rename to config/core.base_field_override.taxonomy_term.services.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.services.description.yml b/config/core.base_field_override.taxonomy_term.services.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.services.description.yml rename to config/core.base_field_override.taxonomy_term.services.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.services.metatag.yml b/config/core.base_field_override.taxonomy_term.services.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.services.metatag.yml rename to config/core.base_field_override.taxonomy_term.services.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.services.name.yml b/config/core.base_field_override.taxonomy_term.services.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.services.name.yml rename to config/core.base_field_override.taxonomy_term.services.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.services.path.yml b/config/core.base_field_override.taxonomy_term.services.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.services.path.yml rename to config/core.base_field_override.taxonomy_term.services.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.services.status.yml b/config/core.base_field_override.taxonomy_term.services.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.services.status.yml rename to config/core.base_field_override.taxonomy_term.services.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.tags.changed.yml b/config/core.base_field_override.taxonomy_term.tags.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.tags.changed.yml rename to config/core.base_field_override.taxonomy_term.tags.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.tags.description.yml b/config/core.base_field_override.taxonomy_term.tags.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.tags.description.yml rename to config/core.base_field_override.taxonomy_term.tags.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.tags.metatag.yml b/config/core.base_field_override.taxonomy_term.tags.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.tags.metatag.yml rename to config/core.base_field_override.taxonomy_term.tags.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.tags.name.yml b/config/core.base_field_override.taxonomy_term.tags.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.tags.name.yml rename to config/core.base_field_override.taxonomy_term.tags.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.tags.path.yml b/config/core.base_field_override.taxonomy_term.tags.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.tags.path.yml rename to config/core.base_field_override.taxonomy_term.tags.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.tags.status.yml b/config/core.base_field_override.taxonomy_term.tags.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.tags.status.yml rename to config/core.base_field_override.taxonomy_term.tags.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.technologies.changed.yml b/config/core.base_field_override.taxonomy_term.technologies.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.technologies.changed.yml rename to config/core.base_field_override.taxonomy_term.technologies.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.technologies.description.yml b/config/core.base_field_override.taxonomy_term.technologies.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.technologies.description.yml rename to config/core.base_field_override.taxonomy_term.technologies.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.technologies.metatag.yml b/config/core.base_field_override.taxonomy_term.technologies.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.technologies.metatag.yml rename to config/core.base_field_override.taxonomy_term.technologies.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.technologies.name.yml b/config/core.base_field_override.taxonomy_term.technologies.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.technologies.name.yml rename to config/core.base_field_override.taxonomy_term.technologies.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.technologies.path.yml b/config/core.base_field_override.taxonomy_term.technologies.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.technologies.path.yml rename to config/core.base_field_override.taxonomy_term.technologies.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.technologies.status.yml b/config/core.base_field_override.taxonomy_term.technologies.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.technologies.status.yml rename to config/core.base_field_override.taxonomy_term.technologies.status.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.topics.changed.yml b/config/core.base_field_override.taxonomy_term.topics.changed.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.topics.changed.yml rename to config/core.base_field_override.taxonomy_term.topics.changed.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.topics.description.yml b/config/core.base_field_override.taxonomy_term.topics.description.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.topics.description.yml rename to config/core.base_field_override.taxonomy_term.topics.description.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.topics.metatag.yml b/config/core.base_field_override.taxonomy_term.topics.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.topics.metatag.yml rename to config/core.base_field_override.taxonomy_term.topics.metatag.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.topics.name.yml b/config/core.base_field_override.taxonomy_term.topics.name.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.topics.name.yml rename to config/core.base_field_override.taxonomy_term.topics.name.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.topics.path.yml b/config/core.base_field_override.taxonomy_term.topics.path.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.topics.path.yml rename to config/core.base_field_override.taxonomy_term.topics.path.yml diff --git a/config/sync/core.base_field_override.taxonomy_term.topics.status.yml b/config/core.base_field_override.taxonomy_term.topics.status.yml similarity index 100% rename from config/sync/core.base_field_override.taxonomy_term.topics.status.yml rename to config/core.base_field_override.taxonomy_term.topics.status.yml diff --git a/config/sync/core.base_field_override.user.user.changed.yml b/config/core.base_field_override.user.user.changed.yml similarity index 100% rename from config/sync/core.base_field_override.user.user.changed.yml rename to config/core.base_field_override.user.user.changed.yml diff --git a/config/sync/core.base_field_override.user.user.metatag.yml b/config/core.base_field_override.user.user.metatag.yml similarity index 100% rename from config/sync/core.base_field_override.user.user.metatag.yml rename to config/core.base_field_override.user.user.metatag.yml diff --git a/config/sync/core.base_field_override.user.user.path.yml b/config/core.base_field_override.user.user.path.yml similarity index 100% rename from config/sync/core.base_field_override.user.user.path.yml rename to config/core.base_field_override.user.user.path.yml diff --git a/config/sync/core.date_format.fallback.yml b/config/core.date_format.fallback.yml similarity index 100% rename from config/sync/core.date_format.fallback.yml rename to config/core.date_format.fallback.yml diff --git a/config/sync/core.date_format.html_date.yml b/config/core.date_format.html_date.yml similarity index 100% rename from config/sync/core.date_format.html_date.yml rename to config/core.date_format.html_date.yml diff --git a/config/sync/core.date_format.html_datetime.yml b/config/core.date_format.html_datetime.yml similarity index 100% rename from config/sync/core.date_format.html_datetime.yml rename to config/core.date_format.html_datetime.yml diff --git a/config/sync/core.date_format.html_month.yml b/config/core.date_format.html_month.yml similarity index 100% rename from config/sync/core.date_format.html_month.yml rename to config/core.date_format.html_month.yml diff --git a/config/sync/core.date_format.html_time.yml b/config/core.date_format.html_time.yml similarity index 100% rename from config/sync/core.date_format.html_time.yml rename to config/core.date_format.html_time.yml diff --git a/config/sync/core.date_format.html_week.yml b/config/core.date_format.html_week.yml similarity index 100% rename from config/sync/core.date_format.html_week.yml rename to config/core.date_format.html_week.yml diff --git a/config/sync/core.date_format.html_year.yml b/config/core.date_format.html_year.yml similarity index 100% rename from config/sync/core.date_format.html_year.yml rename to config/core.date_format.html_year.yml diff --git a/config/sync/core.date_format.html_yearless_date.yml b/config/core.date_format.html_yearless_date.yml similarity index 100% rename from config/sync/core.date_format.html_yearless_date.yml rename to config/core.date_format.html_yearless_date.yml diff --git a/config/sync/core.date_format.long.yml b/config/core.date_format.long.yml similarity index 100% rename from config/sync/core.date_format.long.yml rename to config/core.date_format.long.yml diff --git a/config/sync/core.date_format.medium.yml b/config/core.date_format.medium.yml similarity index 100% rename from config/sync/core.date_format.medium.yml rename to config/core.date_format.medium.yml diff --git a/config/sync/core.date_format.month_day_year.yml b/config/core.date_format.month_day_year.yml similarity index 100% rename from config/sync/core.date_format.month_day_year.yml rename to config/core.date_format.month_day_year.yml diff --git a/config/sync/core.date_format.short.yml b/config/core.date_format.short.yml similarity index 100% rename from config/sync/core.date_format.short.yml rename to config/core.date_format.short.yml diff --git a/config/sync/core.entity_form_display.block_content.basic.default.yml b/config/core.entity_form_display.block_content.basic.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.basic.default.yml rename to config/core.entity_form_display.block_content.basic.default.yml diff --git a/config/sync/core.entity_form_display.block_content.content_reference.default.yml b/config/core.entity_form_display.block_content.content_reference.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.content_reference.default.yml rename to config/core.entity_form_display.block_content.content_reference.default.yml diff --git a/config/sync/core.entity_form_display.block_content.slide.default.yml b/config/core.entity_form_display.block_content.slide.default.yml similarity index 100% rename from config/sync/core.entity_form_display.block_content.slide.default.yml rename to config/core.entity_form_display.block_content.slide.default.yml diff --git a/config/sync/core.entity_form_display.comment.comment.default.yml b/config/core.entity_form_display.comment.comment.default.yml similarity index 100% rename from config/sync/core.entity_form_display.comment.comment.default.yml rename to config/core.entity_form_display.comment.comment.default.yml diff --git a/config/sync/core.entity_form_display.contact_message.personal.default.yml b/config/core.entity_form_display.contact_message.personal.default.yml similarity index 100% rename from config/sync/core.entity_form_display.contact_message.personal.default.yml rename to config/core.entity_form_display.contact_message.personal.default.yml diff --git a/config/sync/core.entity_form_display.group.group.default.yml b/config/core.entity_form_display.group.group.default.yml similarity index 100% rename from config/sync/core.entity_form_display.group.group.default.yml rename to config/core.entity_form_display.group.group.default.yml diff --git a/config/sync/core.entity_form_display.group_content.group-group_membership.default.yml b/config/core.entity_form_display.group_content.group-group_membership.default.yml similarity index 100% rename from config/sync/core.entity_form_display.group_content.group-group_membership.default.yml rename to config/core.entity_form_display.group_content.group-group_membership.default.yml diff --git a/config/sync/core.entity_form_display.node.action.default.yml b/config/core.entity_form_display.node.action.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.action.default.yml rename to config/core.entity_form_display.node.action.default.yml diff --git a/config/sync/core.entity_form_display.node.article.default.yml b/config/core.entity_form_display.node.article.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.article.default.yml rename to config/core.entity_form_display.node.article.default.yml diff --git a/config/sync/core.entity_form_display.node.blog.default.yml b/config/core.entity_form_display.node.blog.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.blog.default.yml rename to config/core.entity_form_display.node.blog.default.yml diff --git a/config/sync/core.entity_form_display.node.campaign.default.yml b/config/core.entity_form_display.node.campaign.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.campaign.default.yml rename to config/core.entity_form_display.node.campaign.default.yml diff --git a/config/sync/core.entity_form_display.node.case_study.default.yml b/config/core.entity_form_display.node.case_study.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.case_study.default.yml rename to config/core.entity_form_display.node.case_study.default.yml diff --git a/config/sync/core.entity_form_display.node.event.default.yml b/config/core.entity_form_display.node.event.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.event.default.yml rename to config/core.entity_form_display.node.event.default.yml diff --git a/config/sync/core.entity_form_display.node.landing_page.default.yml b/config/core.entity_form_display.node.landing_page.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.landing_page.default.yml rename to config/core.entity_form_display.node.landing_page.default.yml diff --git a/config/sync/core.entity_form_display.node.page.default.yml b/config/core.entity_form_display.node.page.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.page.default.yml rename to config/core.entity_form_display.node.page.default.yml diff --git a/config/sync/core.entity_form_display.node.people.default.yml b/config/core.entity_form_display.node.people.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.people.default.yml rename to config/core.entity_form_display.node.people.default.yml diff --git a/config/sync/core.entity_form_display.node.resource.default.yml b/config/core.entity_form_display.node.resource.default.yml similarity index 100% rename from config/sync/core.entity_form_display.node.resource.default.yml rename to config/core.entity_form_display.node.resource.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.content_reference.default.yml b/config/core.entity_form_display.paragraph.content_reference.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.content_reference.default.yml rename to config/core.entity_form_display.paragraph.content_reference.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.embedded_content.default.yml b/config/core.entity_form_display.paragraph.embedded_content.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.embedded_content.default.yml rename to config/core.entity_form_display.paragraph.embedded_content.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.faq.default.yml b/config/core.entity_form_display.paragraph.faq.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.faq.default.yml rename to config/core.entity_form_display.paragraph.faq.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.file.default.yml b/config/core.entity_form_display.paragraph.file.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.file.default.yml rename to config/core.entity_form_display.paragraph.file.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.image.default.yml b/config/core.entity_form_display.paragraph.image.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.image.default.yml rename to config/core.entity_form_display.paragraph.image.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.quotation_with_image.default.yml b/config/core.entity_form_display.paragraph.quotation_with_image.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.quotation_with_image.default.yml rename to config/core.entity_form_display.paragraph.quotation_with_image.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.slide.default.yml b/config/core.entity_form_display.paragraph.slide.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.slide.default.yml rename to config/core.entity_form_display.paragraph.slide.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.storyline_header.default.yml b/config/core.entity_form_display.paragraph.storyline_header.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.storyline_header.default.yml rename to config/core.entity_form_display.paragraph.storyline_header.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.storyline_item.default.yml b/config/core.entity_form_display.paragraph.storyline_item.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.storyline_item.default.yml rename to config/core.entity_form_display.paragraph.storyline_item.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.text.default.yml b/config/core.entity_form_display.paragraph.text.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.text.default.yml rename to config/core.entity_form_display.paragraph.text.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.title.default.yml b/config/core.entity_form_display.paragraph.title.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.title.default.yml rename to config/core.entity_form_display.paragraph.title.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.update.default.yml b/config/core.entity_form_display.paragraph.update.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.update.default.yml rename to config/core.entity_form_display.paragraph.update.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.video.default.yml b/config/core.entity_form_display.paragraph.video.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.video.default.yml rename to config/core.entity_form_display.paragraph.video.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.view.default.yml b/config/core.entity_form_display.paragraph.view.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.view.default.yml rename to config/core.entity_form_display.paragraph.view.default.yml diff --git a/config/sync/core.entity_form_display.paragraph.webform.default.yml b/config/core.entity_form_display.paragraph.webform.default.yml similarity index 100% rename from config/sync/core.entity_form_display.paragraph.webform.default.yml rename to config/core.entity_form_display.paragraph.webform.default.yml diff --git a/config/sync/core.entity_form_display.user.user.default.yml b/config/core.entity_form_display.user.user.default.yml similarity index 100% rename from config/sync/core.entity_form_display.user.user.default.yml rename to config/core.entity_form_display.user.user.default.yml diff --git a/config/sync/core.entity_form_mode.user.register.yml b/config/core.entity_form_mode.user.register.yml similarity index 100% rename from config/sync/core.entity_form_mode.user.register.yml rename to config/core.entity_form_mode.user.register.yml diff --git a/config/sync/core.entity_view_display.block_content.basic.default.yml b/config/core.entity_view_display.block_content.basic.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.basic.default.yml rename to config/core.entity_view_display.block_content.basic.default.yml diff --git a/config/sync/core.entity_view_display.block_content.content_reference.default.yml b/config/core.entity_view_display.block_content.content_reference.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.content_reference.default.yml rename to config/core.entity_view_display.block_content.content_reference.default.yml diff --git a/config/sync/core.entity_view_display.block_content.slide.columnar.yml b/config/core.entity_view_display.block_content.slide.columnar.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.slide.columnar.yml rename to config/core.entity_view_display.block_content.slide.columnar.yml diff --git a/config/sync/core.entity_view_display.block_content.slide.default.yml b/config/core.entity_view_display.block_content.slide.default.yml similarity index 100% rename from config/sync/core.entity_view_display.block_content.slide.default.yml rename to config/core.entity_view_display.block_content.slide.default.yml diff --git a/config/sync/core.entity_view_display.comment.comment.default.yml b/config/core.entity_view_display.comment.comment.default.yml similarity index 100% rename from config/sync/core.entity_view_display.comment.comment.default.yml rename to config/core.entity_view_display.comment.comment.default.yml diff --git a/config/sync/core.entity_view_display.group.group.default.yml b/config/core.entity_view_display.group.group.default.yml similarity index 100% rename from config/sync/core.entity_view_display.group.group.default.yml rename to config/core.entity_view_display.group.group.default.yml diff --git a/config/sync/core.entity_view_display.group.group.full.yml b/config/core.entity_view_display.group.group.full.yml similarity index 100% rename from config/sync/core.entity_view_display.group.group.full.yml rename to config/core.entity_view_display.group.group.full.yml diff --git a/config/sync/core.entity_view_display.group.group.teaser.yml b/config/core.entity_view_display.group.group.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.group.group.teaser.yml rename to config/core.entity_view_display.group.group.teaser.yml diff --git a/config/sync/core.entity_view_display.group_content.group-group_membership.default.yml b/config/core.entity_view_display.group_content.group-group_membership.default.yml similarity index 100% rename from config/sync/core.entity_view_display.group_content.group-group_membership.default.yml rename to config/core.entity_view_display.group_content.group-group_membership.default.yml diff --git a/config/sync/core.entity_view_display.node.action.box.yml b/config/core.entity_view_display.node.action.box.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.box.yml rename to config/core.entity_view_display.node.action.box.yml diff --git a/config/sync/core.entity_view_display.node.action.card.yml b/config/core.entity_view_display.node.action.card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.card.yml rename to config/core.entity_view_display.node.action.card.yml diff --git a/config/sync/core.entity_view_display.node.action.default.yml b/config/core.entity_view_display.node.action.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.default.yml rename to config/core.entity_view_display.node.action.default.yml diff --git a/config/sync/core.entity_view_display.node.action.full.yml b/config/core.entity_view_display.node.action.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.full.yml rename to config/core.entity_view_display.node.action.full.yml diff --git a/config/sync/core.entity_view_display.node.action.search_index.yml b/config/core.entity_view_display.node.action.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.search_index.yml rename to config/core.entity_view_display.node.action.search_index.yml diff --git a/config/sync/core.entity_view_display.node.action.simple_card.yml b/config/core.entity_view_display.node.action.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.simple_card.yml rename to config/core.entity_view_display.node.action.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.action.teaser.yml b/config/core.entity_view_display.node.action.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.teaser.yml rename to config/core.entity_view_display.node.action.teaser.yml diff --git a/config/sync/core.entity_view_display.node.action.tile.yml b/config/core.entity_view_display.node.action.tile.yml similarity index 100% rename from config/sync/core.entity_view_display.node.action.tile.yml rename to config/core.entity_view_display.node.action.tile.yml diff --git a/config/sync/core.entity_view_display.node.article.box.yml b/config/core.entity_view_display.node.article.box.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.box.yml rename to config/core.entity_view_display.node.article.box.yml diff --git a/config/sync/core.entity_view_display.node.article.card.yml b/config/core.entity_view_display.node.article.card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.card.yml rename to config/core.entity_view_display.node.article.card.yml diff --git a/config/sync/core.entity_view_display.node.article.default.yml b/config/core.entity_view_display.node.article.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.default.yml rename to config/core.entity_view_display.node.article.default.yml diff --git a/config/sync/core.entity_view_display.node.article.full.yml b/config/core.entity_view_display.node.article.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.full.yml rename to config/core.entity_view_display.node.article.full.yml diff --git a/config/sync/core.entity_view_display.node.article.media.yml b/config/core.entity_view_display.node.article.media.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.media.yml rename to config/core.entity_view_display.node.article.media.yml diff --git a/config/sync/core.entity_view_display.node.article.rss.yml b/config/core.entity_view_display.node.article.rss.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.rss.yml rename to config/core.entity_view_display.node.article.rss.yml diff --git a/config/sync/core.entity_view_display.node.article.search_index.yml b/config/core.entity_view_display.node.article.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.search_index.yml rename to config/core.entity_view_display.node.article.search_index.yml diff --git a/config/sync/core.entity_view_display.node.article.simple_card.yml b/config/core.entity_view_display.node.article.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.simple_card.yml rename to config/core.entity_view_display.node.article.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.article.teaser.yml b/config/core.entity_view_display.node.article.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.article.teaser.yml rename to config/core.entity_view_display.node.article.teaser.yml diff --git a/config/sync/core.entity_view_display.node.blog.card.yml b/config/core.entity_view_display.node.blog.card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.card.yml rename to config/core.entity_view_display.node.blog.card.yml diff --git a/config/sync/core.entity_view_display.node.blog.default.yml b/config/core.entity_view_display.node.blog.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.default.yml rename to config/core.entity_view_display.node.blog.default.yml diff --git a/config/sync/core.entity_view_display.node.blog.full.yml b/config/core.entity_view_display.node.blog.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.full.yml rename to config/core.entity_view_display.node.blog.full.yml diff --git a/config/sync/core.entity_view_display.node.blog.media.yml b/config/core.entity_view_display.node.blog.media.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.media.yml rename to config/core.entity_view_display.node.blog.media.yml diff --git a/config/sync/core.entity_view_display.node.blog.rss.yml b/config/core.entity_view_display.node.blog.rss.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.rss.yml rename to config/core.entity_view_display.node.blog.rss.yml diff --git a/config/sync/core.entity_view_display.node.blog.rss_teaser.yml b/config/core.entity_view_display.node.blog.rss_teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.rss_teaser.yml rename to config/core.entity_view_display.node.blog.rss_teaser.yml diff --git a/config/sync/core.entity_view_display.node.blog.search_index.yml b/config/core.entity_view_display.node.blog.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.search_index.yml rename to config/core.entity_view_display.node.blog.search_index.yml diff --git a/config/sync/core.entity_view_display.node.blog.simple_card.yml b/config/core.entity_view_display.node.blog.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.simple_card.yml rename to config/core.entity_view_display.node.blog.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.blog.teaser.yml b/config/core.entity_view_display.node.blog.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.blog.teaser.yml rename to config/core.entity_view_display.node.blog.teaser.yml diff --git a/config/sync/core.entity_view_display.node.campaign.card.yml b/config/core.entity_view_display.node.campaign.card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.campaign.card.yml rename to config/core.entity_view_display.node.campaign.card.yml diff --git a/config/sync/core.entity_view_display.node.campaign.default.yml b/config/core.entity_view_display.node.campaign.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.campaign.default.yml rename to config/core.entity_view_display.node.campaign.default.yml diff --git a/config/sync/core.entity_view_display.node.campaign.full.yml b/config/core.entity_view_display.node.campaign.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.campaign.full.yml rename to config/core.entity_view_display.node.campaign.full.yml diff --git a/config/sync/core.entity_view_display.node.campaign.search_index.yml b/config/core.entity_view_display.node.campaign.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.campaign.search_index.yml rename to config/core.entity_view_display.node.campaign.search_index.yml diff --git a/config/sync/core.entity_view_display.node.campaign.simple_card.yml b/config/core.entity_view_display.node.campaign.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.campaign.simple_card.yml rename to config/core.entity_view_display.node.campaign.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.campaign.teaser.yml b/config/core.entity_view_display.node.campaign.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.campaign.teaser.yml rename to config/core.entity_view_display.node.campaign.teaser.yml diff --git a/config/sync/core.entity_view_display.node.case_study.card.yml b/config/core.entity_view_display.node.case_study.card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.card.yml rename to config/core.entity_view_display.node.case_study.card.yml diff --git a/config/sync/core.entity_view_display.node.case_study.default.yml b/config/core.entity_view_display.node.case_study.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.default.yml rename to config/core.entity_view_display.node.case_study.default.yml diff --git a/config/sync/core.entity_view_display.node.case_study.full.yml b/config/core.entity_view_display.node.case_study.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.full.yml rename to config/core.entity_view_display.node.case_study.full.yml diff --git a/config/sync/core.entity_view_display.node.case_study.search_index.yml b/config/core.entity_view_display.node.case_study.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.search_index.yml rename to config/core.entity_view_display.node.case_study.search_index.yml diff --git a/config/sync/core.entity_view_display.node.case_study.small_card.yml b/config/core.entity_view_display.node.case_study.small_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.small_card.yml rename to config/core.entity_view_display.node.case_study.small_card.yml diff --git a/config/sync/core.entity_view_display.node.case_study.teaser.yml b/config/core.entity_view_display.node.case_study.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.teaser.yml rename to config/core.entity_view_display.node.case_study.teaser.yml diff --git a/config/sync/core.entity_view_display.node.case_study.tile.yml b/config/core.entity_view_display.node.case_study.tile.yml similarity index 100% rename from config/sync/core.entity_view_display.node.case_study.tile.yml rename to config/core.entity_view_display.node.case_study.tile.yml diff --git a/config/sync/core.entity_view_display.node.event.default.yml b/config/core.entity_view_display.node.event.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.event.default.yml rename to config/core.entity_view_display.node.event.default.yml diff --git a/config/sync/core.entity_view_display.node.event.full.yml b/config/core.entity_view_display.node.event.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.event.full.yml rename to config/core.entity_view_display.node.event.full.yml diff --git a/config/sync/core.entity_view_display.node.event.micro.yml b/config/core.entity_view_display.node.event.micro.yml similarity index 100% rename from config/sync/core.entity_view_display.node.event.micro.yml rename to config/core.entity_view_display.node.event.micro.yml diff --git a/config/sync/core.entity_view_display.node.event.search_index.yml b/config/core.entity_view_display.node.event.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.event.search_index.yml rename to config/core.entity_view_display.node.event.search_index.yml diff --git a/config/sync/core.entity_view_display.node.event.simple_card.yml b/config/core.entity_view_display.node.event.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.event.simple_card.yml rename to config/core.entity_view_display.node.event.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.event.teaser.yml b/config/core.entity_view_display.node.event.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.event.teaser.yml rename to config/core.entity_view_display.node.event.teaser.yml diff --git a/config/sync/core.entity_view_display.node.landing_page.default.yml b/config/core.entity_view_display.node.landing_page.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.landing_page.default.yml rename to config/core.entity_view_display.node.landing_page.default.yml diff --git a/config/sync/core.entity_view_display.node.landing_page.full.yml b/config/core.entity_view_display.node.landing_page.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.landing_page.full.yml rename to config/core.entity_view_display.node.landing_page.full.yml diff --git a/config/sync/core.entity_view_display.node.landing_page.simple_card.yml b/config/core.entity_view_display.node.landing_page.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.landing_page.simple_card.yml rename to config/core.entity_view_display.node.landing_page.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.landing_page.teaser.yml b/config/core.entity_view_display.node.landing_page.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.landing_page.teaser.yml rename to config/core.entity_view_display.node.landing_page.teaser.yml diff --git a/config/sync/core.entity_view_display.node.page.default.yml b/config/core.entity_view_display.node.page.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.page.default.yml rename to config/core.entity_view_display.node.page.default.yml diff --git a/config/sync/core.entity_view_display.node.page.embedded.yml b/config/core.entity_view_display.node.page.embedded.yml similarity index 100% rename from config/sync/core.entity_view_display.node.page.embedded.yml rename to config/core.entity_view_display.node.page.embedded.yml diff --git a/config/sync/core.entity_view_display.node.page.full.yml b/config/core.entity_view_display.node.page.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.page.full.yml rename to config/core.entity_view_display.node.page.full.yml diff --git a/config/sync/core.entity_view_display.node.page.teaser.yml b/config/core.entity_view_display.node.page.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.page.teaser.yml rename to config/core.entity_view_display.node.page.teaser.yml diff --git a/config/sync/core.entity_view_display.node.people.default.yml b/config/core.entity_view_display.node.people.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.people.default.yml rename to config/core.entity_view_display.node.people.default.yml diff --git a/config/sync/core.entity_view_display.node.people.full.yml b/config/core.entity_view_display.node.people.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.people.full.yml rename to config/core.entity_view_display.node.people.full.yml diff --git a/config/sync/core.entity_view_display.node.people.search_index.yml b/config/core.entity_view_display.node.people.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.people.search_index.yml rename to config/core.entity_view_display.node.people.search_index.yml diff --git a/config/sync/core.entity_view_display.node.people.small_card.yml b/config/core.entity_view_display.node.people.small_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.people.small_card.yml rename to config/core.entity_view_display.node.people.small_card.yml diff --git a/config/sync/core.entity_view_display.node.people.teaser.yml b/config/core.entity_view_display.node.people.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.people.teaser.yml rename to config/core.entity_view_display.node.people.teaser.yml diff --git a/config/sync/core.entity_view_display.node.resource.card.yml b/config/core.entity_view_display.node.resource.card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.resource.card.yml rename to config/core.entity_view_display.node.resource.card.yml diff --git a/config/sync/core.entity_view_display.node.resource.default.yml b/config/core.entity_view_display.node.resource.default.yml similarity index 100% rename from config/sync/core.entity_view_display.node.resource.default.yml rename to config/core.entity_view_display.node.resource.default.yml diff --git a/config/sync/core.entity_view_display.node.resource.full.yml b/config/core.entity_view_display.node.resource.full.yml similarity index 100% rename from config/sync/core.entity_view_display.node.resource.full.yml rename to config/core.entity_view_display.node.resource.full.yml diff --git a/config/sync/core.entity_view_display.node.resource.search_index.yml b/config/core.entity_view_display.node.resource.search_index.yml similarity index 100% rename from config/sync/core.entity_view_display.node.resource.search_index.yml rename to config/core.entity_view_display.node.resource.search_index.yml diff --git a/config/sync/core.entity_view_display.node.resource.simple_card.yml b/config/core.entity_view_display.node.resource.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_display.node.resource.simple_card.yml rename to config/core.entity_view_display.node.resource.simple_card.yml diff --git a/config/sync/core.entity_view_display.node.resource.teaser.yml b/config/core.entity_view_display.node.resource.teaser.yml similarity index 100% rename from config/sync/core.entity_view_display.node.resource.teaser.yml rename to config/core.entity_view_display.node.resource.teaser.yml diff --git a/config/sync/core.entity_view_display.paragraph.content_reference.default.yml b/config/core.entity_view_display.paragraph.content_reference.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.content_reference.default.yml rename to config/core.entity_view_display.paragraph.content_reference.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.embedded_content.default.yml b/config/core.entity_view_display.paragraph.embedded_content.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.embedded_content.default.yml rename to config/core.entity_view_display.paragraph.embedded_content.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.faq.default.yml b/config/core.entity_view_display.paragraph.faq.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.faq.default.yml rename to config/core.entity_view_display.paragraph.faq.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.file.default.yml b/config/core.entity_view_display.paragraph.file.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.file.default.yml rename to config/core.entity_view_display.paragraph.file.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.image.default.yml b/config/core.entity_view_display.paragraph.image.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.image.default.yml rename to config/core.entity_view_display.paragraph.image.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.quotation_with_image.default.yml b/config/core.entity_view_display.paragraph.quotation_with_image.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.quotation_with_image.default.yml rename to config/core.entity_view_display.paragraph.quotation_with_image.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.slide.columnar.yml b/config/core.entity_view_display.paragraph.slide.columnar.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.slide.columnar.yml rename to config/core.entity_view_display.paragraph.slide.columnar.yml diff --git a/config/sync/core.entity_view_display.paragraph.slide.default.yml b/config/core.entity_view_display.paragraph.slide.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.slide.default.yml rename to config/core.entity_view_display.paragraph.slide.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.storyline_header.default.yml b/config/core.entity_view_display.paragraph.storyline_header.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.storyline_header.default.yml rename to config/core.entity_view_display.paragraph.storyline_header.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.storyline_item.default.yml b/config/core.entity_view_display.paragraph.storyline_item.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.storyline_item.default.yml rename to config/core.entity_view_display.paragraph.storyline_item.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.text.default.yml b/config/core.entity_view_display.paragraph.text.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.text.default.yml rename to config/core.entity_view_display.paragraph.text.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.title.columnar.yml b/config/core.entity_view_display.paragraph.title.columnar.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.title.columnar.yml rename to config/core.entity_view_display.paragraph.title.columnar.yml diff --git a/config/sync/core.entity_view_display.paragraph.title.default.yml b/config/core.entity_view_display.paragraph.title.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.title.default.yml rename to config/core.entity_view_display.paragraph.title.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.update.default.yml b/config/core.entity_view_display.paragraph.update.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.update.default.yml rename to config/core.entity_view_display.paragraph.update.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.video.default.yml b/config/core.entity_view_display.paragraph.video.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.video.default.yml rename to config/core.entity_view_display.paragraph.video.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.view.default.yml b/config/core.entity_view_display.paragraph.view.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.view.default.yml rename to config/core.entity_view_display.paragraph.view.default.yml diff --git a/config/sync/core.entity_view_display.paragraph.webform.default.yml b/config/core.entity_view_display.paragraph.webform.default.yml similarity index 100% rename from config/sync/core.entity_view_display.paragraph.webform.default.yml rename to config/core.entity_view_display.paragraph.webform.default.yml diff --git a/config/sync/core.entity_view_display.taxonomy_term.license.default.yml b/config/core.entity_view_display.taxonomy_term.license.default.yml similarity index 100% rename from config/sync/core.entity_view_display.taxonomy_term.license.default.yml rename to config/core.entity_view_display.taxonomy_term.license.default.yml diff --git a/config/sync/core.entity_view_display.user.user.compact.yml b/config/core.entity_view_display.user.user.compact.yml similarity index 100% rename from config/sync/core.entity_view_display.user.user.compact.yml rename to config/core.entity_view_display.user.user.compact.yml diff --git a/config/sync/core.entity_view_display.user.user.default.yml b/config/core.entity_view_display.user.user.default.yml similarity index 100% rename from config/sync/core.entity_view_display.user.user.default.yml rename to config/core.entity_view_display.user.user.default.yml diff --git a/config/sync/core.entity_view_mode.block.token.yml b/config/core.entity_view_mode.block.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.block.token.yml rename to config/core.entity_view_mode.block.token.yml diff --git a/config/sync/core.entity_view_mode.block_content.columnar.yml b/config/core.entity_view_mode.block_content.columnar.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.columnar.yml rename to config/core.entity_view_mode.block_content.columnar.yml diff --git a/config/sync/core.entity_view_mode.block_content.full.yml b/config/core.entity_view_mode.block_content.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.full.yml rename to config/core.entity_view_mode.block_content.full.yml diff --git a/config/sync/core.entity_view_mode.block_content.token.yml b/config/core.entity_view_mode.block_content.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.block_content.token.yml rename to config/core.entity_view_mode.block_content.token.yml diff --git a/config/sync/core.entity_view_mode.comment.full.yml b/config/core.entity_view_mode.comment.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.comment.full.yml rename to config/core.entity_view_mode.comment.full.yml diff --git a/config/sync/core.entity_view_mode.comment.indieweb_microformat.yml b/config/core.entity_view_mode.comment.indieweb_microformat.yml similarity index 100% rename from config/sync/core.entity_view_mode.comment.indieweb_microformat.yml rename to config/core.entity_view_mode.comment.indieweb_microformat.yml diff --git a/config/sync/core.entity_view_mode.comment.token.yml b/config/core.entity_view_mode.comment.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.comment.token.yml rename to config/core.entity_view_mode.comment.token.yml diff --git a/config/sync/core.entity_view_mode.contact_message.token.yml b/config/core.entity_view_mode.contact_message.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.contact_message.token.yml rename to config/core.entity_view_mode.contact_message.token.yml diff --git a/config/sync/core.entity_view_mode.file.token.yml b/config/core.entity_view_mode.file.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.file.token.yml rename to config/core.entity_view_mode.file.token.yml diff --git a/config/sync/core.entity_view_mode.group.full.yml b/config/core.entity_view_mode.group.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.group.full.yml rename to config/core.entity_view_mode.group.full.yml diff --git a/config/sync/core.entity_view_mode.group.teaser.yml b/config/core.entity_view_mode.group.teaser.yml similarity index 100% rename from config/sync/core.entity_view_mode.group.teaser.yml rename to config/core.entity_view_mode.group.teaser.yml diff --git a/config/sync/core.entity_view_mode.menu_link_content.token.yml b/config/core.entity_view_mode.menu_link_content.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.menu_link_content.token.yml rename to config/core.entity_view_mode.menu_link_content.token.yml diff --git a/config/sync/core.entity_view_mode.node.box.yml b/config/core.entity_view_mode.node.box.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.box.yml rename to config/core.entity_view_mode.node.box.yml diff --git a/config/sync/core.entity_view_mode.node.card.yml b/config/core.entity_view_mode.node.card.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.card.yml rename to config/core.entity_view_mode.node.card.yml diff --git a/config/sync/core.entity_view_mode.node.diff.yml b/config/core.entity_view_mode.node.diff.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.diff.yml rename to config/core.entity_view_mode.node.diff.yml diff --git a/config/sync/core.entity_view_mode.node.embedded.yml b/config/core.entity_view_mode.node.embedded.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.embedded.yml rename to config/core.entity_view_mode.node.embedded.yml diff --git a/config/sync/core.entity_view_mode.node.full.yml b/config/core.entity_view_mode.node.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.full.yml rename to config/core.entity_view_mode.node.full.yml diff --git a/config/sync/core.entity_view_mode.node.indieweb_microformat.yml b/config/core.entity_view_mode.node.indieweb_microformat.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.indieweb_microformat.yml rename to config/core.entity_view_mode.node.indieweb_microformat.yml diff --git a/config/sync/core.entity_view_mode.node.media.yml b/config/core.entity_view_mode.node.media.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.media.yml rename to config/core.entity_view_mode.node.media.yml diff --git a/config/sync/core.entity_view_mode.node.micro.yml b/config/core.entity_view_mode.node.micro.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.micro.yml rename to config/core.entity_view_mode.node.micro.yml diff --git a/config/sync/core.entity_view_mode.node.rss.yml b/config/core.entity_view_mode.node.rss.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.rss.yml rename to config/core.entity_view_mode.node.rss.yml diff --git a/config/sync/core.entity_view_mode.node.rss_teaser.yml b/config/core.entity_view_mode.node.rss_teaser.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.rss_teaser.yml rename to config/core.entity_view_mode.node.rss_teaser.yml diff --git a/config/sync/core.entity_view_mode.node.search_index.yml b/config/core.entity_view_mode.node.search_index.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.search_index.yml rename to config/core.entity_view_mode.node.search_index.yml diff --git a/config/sync/core.entity_view_mode.node.search_result.yml b/config/core.entity_view_mode.node.search_result.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.search_result.yml rename to config/core.entity_view_mode.node.search_result.yml diff --git a/config/sync/core.entity_view_mode.node.simple_card.yml b/config/core.entity_view_mode.node.simple_card.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.simple_card.yml rename to config/core.entity_view_mode.node.simple_card.yml diff --git a/config/sync/core.entity_view_mode.node.small_card.yml b/config/core.entity_view_mode.node.small_card.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.small_card.yml rename to config/core.entity_view_mode.node.small_card.yml diff --git a/config/sync/core.entity_view_mode.node.teaser.yml b/config/core.entity_view_mode.node.teaser.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.teaser.yml rename to config/core.entity_view_mode.node.teaser.yml diff --git a/config/sync/core.entity_view_mode.node.tile.yml b/config/core.entity_view_mode.node.tile.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.tile.yml rename to config/core.entity_view_mode.node.tile.yml diff --git a/config/sync/core.entity_view_mode.node.token.yml b/config/core.entity_view_mode.node.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.node.token.yml rename to config/core.entity_view_mode.node.token.yml diff --git a/config/sync/core.entity_view_mode.paragraph.columnar.yml b/config/core.entity_view_mode.paragraph.columnar.yml similarity index 100% rename from config/sync/core.entity_view_mode.paragraph.columnar.yml rename to config/core.entity_view_mode.paragraph.columnar.yml diff --git a/config/sync/core.entity_view_mode.paragraph.preview.yml b/config/core.entity_view_mode.paragraph.preview.yml similarity index 100% rename from config/sync/core.entity_view_mode.paragraph.preview.yml rename to config/core.entity_view_mode.paragraph.preview.yml diff --git a/config/sync/core.entity_view_mode.shortcut.token.yml b/config/core.entity_view_mode.shortcut.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.shortcut.token.yml rename to config/core.entity_view_mode.shortcut.token.yml diff --git a/config/sync/core.entity_view_mode.taxonomy_term.full.yml b/config/core.entity_view_mode.taxonomy_term.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.taxonomy_term.full.yml rename to config/core.entity_view_mode.taxonomy_term.full.yml diff --git a/config/sync/core.entity_view_mode.taxonomy_term.token.yml b/config/core.entity_view_mode.taxonomy_term.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.taxonomy_term.token.yml rename to config/core.entity_view_mode.taxonomy_term.token.yml diff --git a/config/sync/core.entity_view_mode.tour.token.yml b/config/core.entity_view_mode.tour.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.tour.token.yml rename to config/core.entity_view_mode.tour.token.yml diff --git a/config/sync/core.entity_view_mode.user.compact.yml b/config/core.entity_view_mode.user.compact.yml similarity index 100% rename from config/sync/core.entity_view_mode.user.compact.yml rename to config/core.entity_view_mode.user.compact.yml diff --git a/config/sync/core.entity_view_mode.user.full.yml b/config/core.entity_view_mode.user.full.yml similarity index 100% rename from config/sync/core.entity_view_mode.user.full.yml rename to config/core.entity_view_mode.user.full.yml diff --git a/config/sync/core.entity_view_mode.user.token.yml b/config/core.entity_view_mode.user.token.yml similarity index 100% rename from config/sync/core.entity_view_mode.user.token.yml rename to config/core.entity_view_mode.user.token.yml diff --git a/config/sync/core.extension.yml b/config/core.extension.yml similarity index 100% rename from config/sync/core.extension.yml rename to config/core.extension.yml diff --git a/config/sync/core.menu.static_menu_link_overrides.yml b/config/core.menu.static_menu_link_overrides.yml similarity index 100% rename from config/sync/core.menu.static_menu_link_overrides.yml rename to config/core.menu.static_menu_link_overrides.yml diff --git a/config/sync/crop.settings.yml b/config/crop.settings.yml similarity index 100% rename from config/sync/crop.settings.yml rename to config/crop.settings.yml diff --git a/config/sync/crop.type.focal_point.yml b/config/crop.type.focal_point.yml similarity index 100% rename from config/sync/crop.type.focal_point.yml rename to config/crop.type.focal_point.yml diff --git a/config/sync/customerror.settings.yml b/config/customerror.settings.yml similarity index 100% rename from config/sync/customerror.settings.yml rename to config/customerror.settings.yml diff --git a/config/sync/dblog.settings.yml b/config/dblog.settings.yml similarity index 100% rename from config/sync/dblog.settings.yml rename to config/dblog.settings.yml diff --git a/config/sync/diff.settings.yml b/config/diff.settings.yml similarity index 100% rename from config/sync/diff.settings.yml rename to config/diff.settings.yml diff --git a/config/sync/dropdown_language.setting.yml b/config/dropdown_language.setting.yml similarity index 100% rename from config/sync/dropdown_language.setting.yml rename to config/dropdown_language.setting.yml diff --git a/config/sync/ds.settings.yml b/config/ds.settings.yml similarity index 100% rename from config/sync/ds.settings.yml rename to config/ds.settings.yml diff --git a/config/sync/editor.editor.basic_html.yml b/config/editor.editor.basic_html.yml similarity index 100% rename from config/sync/editor.editor.basic_html.yml rename to config/editor.editor.basic_html.yml diff --git a/config/sync/editor.editor.full_html.yml b/config/editor.editor.full_html.yml similarity index 100% rename from config/sync/editor.editor.full_html.yml rename to config/editor.editor.full_html.yml diff --git a/config/sync/editor.editor.minimalhtml.yml b/config/editor.editor.minimalhtml.yml similarity index 100% rename from config/sync/editor.editor.minimalhtml.yml rename to config/editor.editor.minimalhtml.yml diff --git a/config/sync/editor.editor.minimalhtmltitle.yml b/config/editor.editor.minimalhtmltitle.yml similarity index 100% rename from config/sync/editor.editor.minimalhtmltitle.yml rename to config/editor.editor.minimalhtmltitle.yml diff --git a/config/sync/exclude_node_title.settings.yml b/config/exclude_node_title.settings.yml similarity index 100% rename from config/sync/exclude_node_title.settings.yml rename to config/exclude_node_title.settings.yml diff --git a/config/sync/facets.facet.article_topics.yml b/config/facets.facet.article_topics.yml similarity index 100% rename from config/sync/facets.facet.article_topics.yml rename to config/facets.facet.article_topics.yml diff --git a/config/sync/facets.facet.article_type.yml b/config/facets.facet.article_type.yml similarity index 100% rename from config/sync/facets.facet.article_type.yml rename to config/facets.facet.article_type.yml diff --git a/config/sync/facets.facet.blog_topics.yml b/config/facets.facet.blog_topics.yml similarity index 100% rename from config/sync/facets.facet.blog_topics.yml rename to config/facets.facet.blog_topics.yml diff --git a/config/sync/facets.facet.event_topics.yml b/config/facets.facet.event_topics.yml similarity index 100% rename from config/sync/facets.facet.event_topics.yml rename to config/facets.facet.event_topics.yml diff --git a/config/sync/facets.facet.event_type.yml b/config/facets.facet.event_type.yml similarity index 100% rename from config/sync/facets.facet.event_type.yml rename to config/facets.facet.event_type.yml diff --git a/config/sync/facets.facet.resource_topics.yml b/config/facets.facet.resource_topics.yml similarity index 100% rename from config/sync/facets.facet.resource_topics.yml rename to config/facets.facet.resource_topics.yml diff --git a/config/sync/facets.facet.resource_type.yml b/config/facets.facet.resource_type.yml similarity index 100% rename from config/sync/facets.facet.resource_type.yml rename to config/facets.facet.resource_type.yml diff --git a/config/sync/facets.facet_source.search_api__views_page__blog__page_listing.yml b/config/facets.facet_source.search_api__views_page__blog__page_listing.yml similarity index 100% rename from config/sync/facets.facet_source.search_api__views_page__blog__page_listing.yml rename to config/facets.facet_source.search_api__views_page__blog__page_listing.yml diff --git a/config/sync/field.field.block_content.basic.body.yml b/config/field.field.block_content.basic.body.yml similarity index 100% rename from config/sync/field.field.block_content.basic.body.yml rename to config/field.field.block_content.basic.body.yml diff --git a/config/sync/field.field.block_content.content_reference.field_content_reference.yml b/config/field.field.block_content.content_reference.field_content_reference.yml similarity index 100% rename from config/sync/field.field.block_content.content_reference.field_content_reference.yml rename to config/field.field.block_content.content_reference.field_content_reference.yml diff --git a/config/sync/field.field.block_content.slide.field_slide.yml b/config/field.field.block_content.slide.field_slide.yml similarity index 100% rename from config/sync/field.field.block_content.slide.field_slide.yml rename to config/field.field.block_content.slide.field_slide.yml diff --git a/config/sync/field.field.comment.comment.comment_body.yml b/config/field.field.comment.comment.comment_body.yml similarity index 100% rename from config/sync/field.field.comment.comment.comment_body.yml rename to config/field.field.comment.comment.comment_body.yml diff --git a/config/sync/field.field.group.group.field_group_address.yml b/config/field.field.group.group.field_group_address.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_address.yml rename to config/field.field.group.group.field_group_address.yml diff --git a/config/sync/field.field.group.group.field_group_description.yml b/config/field.field.group.group.field_group_description.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_description.yml rename to config/field.field.group.group.field_group_description.yml diff --git a/config/sync/field.field.group.group.field_group_email.yml b/config/field.field.group.group.field_group_email.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_email.yml rename to config/field.field.group.group.field_group_email.yml diff --git a/config/sync/field.field.group.group.field_group_image.yml b/config/field.field.group.group.field_group_image.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_image.yml rename to config/field.field.group.group.field_group_image.yml diff --git a/config/sync/field.field.group.group.field_group_phone.yml b/config/field.field.group.group.field_group_phone.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_phone.yml rename to config/field.field.group.group.field_group_phone.yml diff --git a/config/sync/field.field.group.group.field_group_summary.yml b/config/field.field.group.group.field_group_summary.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_summary.yml rename to config/field.field.group.group.field_group_summary.yml diff --git a/config/sync/field.field.group.group.field_group_type.yml b/config/field.field.group.group.field_group_type.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_type.yml rename to config/field.field.group.group.field_group_type.yml diff --git a/config/sync/field.field.group.group.field_group_website.yml b/config/field.field.group.group.field_group_website.yml similarity index 100% rename from config/sync/field.field.group.group.field_group_website.yml rename to config/field.field.group.group.field_group_website.yml diff --git a/config/sync/field.field.group_content.group-group_membership.group_roles.yml b/config/field.field.group_content.group-group_membership.group_roles.yml similarity index 100% rename from config/sync/field.field.group_content.group-group_membership.group_roles.yml rename to config/field.field.group_content.group-group_membership.group_roles.yml diff --git a/config/sync/field.field.node.action.body.yml b/config/field.field.node.action.body.yml similarity index 100% rename from config/sync/field.field.node.action.body.yml rename to config/field.field.node.action.body.yml diff --git a/config/sync/field.field.node.action.field_action_end_date.yml b/config/field.field.node.action.field_action_end_date.yml similarity index 100% rename from config/sync/field.field.node.action.field_action_end_date.yml rename to config/field.field.node.action.field_action_end_date.yml diff --git a/config/sync/field.field.node.action.field_action_link.yml b/config/field.field.node.action.field_action_link.yml similarity index 100% rename from config/sync/field.field.node.action.field_action_link.yml rename to config/field.field.node.action.field_action_link.yml diff --git a/config/sync/field.field.node.action.field_action_type.yml b/config/field.field.node.action.field_action_type.yml similarity index 100% rename from config/sync/field.field.node.action.field_action_type.yml rename to config/field.field.node.action.field_action_type.yml diff --git a/config/sync/field.field.node.action.field_body_paragraph.yml b/config/field.field.node.action.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.action.field_body_paragraph.yml rename to config/field.field.node.action.field_body_paragraph.yml diff --git a/config/sync/field.field.node.action.field_image.yml b/config/field.field.node.action.field_image.yml similarity index 100% rename from config/sync/field.field.node.action.field_image.yml rename to config/field.field.node.action.field_image.yml diff --git a/config/sync/field.field.node.action.field_meta_tags.yml b/config/field.field.node.action.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.action.field_meta_tags.yml rename to config/field.field.node.action.field_meta_tags.yml diff --git a/config/sync/field.field.node.action.field_summary.yml b/config/field.field.node.action.field_summary.yml similarity index 100% rename from config/sync/field.field.node.action.field_summary.yml rename to config/field.field.node.action.field_summary.yml diff --git a/config/sync/field.field.node.action.field_tags.yml b/config/field.field.node.action.field_tags.yml similarity index 100% rename from config/sync/field.field.node.action.field_tags.yml rename to config/field.field.node.action.field_tags.yml diff --git a/config/sync/field.field.node.action.field_topics.yml b/config/field.field.node.action.field_topics.yml similarity index 100% rename from config/sync/field.field.node.action.field_topics.yml rename to config/field.field.node.action.field_topics.yml diff --git a/config/sync/field.field.node.article.body.yml b/config/field.field.node.article.body.yml similarity index 100% rename from config/sync/field.field.node.article.body.yml rename to config/field.field.node.article.body.yml diff --git a/config/sync/field.field.node.article.comment.yml b/config/field.field.node.article.comment.yml similarity index 100% rename from config/sync/field.field.node.article.comment.yml rename to config/field.field.node.article.comment.yml diff --git a/config/sync/field.field.node.article.field_article_type.yml b/config/field.field.node.article.field_article_type.yml similarity index 100% rename from config/sync/field.field.node.article.field_article_type.yml rename to config/field.field.node.article.field_article_type.yml diff --git a/config/sync/field.field.node.article.field_authors.yml b/config/field.field.node.article.field_authors.yml similarity index 100% rename from config/sync/field.field.node.article.field_authors.yml rename to config/field.field.node.article.field_authors.yml diff --git a/config/sync/field.field.node.article.field_body_paragraph.yml b/config/field.field.node.article.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.article.field_body_paragraph.yml rename to config/field.field.node.article.field_body_paragraph.yml diff --git a/config/sync/field.field.node.article.field_image.yml b/config/field.field.node.article.field_image.yml similarity index 100% rename from config/sync/field.field.node.article.field_image.yml rename to config/field.field.node.article.field_image.yml diff --git a/config/sync/field.field.node.article.field_meta_tags.yml b/config/field.field.node.article.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.article.field_meta_tags.yml rename to config/field.field.node.article.field_meta_tags.yml diff --git a/config/sync/field.field.node.article.field_summary.yml b/config/field.field.node.article.field_summary.yml similarity index 100% rename from config/sync/field.field.node.article.field_summary.yml rename to config/field.field.node.article.field_summary.yml diff --git a/config/sync/field.field.node.article.field_tags.yml b/config/field.field.node.article.field_tags.yml similarity index 100% rename from config/sync/field.field.node.article.field_tags.yml rename to config/field.field.node.article.field_tags.yml diff --git a/config/sync/field.field.node.article.field_topics.yml b/config/field.field.node.article.field_topics.yml similarity index 100% rename from config/sync/field.field.node.article.field_topics.yml rename to config/field.field.node.article.field_topics.yml diff --git a/config/sync/field.field.node.blog.body.yml b/config/field.field.node.blog.body.yml similarity index 100% rename from config/sync/field.field.node.blog.body.yml rename to config/field.field.node.blog.body.yml diff --git a/config/sync/field.field.node.blog.comment.yml b/config/field.field.node.blog.comment.yml similarity index 100% rename from config/sync/field.field.node.blog.comment.yml rename to config/field.field.node.blog.comment.yml diff --git a/config/sync/field.field.node.blog.field_authors.yml b/config/field.field.node.blog.field_authors.yml similarity index 100% rename from config/sync/field.field.node.blog.field_authors.yml rename to config/field.field.node.blog.field_authors.yml diff --git a/config/sync/field.field.node.blog.field_body_paragraph.yml b/config/field.field.node.blog.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.blog.field_body_paragraph.yml rename to config/field.field.node.blog.field_body_paragraph.yml diff --git a/config/sync/field.field.node.blog.field_image.yml b/config/field.field.node.blog.field_image.yml similarity index 100% rename from config/sync/field.field.node.blog.field_image.yml rename to config/field.field.node.blog.field_image.yml diff --git a/config/sync/field.field.node.blog.field_meta_tags.yml b/config/field.field.node.blog.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.blog.field_meta_tags.yml rename to config/field.field.node.blog.field_meta_tags.yml diff --git a/config/sync/field.field.node.blog.field_summary.yml b/config/field.field.node.blog.field_summary.yml similarity index 100% rename from config/sync/field.field.node.blog.field_summary.yml rename to config/field.field.node.blog.field_summary.yml diff --git a/config/sync/field.field.node.blog.field_tags.yml b/config/field.field.node.blog.field_tags.yml similarity index 100% rename from config/sync/field.field.node.blog.field_tags.yml rename to config/field.field.node.blog.field_tags.yml diff --git a/config/sync/field.field.node.blog.field_topics.yml b/config/field.field.node.blog.field_topics.yml similarity index 100% rename from config/sync/field.field.node.blog.field_topics.yml rename to config/field.field.node.blog.field_topics.yml diff --git a/config/sync/field.field.node.campaign.body.yml b/config/field.field.node.campaign.body.yml similarity index 100% rename from config/sync/field.field.node.campaign.body.yml rename to config/field.field.node.campaign.body.yml diff --git a/config/sync/field.field.node.campaign.field_body_paragraph.yml b/config/field.field.node.campaign.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.campaign.field_body_paragraph.yml rename to config/field.field.node.campaign.field_body_paragraph.yml diff --git a/config/sync/field.field.node.campaign.field_campaign_demands.yml b/config/field.field.node.campaign.field_campaign_demands.yml similarity index 100% rename from config/sync/field.field.node.campaign.field_campaign_demands.yml rename to config/field.field.node.campaign.field_campaign_demands.yml diff --git a/config/sync/field.field.node.campaign.field_campaign_updates.yml b/config/field.field.node.campaign.field_campaign_updates.yml similarity index 100% rename from config/sync/field.field.node.campaign.field_campaign_updates.yml rename to config/field.field.node.campaign.field_campaign_updates.yml diff --git a/config/sync/field.field.node.campaign.field_image.yml b/config/field.field.node.campaign.field_image.yml similarity index 100% rename from config/sync/field.field.node.campaign.field_image.yml rename to config/field.field.node.campaign.field_image.yml diff --git a/config/sync/field.field.node.campaign.field_meta_tags.yml b/config/field.field.node.campaign.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.campaign.field_meta_tags.yml rename to config/field.field.node.campaign.field_meta_tags.yml diff --git a/config/sync/field.field.node.campaign.field_summary.yml b/config/field.field.node.campaign.field_summary.yml similarity index 100% rename from config/sync/field.field.node.campaign.field_summary.yml rename to config/field.field.node.campaign.field_summary.yml diff --git a/config/sync/field.field.node.case_study.body.yml b/config/field.field.node.case_study.body.yml similarity index 100% rename from config/sync/field.field.node.case_study.body.yml rename to config/field.field.node.case_study.body.yml diff --git a/config/sync/field.field.node.case_study.field_body_paragraph.yml b/config/field.field.node.case_study.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_body_paragraph.yml rename to config/field.field.node.case_study.field_body_paragraph.yml diff --git a/config/sync/field.field.node.case_study.field_case_study_client.yml b/config/field.field.node.case_study.field_case_study_client.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_case_study_client.yml rename to config/field.field.node.case_study.field_case_study_client.yml diff --git a/config/sync/field.field.node.case_study.field_case_study_partners.yml b/config/field.field.node.case_study.field_case_study_partners.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_case_study_partners.yml rename to config/field.field.node.case_study.field_case_study_partners.yml diff --git a/config/sync/field.field.node.case_study.field_case_study_status.yml b/config/field.field.node.case_study.field_case_study_status.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_case_study_status.yml rename to config/field.field.node.case_study.field_case_study_status.yml diff --git a/config/sync/field.field.node.case_study.field_case_study_subtitle.yml b/config/field.field.node.case_study.field_case_study_subtitle.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_case_study_subtitle.yml rename to config/field.field.node.case_study.field_case_study_subtitle.yml diff --git a/config/sync/field.field.node.case_study.field_case_study_team.yml b/config/field.field.node.case_study.field_case_study_team.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_case_study_team.yml rename to config/field.field.node.case_study.field_case_study_team.yml diff --git a/config/sync/field.field.node.case_study.field_case_study_year.yml b/config/field.field.node.case_study.field_case_study_year.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_case_study_year.yml rename to config/field.field.node.case_study.field_case_study_year.yml diff --git a/config/sync/field.field.node.case_study.field_image.yml b/config/field.field.node.case_study.field_image.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_image.yml rename to config/field.field.node.case_study.field_image.yml diff --git a/config/sync/field.field.node.case_study.field_license.yml b/config/field.field.node.case_study.field_license.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_license.yml rename to config/field.field.node.case_study.field_license.yml diff --git a/config/sync/field.field.node.case_study.field_meta_tags.yml b/config/field.field.node.case_study.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_meta_tags.yml rename to config/field.field.node.case_study.field_meta_tags.yml diff --git a/config/sync/field.field.node.case_study.field_services.yml b/config/field.field.node.case_study.field_services.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_services.yml rename to config/field.field.node.case_study.field_services.yml diff --git a/config/sync/field.field.node.case_study.field_summary.yml b/config/field.field.node.case_study.field_summary.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_summary.yml rename to config/field.field.node.case_study.field_summary.yml diff --git a/config/sync/field.field.node.case_study.field_technologies.yml b/config/field.field.node.case_study.field_technologies.yml similarity index 100% rename from config/sync/field.field.node.case_study.field_technologies.yml rename to config/field.field.node.case_study.field_technologies.yml diff --git a/config/sync/field.field.node.event.body.yml b/config/field.field.node.event.body.yml similarity index 100% rename from config/sync/field.field.node.event.body.yml rename to config/field.field.node.event.body.yml diff --git a/config/sync/field.field.node.event.field_body_paragraph.yml b/config/field.field.node.event.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.event.field_body_paragraph.yml rename to config/field.field.node.event.field_body_paragraph.yml diff --git a/config/sync/field.field.node.event.field_event_date.yml b/config/field.field.node.event.field_event_date.yml similarity index 100% rename from config/sync/field.field.node.event.field_event_date.yml rename to config/field.field.node.event.field_event_date.yml diff --git a/config/sync/field.field.node.event.field_event_type.yml b/config/field.field.node.event.field_event_type.yml similarity index 100% rename from config/sync/field.field.node.event.field_event_type.yml rename to config/field.field.node.event.field_event_type.yml diff --git a/config/sync/field.field.node.event.field_image.yml b/config/field.field.node.event.field_image.yml similarity index 100% rename from config/sync/field.field.node.event.field_image.yml rename to config/field.field.node.event.field_image.yml diff --git a/config/sync/field.field.node.event.field_meta_tags.yml b/config/field.field.node.event.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.event.field_meta_tags.yml rename to config/field.field.node.event.field_meta_tags.yml diff --git a/config/sync/field.field.node.event.field_summary.yml b/config/field.field.node.event.field_summary.yml similarity index 100% rename from config/sync/field.field.node.event.field_summary.yml rename to config/field.field.node.event.field_summary.yml diff --git a/config/sync/field.field.node.event.field_tags.yml b/config/field.field.node.event.field_tags.yml similarity index 100% rename from config/sync/field.field.node.event.field_tags.yml rename to config/field.field.node.event.field_tags.yml diff --git a/config/sync/field.field.node.event.field_topics.yml b/config/field.field.node.event.field_topics.yml similarity index 100% rename from config/sync/field.field.node.event.field_topics.yml rename to config/field.field.node.event.field_topics.yml diff --git a/config/sync/field.field.node.landing_page.field_body_paragraph.yml b/config/field.field.node.landing_page.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.landing_page.field_body_paragraph.yml rename to config/field.field.node.landing_page.field_body_paragraph.yml diff --git a/config/sync/field.field.node.landing_page.field_image.yml b/config/field.field.node.landing_page.field_image.yml similarity index 100% rename from config/sync/field.field.node.landing_page.field_image.yml rename to config/field.field.node.landing_page.field_image.yml diff --git a/config/sync/field.field.node.landing_page.field_meta_tags.yml b/config/field.field.node.landing_page.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.landing_page.field_meta_tags.yml rename to config/field.field.node.landing_page.field_meta_tags.yml diff --git a/config/sync/field.field.node.page.body.yml b/config/field.field.node.page.body.yml similarity index 100% rename from config/sync/field.field.node.page.body.yml rename to config/field.field.node.page.body.yml diff --git a/config/sync/field.field.node.page.field_body_paragraph.yml b/config/field.field.node.page.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.page.field_body_paragraph.yml rename to config/field.field.node.page.field_body_paragraph.yml diff --git a/config/sync/field.field.node.page.field_meta_tags.yml b/config/field.field.node.page.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.page.field_meta_tags.yml rename to config/field.field.node.page.field_meta_tags.yml diff --git a/config/sync/field.field.node.page.field_storyline.yml b/config/field.field.node.page.field_storyline.yml similarity index 100% rename from config/sync/field.field.node.page.field_storyline.yml rename to config/field.field.node.page.field_storyline.yml diff --git a/config/sync/field.field.node.page.field_summary.yml b/config/field.field.node.page.field_summary.yml similarity index 100% rename from config/sync/field.field.node.page.field_summary.yml rename to config/field.field.node.page.field_summary.yml diff --git a/config/sync/field.field.node.people.field_body_paragraph.yml b/config/field.field.node.people.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.people.field_body_paragraph.yml rename to config/field.field.node.people.field_body_paragraph.yml diff --git a/config/sync/field.field.node.people.field_image.yml b/config/field.field.node.people.field_image.yml similarity index 100% rename from config/sync/field.field.node.people.field_image.yml rename to config/field.field.node.people.field_image.yml diff --git a/config/sync/field.field.node.people.field_meta_tags.yml b/config/field.field.node.people.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.people.field_meta_tags.yml rename to config/field.field.node.people.field_meta_tags.yml diff --git a/config/sync/field.field.node.people.field_people_email.yml b/config/field.field.node.people.field_people_email.yml similarity index 100% rename from config/sync/field.field.node.people.field_people_email.yml rename to config/field.field.node.people.field_people_email.yml diff --git a/config/sync/field.field.node.people.field_people_position.yml b/config/field.field.node.people.field_people_position.yml similarity index 100% rename from config/sync/field.field.node.people.field_people_position.yml rename to config/field.field.node.people.field_people_position.yml diff --git a/config/sync/field.field.node.people.field_people_public_gpg_key.yml b/config/field.field.node.people.field_people_public_gpg_key.yml similarity index 100% rename from config/sync/field.field.node.people.field_people_public_gpg_key.yml rename to config/field.field.node.people.field_people_public_gpg_key.yml diff --git a/config/sync/field.field.node.people.field_people_social_media.yml b/config/field.field.node.people.field_people_social_media.yml similarity index 100% rename from config/sync/field.field.node.people.field_people_social_media.yml rename to config/field.field.node.people.field_people_social_media.yml diff --git a/config/sync/field.field.node.people.field_people_type.yml b/config/field.field.node.people.field_people_type.yml similarity index 100% rename from config/sync/field.field.node.people.field_people_type.yml rename to config/field.field.node.people.field_people_type.yml diff --git a/config/sync/field.field.node.people.field_summary.yml b/config/field.field.node.people.field_summary.yml similarity index 100% rename from config/sync/field.field.node.people.field_summary.yml rename to config/field.field.node.people.field_summary.yml diff --git a/config/sync/field.field.node.resource.body.yml b/config/field.field.node.resource.body.yml similarity index 100% rename from config/sync/field.field.node.resource.body.yml rename to config/field.field.node.resource.body.yml diff --git a/config/sync/field.field.node.resource.field_body_paragraph.yml b/config/field.field.node.resource.field_body_paragraph.yml similarity index 100% rename from config/sync/field.field.node.resource.field_body_paragraph.yml rename to config/field.field.node.resource.field_body_paragraph.yml diff --git a/config/sync/field.field.node.resource.field_image.yml b/config/field.field.node.resource.field_image.yml similarity index 100% rename from config/sync/field.field.node.resource.field_image.yml rename to config/field.field.node.resource.field_image.yml diff --git a/config/sync/field.field.node.resource.field_meta_tags.yml b/config/field.field.node.resource.field_meta_tags.yml similarity index 100% rename from config/sync/field.field.node.resource.field_meta_tags.yml rename to config/field.field.node.resource.field_meta_tags.yml diff --git a/config/sync/field.field.node.resource.field_resource_file.yml b/config/field.field.node.resource.field_resource_file.yml similarity index 100% rename from config/sync/field.field.node.resource.field_resource_file.yml rename to config/field.field.node.resource.field_resource_file.yml diff --git a/config/sync/field.field.node.resource.field_resource_link.yml b/config/field.field.node.resource.field_resource_link.yml similarity index 100% rename from config/sync/field.field.node.resource.field_resource_link.yml rename to config/field.field.node.resource.field_resource_link.yml diff --git a/config/sync/field.field.node.resource.field_resource_type.yml b/config/field.field.node.resource.field_resource_type.yml similarity index 100% rename from config/sync/field.field.node.resource.field_resource_type.yml rename to config/field.field.node.resource.field_resource_type.yml diff --git a/config/sync/field.field.node.resource.field_resource_video.yml b/config/field.field.node.resource.field_resource_video.yml similarity index 100% rename from config/sync/field.field.node.resource.field_resource_video.yml rename to config/field.field.node.resource.field_resource_video.yml diff --git a/config/sync/field.field.node.resource.field_summary.yml b/config/field.field.node.resource.field_summary.yml similarity index 100% rename from config/sync/field.field.node.resource.field_summary.yml rename to config/field.field.node.resource.field_summary.yml diff --git a/config/sync/field.field.node.resource.field_tags.yml b/config/field.field.node.resource.field_tags.yml similarity index 100% rename from config/sync/field.field.node.resource.field_tags.yml rename to config/field.field.node.resource.field_tags.yml diff --git a/config/sync/field.field.node.resource.field_topics.yml b/config/field.field.node.resource.field_topics.yml similarity index 100% rename from config/sync/field.field.node.resource.field_topics.yml rename to config/field.field.node.resource.field_topics.yml diff --git a/config/sync/field.field.paragraph.content_reference.field_content_reference.yml b/config/field.field.paragraph.content_reference.field_content_reference.yml similarity index 100% rename from config/sync/field.field.paragraph.content_reference.field_content_reference.yml rename to config/field.field.paragraph.content_reference.field_content_reference.yml diff --git a/config/sync/field.field.paragraph.embedded_content.field_content_reference.yml b/config/field.field.paragraph.embedded_content.field_content_reference.yml similarity index 100% rename from config/sync/field.field.paragraph.embedded_content.field_content_reference.yml rename to config/field.field.paragraph.embedded_content.field_content_reference.yml diff --git a/config/sync/field.field.paragraph.faq.field_faq.yml b/config/field.field.paragraph.faq.field_faq.yml similarity index 100% rename from config/sync/field.field.paragraph.faq.field_faq.yml rename to config/field.field.paragraph.faq.field_faq.yml diff --git a/config/sync/field.field.paragraph.file.field_file.yml b/config/field.field.paragraph.file.field_file.yml similarity index 100% rename from config/sync/field.field.paragraph.file.field_file.yml rename to config/field.field.paragraph.file.field_file.yml diff --git a/config/sync/field.field.paragraph.image.field_image.yml b/config/field.field.paragraph.image.field_image.yml similarity index 100% rename from config/sync/field.field.paragraph.image.field_image.yml rename to config/field.field.paragraph.image.field_image.yml diff --git a/config/sync/field.field.paragraph.quotation_with_image.field_image.yml b/config/field.field.paragraph.quotation_with_image.field_image.yml similarity index 100% rename from config/sync/field.field.paragraph.quotation_with_image.field_image.yml rename to config/field.field.paragraph.quotation_with_image.field_image.yml diff --git a/config/sync/field.field.paragraph.quotation_with_image.field_quotation.yml b/config/field.field.paragraph.quotation_with_image.field_quotation.yml similarity index 100% rename from config/sync/field.field.paragraph.quotation_with_image.field_quotation.yml rename to config/field.field.paragraph.quotation_with_image.field_quotation.yml diff --git a/config/sync/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml b/config/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml similarity index 100% rename from config/sync/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml rename to config/field.field.paragraph.quotation_with_image.field_style_escape_flow.yml diff --git a/config/sync/field.field.paragraph.slide.field_image.yml b/config/field.field.paragraph.slide.field_image.yml similarity index 100% rename from config/sync/field.field.paragraph.slide.field_image.yml rename to config/field.field.paragraph.slide.field_image.yml diff --git a/config/sync/field.field.paragraph.slide.field_link.yml b/config/field.field.paragraph.slide.field_link.yml similarity index 100% rename from config/sync/field.field.paragraph.slide.field_link.yml rename to config/field.field.paragraph.slide.field_link.yml diff --git a/config/sync/field.field.paragraph.slide.field_text.yml b/config/field.field.paragraph.slide.field_text.yml similarity index 100% rename from config/sync/field.field.paragraph.slide.field_text.yml rename to config/field.field.paragraph.slide.field_text.yml diff --git a/config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml b/config/field.field.paragraph.storyline_header.field_storyline_header.yml similarity index 100% rename from config/sync/field.field.paragraph.storyline_header.field_storyline_header.yml rename to config/field.field.paragraph.storyline_header.field_storyline_header.yml diff --git a/config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml b/config/field.field.paragraph.storyline_item.field_storyline_heading.yml similarity index 100% rename from config/sync/field.field.paragraph.storyline_item.field_storyline_heading.yml rename to config/field.field.paragraph.storyline_item.field_storyline_heading.yml diff --git a/config/sync/field.field.paragraph.storyline_item.field_text.yml b/config/field.field.paragraph.storyline_item.field_text.yml similarity index 100% rename from config/sync/field.field.paragraph.storyline_item.field_text.yml rename to config/field.field.paragraph.storyline_item.field_text.yml diff --git a/config/sync/field.field.paragraph.text.field_style_classes.yml b/config/field.field.paragraph.text.field_style_classes.yml similarity index 100% rename from config/sync/field.field.paragraph.text.field_style_classes.yml rename to config/field.field.paragraph.text.field_style_classes.yml diff --git a/config/sync/field.field.paragraph.text.field_style_escape_flow.yml b/config/field.field.paragraph.text.field_style_escape_flow.yml similarity index 100% rename from config/sync/field.field.paragraph.text.field_style_escape_flow.yml rename to config/field.field.paragraph.text.field_style_escape_flow.yml diff --git a/config/sync/field.field.paragraph.text.field_text.yml b/config/field.field.paragraph.text.field_text.yml similarity index 100% rename from config/sync/field.field.paragraph.text.field_text.yml rename to config/field.field.paragraph.text.field_text.yml diff --git a/config/sync/field.field.paragraph.title.field_image.yml b/config/field.field.paragraph.title.field_image.yml similarity index 100% rename from config/sync/field.field.paragraph.title.field_image.yml rename to config/field.field.paragraph.title.field_image.yml diff --git a/config/sync/field.field.paragraph.title.field_style_classes.yml b/config/field.field.paragraph.title.field_style_classes.yml similarity index 100% rename from config/sync/field.field.paragraph.title.field_style_classes.yml rename to config/field.field.paragraph.title.field_style_classes.yml diff --git a/config/sync/field.field.paragraph.title.field_style_color.yml b/config/field.field.paragraph.title.field_style_color.yml similarity index 100% rename from config/sync/field.field.paragraph.title.field_style_color.yml rename to config/field.field.paragraph.title.field_style_color.yml diff --git a/config/sync/field.field.paragraph.title.field_style_titlebar.yml b/config/field.field.paragraph.title.field_style_titlebar.yml similarity index 100% rename from config/sync/field.field.paragraph.title.field_style_titlebar.yml rename to config/field.field.paragraph.title.field_style_titlebar.yml diff --git a/config/sync/field.field.paragraph.title.field_subtitle.yml b/config/field.field.paragraph.title.field_subtitle.yml similarity index 100% rename from config/sync/field.field.paragraph.title.field_subtitle.yml rename to config/field.field.paragraph.title.field_subtitle.yml diff --git a/config/sync/field.field.paragraph.title.field_title.yml b/config/field.field.paragraph.title.field_title.yml similarity index 100% rename from config/sync/field.field.paragraph.title.field_title.yml rename to config/field.field.paragraph.title.field_title.yml diff --git a/config/sync/field.field.paragraph.update.field_text.yml b/config/field.field.paragraph.update.field_text.yml similarity index 100% rename from config/sync/field.field.paragraph.update.field_text.yml rename to config/field.field.paragraph.update.field_text.yml diff --git a/config/sync/field.field.paragraph.update.field_update_date.yml b/config/field.field.paragraph.update.field_update_date.yml similarity index 100% rename from config/sync/field.field.paragraph.update.field_update_date.yml rename to config/field.field.paragraph.update.field_update_date.yml diff --git a/config/sync/field.field.paragraph.video.field_video_embed.yml b/config/field.field.paragraph.video.field_video_embed.yml similarity index 100% rename from config/sync/field.field.paragraph.video.field_video_embed.yml rename to config/field.field.paragraph.video.field_video_embed.yml diff --git a/config/sync/field.field.paragraph.view.field_style_escape_flow.yml b/config/field.field.paragraph.view.field_style_escape_flow.yml similarity index 100% rename from config/sync/field.field.paragraph.view.field_style_escape_flow.yml rename to config/field.field.paragraph.view.field_style_escape_flow.yml diff --git a/config/sync/field.field.paragraph.view.field_view_reference.yml b/config/field.field.paragraph.view.field_view_reference.yml similarity index 100% rename from config/sync/field.field.paragraph.view.field_view_reference.yml rename to config/field.field.paragraph.view.field_view_reference.yml diff --git a/config/sync/field.field.paragraph.webform.field_webform.yml b/config/field.field.paragraph.webform.field_webform.yml similarity index 100% rename from config/sync/field.field.paragraph.webform.field_webform.yml rename to config/field.field.paragraph.webform.field_webform.yml diff --git a/config/sync/field.field.user.user.user_picture.yml b/config/field.field.user.user.user_picture.yml similarity index 100% rename from config/sync/field.field.user.user.user_picture.yml rename to config/field.field.user.user.user_picture.yml diff --git a/config/sync/field.settings.yml b/config/field.settings.yml similarity index 100% rename from config/sync/field.settings.yml rename to config/field.settings.yml diff --git a/config/sync/field.storage.block_content.body.yml b/config/field.storage.block_content.body.yml similarity index 100% rename from config/sync/field.storage.block_content.body.yml rename to config/field.storage.block_content.body.yml diff --git a/config/sync/field.storage.block_content.field_content_reference.yml b/config/field.storage.block_content.field_content_reference.yml similarity index 100% rename from config/sync/field.storage.block_content.field_content_reference.yml rename to config/field.storage.block_content.field_content_reference.yml diff --git a/config/sync/field.storage.block_content.field_slide.yml b/config/field.storage.block_content.field_slide.yml similarity index 100% rename from config/sync/field.storage.block_content.field_slide.yml rename to config/field.storage.block_content.field_slide.yml diff --git a/config/sync/field.storage.comment.comment_body.yml b/config/field.storage.comment.comment_body.yml similarity index 100% rename from config/sync/field.storage.comment.comment_body.yml rename to config/field.storage.comment.comment_body.yml diff --git a/config/sync/field.storage.comment.indieweb_webmention.yml b/config/field.storage.comment.indieweb_webmention.yml similarity index 100% rename from config/sync/field.storage.comment.indieweb_webmention.yml rename to config/field.storage.comment.indieweb_webmention.yml diff --git a/config/sync/field.storage.group.field_group_address.yml b/config/field.storage.group.field_group_address.yml similarity index 100% rename from config/sync/field.storage.group.field_group_address.yml rename to config/field.storage.group.field_group_address.yml diff --git a/config/sync/field.storage.group.field_group_description.yml b/config/field.storage.group.field_group_description.yml similarity index 100% rename from config/sync/field.storage.group.field_group_description.yml rename to config/field.storage.group.field_group_description.yml diff --git a/config/sync/field.storage.group.field_group_email.yml b/config/field.storage.group.field_group_email.yml similarity index 100% rename from config/sync/field.storage.group.field_group_email.yml rename to config/field.storage.group.field_group_email.yml diff --git a/config/sync/field.storage.group.field_group_image.yml b/config/field.storage.group.field_group_image.yml similarity index 100% rename from config/sync/field.storage.group.field_group_image.yml rename to config/field.storage.group.field_group_image.yml diff --git a/config/sync/field.storage.group.field_group_phone.yml b/config/field.storage.group.field_group_phone.yml similarity index 100% rename from config/sync/field.storage.group.field_group_phone.yml rename to config/field.storage.group.field_group_phone.yml diff --git a/config/sync/field.storage.group.field_group_summary.yml b/config/field.storage.group.field_group_summary.yml similarity index 100% rename from config/sync/field.storage.group.field_group_summary.yml rename to config/field.storage.group.field_group_summary.yml diff --git a/config/sync/field.storage.group.field_group_type.yml b/config/field.storage.group.field_group_type.yml similarity index 100% rename from config/sync/field.storage.group.field_group_type.yml rename to config/field.storage.group.field_group_type.yml diff --git a/config/sync/field.storage.group.field_group_website.yml b/config/field.storage.group.field_group_website.yml similarity index 100% rename from config/sync/field.storage.group.field_group_website.yml rename to config/field.storage.group.field_group_website.yml diff --git a/config/sync/field.storage.group_content.group_roles.yml b/config/field.storage.group_content.group_roles.yml similarity index 100% rename from config/sync/field.storage.group_content.group_roles.yml rename to config/field.storage.group_content.group_roles.yml diff --git a/config/sync/field.storage.node.body.yml b/config/field.storage.node.body.yml similarity index 100% rename from config/sync/field.storage.node.body.yml rename to config/field.storage.node.body.yml diff --git a/config/sync/field.storage.node.comment.yml b/config/field.storage.node.comment.yml similarity index 100% rename from config/sync/field.storage.node.comment.yml rename to config/field.storage.node.comment.yml diff --git a/config/sync/field.storage.node.field_action_end_date.yml b/config/field.storage.node.field_action_end_date.yml similarity index 100% rename from config/sync/field.storage.node.field_action_end_date.yml rename to config/field.storage.node.field_action_end_date.yml diff --git a/config/sync/field.storage.node.field_action_link.yml b/config/field.storage.node.field_action_link.yml similarity index 100% rename from config/sync/field.storage.node.field_action_link.yml rename to config/field.storage.node.field_action_link.yml diff --git a/config/sync/field.storage.node.field_action_type.yml b/config/field.storage.node.field_action_type.yml similarity index 100% rename from config/sync/field.storage.node.field_action_type.yml rename to config/field.storage.node.field_action_type.yml diff --git a/config/sync/field.storage.node.field_article_type.yml b/config/field.storage.node.field_article_type.yml similarity index 100% rename from config/sync/field.storage.node.field_article_type.yml rename to config/field.storage.node.field_article_type.yml diff --git a/config/sync/field.storage.node.field_authors.yml b/config/field.storage.node.field_authors.yml similarity index 100% rename from config/sync/field.storage.node.field_authors.yml rename to config/field.storage.node.field_authors.yml diff --git a/config/sync/field.storage.node.field_body_paragraph.yml b/config/field.storage.node.field_body_paragraph.yml similarity index 100% rename from config/sync/field.storage.node.field_body_paragraph.yml rename to config/field.storage.node.field_body_paragraph.yml diff --git a/config/sync/field.storage.node.field_campaign_demands.yml b/config/field.storage.node.field_campaign_demands.yml similarity index 100% rename from config/sync/field.storage.node.field_campaign_demands.yml rename to config/field.storage.node.field_campaign_demands.yml diff --git a/config/sync/field.storage.node.field_campaign_updates.yml b/config/field.storage.node.field_campaign_updates.yml similarity index 100% rename from config/sync/field.storage.node.field_campaign_updates.yml rename to config/field.storage.node.field_campaign_updates.yml diff --git a/config/sync/field.storage.node.field_case_study_client.yml b/config/field.storage.node.field_case_study_client.yml similarity index 100% rename from config/sync/field.storage.node.field_case_study_client.yml rename to config/field.storage.node.field_case_study_client.yml diff --git a/config/sync/field.storage.node.field_case_study_partners.yml b/config/field.storage.node.field_case_study_partners.yml similarity index 100% rename from config/sync/field.storage.node.field_case_study_partners.yml rename to config/field.storage.node.field_case_study_partners.yml diff --git a/config/sync/field.storage.node.field_case_study_status.yml b/config/field.storage.node.field_case_study_status.yml similarity index 100% rename from config/sync/field.storage.node.field_case_study_status.yml rename to config/field.storage.node.field_case_study_status.yml diff --git a/config/sync/field.storage.node.field_case_study_subtitle.yml b/config/field.storage.node.field_case_study_subtitle.yml similarity index 100% rename from config/sync/field.storage.node.field_case_study_subtitle.yml rename to config/field.storage.node.field_case_study_subtitle.yml diff --git a/config/sync/field.storage.node.field_case_study_team.yml b/config/field.storage.node.field_case_study_team.yml similarity index 100% rename from config/sync/field.storage.node.field_case_study_team.yml rename to config/field.storage.node.field_case_study_team.yml diff --git a/config/sync/field.storage.node.field_case_study_year.yml b/config/field.storage.node.field_case_study_year.yml similarity index 100% rename from config/sync/field.storage.node.field_case_study_year.yml rename to config/field.storage.node.field_case_study_year.yml diff --git a/config/sync/field.storage.node.field_event_date.yml b/config/field.storage.node.field_event_date.yml similarity index 100% rename from config/sync/field.storage.node.field_event_date.yml rename to config/field.storage.node.field_event_date.yml diff --git a/config/sync/field.storage.node.field_event_type.yml b/config/field.storage.node.field_event_type.yml similarity index 100% rename from config/sync/field.storage.node.field_event_type.yml rename to config/field.storage.node.field_event_type.yml diff --git a/config/sync/field.storage.node.field_image.yml b/config/field.storage.node.field_image.yml similarity index 100% rename from config/sync/field.storage.node.field_image.yml rename to config/field.storage.node.field_image.yml diff --git a/config/sync/field.storage.node.field_license.yml b/config/field.storage.node.field_license.yml similarity index 100% rename from config/sync/field.storage.node.field_license.yml rename to config/field.storage.node.field_license.yml diff --git a/config/sync/field.storage.node.field_meta_tags.yml b/config/field.storage.node.field_meta_tags.yml similarity index 100% rename from config/sync/field.storage.node.field_meta_tags.yml rename to config/field.storage.node.field_meta_tags.yml diff --git a/config/sync/field.storage.node.field_paragraph.yml b/config/field.storage.node.field_paragraph.yml similarity index 100% rename from config/sync/field.storage.node.field_paragraph.yml rename to config/field.storage.node.field_paragraph.yml diff --git a/config/sync/field.storage.node.field_people_email.yml b/config/field.storage.node.field_people_email.yml similarity index 100% rename from config/sync/field.storage.node.field_people_email.yml rename to config/field.storage.node.field_people_email.yml diff --git a/config/sync/field.storage.node.field_people_position.yml b/config/field.storage.node.field_people_position.yml similarity index 100% rename from config/sync/field.storage.node.field_people_position.yml rename to config/field.storage.node.field_people_position.yml diff --git a/config/sync/field.storage.node.field_people_public_gpg_key.yml b/config/field.storage.node.field_people_public_gpg_key.yml similarity index 100% rename from config/sync/field.storage.node.field_people_public_gpg_key.yml rename to config/field.storage.node.field_people_public_gpg_key.yml diff --git a/config/sync/field.storage.node.field_people_social_media.yml b/config/field.storage.node.field_people_social_media.yml similarity index 100% rename from config/sync/field.storage.node.field_people_social_media.yml rename to config/field.storage.node.field_people_social_media.yml diff --git a/config/sync/field.storage.node.field_people_type.yml b/config/field.storage.node.field_people_type.yml similarity index 100% rename from config/sync/field.storage.node.field_people_type.yml rename to config/field.storage.node.field_people_type.yml diff --git a/config/sync/field.storage.node.field_resource_file.yml b/config/field.storage.node.field_resource_file.yml similarity index 100% rename from config/sync/field.storage.node.field_resource_file.yml rename to config/field.storage.node.field_resource_file.yml diff --git a/config/sync/field.storage.node.field_resource_link.yml b/config/field.storage.node.field_resource_link.yml similarity index 100% rename from config/sync/field.storage.node.field_resource_link.yml rename to config/field.storage.node.field_resource_link.yml diff --git a/config/sync/field.storage.node.field_resource_type.yml b/config/field.storage.node.field_resource_type.yml similarity index 100% rename from config/sync/field.storage.node.field_resource_type.yml rename to config/field.storage.node.field_resource_type.yml diff --git a/config/sync/field.storage.node.field_resource_video.yml b/config/field.storage.node.field_resource_video.yml similarity index 100% rename from config/sync/field.storage.node.field_resource_video.yml rename to config/field.storage.node.field_resource_video.yml diff --git a/config/sync/field.storage.node.field_services.yml b/config/field.storage.node.field_services.yml similarity index 100% rename from config/sync/field.storage.node.field_services.yml rename to config/field.storage.node.field_services.yml diff --git a/config/sync/field.storage.node.field_storyline.yml b/config/field.storage.node.field_storyline.yml similarity index 100% rename from config/sync/field.storage.node.field_storyline.yml rename to config/field.storage.node.field_storyline.yml diff --git a/config/sync/field.storage.node.field_summary.yml b/config/field.storage.node.field_summary.yml similarity index 100% rename from config/sync/field.storage.node.field_summary.yml rename to config/field.storage.node.field_summary.yml diff --git a/config/sync/field.storage.node.field_tags.yml b/config/field.storage.node.field_tags.yml similarity index 100% rename from config/sync/field.storage.node.field_tags.yml rename to config/field.storage.node.field_tags.yml diff --git a/config/sync/field.storage.node.field_technologies.yml b/config/field.storage.node.field_technologies.yml similarity index 100% rename from config/sync/field.storage.node.field_technologies.yml rename to config/field.storage.node.field_technologies.yml diff --git a/config/sync/field.storage.node.field_topics.yml b/config/field.storage.node.field_topics.yml similarity index 100% rename from config/sync/field.storage.node.field_topics.yml rename to config/field.storage.node.field_topics.yml diff --git a/config/sync/field.storage.paragraph.field_content_reference.yml b/config/field.storage.paragraph.field_content_reference.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_content_reference.yml rename to config/field.storage.paragraph.field_content_reference.yml diff --git a/config/sync/field.storage.paragraph.field_faq.yml b/config/field.storage.paragraph.field_faq.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_faq.yml rename to config/field.storage.paragraph.field_faq.yml diff --git a/config/sync/field.storage.paragraph.field_file.yml b/config/field.storage.paragraph.field_file.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_file.yml rename to config/field.storage.paragraph.field_file.yml diff --git a/config/sync/field.storage.paragraph.field_image.yml b/config/field.storage.paragraph.field_image.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_image.yml rename to config/field.storage.paragraph.field_image.yml diff --git a/config/sync/field.storage.paragraph.field_link.yml b/config/field.storage.paragraph.field_link.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_link.yml rename to config/field.storage.paragraph.field_link.yml diff --git a/config/sync/field.storage.paragraph.field_quotation.yml b/config/field.storage.paragraph.field_quotation.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_quotation.yml rename to config/field.storage.paragraph.field_quotation.yml diff --git a/config/sync/field.storage.paragraph.field_storyline_header.yml b/config/field.storage.paragraph.field_storyline_header.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_storyline_header.yml rename to config/field.storage.paragraph.field_storyline_header.yml diff --git a/config/sync/field.storage.paragraph.field_storyline_heading.yml b/config/field.storage.paragraph.field_storyline_heading.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_storyline_heading.yml rename to config/field.storage.paragraph.field_storyline_heading.yml diff --git a/config/sync/field.storage.paragraph.field_style_classes.yml b/config/field.storage.paragraph.field_style_classes.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_style_classes.yml rename to config/field.storage.paragraph.field_style_classes.yml diff --git a/config/sync/field.storage.paragraph.field_style_color.yml b/config/field.storage.paragraph.field_style_color.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_style_color.yml rename to config/field.storage.paragraph.field_style_color.yml diff --git a/config/sync/field.storage.paragraph.field_style_escape_flow.yml b/config/field.storage.paragraph.field_style_escape_flow.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_style_escape_flow.yml rename to config/field.storage.paragraph.field_style_escape_flow.yml diff --git a/config/sync/field.storage.paragraph.field_style_titlebar.yml b/config/field.storage.paragraph.field_style_titlebar.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_style_titlebar.yml rename to config/field.storage.paragraph.field_style_titlebar.yml diff --git a/config/sync/field.storage.paragraph.field_subtitle.yml b/config/field.storage.paragraph.field_subtitle.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_subtitle.yml rename to config/field.storage.paragraph.field_subtitle.yml diff --git a/config/sync/field.storage.paragraph.field_text.yml b/config/field.storage.paragraph.field_text.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_text.yml rename to config/field.storage.paragraph.field_text.yml diff --git a/config/sync/field.storage.paragraph.field_title.yml b/config/field.storage.paragraph.field_title.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_title.yml rename to config/field.storage.paragraph.field_title.yml diff --git a/config/sync/field.storage.paragraph.field_update_date.yml b/config/field.storage.paragraph.field_update_date.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_update_date.yml rename to config/field.storage.paragraph.field_update_date.yml diff --git a/config/sync/field.storage.paragraph.field_video_embed.yml b/config/field.storage.paragraph.field_video_embed.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_video_embed.yml rename to config/field.storage.paragraph.field_video_embed.yml diff --git a/config/sync/field.storage.paragraph.field_view_reference.yml b/config/field.storage.paragraph.field_view_reference.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_view_reference.yml rename to config/field.storage.paragraph.field_view_reference.yml diff --git a/config/sync/field.storage.paragraph.field_webform.yml b/config/field.storage.paragraph.field_webform.yml similarity index 100% rename from config/sync/field.storage.paragraph.field_webform.yml rename to config/field.storage.paragraph.field_webform.yml diff --git a/config/sync/field.storage.user.user_picture.yml b/config/field.storage.user.user_picture.yml similarity index 100% rename from config/sync/field.storage.user.user_picture.yml rename to config/field.storage.user.user_picture.yml diff --git a/config/sync/field_ui.settings.yml b/config/field_ui.settings.yml similarity index 100% rename from config/sync/field_ui.settings.yml rename to config/field_ui.settings.yml diff --git a/config/sync/file.settings.yml b/config/file.settings.yml similarity index 100% rename from config/sync/file.settings.yml rename to config/file.settings.yml diff --git a/config/sync/filter.format.basic_html.yml b/config/filter.format.basic_html.yml similarity index 100% rename from config/sync/filter.format.basic_html.yml rename to config/filter.format.basic_html.yml diff --git a/config/sync/filter.format.full_html.yml b/config/filter.format.full_html.yml similarity index 100% rename from config/sync/filter.format.full_html.yml rename to config/filter.format.full_html.yml diff --git a/config/sync/filter.format.markdown.yml b/config/filter.format.markdown.yml similarity index 100% rename from config/sync/filter.format.markdown.yml rename to config/filter.format.markdown.yml diff --git a/config/sync/filter.format.minimalhtml.yml b/config/filter.format.minimalhtml.yml similarity index 100% rename from config/sync/filter.format.minimalhtml.yml rename to config/filter.format.minimalhtml.yml diff --git a/config/sync/filter.format.minimalhtmltitle.yml b/config/filter.format.minimalhtmltitle.yml similarity index 100% rename from config/sync/filter.format.minimalhtmltitle.yml rename to config/filter.format.minimalhtmltitle.yml diff --git a/config/sync/filter.format.plain_text.yml b/config/filter.format.plain_text.yml similarity index 100% rename from config/sync/filter.format.plain_text.yml rename to config/filter.format.plain_text.yml diff --git a/config/sync/filter.format.restricted_html.yml b/config/filter.format.restricted_html.yml similarity index 100% rename from config/sync/filter.format.restricted_html.yml rename to config/filter.format.restricted_html.yml diff --git a/config/sync/filter.settings.yml b/config/filter.settings.yml similarity index 100% rename from config/sync/filter.settings.yml rename to config/filter.settings.yml diff --git a/config/sync/focal_point.settings.yml b/config/focal_point.settings.yml similarity index 100% rename from config/sync/focal_point.settings.yml rename to config/focal_point.settings.yml diff --git a/config/sync/google_analytics.settings.yml b/config/google_analytics.settings.yml similarity index 100% rename from config/sync/google_analytics.settings.yml rename to config/google_analytics.settings.yml diff --git a/config/sync/group.content_type.group-group_membership.yml b/config/group.content_type.group-group_membership.yml similarity index 100% rename from config/sync/group.content_type.group-group_membership.yml rename to config/group.content_type.group-group_membership.yml diff --git a/config/sync/group.role.group-0b0baeca9.yml b/config/group.role.group-0b0baeca9.yml similarity index 100% rename from config/sync/group.role.group-0b0baeca9.yml rename to config/group.role.group-0b0baeca9.yml diff --git a/config/sync/group.role.group-1ac17d355.yml b/config/group.role.group-1ac17d355.yml similarity index 100% rename from config/sync/group.role.group-1ac17d355.yml rename to config/group.role.group-1ac17d355.yml diff --git a/config/sync/group.role.group-2d8610827.yml b/config/group.role.group-2d8610827.yml similarity index 100% rename from config/sync/group.role.group-2d8610827.yml rename to config/group.role.group-2d8610827.yml diff --git a/config/sync/group.role.group-443ed8e03.yml b/config/group.role.group-443ed8e03.yml similarity index 100% rename from config/sync/group.role.group-443ed8e03.yml rename to config/group.role.group-443ed8e03.yml diff --git a/config/sync/group.role.group-5165abfe1.yml b/config/group.role.group-5165abfe1.yml similarity index 100% rename from config/sync/group.role.group-5165abfe1.yml rename to config/group.role.group-5165abfe1.yml diff --git a/config/sync/group.role.group-a416e6833.yml b/config/group.role.group-a416e6833.yml similarity index 100% rename from config/sync/group.role.group-a416e6833.yml rename to config/group.role.group-a416e6833.yml diff --git a/config/sync/group.role.group-anonymous.yml b/config/group.role.group-anonymous.yml similarity index 100% rename from config/sync/group.role.group-anonymous.yml rename to config/group.role.group-anonymous.yml diff --git a/config/sync/group.role.group-ec70061de.yml b/config/group.role.group-ec70061de.yml similarity index 100% rename from config/sync/group.role.group-ec70061de.yml rename to config/group.role.group-ec70061de.yml diff --git a/config/sync/group.role.group-member.yml b/config/group.role.group-member.yml similarity index 100% rename from config/sync/group.role.group-member.yml rename to config/group.role.group-member.yml diff --git a/config/sync/group.role.group-outsider.yml b/config/group.role.group-outsider.yml similarity index 100% rename from config/sync/group.role.group-outsider.yml rename to config/group.role.group-outsider.yml diff --git a/config/sync/group.settings.yml b/config/group.settings.yml similarity index 100% rename from config/sync/group.settings.yml rename to config/group.settings.yml diff --git a/config/sync/group.type.group.yml b/config/group.type.group.yml similarity index 100% rename from config/sync/group.type.group.yml rename to config/group.type.group.yml diff --git a/config/sync/hal.settings.yml b/config/hal.settings.yml similarity index 100% rename from config/sync/hal.settings.yml rename to config/hal.settings.yml diff --git a/config/sync/honeypot.settings.yml b/config/honeypot.settings.yml similarity index 100% rename from config/sync/honeypot.settings.yml rename to config/honeypot.settings.yml diff --git a/config/sync/image.settings.yml b/config/image.settings.yml similarity index 100% rename from config/sync/image.settings.yml rename to config/image.settings.yml diff --git a/config/sync/image.style.landscape.yml b/config/image.style.landscape.yml similarity index 100% rename from config/sync/image.style.landscape.yml rename to config/image.style.landscape.yml diff --git a/config/sync/image.style.large.yml b/config/image.style.large.yml similarity index 100% rename from config/sync/image.style.large.yml rename to config/image.style.large.yml diff --git a/config/sync/image.style.max_1300x1300.yml b/config/image.style.max_1300x1300.yml similarity index 100% rename from config/sync/image.style.max_1300x1300.yml rename to config/image.style.max_1300x1300.yml diff --git a/config/sync/image.style.max_2600x2600.yml b/config/image.style.max_2600x2600.yml similarity index 100% rename from config/sync/image.style.max_2600x2600.yml rename to config/image.style.max_2600x2600.yml diff --git a/config/sync/image.style.max_325x325.yml b/config/image.style.max_325x325.yml similarity index 100% rename from config/sync/image.style.max_325x325.yml rename to config/image.style.max_325x325.yml diff --git a/config/sync/image.style.max_650x650.yml b/config/image.style.max_650x650.yml similarity index 100% rename from config/sync/image.style.max_650x650.yml rename to config/image.style.max_650x650.yml diff --git a/config/sync/image.style.medium.yml b/config/image.style.medium.yml similarity index 100% rename from config/sync/image.style.medium.yml rename to config/image.style.medium.yml diff --git a/config/sync/image.style.small_landscape.yml b/config/image.style.small_landscape.yml similarity index 100% rename from config/sync/image.style.small_landscape.yml rename to config/image.style.small_landscape.yml diff --git a/config/sync/image.style.small_square.yml b/config/image.style.small_square.yml similarity index 100% rename from config/sync/image.style.small_square.yml rename to config/image.style.small_square.yml diff --git a/config/sync/image.style.square_thumbnail.yml b/config/image.style.square_thumbnail.yml similarity index 100% rename from config/sync/image.style.square_thumbnail.yml rename to config/image.style.square_thumbnail.yml diff --git a/config/sync/image.style.thumbnail.yml b/config/image.style.thumbnail.yml similarity index 100% rename from config/sync/image.style.thumbnail.yml rename to config/image.style.thumbnail.yml diff --git a/config/sync/indieweb_context.settings.yml b/config/indieweb_context.settings.yml similarity index 100% rename from config/sync/indieweb_context.settings.yml rename to config/indieweb_context.settings.yml diff --git a/config/sync/indieweb_microformat.settings.yml b/config/indieweb_microformat.settings.yml similarity index 100% rename from config/sync/indieweb_microformat.settings.yml rename to config/indieweb_microformat.settings.yml diff --git a/config/sync/indieweb_webmention.comment.yml b/config/indieweb_webmention.comment.yml similarity index 100% rename from config/sync/indieweb_webmention.comment.yml rename to config/indieweb_webmention.comment.yml diff --git a/config/sync/indieweb_webmention.settings.yml b/config/indieweb_webmention.settings.yml similarity index 100% rename from config/sync/indieweb_webmention.settings.yml rename to config/indieweb_webmention.settings.yml diff --git a/config/sync/language.content_settings.block_content.basic.yml b/config/language.content_settings.block_content.basic.yml similarity index 100% rename from config/sync/language.content_settings.block_content.basic.yml rename to config/language.content_settings.block_content.basic.yml diff --git a/config/sync/language.content_settings.block_content.content_reference.yml b/config/language.content_settings.block_content.content_reference.yml similarity index 100% rename from config/sync/language.content_settings.block_content.content_reference.yml rename to config/language.content_settings.block_content.content_reference.yml diff --git a/config/sync/language.content_settings.block_content.slide.yml b/config/language.content_settings.block_content.slide.yml similarity index 100% rename from config/sync/language.content_settings.block_content.slide.yml rename to config/language.content_settings.block_content.slide.yml diff --git a/config/sync/language.content_settings.comment.comment.yml b/config/language.content_settings.comment.comment.yml similarity index 100% rename from config/sync/language.content_settings.comment.comment.yml rename to config/language.content_settings.comment.comment.yml diff --git a/config/sync/language.content_settings.contact_message.feedback.yml b/config/language.content_settings.contact_message.feedback.yml similarity index 100% rename from config/sync/language.content_settings.contact_message.feedback.yml rename to config/language.content_settings.contact_message.feedback.yml diff --git a/config/sync/language.content_settings.contact_message.personal.yml b/config/language.content_settings.contact_message.personal.yml similarity index 100% rename from config/sync/language.content_settings.contact_message.personal.yml rename to config/language.content_settings.contact_message.personal.yml diff --git a/config/sync/language.content_settings.file.file.yml b/config/language.content_settings.file.file.yml similarity index 100% rename from config/sync/language.content_settings.file.file.yml rename to config/language.content_settings.file.file.yml diff --git a/config/sync/language.content_settings.group.group.yml b/config/language.content_settings.group.group.yml similarity index 100% rename from config/sync/language.content_settings.group.group.yml rename to config/language.content_settings.group.group.yml diff --git a/config/sync/language.content_settings.group_content.group-group_membership.yml b/config/language.content_settings.group_content.group-group_membership.yml similarity index 100% rename from config/sync/language.content_settings.group_content.group-group_membership.yml rename to config/language.content_settings.group_content.group-group_membership.yml diff --git a/config/sync/language.content_settings.indieweb_webmention.indieweb_webmention.yml b/config/language.content_settings.indieweb_webmention.indieweb_webmention.yml similarity index 100% rename from config/sync/language.content_settings.indieweb_webmention.indieweb_webmention.yml rename to config/language.content_settings.indieweb_webmention.indieweb_webmention.yml diff --git a/config/sync/language.content_settings.menu_link_content.menu_link_content.yml b/config/language.content_settings.menu_link_content.menu_link_content.yml similarity index 100% rename from config/sync/language.content_settings.menu_link_content.menu_link_content.yml rename to config/language.content_settings.menu_link_content.menu_link_content.yml diff --git a/config/sync/language.content_settings.node.action.yml b/config/language.content_settings.node.action.yml similarity index 100% rename from config/sync/language.content_settings.node.action.yml rename to config/language.content_settings.node.action.yml diff --git a/config/sync/language.content_settings.node.article.yml b/config/language.content_settings.node.article.yml similarity index 100% rename from config/sync/language.content_settings.node.article.yml rename to config/language.content_settings.node.article.yml diff --git a/config/sync/language.content_settings.node.blog.yml b/config/language.content_settings.node.blog.yml similarity index 100% rename from config/sync/language.content_settings.node.blog.yml rename to config/language.content_settings.node.blog.yml diff --git a/config/sync/language.content_settings.node.campaign.yml b/config/language.content_settings.node.campaign.yml similarity index 100% rename from config/sync/language.content_settings.node.campaign.yml rename to config/language.content_settings.node.campaign.yml diff --git a/config/sync/language.content_settings.node.case_study.yml b/config/language.content_settings.node.case_study.yml similarity index 100% rename from config/sync/language.content_settings.node.case_study.yml rename to config/language.content_settings.node.case_study.yml diff --git a/config/sync/language.content_settings.node.event.yml b/config/language.content_settings.node.event.yml similarity index 100% rename from config/sync/language.content_settings.node.event.yml rename to config/language.content_settings.node.event.yml diff --git a/config/sync/language.content_settings.node.landing_page.yml b/config/language.content_settings.node.landing_page.yml similarity index 100% rename from config/sync/language.content_settings.node.landing_page.yml rename to config/language.content_settings.node.landing_page.yml diff --git a/config/sync/language.content_settings.node.page.yml b/config/language.content_settings.node.page.yml similarity index 100% rename from config/sync/language.content_settings.node.page.yml rename to config/language.content_settings.node.page.yml diff --git a/config/sync/language.content_settings.node.people.yml b/config/language.content_settings.node.people.yml similarity index 100% rename from config/sync/language.content_settings.node.people.yml rename to config/language.content_settings.node.people.yml diff --git a/config/sync/language.content_settings.node.resource.yml b/config/language.content_settings.node.resource.yml similarity index 100% rename from config/sync/language.content_settings.node.resource.yml rename to config/language.content_settings.node.resource.yml diff --git a/config/sync/language.content_settings.paragraph.faq.yml b/config/language.content_settings.paragraph.faq.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.faq.yml rename to config/language.content_settings.paragraph.faq.yml diff --git a/config/sync/language.content_settings.paragraph.file.yml b/config/language.content_settings.paragraph.file.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.file.yml rename to config/language.content_settings.paragraph.file.yml diff --git a/config/sync/language.content_settings.paragraph.image.yml b/config/language.content_settings.paragraph.image.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.image.yml rename to config/language.content_settings.paragraph.image.yml diff --git a/config/sync/language.content_settings.paragraph.quotation_with_image.yml b/config/language.content_settings.paragraph.quotation_with_image.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.quotation_with_image.yml rename to config/language.content_settings.paragraph.quotation_with_image.yml diff --git a/config/sync/language.content_settings.paragraph.slide.yml b/config/language.content_settings.paragraph.slide.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.slide.yml rename to config/language.content_settings.paragraph.slide.yml diff --git a/config/sync/language.content_settings.paragraph.storyline_header.yml b/config/language.content_settings.paragraph.storyline_header.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.storyline_header.yml rename to config/language.content_settings.paragraph.storyline_header.yml diff --git a/config/sync/language.content_settings.paragraph.storyline_item.yml b/config/language.content_settings.paragraph.storyline_item.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.storyline_item.yml rename to config/language.content_settings.paragraph.storyline_item.yml diff --git a/config/sync/language.content_settings.paragraph.text.yml b/config/language.content_settings.paragraph.text.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.text.yml rename to config/language.content_settings.paragraph.text.yml diff --git a/config/sync/language.content_settings.paragraph.title.yml b/config/language.content_settings.paragraph.title.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.title.yml rename to config/language.content_settings.paragraph.title.yml diff --git a/config/sync/language.content_settings.paragraph.update.yml b/config/language.content_settings.paragraph.update.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.update.yml rename to config/language.content_settings.paragraph.update.yml diff --git a/config/sync/language.content_settings.paragraph.video.yml b/config/language.content_settings.paragraph.video.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.video.yml rename to config/language.content_settings.paragraph.video.yml diff --git a/config/sync/language.content_settings.paragraph.view.yml b/config/language.content_settings.paragraph.view.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.view.yml rename to config/language.content_settings.paragraph.view.yml diff --git a/config/sync/language.content_settings.paragraph.webform.yml b/config/language.content_settings.paragraph.webform.yml similarity index 100% rename from config/sync/language.content_settings.paragraph.webform.yml rename to config/language.content_settings.paragraph.webform.yml diff --git a/config/sync/language.content_settings.path_alias.path_alias.yml b/config/language.content_settings.path_alias.path_alias.yml similarity index 100% rename from config/sync/language.content_settings.path_alias.path_alias.yml rename to config/language.content_settings.path_alias.path_alias.yml diff --git a/config/sync/language.content_settings.redirect.redirect.yml b/config/language.content_settings.redirect.redirect.yml similarity index 100% rename from config/sync/language.content_settings.redirect.redirect.yml rename to config/language.content_settings.redirect.redirect.yml diff --git a/config/sync/language.content_settings.shortcut.default.yml b/config/language.content_settings.shortcut.default.yml similarity index 100% rename from config/sync/language.content_settings.shortcut.default.yml rename to config/language.content_settings.shortcut.default.yml diff --git a/config/sync/language.content_settings.taxonomy_term.action_type.yml b/config/language.content_settings.taxonomy_term.action_type.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.action_type.yml rename to config/language.content_settings.taxonomy_term.action_type.yml diff --git a/config/sync/language.content_settings.taxonomy_term.article_type.yml b/config/language.content_settings.taxonomy_term.article_type.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.article_type.yml rename to config/language.content_settings.taxonomy_term.article_type.yml diff --git a/config/sync/language.content_settings.taxonomy_term.event_type.yml b/config/language.content_settings.taxonomy_term.event_type.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.event_type.yml rename to config/language.content_settings.taxonomy_term.event_type.yml diff --git a/config/sync/language.content_settings.taxonomy_term.group_type.yml b/config/language.content_settings.taxonomy_term.group_type.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.group_type.yml rename to config/language.content_settings.taxonomy_term.group_type.yml diff --git a/config/sync/language.content_settings.taxonomy_term.license.yml b/config/language.content_settings.taxonomy_term.license.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.license.yml rename to config/language.content_settings.taxonomy_term.license.yml diff --git a/config/sync/language.content_settings.taxonomy_term.people_type.yml b/config/language.content_settings.taxonomy_term.people_type.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.people_type.yml rename to config/language.content_settings.taxonomy_term.people_type.yml diff --git a/config/sync/language.content_settings.taxonomy_term.resource_type.yml b/config/language.content_settings.taxonomy_term.resource_type.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.resource_type.yml rename to config/language.content_settings.taxonomy_term.resource_type.yml diff --git a/config/sync/language.content_settings.taxonomy_term.services.yml b/config/language.content_settings.taxonomy_term.services.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.services.yml rename to config/language.content_settings.taxonomy_term.services.yml diff --git a/config/sync/language.content_settings.taxonomy_term.tags.yml b/config/language.content_settings.taxonomy_term.tags.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.tags.yml rename to config/language.content_settings.taxonomy_term.tags.yml diff --git a/config/sync/language.content_settings.taxonomy_term.technologies.yml b/config/language.content_settings.taxonomy_term.technologies.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.technologies.yml rename to config/language.content_settings.taxonomy_term.technologies.yml diff --git a/config/sync/language.content_settings.taxonomy_term.topics.yml b/config/language.content_settings.taxonomy_term.topics.yml similarity index 100% rename from config/sync/language.content_settings.taxonomy_term.topics.yml rename to config/language.content_settings.taxonomy_term.topics.yml diff --git a/config/sync/language.content_settings.user.user.yml b/config/language.content_settings.user.user.yml similarity index 100% rename from config/sync/language.content_settings.user.user.yml rename to config/language.content_settings.user.user.yml diff --git a/config/sync/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 similarity index 100% rename from config/sync/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml rename to config/language.content_settings.webform_submission.attend_the_tech_and_rev_workshop.yml diff --git a/config/sync/language.content_settings.webform_submission.contact.yml b/config/language.content_settings.webform_submission.contact.yml similarity index 100% rename from config/sync/language.content_settings.webform_submission.contact.yml rename to config/language.content_settings.webform_submission.contact.yml diff --git a/config/sync/language.content_settings.webform_submission.general_services.yml b/config/language.content_settings.webform_submission.general_services.yml similarity index 100% rename from config/sync/language.content_settings.webform_submission.general_services.yml rename to config/language.content_settings.webform_submission.general_services.yml diff --git a/config/sync/language.content_settings.webform_submission.training.yml b/config/language.content_settings.webform_submission.training.yml similarity index 100% rename from config/sync/language.content_settings.webform_submission.training.yml rename to config/language.content_settings.webform_submission.training.yml diff --git a/config/sync/language.entity.en.yml b/config/language.entity.en.yml similarity index 100% rename from config/sync/language.entity.en.yml rename to config/language.entity.en.yml diff --git a/config/sync/language.entity.es.yml b/config/language.entity.es.yml similarity index 100% rename from config/sync/language.entity.es.yml rename to config/language.entity.es.yml diff --git a/config/sync/language.entity.und.yml b/config/language.entity.und.yml similarity index 100% rename from config/sync/language.entity.und.yml rename to config/language.entity.und.yml diff --git a/config/sync/language.entity.zxx.yml b/config/language.entity.zxx.yml similarity index 100% rename from config/sync/language.entity.zxx.yml rename to config/language.entity.zxx.yml diff --git a/config/sync/language.mappings.yml b/config/language.mappings.yml similarity index 100% rename from config/sync/language.mappings.yml rename to config/language.mappings.yml diff --git a/config/sync/language.negotiation.yml b/config/language.negotiation.yml similarity index 100% rename from config/sync/language.negotiation.yml rename to config/language.negotiation.yml diff --git a/config/sync/language.types.yml b/config/language.types.yml similarity index 100% rename from config/sync/language.types.yml rename to config/language.types.yml diff --git a/config/sync/language/es/block.block.agarica_powered_by_drutopia.yml b/config/language/es/block.block.agarica_powered_by_drutopia.yml similarity index 100% rename from config/sync/language/es/block.block.agarica_powered_by_drutopia.yml rename to config/language/es/block.block.agarica_powered_by_drutopia.yml diff --git a/config/sync/language/es/block.block.bulma_main_menu.yml b/config/language/es/block.block.bulma_main_menu.yml similarity index 100% rename from config/sync/language/es/block.block.bulma_main_menu.yml rename to config/language/es/block.block.bulma_main_menu.yml diff --git a/config/sync/language/es/block.block.octavia_main_menu.yml b/config/language/es/block.block.octavia_main_menu.yml similarity index 100% rename from config/sync/language/es/block.block.octavia_main_menu.yml rename to config/language/es/block.block.octavia_main_menu.yml diff --git a/config/sync/language/es/block_visibility_groups.block_visibility_group.search.yml b/config/language/es/block_visibility_groups.block_visibility_group.search.yml similarity index 100% rename from config/sync/language/es/block_visibility_groups.block_visibility_group.search.yml rename to config/language/es/block_visibility_groups.block_visibility_group.search.yml diff --git a/config/sync/language/es/contact.form.feedback.yml b/config/language/es/contact.form.feedback.yml similarity index 100% rename from config/sync/language/es/contact.form.feedback.yml rename to config/language/es/contact.form.feedback.yml diff --git a/config/sync/language/es/contact.form.personal.yml b/config/language/es/contact.form.personal.yml similarity index 100% rename from config/sync/language/es/contact.form.personal.yml rename to config/language/es/contact.form.personal.yml diff --git a/config/sync/language/es/core.base_field_override.node.people.title.yml b/config/language/es/core.base_field_override.node.people.title.yml similarity index 100% rename from config/sync/language/es/core.base_field_override.node.people.title.yml rename to config/language/es/core.base_field_override.node.people.title.yml diff --git a/config/sync/language/es/core.entity_view_mode.paragraph.preview.yml b/config/language/es/core.entity_view_mode.paragraph.preview.yml similarity index 100% rename from config/sync/language/es/core.entity_view_mode.paragraph.preview.yml rename to config/language/es/core.entity_view_mode.paragraph.preview.yml diff --git a/config/sync/language/es/field.field.block_content.basic.body.yml b/config/language/es/field.field.block_content.basic.body.yml similarity index 100% rename from config/sync/language/es/field.field.block_content.basic.body.yml rename to config/language/es/field.field.block_content.basic.body.yml diff --git a/config/sync/language/es/field.field.group.group.field_group_email.yml b/config/language/es/field.field.group.group.field_group_email.yml similarity index 100% rename from config/sync/language/es/field.field.group.group.field_group_email.yml rename to config/language/es/field.field.group.group.field_group_email.yml diff --git a/config/sync/language/es/field.field.node.action.body.yml b/config/language/es/field.field.node.action.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.action.body.yml rename to config/language/es/field.field.node.action.body.yml diff --git a/config/sync/language/es/field.field.node.action.field_tags.yml b/config/language/es/field.field.node.action.field_tags.yml similarity index 100% rename from config/sync/language/es/field.field.node.action.field_tags.yml rename to config/language/es/field.field.node.action.field_tags.yml diff --git a/config/sync/language/es/field.field.node.article.body.yml b/config/language/es/field.field.node.article.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.article.body.yml rename to config/language/es/field.field.node.article.body.yml diff --git a/config/sync/language/es/field.field.node.article.comment.yml b/config/language/es/field.field.node.article.comment.yml similarity index 100% rename from config/sync/language/es/field.field.node.article.comment.yml rename to config/language/es/field.field.node.article.comment.yml diff --git a/config/sync/language/es/field.field.node.article.field_tags.yml b/config/language/es/field.field.node.article.field_tags.yml similarity index 100% rename from config/sync/language/es/field.field.node.article.field_tags.yml rename to config/language/es/field.field.node.article.field_tags.yml diff --git a/config/sync/language/es/field.field.node.blog.body.yml b/config/language/es/field.field.node.blog.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.blog.body.yml rename to config/language/es/field.field.node.blog.body.yml diff --git a/config/sync/language/es/field.field.node.blog.comment.yml b/config/language/es/field.field.node.blog.comment.yml similarity index 100% rename from config/sync/language/es/field.field.node.blog.comment.yml rename to config/language/es/field.field.node.blog.comment.yml diff --git a/config/sync/language/es/field.field.node.blog.field_tags.yml b/config/language/es/field.field.node.blog.field_tags.yml similarity index 100% rename from config/sync/language/es/field.field.node.blog.field_tags.yml rename to config/language/es/field.field.node.blog.field_tags.yml diff --git a/config/sync/language/es/field.field.node.campaign.body.yml b/config/language/es/field.field.node.campaign.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.campaign.body.yml rename to config/language/es/field.field.node.campaign.body.yml diff --git a/config/sync/language/es/field.field.node.case_study.body.yml b/config/language/es/field.field.node.case_study.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.case_study.body.yml rename to config/language/es/field.field.node.case_study.body.yml diff --git a/config/sync/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 similarity index 100% rename from config/sync/language/es/field.field.node.case_study.field_case_study_status.yml rename to config/language/es/field.field.node.case_study.field_case_study_status.yml diff --git a/config/sync/language/es/field.field.node.case_study.field_services.yml b/config/language/es/field.field.node.case_study.field_services.yml similarity index 100% rename from config/sync/language/es/field.field.node.case_study.field_services.yml rename to config/language/es/field.field.node.case_study.field_services.yml diff --git a/config/sync/language/es/field.field.node.event.body.yml b/config/language/es/field.field.node.event.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.event.body.yml rename to config/language/es/field.field.node.event.body.yml diff --git a/config/sync/language/es/field.field.node.event.field_tags.yml b/config/language/es/field.field.node.event.field_tags.yml similarity index 100% rename from config/sync/language/es/field.field.node.event.field_tags.yml rename to config/language/es/field.field.node.event.field_tags.yml diff --git a/config/sync/language/es/field.field.node.page.body.yml b/config/language/es/field.field.node.page.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.page.body.yml rename to config/language/es/field.field.node.page.body.yml diff --git a/config/sync/language/es/field.field.node.resource.body.yml b/config/language/es/field.field.node.resource.body.yml similarity index 100% rename from config/sync/language/es/field.field.node.resource.body.yml rename to config/language/es/field.field.node.resource.body.yml diff --git a/config/sync/language/es/field.field.node.resource.field_tags.yml b/config/language/es/field.field.node.resource.field_tags.yml similarity index 100% rename from config/sync/language/es/field.field.node.resource.field_tags.yml rename to config/language/es/field.field.node.resource.field_tags.yml diff --git a/config/sync/language/es/group.type.group.yml b/config/language/es/group.type.group.yml similarity index 100% rename from config/sync/language/es/group.type.group.yml rename to config/language/es/group.type.group.yml diff --git a/config/sync/language/es/metatag.metatag_defaults.front.yml b/config/language/es/metatag.metatag_defaults.front.yml similarity index 100% rename from config/sync/language/es/metatag.metatag_defaults.front.yml rename to config/language/es/metatag.metatag_defaults.front.yml diff --git a/config/sync/language/es/metatag.metatag_defaults.node.yml b/config/language/es/metatag.metatag_defaults.node.yml similarity index 100% rename from config/sync/language/es/metatag.metatag_defaults.node.yml rename to config/language/es/metatag.metatag_defaults.node.yml diff --git a/config/sync/language/es/metatag.metatag_defaults.user.yml b/config/language/es/metatag.metatag_defaults.user.yml similarity index 100% rename from config/sync/language/es/metatag.metatag_defaults.user.yml rename to config/language/es/metatag.metatag_defaults.user.yml diff --git a/config/sync/language/es/node.type.action.yml b/config/language/es/node.type.action.yml similarity index 100% rename from config/sync/language/es/node.type.action.yml rename to config/language/es/node.type.action.yml diff --git a/config/sync/language/es/node.type.case_study.yml b/config/language/es/node.type.case_study.yml similarity index 100% rename from config/sync/language/es/node.type.case_study.yml rename to config/language/es/node.type.case_study.yml diff --git a/config/sync/language/es/node.type.page.yml b/config/language/es/node.type.page.yml similarity index 100% rename from config/sync/language/es/node.type.page.yml rename to config/language/es/node.type.page.yml diff --git a/config/sync/language/es/pathauto.pattern.case_study.yml b/config/language/es/pathauto.pattern.case_study.yml similarity index 100% rename from config/sync/language/es/pathauto.pattern.case_study.yml rename to config/language/es/pathauto.pattern.case_study.yml diff --git a/config/sync/language/es/pathauto.pattern.group.yml b/config/language/es/pathauto.pattern.group.yml similarity index 100% rename from config/sync/language/es/pathauto.pattern.group.yml rename to config/language/es/pathauto.pattern.group.yml diff --git a/config/sync/language/es/search_api.index.action.yml b/config/language/es/search_api.index.action.yml similarity index 100% rename from config/sync/language/es/search_api.index.action.yml rename to config/language/es/search_api.index.action.yml diff --git a/config/sync/language/es/search_api.index.case_study.yml b/config/language/es/search_api.index.case_study.yml similarity index 100% rename from config/sync/language/es/search_api.index.case_study.yml rename to config/language/es/search_api.index.case_study.yml diff --git a/config/sync/language/es/shortcut.set.default.yml b/config/language/es/shortcut.set.default.yml similarity index 100% rename from config/sync/language/es/shortcut.set.default.yml rename to config/language/es/shortcut.set.default.yml diff --git a/config/sync/language/es/system.menu.main.yml b/config/language/es/system.menu.main.yml similarity index 100% rename from config/sync/language/es/system.menu.main.yml rename to config/language/es/system.menu.main.yml diff --git a/config/sync/language/es/taxonomy.vocabulary.services.yml b/config/language/es/taxonomy.vocabulary.services.yml similarity index 100% rename from config/sync/language/es/taxonomy.vocabulary.services.yml rename to config/language/es/taxonomy.vocabulary.services.yml diff --git a/config/sync/language/es/taxonomy.vocabulary.tags.yml b/config/language/es/taxonomy.vocabulary.tags.yml similarity index 100% rename from config/sync/language/es/taxonomy.vocabulary.tags.yml rename to config/language/es/taxonomy.vocabulary.tags.yml diff --git a/config/sync/language/es/tour.tour.locale.yml b/config/language/es/tour.tour.locale.yml similarity index 100% rename from config/sync/language/es/tour.tour.locale.yml rename to config/language/es/tour.tour.locale.yml diff --git a/config/sync/language/es/tour.tour.search-api-index-fields.yml b/config/language/es/tour.tour.search-api-index-fields.yml similarity index 100% rename from config/sync/language/es/tour.tour.search-api-index-fields.yml rename to config/language/es/tour.tour.search-api-index-fields.yml diff --git a/config/sync/language/es/tour.tour.search-api-index.yml b/config/language/es/tour.tour.search-api-index.yml similarity index 100% rename from config/sync/language/es/tour.tour.search-api-index.yml rename to config/language/es/tour.tour.search-api-index.yml diff --git a/config/sync/language/es/tour.tour.search-api-server.yml b/config/language/es/tour.tour.search-api-server.yml similarity index 100% rename from config/sync/language/es/tour.tour.search-api-server.yml rename to config/language/es/tour.tour.search-api-server.yml diff --git a/config/sync/language/es/tour.tour.views-ui.yml b/config/language/es/tour.tour.views-ui.yml similarity index 100% rename from config/sync/language/es/tour.tour.views-ui.yml rename to config/language/es/tour.tour.views-ui.yml diff --git a/config/sync/language/es/views.view.action.yml b/config/language/es/views.view.action.yml similarity index 100% rename from config/sync/language/es/views.view.action.yml rename to config/language/es/views.view.action.yml diff --git a/config/sync/language/es/views.view.archive.yml b/config/language/es/views.view.archive.yml similarity index 100% rename from config/sync/language/es/views.view.archive.yml rename to config/language/es/views.view.archive.yml diff --git a/config/sync/language/es/views.view.article.yml b/config/language/es/views.view.article.yml similarity index 100% rename from config/sync/language/es/views.view.article.yml rename to config/language/es/views.view.article.yml diff --git a/config/sync/language/es/views.view.block_content.yml b/config/language/es/views.view.block_content.yml similarity index 100% rename from config/sync/language/es/views.view.block_content.yml rename to config/language/es/views.view.block_content.yml diff --git a/config/sync/language/es/views.view.blog.yml b/config/language/es/views.view.blog.yml similarity index 100% rename from config/sync/language/es/views.view.blog.yml rename to config/language/es/views.view.blog.yml diff --git a/config/sync/language/es/views.view.campaign.yml b/config/language/es/views.view.campaign.yml similarity index 100% rename from config/sync/language/es/views.view.campaign.yml rename to config/language/es/views.view.campaign.yml diff --git a/config/sync/language/es/views.view.case_study.yml b/config/language/es/views.view.case_study.yml similarity index 100% rename from config/sync/language/es/views.view.case_study.yml rename to config/language/es/views.view.case_study.yml diff --git a/config/sync/language/es/views.view.comment.yml b/config/language/es/views.view.comment.yml similarity index 100% rename from config/sync/language/es/views.view.comment.yml rename to config/language/es/views.view.comment.yml diff --git a/config/sync/language/es/views.view.comments_recent.yml b/config/language/es/views.view.comments_recent.yml similarity index 100% rename from config/sync/language/es/views.view.comments_recent.yml rename to config/language/es/views.view.comments_recent.yml diff --git a/config/sync/language/es/views.view.content.yml b/config/language/es/views.view.content.yml similarity index 100% rename from config/sync/language/es/views.view.content.yml rename to config/language/es/views.view.content.yml diff --git a/config/sync/language/es/views.view.content_recent.yml b/config/language/es/views.view.content_recent.yml similarity index 100% rename from config/sync/language/es/views.view.content_recent.yml rename to config/language/es/views.view.content_recent.yml diff --git a/config/sync/language/es/views.view.event.yml b/config/language/es/views.view.event.yml similarity index 100% rename from config/sync/language/es/views.view.event.yml rename to config/language/es/views.view.event.yml diff --git a/config/sync/language/es/views.view.files.yml b/config/language/es/views.view.files.yml similarity index 100% rename from config/sync/language/es/views.view.files.yml rename to config/language/es/views.view.files.yml diff --git a/config/sync/language/es/views.view.frontpage.yml b/config/language/es/views.view.frontpage.yml similarity index 100% rename from config/sync/language/es/views.view.frontpage.yml rename to config/language/es/views.view.frontpage.yml diff --git a/config/sync/language/es/views.view.glossary.yml b/config/language/es/views.view.glossary.yml similarity index 100% rename from config/sync/language/es/views.view.glossary.yml rename to config/language/es/views.view.glossary.yml diff --git a/config/sync/language/es/views.view.group.yml b/config/language/es/views.view.group.yml similarity index 100% rename from config/sync/language/es/views.view.group.yml rename to config/language/es/views.view.group.yml diff --git a/config/sync/language/es/views.view.group_content.yml b/config/language/es/views.view.group_content.yml similarity index 100% rename from config/sync/language/es/views.view.group_content.yml rename to config/language/es/views.view.group_content.yml diff --git a/config/sync/language/es/views.view.group_members.yml b/config/language/es/views.view.group_members.yml similarity index 100% rename from config/sync/language/es/views.view.group_members.yml rename to config/language/es/views.view.group_members.yml diff --git a/config/sync/language/es/views.view.group_nodes.yml b/config/language/es/views.view.group_nodes.yml similarity index 100% rename from config/sync/language/es/views.view.group_nodes.yml rename to config/language/es/views.view.group_nodes.yml diff --git a/config/sync/language/es/views.view.people.yml b/config/language/es/views.view.people.yml similarity index 100% rename from config/sync/language/es/views.view.people.yml rename to config/language/es/views.view.people.yml diff --git a/config/sync/language/es/views.view.redirect.yml b/config/language/es/views.view.redirect.yml similarity index 100% rename from config/sync/language/es/views.view.redirect.yml rename to config/language/es/views.view.redirect.yml diff --git a/config/sync/language/es/views.view.redirect_404.yml b/config/language/es/views.view.redirect_404.yml similarity index 100% rename from config/sync/language/es/views.view.redirect_404.yml rename to config/language/es/views.view.redirect_404.yml diff --git a/config/sync/language/es/views.view.resource.yml b/config/language/es/views.view.resource.yml similarity index 100% rename from config/sync/language/es/views.view.resource.yml rename to config/language/es/views.view.resource.yml diff --git a/config/sync/language/es/views.view.search.yml b/config/language/es/views.view.search.yml similarity index 100% rename from config/sync/language/es/views.view.search.yml rename to config/language/es/views.view.search.yml diff --git a/config/sync/language/es/views.view.taxonomy_term.yml b/config/language/es/views.view.taxonomy_term.yml similarity index 100% rename from config/sync/language/es/views.view.taxonomy_term.yml rename to config/language/es/views.view.taxonomy_term.yml diff --git a/config/sync/language/es/views.view.user_admin_people.yml b/config/language/es/views.view.user_admin_people.yml similarity index 100% rename from config/sync/language/es/views.view.user_admin_people.yml rename to config/language/es/views.view.user_admin_people.yml diff --git a/config/sync/language/es/views.view.watchdog.yml b/config/language/es/views.view.watchdog.yml similarity index 100% rename from config/sync/language/es/views.view.watchdog.yml rename to config/language/es/views.view.watchdog.yml diff --git a/config/sync/language/es/views.view.webform_submissions.yml b/config/language/es/views.view.webform_submissions.yml similarity index 100% rename from config/sync/language/es/views.view.webform_submissions.yml rename to config/language/es/views.view.webform_submissions.yml diff --git a/config/sync/language/es/views.view.webmentions.yml b/config/language/es/views.view.webmentions.yml similarity index 100% rename from config/sync/language/es/views.view.webmentions.yml rename to config/language/es/views.view.webmentions.yml diff --git a/config/sync/language/es/views.view.who_s_new.yml b/config/language/es/views.view.who_s_new.yml similarity index 100% rename from config/sync/language/es/views.view.who_s_new.yml rename to config/language/es/views.view.who_s_new.yml diff --git a/config/sync/language/es/webform.settings.yml b/config/language/es/webform.settings.yml similarity index 100% rename from config/sync/language/es/webform.settings.yml rename to config/language/es/webform.settings.yml diff --git a/config/sync/language/es/webform.webform.capacitacion.yml b/config/language/es/webform.webform.capacitacion.yml similarity index 100% rename from config/sync/language/es/webform.webform.capacitacion.yml rename to config/language/es/webform.webform.capacitacion.yml diff --git a/config/sync/language/es/webform.webform.contact.yml b/config/language/es/webform.webform.contact.yml similarity index 100% rename from config/sync/language/es/webform.webform.contact.yml rename to config/language/es/webform.webform.contact.yml diff --git a/config/sync/language/es/webform.webform.contacto.yml b/config/language/es/webform.webform.contacto.yml similarity index 100% rename from config/sync/language/es/webform.webform.contacto.yml rename to config/language/es/webform.webform.contacto.yml diff --git a/config/sync/language/es/webform.webform.training.yml b/config/language/es/webform.webform.training.yml similarity index 100% rename from config/sync/language/es/webform.webform.training.yml rename to config/language/es/webform.webform.training.yml diff --git a/config/sync/locale.settings.yml b/config/locale.settings.yml similarity index 100% rename from config/sync/locale.settings.yml rename to config/locale.settings.yml diff --git a/config/sync/mailchimp.settings.yml b/config/mailchimp.settings.yml similarity index 100% rename from config/sync/mailchimp.settings.yml rename to config/mailchimp.settings.yml diff --git a/config/sync/markdown.settings.yml b/config/markdown.settings.yml similarity index 100% rename from config/sync/markdown.settings.yml rename to config/markdown.settings.yml diff --git a/config/sync/menu_ui.settings.yml b/config/menu_ui.settings.yml similarity index 100% rename from config/sync/menu_ui.settings.yml rename to config/menu_ui.settings.yml diff --git a/config/sync/metatag.metatag_defaults.403.yml b/config/metatag.metatag_defaults.403.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.403.yml rename to config/metatag.metatag_defaults.403.yml diff --git a/config/sync/metatag.metatag_defaults.404.yml b/config/metatag.metatag_defaults.404.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.404.yml rename to config/metatag.metatag_defaults.404.yml diff --git a/config/sync/metatag.metatag_defaults.front.yml b/config/metatag.metatag_defaults.front.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.front.yml rename to config/metatag.metatag_defaults.front.yml diff --git a/config/sync/metatag.metatag_defaults.global.yml b/config/metatag.metatag_defaults.global.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.global.yml rename to config/metatag.metatag_defaults.global.yml diff --git a/config/sync/metatag.metatag_defaults.node.yml b/config/metatag.metatag_defaults.node.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.node.yml rename to config/metatag.metatag_defaults.node.yml diff --git a/config/sync/metatag.metatag_defaults.taxonomy_term.yml b/config/metatag.metatag_defaults.taxonomy_term.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.taxonomy_term.yml rename to config/metatag.metatag_defaults.taxonomy_term.yml diff --git a/config/sync/metatag.metatag_defaults.user.yml b/config/metatag.metatag_defaults.user.yml similarity index 100% rename from config/sync/metatag.metatag_defaults.user.yml rename to config/metatag.metatag_defaults.user.yml diff --git a/config/sync/migrate_drupal.settings.yml b/config/migrate_drupal.settings.yml similarity index 100% rename from config/sync/migrate_drupal.settings.yml rename to config/migrate_drupal.settings.yml diff --git a/config/sync/migrate_plus.migration_group.agaric.yml b/config/migrate_plus.migration_group.agaric.yml similarity index 100% rename from config/sync/migrate_plus.migration_group.agaric.yml rename to config/migrate_plus.migration_group.agaric.yml diff --git a/config/sync/migrate_plus.migration_group.default.yml b/config/migrate_plus.migration_group.default.yml similarity index 100% rename from config/sync/migrate_plus.migration_group.default.yml rename to config/migrate_plus.migration_group.default.yml diff --git a/config/sync/node.settings.yml b/config/node.settings.yml similarity index 100% rename from config/sync/node.settings.yml rename to config/node.settings.yml diff --git a/config/sync/node.type.action.yml b/config/node.type.action.yml similarity index 100% rename from config/sync/node.type.action.yml rename to config/node.type.action.yml diff --git a/config/sync/node.type.article.yml b/config/node.type.article.yml similarity index 100% rename from config/sync/node.type.article.yml rename to config/node.type.article.yml diff --git a/config/sync/node.type.blog.yml b/config/node.type.blog.yml similarity index 100% rename from config/sync/node.type.blog.yml rename to config/node.type.blog.yml diff --git a/config/sync/node.type.campaign.yml b/config/node.type.campaign.yml similarity index 100% rename from config/sync/node.type.campaign.yml rename to config/node.type.campaign.yml diff --git a/config/sync/node.type.case_study.yml b/config/node.type.case_study.yml similarity index 100% rename from config/sync/node.type.case_study.yml rename to config/node.type.case_study.yml diff --git a/config/sync/node.type.event.yml b/config/node.type.event.yml similarity index 100% rename from config/sync/node.type.event.yml rename to config/node.type.event.yml diff --git a/config/sync/node.type.landing_page.yml b/config/node.type.landing_page.yml similarity index 100% rename from config/sync/node.type.landing_page.yml rename to config/node.type.landing_page.yml diff --git a/config/sync/node.type.page.yml b/config/node.type.page.yml similarity index 100% rename from config/sync/node.type.page.yml rename to config/node.type.page.yml diff --git a/config/sync/node.type.people.yml b/config/node.type.people.yml similarity index 100% rename from config/sync/node.type.people.yml rename to config/node.type.people.yml diff --git a/config/sync/node.type.resource.yml b/config/node.type.resource.yml similarity index 100% rename from config/sync/node.type.resource.yml rename to config/node.type.resource.yml diff --git a/config/sync/octavia.settings.yml b/config/octavia.settings.yml similarity index 100% rename from config/sync/octavia.settings.yml rename to config/octavia.settings.yml diff --git a/config/sync/paragraphs.paragraphs_type.content_reference.yml b/config/paragraphs.paragraphs_type.content_reference.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.content_reference.yml rename to config/paragraphs.paragraphs_type.content_reference.yml diff --git a/config/sync/paragraphs.paragraphs_type.embedded_content.yml b/config/paragraphs.paragraphs_type.embedded_content.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.embedded_content.yml rename to config/paragraphs.paragraphs_type.embedded_content.yml diff --git a/config/sync/paragraphs.paragraphs_type.faq.yml b/config/paragraphs.paragraphs_type.faq.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.faq.yml rename to config/paragraphs.paragraphs_type.faq.yml diff --git a/config/sync/paragraphs.paragraphs_type.file.yml b/config/paragraphs.paragraphs_type.file.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.file.yml rename to config/paragraphs.paragraphs_type.file.yml diff --git a/config/sync/paragraphs.paragraphs_type.image.yml b/config/paragraphs.paragraphs_type.image.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.image.yml rename to config/paragraphs.paragraphs_type.image.yml diff --git a/config/sync/paragraphs.paragraphs_type.quotation_with_image.yml b/config/paragraphs.paragraphs_type.quotation_with_image.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.quotation_with_image.yml rename to config/paragraphs.paragraphs_type.quotation_with_image.yml diff --git a/config/sync/paragraphs.paragraphs_type.slide.yml b/config/paragraphs.paragraphs_type.slide.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.slide.yml rename to config/paragraphs.paragraphs_type.slide.yml diff --git a/config/sync/paragraphs.paragraphs_type.storyline_header.yml b/config/paragraphs.paragraphs_type.storyline_header.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.storyline_header.yml rename to config/paragraphs.paragraphs_type.storyline_header.yml diff --git a/config/sync/paragraphs.paragraphs_type.storyline_item.yml b/config/paragraphs.paragraphs_type.storyline_item.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.storyline_item.yml rename to config/paragraphs.paragraphs_type.storyline_item.yml diff --git a/config/sync/paragraphs.paragraphs_type.text.yml b/config/paragraphs.paragraphs_type.text.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.text.yml rename to config/paragraphs.paragraphs_type.text.yml diff --git a/config/sync/paragraphs.paragraphs_type.title.yml b/config/paragraphs.paragraphs_type.title.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.title.yml rename to config/paragraphs.paragraphs_type.title.yml diff --git a/config/sync/paragraphs.paragraphs_type.update.yml b/config/paragraphs.paragraphs_type.update.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.update.yml rename to config/paragraphs.paragraphs_type.update.yml diff --git a/config/sync/paragraphs.paragraphs_type.video.yml b/config/paragraphs.paragraphs_type.video.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.video.yml rename to config/paragraphs.paragraphs_type.video.yml diff --git a/config/sync/paragraphs.paragraphs_type.view.yml b/config/paragraphs.paragraphs_type.view.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.view.yml rename to config/paragraphs.paragraphs_type.view.yml diff --git a/config/sync/paragraphs.paragraphs_type.webform.yml b/config/paragraphs.paragraphs_type.webform.yml similarity index 100% rename from config/sync/paragraphs.paragraphs_type.webform.yml rename to config/paragraphs.paragraphs_type.webform.yml diff --git a/config/sync/paragraphs.settings.yml b/config/paragraphs.settings.yml similarity index 100% rename from config/sync/paragraphs.settings.yml rename to config/paragraphs.settings.yml diff --git a/config/sync/paragraphs_features.settings.yml b/config/paragraphs_features.settings.yml similarity index 100% rename from config/sync/paragraphs_features.settings.yml rename to config/paragraphs_features.settings.yml diff --git a/config/sync/pathauto.pattern.article_type.yml b/config/pathauto.pattern.article_type.yml similarity index 100% rename from config/sync/pathauto.pattern.article_type.yml rename to config/pathauto.pattern.article_type.yml diff --git a/config/sync/pathauto.pattern.case_study.yml b/config/pathauto.pattern.case_study.yml similarity index 100% rename from config/sync/pathauto.pattern.case_study.yml rename to config/pathauto.pattern.case_study.yml diff --git a/config/sync/pathauto.pattern.event_type.yml b/config/pathauto.pattern.event_type.yml similarity index 100% rename from config/sync/pathauto.pattern.event_type.yml rename to config/pathauto.pattern.event_type.yml diff --git a/config/sync/pathauto.pattern.group.yml b/config/pathauto.pattern.group.yml similarity index 100% rename from config/sync/pathauto.pattern.group.yml rename to config/pathauto.pattern.group.yml diff --git a/config/sync/pathauto.pattern.group_content.yml b/config/pathauto.pattern.group_content.yml similarity index 100% rename from config/sync/pathauto.pattern.group_content.yml rename to config/pathauto.pattern.group_content.yml diff --git a/config/sync/pathauto.pattern.group_membership.yml b/config/pathauto.pattern.group_membership.yml similarity index 100% rename from config/sync/pathauto.pattern.group_membership.yml rename to config/pathauto.pattern.group_membership.yml diff --git a/config/sync/pathauto.pattern.group_type.yml b/config/pathauto.pattern.group_type.yml similarity index 100% rename from config/sync/pathauto.pattern.group_type.yml rename to config/pathauto.pattern.group_type.yml diff --git a/config/sync/pathauto.pattern.node_action.yml b/config/pathauto.pattern.node_action.yml similarity index 100% rename from config/sync/pathauto.pattern.node_action.yml rename to config/pathauto.pattern.node_action.yml diff --git a/config/sync/pathauto.pattern.node_article.yml b/config/pathauto.pattern.node_article.yml similarity index 100% rename from config/sync/pathauto.pattern.node_article.yml rename to config/pathauto.pattern.node_article.yml diff --git a/config/sync/pathauto.pattern.node_blog.yml b/config/pathauto.pattern.node_blog.yml similarity index 100% rename from config/sync/pathauto.pattern.node_blog.yml rename to config/pathauto.pattern.node_blog.yml diff --git a/config/sync/pathauto.pattern.node_campaign.yml b/config/pathauto.pattern.node_campaign.yml similarity index 100% rename from config/sync/pathauto.pattern.node_campaign.yml rename to config/pathauto.pattern.node_campaign.yml diff --git a/config/sync/pathauto.pattern.node_event.yml b/config/pathauto.pattern.node_event.yml similarity index 100% rename from config/sync/pathauto.pattern.node_event.yml rename to config/pathauto.pattern.node_event.yml diff --git a/config/sync/pathauto.pattern.node_landing_page.yml b/config/pathauto.pattern.node_landing_page.yml similarity index 100% rename from config/sync/pathauto.pattern.node_landing_page.yml rename to config/pathauto.pattern.node_landing_page.yml diff --git a/config/sync/pathauto.pattern.node_page.yml b/config/pathauto.pattern.node_page.yml similarity index 100% rename from config/sync/pathauto.pattern.node_page.yml rename to config/pathauto.pattern.node_page.yml diff --git a/config/sync/pathauto.pattern.node_resource.yml b/config/pathauto.pattern.node_resource.yml similarity index 100% rename from config/sync/pathauto.pattern.node_resource.yml rename to config/pathauto.pattern.node_resource.yml diff --git a/config/sync/pathauto.pattern.people_node.yml b/config/pathauto.pattern.people_node.yml similarity index 100% rename from config/sync/pathauto.pattern.people_node.yml rename to config/pathauto.pattern.people_node.yml diff --git a/config/sync/pathauto.pattern.people_type.yml b/config/pathauto.pattern.people_type.yml similarity index 100% rename from config/sync/pathauto.pattern.people_type.yml rename to config/pathauto.pattern.people_type.yml diff --git a/config/sync/pathauto.pattern.vocabulary_terms.yml b/config/pathauto.pattern.vocabulary_terms.yml similarity index 100% rename from config/sync/pathauto.pattern.vocabulary_terms.yml rename to config/pathauto.pattern.vocabulary_terms.yml diff --git a/config/sync/pathauto.settings.yml b/config/pathauto.settings.yml similarity index 100% rename from config/sync/pathauto.settings.yml rename to config/pathauto.settings.yml diff --git a/config/sync/preview_link.settings.yml b/config/preview_link.settings.yml similarity index 100% rename from config/sync/preview_link.settings.yml rename to config/preview_link.settings.yml diff --git a/config/sync/rdf.mapping.comment.comment.yml b/config/rdf.mapping.comment.comment.yml similarity index 100% rename from config/sync/rdf.mapping.comment.comment.yml rename to config/rdf.mapping.comment.comment.yml diff --git a/config/sync/rdf.mapping.node.article.yml b/config/rdf.mapping.node.article.yml similarity index 100% rename from config/sync/rdf.mapping.node.article.yml rename to config/rdf.mapping.node.article.yml diff --git a/config/sync/rdf.mapping.node.page.yml b/config/rdf.mapping.node.page.yml similarity index 100% rename from config/sync/rdf.mapping.node.page.yml rename to config/rdf.mapping.node.page.yml diff --git a/config/sync/rdf.mapping.taxonomy_term.tags.yml b/config/rdf.mapping.taxonomy_term.tags.yml similarity index 100% rename from config/sync/rdf.mapping.taxonomy_term.tags.yml rename to config/rdf.mapping.taxonomy_term.tags.yml diff --git a/config/sync/rdf.mapping.taxonomy_term.topics.yml b/config/rdf.mapping.taxonomy_term.topics.yml similarity index 100% rename from config/sync/rdf.mapping.taxonomy_term.topics.yml rename to config/rdf.mapping.taxonomy_term.topics.yml diff --git a/config/sync/rdf.mapping.user.user.yml b/config/rdf.mapping.user.user.yml similarity index 100% rename from config/sync/rdf.mapping.user.user.yml rename to config/rdf.mapping.user.user.yml diff --git a/config/sync/redirect.settings.yml b/config/redirect.settings.yml similarity index 100% rename from config/sync/redirect.settings.yml rename to config/redirect.settings.yml diff --git a/config/sync/redirect_404.settings.yml b/config/redirect_404.settings.yml similarity index 100% rename from config/sync/redirect_404.settings.yml rename to config/redirect_404.settings.yml diff --git a/config/sync/responsive_image.styles.narrow.yml b/config/responsive_image.styles.narrow.yml similarity index 100% rename from config/sync/responsive_image.styles.narrow.yml rename to config/responsive_image.styles.narrow.yml diff --git a/config/sync/responsive_image.styles.wide.yml b/config/responsive_image.styles.wide.yml similarity index 100% rename from config/sync/responsive_image.styles.wide.yml rename to config/responsive_image.styles.wide.yml diff --git a/config/sync/scn.settings.yml b/config/scn.settings.yml similarity index 100% rename from config/sync/scn.settings.yml rename to config/scn.settings.yml diff --git a/config/sync/search_api.index.action.yml b/config/search_api.index.action.yml similarity index 100% rename from config/sync/search_api.index.action.yml rename to config/search_api.index.action.yml diff --git a/config/sync/search_api.index.article.yml b/config/search_api.index.article.yml similarity index 100% rename from config/sync/search_api.index.article.yml rename to config/search_api.index.article.yml diff --git a/config/sync/search_api.index.blog.yml b/config/search_api.index.blog.yml similarity index 100% rename from config/sync/search_api.index.blog.yml rename to config/search_api.index.blog.yml diff --git a/config/sync/search_api.index.campaign.yml b/config/search_api.index.campaign.yml similarity index 100% rename from config/sync/search_api.index.campaign.yml rename to config/search_api.index.campaign.yml diff --git a/config/sync/search_api.index.case_study.yml b/config/search_api.index.case_study.yml similarity index 100% rename from config/sync/search_api.index.case_study.yml rename to config/search_api.index.case_study.yml diff --git a/config/sync/search_api.index.content.yml b/config/search_api.index.content.yml similarity index 100% rename from config/sync/search_api.index.content.yml rename to config/search_api.index.content.yml diff --git a/config/sync/search_api.index.event.yml b/config/search_api.index.event.yml similarity index 100% rename from config/sync/search_api.index.event.yml rename to config/search_api.index.event.yml diff --git a/config/sync/search_api.index.people.yml b/config/search_api.index.people.yml similarity index 100% rename from config/sync/search_api.index.people.yml rename to config/search_api.index.people.yml diff --git a/config/sync/search_api.index.resource.yml b/config/search_api.index.resource.yml similarity index 100% rename from config/sync/search_api.index.resource.yml rename to config/search_api.index.resource.yml diff --git a/config/sync/search_api.server.database.yml b/config/search_api.server.database.yml similarity index 100% rename from config/sync/search_api.server.database.yml rename to config/search_api.server.database.yml diff --git a/config/sync/search_api.settings.yml b/config/search_api.settings.yml similarity index 100% rename from config/sync/search_api.settings.yml rename to config/search_api.settings.yml diff --git a/config/sync/search_api_db.settings.yml b/config/search_api_db.settings.yml similarity index 100% rename from config/sync/search_api_db.settings.yml rename to config/search_api_db.settings.yml diff --git a/config/sync/serialization.settings.yml b/config/serialization.settings.yml similarity index 100% rename from config/sync/serialization.settings.yml rename to config/serialization.settings.yml diff --git a/config/sync/seven.settings.yml b/config/seven.settings.yml similarity index 100% rename from config/sync/seven.settings.yml rename to config/seven.settings.yml diff --git a/config/sync/shortcut.set.default.yml b/config/shortcut.set.default.yml similarity index 100% rename from config/sync/shortcut.set.default.yml rename to config/shortcut.set.default.yml diff --git a/config/sync/statistics.settings.yml b/config/statistics.settings.yml similarity index 100% rename from config/sync/statistics.settings.yml rename to config/statistics.settings.yml diff --git a/config/sync/stripe.settings.yml b/config/stripe.settings.yml similarity index 100% rename from config/sync/stripe.settings.yml rename to config/stripe.settings.yml diff --git a/config/sync/syslog.settings.yml b/config/syslog.settings.yml similarity index 100% rename from config/sync/syslog.settings.yml rename to config/syslog.settings.yml diff --git a/config/sync/system.action.comment_delete_action.yml b/config/system.action.comment_delete_action.yml similarity index 100% rename from config/sync/system.action.comment_delete_action.yml rename to config/system.action.comment_delete_action.yml diff --git a/config/sync/system.action.comment_publish_action.yml b/config/system.action.comment_publish_action.yml similarity index 100% rename from config/sync/system.action.comment_publish_action.yml rename to config/system.action.comment_publish_action.yml diff --git a/config/sync/system.action.comment_save_action.yml b/config/system.action.comment_save_action.yml similarity index 100% rename from config/sync/system.action.comment_save_action.yml rename to config/system.action.comment_save_action.yml diff --git a/config/sync/system.action.comment_unpublish_action.yml b/config/system.action.comment_unpublish_action.yml similarity index 100% rename from config/sync/system.action.comment_unpublish_action.yml rename to config/system.action.comment_unpublish_action.yml diff --git a/config/sync/system.action.node_delete_action.yml b/config/system.action.node_delete_action.yml similarity index 100% rename from config/sync/system.action.node_delete_action.yml rename to config/system.action.node_delete_action.yml diff --git a/config/sync/system.action.node_make_sticky_action.yml b/config/system.action.node_make_sticky_action.yml similarity index 100% rename from config/sync/system.action.node_make_sticky_action.yml rename to config/system.action.node_make_sticky_action.yml diff --git a/config/sync/system.action.node_make_unsticky_action.yml b/config/system.action.node_make_unsticky_action.yml similarity index 100% rename from config/sync/system.action.node_make_unsticky_action.yml rename to config/system.action.node_make_unsticky_action.yml diff --git a/config/sync/system.action.node_promote_action.yml b/config/system.action.node_promote_action.yml similarity index 100% rename from config/sync/system.action.node_promote_action.yml rename to config/system.action.node_promote_action.yml diff --git a/config/sync/system.action.node_publish_action.yml b/config/system.action.node_publish_action.yml similarity index 100% rename from config/sync/system.action.node_publish_action.yml rename to config/system.action.node_publish_action.yml diff --git a/config/sync/system.action.node_save_action.yml b/config/system.action.node_save_action.yml similarity index 100% rename from config/sync/system.action.node_save_action.yml rename to config/system.action.node_save_action.yml diff --git a/config/sync/system.action.node_unpromote_action.yml b/config/system.action.node_unpromote_action.yml similarity index 100% rename from config/sync/system.action.node_unpromote_action.yml rename to config/system.action.node_unpromote_action.yml diff --git a/config/sync/system.action.node_unpublish_action.yml b/config/system.action.node_unpublish_action.yml similarity index 100% rename from config/sync/system.action.node_unpublish_action.yml rename to config/system.action.node_unpublish_action.yml diff --git a/config/sync/system.action.pathauto_update_alias_node.yml b/config/system.action.pathauto_update_alias_node.yml similarity index 100% rename from config/sync/system.action.pathauto_update_alias_node.yml rename to config/system.action.pathauto_update_alias_node.yml diff --git a/config/sync/system.action.pathauto_update_alias_user.yml b/config/system.action.pathauto_update_alias_user.yml similarity index 100% rename from config/sync/system.action.pathauto_update_alias_user.yml rename to config/system.action.pathauto_update_alias_user.yml diff --git a/config/sync/system.action.redirect_delete_action.yml b/config/system.action.redirect_delete_action.yml similarity index 100% rename from config/sync/system.action.redirect_delete_action.yml rename to config/system.action.redirect_delete_action.yml diff --git a/config/sync/system.action.user_add_role_action.administrator.yml b/config/system.action.user_add_role_action.administrator.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.administrator.yml rename to config/system.action.user_add_role_action.administrator.yml diff --git a/config/sync/system.action.user_add_role_action.contributor.yml b/config/system.action.user_add_role_action.contributor.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.contributor.yml rename to config/system.action.user_add_role_action.contributor.yml diff --git a/config/sync/system.action.user_add_role_action.editor.yml b/config/system.action.user_add_role_action.editor.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.editor.yml rename to config/system.action.user_add_role_action.editor.yml diff --git a/config/sync/system.action.user_add_role_action.manager.yml b/config/system.action.user_add_role_action.manager.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.manager.yml rename to config/system.action.user_add_role_action.manager.yml diff --git a/config/sync/system.action.user_add_role_action.partner.yml b/config/system.action.user_add_role_action.partner.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.partner.yml rename to config/system.action.user_add_role_action.partner.yml diff --git a/config/sync/system.action.user_add_role_action.past.yml b/config/system.action.user_add_role_action.past.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.past.yml rename to config/system.action.user_add_role_action.past.yml diff --git a/config/sync/system.action.user_add_role_action.staff.yml b/config/system.action.user_add_role_action.staff.yml similarity index 100% rename from config/sync/system.action.user_add_role_action.staff.yml rename to config/system.action.user_add_role_action.staff.yml diff --git a/config/sync/system.action.user_block_user_action.yml b/config/system.action.user_block_user_action.yml similarity index 100% rename from config/sync/system.action.user_block_user_action.yml rename to config/system.action.user_block_user_action.yml diff --git a/config/sync/system.action.user_cancel_user_action.yml b/config/system.action.user_cancel_user_action.yml similarity index 100% rename from config/sync/system.action.user_cancel_user_action.yml rename to config/system.action.user_cancel_user_action.yml diff --git a/config/sync/system.action.user_remove_role_action.administrator.yml b/config/system.action.user_remove_role_action.administrator.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.administrator.yml rename to config/system.action.user_remove_role_action.administrator.yml diff --git a/config/sync/system.action.user_remove_role_action.contributor.yml b/config/system.action.user_remove_role_action.contributor.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.contributor.yml rename to config/system.action.user_remove_role_action.contributor.yml diff --git a/config/sync/system.action.user_remove_role_action.editor.yml b/config/system.action.user_remove_role_action.editor.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.editor.yml rename to config/system.action.user_remove_role_action.editor.yml diff --git a/config/sync/system.action.user_remove_role_action.manager.yml b/config/system.action.user_remove_role_action.manager.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.manager.yml rename to config/system.action.user_remove_role_action.manager.yml diff --git a/config/sync/system.action.user_remove_role_action.partner.yml b/config/system.action.user_remove_role_action.partner.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.partner.yml rename to config/system.action.user_remove_role_action.partner.yml diff --git a/config/sync/system.action.user_remove_role_action.past.yml b/config/system.action.user_remove_role_action.past.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.past.yml rename to config/system.action.user_remove_role_action.past.yml diff --git a/config/sync/system.action.user_remove_role_action.staff.yml b/config/system.action.user_remove_role_action.staff.yml similarity index 100% rename from config/sync/system.action.user_remove_role_action.staff.yml rename to config/system.action.user_remove_role_action.staff.yml diff --git a/config/sync/system.action.user_unblock_user_action.yml b/config/system.action.user_unblock_user_action.yml similarity index 100% rename from config/sync/system.action.user_unblock_user_action.yml rename to config/system.action.user_unblock_user_action.yml diff --git a/config/sync/system.action.webform_submission_delete_action.yml b/config/system.action.webform_submission_delete_action.yml similarity index 100% rename from config/sync/system.action.webform_submission_delete_action.yml rename to config/system.action.webform_submission_delete_action.yml diff --git a/config/sync/system.action.webform_submission_make_lock_action.yml b/config/system.action.webform_submission_make_lock_action.yml similarity index 100% rename from config/sync/system.action.webform_submission_make_lock_action.yml rename to config/system.action.webform_submission_make_lock_action.yml diff --git a/config/sync/system.action.webform_submission_make_sticky_action.yml b/config/system.action.webform_submission_make_sticky_action.yml similarity index 100% rename from config/sync/system.action.webform_submission_make_sticky_action.yml rename to config/system.action.webform_submission_make_sticky_action.yml diff --git a/config/sync/system.action.webform_submission_make_unlock_action.yml b/config/system.action.webform_submission_make_unlock_action.yml similarity index 100% rename from config/sync/system.action.webform_submission_make_unlock_action.yml rename to config/system.action.webform_submission_make_unlock_action.yml diff --git a/config/sync/system.action.webform_submission_make_unsticky_action.yml b/config/system.action.webform_submission_make_unsticky_action.yml similarity index 100% rename from config/sync/system.action.webform_submission_make_unsticky_action.yml rename to config/system.action.webform_submission_make_unsticky_action.yml diff --git a/config/sync/system.action.webmention_delete_action.yml b/config/system.action.webmention_delete_action.yml similarity index 100% rename from config/sync/system.action.webmention_delete_action.yml rename to config/system.action.webmention_delete_action.yml diff --git a/config/sync/system.action.webmention_publish_action.yml b/config/system.action.webmention_publish_action.yml similarity index 100% rename from config/sync/system.action.webmention_publish_action.yml rename to config/system.action.webmention_publish_action.yml diff --git a/config/sync/system.action.webmention_unpublish_action.yml b/config/system.action.webmention_unpublish_action.yml similarity index 100% rename from config/sync/system.action.webmention_unpublish_action.yml rename to config/system.action.webmention_unpublish_action.yml diff --git a/config/sync/system.authorize.yml b/config/system.authorize.yml similarity index 100% rename from config/sync/system.authorize.yml rename to config/system.authorize.yml diff --git a/config/sync/system.cron.yml b/config/system.cron.yml similarity index 100% rename from config/sync/system.cron.yml rename to config/system.cron.yml diff --git a/config/sync/system.date.yml b/config/system.date.yml similarity index 100% rename from config/sync/system.date.yml rename to config/system.date.yml diff --git a/config/sync/system.diff.yml b/config/system.diff.yml similarity index 100% rename from config/sync/system.diff.yml rename to config/system.diff.yml diff --git a/config/sync/system.file.yml b/config/system.file.yml similarity index 100% rename from config/sync/system.file.yml rename to config/system.file.yml diff --git a/config/sync/system.image.gd.yml b/config/system.image.gd.yml similarity index 100% rename from config/sync/system.image.gd.yml rename to config/system.image.gd.yml diff --git a/config/sync/system.image.yml b/config/system.image.yml similarity index 100% rename from config/sync/system.image.yml rename to config/system.image.yml diff --git a/config/sync/system.logging.yml b/config/system.logging.yml similarity index 100% rename from config/sync/system.logging.yml rename to config/system.logging.yml diff --git a/config/sync/system.mail.yml b/config/system.mail.yml similarity index 100% rename from config/sync/system.mail.yml rename to config/system.mail.yml diff --git a/config/sync/system.maintenance.yml b/config/system.maintenance.yml similarity index 100% rename from config/sync/system.maintenance.yml rename to config/system.maintenance.yml diff --git a/config/sync/system.menu.account.yml b/config/system.menu.account.yml similarity index 100% rename from config/sync/system.menu.account.yml rename to config/system.menu.account.yml diff --git a/config/sync/system.menu.admin.yml b/config/system.menu.admin.yml similarity index 100% rename from config/sync/system.menu.admin.yml rename to config/system.menu.admin.yml diff --git a/config/sync/system.menu.footer.yml b/config/system.menu.footer.yml similarity index 100% rename from config/sync/system.menu.footer.yml rename to config/system.menu.footer.yml diff --git a/config/sync/system.menu.main.yml b/config/system.menu.main.yml similarity index 100% rename from config/sync/system.menu.main.yml rename to config/system.menu.main.yml diff --git a/config/sync/system.menu.tools.yml b/config/system.menu.tools.yml similarity index 100% rename from config/sync/system.menu.tools.yml rename to config/system.menu.tools.yml diff --git a/config/sync/system.performance.yml b/config/system.performance.yml similarity index 100% rename from config/sync/system.performance.yml rename to config/system.performance.yml diff --git a/config/sync/system.rss.yml b/config/system.rss.yml similarity index 100% rename from config/sync/system.rss.yml rename to config/system.rss.yml diff --git a/config/sync/system.site.yml b/config/system.site.yml similarity index 100% rename from config/sync/system.site.yml rename to config/system.site.yml diff --git a/config/sync/system.theme.global.yml b/config/system.theme.global.yml similarity index 100% rename from config/sync/system.theme.global.yml rename to config/system.theme.global.yml diff --git a/config/sync/system.theme.yml b/config/system.theme.yml similarity index 100% rename from config/sync/system.theme.yml rename to config/system.theme.yml diff --git a/config/sync/taxonomy.settings.yml b/config/taxonomy.settings.yml similarity index 100% rename from config/sync/taxonomy.settings.yml rename to config/taxonomy.settings.yml diff --git a/config/sync/taxonomy.vocabulary.action_type.yml b/config/taxonomy.vocabulary.action_type.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.action_type.yml rename to config/taxonomy.vocabulary.action_type.yml diff --git a/config/sync/taxonomy.vocabulary.article_type.yml b/config/taxonomy.vocabulary.article_type.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.article_type.yml rename to config/taxonomy.vocabulary.article_type.yml diff --git a/config/sync/taxonomy.vocabulary.event_type.yml b/config/taxonomy.vocabulary.event_type.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.event_type.yml rename to config/taxonomy.vocabulary.event_type.yml diff --git a/config/sync/taxonomy.vocabulary.group_type.yml b/config/taxonomy.vocabulary.group_type.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.group_type.yml rename to config/taxonomy.vocabulary.group_type.yml diff --git a/config/sync/taxonomy.vocabulary.license.yml b/config/taxonomy.vocabulary.license.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.license.yml rename to config/taxonomy.vocabulary.license.yml diff --git a/config/sync/taxonomy.vocabulary.people_type.yml b/config/taxonomy.vocabulary.people_type.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.people_type.yml rename to config/taxonomy.vocabulary.people_type.yml diff --git a/config/sync/taxonomy.vocabulary.resource_type.yml b/config/taxonomy.vocabulary.resource_type.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.resource_type.yml rename to config/taxonomy.vocabulary.resource_type.yml diff --git a/config/sync/taxonomy.vocabulary.services.yml b/config/taxonomy.vocabulary.services.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.services.yml rename to config/taxonomy.vocabulary.services.yml diff --git a/config/sync/taxonomy.vocabulary.tags.yml b/config/taxonomy.vocabulary.tags.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.tags.yml rename to config/taxonomy.vocabulary.tags.yml diff --git a/config/sync/taxonomy.vocabulary.technologies.yml b/config/taxonomy.vocabulary.technologies.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.technologies.yml rename to config/taxonomy.vocabulary.technologies.yml diff --git a/config/sync/taxonomy.vocabulary.topics.yml b/config/taxonomy.vocabulary.topics.yml similarity index 100% rename from config/sync/taxonomy.vocabulary.topics.yml rename to config/taxonomy.vocabulary.topics.yml diff --git a/config/sync/text.settings.yml b/config/text.settings.yml similarity index 100% rename from config/sync/text.settings.yml rename to config/text.settings.yml diff --git a/config/sync/tour.tour.honeypot.yml b/config/tour.tour.honeypot.yml similarity index 100% rename from config/sync/tour.tour.honeypot.yml rename to config/tour.tour.honeypot.yml diff --git a/config/sync/tour.tour.language-add.yml b/config/tour.tour.language-add.yml similarity index 100% rename from config/sync/tour.tour.language-add.yml rename to config/tour.tour.language-add.yml diff --git a/config/sync/tour.tour.language-edit.yml b/config/tour.tour.language-edit.yml similarity index 100% rename from config/sync/tour.tour.language-edit.yml rename to config/tour.tour.language-edit.yml diff --git a/config/sync/tour.tour.language.yml b/config/tour.tour.language.yml similarity index 100% rename from config/sync/tour.tour.language.yml rename to config/tour.tour.language.yml diff --git a/config/sync/tour.tour.locale.yml b/config/tour.tour.locale.yml similarity index 100% rename from config/sync/tour.tour.locale.yml rename to config/tour.tour.locale.yml diff --git a/config/sync/tour.tour.search-api-index-fields.yml b/config/tour.tour.search-api-index-fields.yml similarity index 100% rename from config/sync/tour.tour.search-api-index-fields.yml rename to config/tour.tour.search-api-index-fields.yml diff --git a/config/sync/tour.tour.search-api-index-form.yml b/config/tour.tour.search-api-index-form.yml similarity index 100% rename from config/sync/tour.tour.search-api-index-form.yml rename to config/tour.tour.search-api-index-form.yml diff --git a/config/sync/tour.tour.search-api-index-processors.yml b/config/tour.tour.search-api-index-processors.yml similarity index 100% rename from config/sync/tour.tour.search-api-index-processors.yml rename to config/tour.tour.search-api-index-processors.yml diff --git a/config/sync/tour.tour.search-api-index.yml b/config/tour.tour.search-api-index.yml similarity index 100% rename from config/sync/tour.tour.search-api-index.yml rename to config/tour.tour.search-api-index.yml diff --git a/config/sync/tour.tour.search-api-server-form.yml b/config/tour.tour.search-api-server-form.yml similarity index 100% rename from config/sync/tour.tour.search-api-server-form.yml rename to config/tour.tour.search-api-server-form.yml diff --git a/config/sync/tour.tour.search-api-server.yml b/config/tour.tour.search-api-server.yml similarity index 100% rename from config/sync/tour.tour.search-api-server.yml rename to config/tour.tour.search-api-server.yml diff --git a/config/sync/tour.tour.views-ui.yml b/config/tour.tour.views-ui.yml similarity index 100% rename from config/sync/tour.tour.views-ui.yml rename to config/tour.tour.views-ui.yml diff --git a/config/sync/update.settings.yml b/config/update.settings.yml similarity index 100% rename from config/sync/update.settings.yml rename to config/update.settings.yml diff --git a/config/sync/user.flood.yml b/config/user.flood.yml similarity index 100% rename from config/sync/user.flood.yml rename to config/user.flood.yml diff --git a/config/sync/user.mail.yml b/config/user.mail.yml similarity index 100% rename from config/sync/user.mail.yml rename to config/user.mail.yml diff --git a/config/sync/user.role.administrator.yml b/config/user.role.administrator.yml similarity index 100% rename from config/sync/user.role.administrator.yml rename to config/user.role.administrator.yml diff --git a/config/sync/user.role.anonymous.yml b/config/user.role.anonymous.yml similarity index 100% rename from config/sync/user.role.anonymous.yml rename to config/user.role.anonymous.yml diff --git a/config/sync/user.role.authenticated.yml b/config/user.role.authenticated.yml similarity index 100% rename from config/sync/user.role.authenticated.yml rename to config/user.role.authenticated.yml diff --git a/config/sync/user.role.contributor.yml b/config/user.role.contributor.yml similarity index 100% rename from config/sync/user.role.contributor.yml rename to config/user.role.contributor.yml diff --git a/config/sync/user.role.editor.yml b/config/user.role.editor.yml similarity index 100% rename from config/sync/user.role.editor.yml rename to config/user.role.editor.yml diff --git a/config/sync/user.role.manager.yml b/config/user.role.manager.yml similarity index 100% rename from config/sync/user.role.manager.yml rename to config/user.role.manager.yml diff --git a/config/sync/user.role.partner.yml b/config/user.role.partner.yml similarity index 100% rename from config/sync/user.role.partner.yml rename to config/user.role.partner.yml diff --git a/config/sync/user.role.past.yml b/config/user.role.past.yml similarity index 100% rename from config/sync/user.role.past.yml rename to config/user.role.past.yml diff --git a/config/sync/user.role.staff.yml b/config/user.role.staff.yml similarity index 100% rename from config/sync/user.role.staff.yml rename to config/user.role.staff.yml diff --git a/config/sync/user.settings.yml b/config/user.settings.yml similarity index 100% rename from config/sync/user.settings.yml rename to config/user.settings.yml diff --git a/config/sync/views.settings.yml b/config/views.settings.yml similarity index 100% rename from config/sync/views.settings.yml rename to config/views.settings.yml diff --git a/config/sync/views.view.action.yml b/config/views.view.action.yml similarity index 100% rename from config/sync/views.view.action.yml rename to config/views.view.action.yml diff --git a/config/sync/views.view.archive.yml b/config/views.view.archive.yml similarity index 100% rename from config/sync/views.view.archive.yml rename to config/views.view.archive.yml diff --git a/config/sync/views.view.article.yml b/config/views.view.article.yml similarity index 100% rename from config/sync/views.view.article.yml rename to config/views.view.article.yml diff --git a/config/sync/views.view.block_content.yml b/config/views.view.block_content.yml similarity index 100% rename from config/sync/views.view.block_content.yml rename to config/views.view.block_content.yml diff --git a/config/sync/views.view.blog.yml b/config/views.view.blog.yml similarity index 100% rename from config/sync/views.view.blog.yml rename to config/views.view.blog.yml diff --git a/config/sync/views.view.campaign.yml b/config/views.view.campaign.yml similarity index 100% rename from config/sync/views.view.campaign.yml rename to config/views.view.campaign.yml diff --git a/config/sync/views.view.case_study.yml b/config/views.view.case_study.yml similarity index 100% rename from config/sync/views.view.case_study.yml rename to config/views.view.case_study.yml diff --git a/config/sync/views.view.comment.yml b/config/views.view.comment.yml similarity index 100% rename from config/sync/views.view.comment.yml rename to config/views.view.comment.yml diff --git a/config/sync/views.view.comments_recent.yml b/config/views.view.comments_recent.yml similarity index 100% rename from config/sync/views.view.comments_recent.yml rename to config/views.view.comments_recent.yml diff --git a/config/sync/views.view.content.yml b/config/views.view.content.yml similarity index 100% rename from config/sync/views.view.content.yml rename to config/views.view.content.yml diff --git a/config/sync/views.view.content_recent.yml b/config/views.view.content_recent.yml similarity index 100% rename from config/sync/views.view.content_recent.yml rename to config/views.view.content_recent.yml diff --git a/config/sync/views.view.event.yml b/config/views.view.event.yml similarity index 100% rename from config/sync/views.view.event.yml rename to config/views.view.event.yml diff --git a/config/sync/views.view.files.yml b/config/views.view.files.yml similarity index 100% rename from config/sync/views.view.files.yml rename to config/views.view.files.yml diff --git a/config/sync/views.view.frontpage.yml b/config/views.view.frontpage.yml similarity index 100% rename from config/sync/views.view.frontpage.yml rename to config/views.view.frontpage.yml diff --git a/config/sync/views.view.glossary.yml b/config/views.view.glossary.yml similarity index 100% rename from config/sync/views.view.glossary.yml rename to config/views.view.glossary.yml diff --git a/config/sync/views.view.group.yml b/config/views.view.group.yml similarity index 100% rename from config/sync/views.view.group.yml rename to config/views.view.group.yml diff --git a/config/sync/views.view.group_content.yml b/config/views.view.group_content.yml similarity index 100% rename from config/sync/views.view.group_content.yml rename to config/views.view.group_content.yml diff --git a/config/sync/views.view.group_members.yml b/config/views.view.group_members.yml similarity index 100% rename from config/sync/views.view.group_members.yml rename to config/views.view.group_members.yml diff --git a/config/sync/views.view.group_nodes.yml b/config/views.view.group_nodes.yml similarity index 100% rename from config/sync/views.view.group_nodes.yml rename to config/views.view.group_nodes.yml diff --git a/config/sync/views.view.people.yml b/config/views.view.people.yml similarity index 100% rename from config/sync/views.view.people.yml rename to config/views.view.people.yml diff --git a/config/sync/views.view.redirect.yml b/config/views.view.redirect.yml similarity index 100% rename from config/sync/views.view.redirect.yml rename to config/views.view.redirect.yml diff --git a/config/sync/views.view.redirect_404.yml b/config/views.view.redirect_404.yml similarity index 100% rename from config/sync/views.view.redirect_404.yml rename to config/views.view.redirect_404.yml diff --git a/config/sync/views.view.related_content.yml b/config/views.view.related_content.yml similarity index 100% rename from config/sync/views.view.related_content.yml rename to config/views.view.related_content.yml diff --git a/config/sync/views.view.resource.yml b/config/views.view.resource.yml similarity index 100% rename from config/sync/views.view.resource.yml rename to config/views.view.resource.yml diff --git a/config/sync/views.view.search.yml b/config/views.view.search.yml similarity index 100% rename from config/sync/views.view.search.yml rename to config/views.view.search.yml diff --git a/config/sync/views.view.taxonomy_term.yml b/config/views.view.taxonomy_term.yml similarity index 100% rename from config/sync/views.view.taxonomy_term.yml rename to config/views.view.taxonomy_term.yml diff --git a/config/sync/views.view.user_admin_people.yml b/config/views.view.user_admin_people.yml similarity index 100% rename from config/sync/views.view.user_admin_people.yml rename to config/views.view.user_admin_people.yml diff --git a/config/sync/views.view.watchdog.yml b/config/views.view.watchdog.yml similarity index 100% rename from config/sync/views.view.watchdog.yml rename to config/views.view.watchdog.yml diff --git a/config/sync/views.view.webform_submissions.yml b/config/views.view.webform_submissions.yml similarity index 100% rename from config/sync/views.view.webform_submissions.yml rename to config/views.view.webform_submissions.yml diff --git a/config/sync/views.view.webmentions.yml b/config/views.view.webmentions.yml similarity index 100% rename from config/sync/views.view.webmentions.yml rename to config/views.view.webmentions.yml diff --git a/config/sync/views.view.who_s_new.yml b/config/views.view.who_s_new.yml similarity index 100% rename from config/sync/views.view.who_s_new.yml rename to config/views.view.who_s_new.yml diff --git a/config/sync/views.view.who_s_online.yml b/config/views.view.who_s_online.yml similarity index 100% rename from config/sync/views.view.who_s_online.yml rename to config/views.view.who_s_online.yml diff --git a/config/sync/webform.settings.yml b/config/webform.settings.yml similarity index 100% rename from config/sync/webform.settings.yml rename to config/webform.settings.yml diff --git a/config/sync/webform.webform.attend_the_tech_and_rev_workshop.yml b/config/webform.webform.attend_the_tech_and_rev_workshop.yml similarity index 100% rename from config/sync/webform.webform.attend_the_tech_and_rev_workshop.yml rename to config/webform.webform.attend_the_tech_and_rev_workshop.yml diff --git a/config/sync/webform.webform.blog_posts.yml b/config/webform.webform.blog_posts.yml similarity index 100% rename from config/sync/webform.webform.blog_posts.yml rename to config/webform.webform.blog_posts.yml diff --git a/config/sync/webform.webform.capacitacion.yml b/config/webform.webform.capacitacion.yml similarity index 100% rename from config/sync/webform.webform.capacitacion.yml rename to config/webform.webform.capacitacion.yml diff --git a/config/sync/webform.webform.contact.yml b/config/webform.webform.contact.yml similarity index 100% rename from config/sync/webform.webform.contact.yml rename to config/webform.webform.contact.yml diff --git a/config/sync/webform.webform.contact_confirm.yml b/config/webform.webform.contact_confirm.yml similarity index 100% rename from config/sync/webform.webform.contact_confirm.yml rename to config/webform.webform.contact_confirm.yml diff --git a/config/sync/webform.webform.drupal_8_9_content_migrations.yml b/config/webform.webform.drupal_8_9_content_migrations.yml similarity index 100% rename from config/sync/webform.webform.drupal_8_9_content_migrations.yml rename to config/webform.webform.drupal_8_9_content_migrations.yml diff --git a/config/sync/webform.webform.drutopia_intake.yml b/config/webform.webform.drutopia_intake.yml similarity index 100% rename from config/sync/webform.webform.drutopia_intake.yml rename to config/webform.webform.drutopia_intake.yml diff --git a/config/sync/webform.webform.drutopia_platform_intake.yml b/config/webform.webform.drutopia_platform_intake.yml similarity index 100% rename from config/sync/webform.webform.drutopia_platform_intake.yml rename to config/webform.webform.drutopia_platform_intake.yml diff --git a/config/sync/webform.webform.find_it_platform.yml b/config/webform.webform.find_it_platform.yml similarity index 100% rename from config/sync/webform.webform.find_it_platform.yml rename to config/webform.webform.find_it_platform.yml diff --git a/config/sync/webform.webform.general_services.yml b/config/webform.webform.general_services.yml similarity index 100% rename from config/sync/webform.webform.general_services.yml rename to config/webform.webform.general_services.yml diff --git a/config/sync/webform.webform.getting_started_with_drupal_9.yml b/config/webform.webform.getting_started_with_drupal_9.yml similarity index 100% rename from config/sync/webform.webform.getting_started_with_drupal_9.yml rename to config/webform.webform.getting_started_with_drupal_9.yml diff --git a/config/sync/webform.webform.getting_started_with_react_js.yml b/config/webform.webform.getting_started_with_react_js.yml similarity index 100% rename from config/sync/webform.webform.getting_started_with_react_js.yml rename to config/webform.webform.getting_started_with_react_js.yml diff --git a/config/sync/webform.webform.join_the_movement.yml b/config/webform.webform.join_the_movement.yml similarity index 100% rename from config/sync/webform.webform.join_the_movement.yml rename to config/webform.webform.join_the_movement.yml diff --git a/config/sync/webform.webform.join_the_movement_confirm.yml b/config/webform.webform.join_the_movement_confirm.yml similarity index 100% rename from config/sync/webform.webform.join_the_movement_confirm.yml rename to config/webform.webform.join_the_movement_confirm.yml diff --git a/config/sync/webform.webform.june_2020_webinars.yml b/config/webform.webform.june_2020_webinars.yml similarity index 100% rename from config/sync/webform.webform.june_2020_webinars.yml rename to config/webform.webform.june_2020_webinars.yml diff --git a/config/sync/webform.webform.lms.yml b/config/webform.webform.lms.yml similarity index 100% rename from config/sync/webform.webform.lms.yml rename to config/webform.webform.lms.yml diff --git a/config/sync/webform.webform.migrations.yml b/config/webform.webform.migrations.yml similarity index 100% rename from config/sync/webform.webform.migrations.yml rename to config/webform.webform.migrations.yml diff --git a/config/sync/webform.webform.migrations_training_confirm.yml b/config/webform.webform.migrations_training_confirm.yml similarity index 100% rename from config/sync/webform.webform.migrations_training_confirm.yml rename to config/webform.webform.migrations_training_confirm.yml diff --git a/config/sync/webform.webform.newsletter.yml b/config/webform.webform.newsletter.yml similarity index 100% rename from config/sync/webform.webform.newsletter.yml rename to config/webform.webform.newsletter.yml diff --git a/config/sync/webform.webform.purchase_training_migrate_api.yml b/config/webform.webform.purchase_training_migrate_api.yml similarity index 100% rename from config/sync/webform.webform.purchase_training_migrate_api.yml rename to config/webform.webform.purchase_training_migrate_api.yml diff --git a/config/sync/webform.webform.request.yml b/config/webform.webform.request.yml similarity index 100% rename from config/sync/webform.webform.request.yml rename to config/webform.webform.request.yml diff --git a/config/sync/webform.webform.showandtell.yml b/config/webform.webform.showandtell.yml similarity index 100% rename from config/sync/webform.webform.showandtell.yml rename to config/webform.webform.showandtell.yml diff --git a/config/sync/webform.webform.speaker_request_agaric.yml b/config/webform.webform.speaker_request_agaric.yml similarity index 100% rename from config/sync/webform.webform.speaker_request_agaric.yml rename to config/webform.webform.speaker_request_agaric.yml diff --git a/config/sync/webform.webform.speaker_request_clayton_dewey.yml b/config/webform.webform.speaker_request_clayton_dewey.yml similarity index 100% rename from config/sync/webform.webform.speaker_request_clayton_dewey.yml rename to config/webform.webform.speaker_request_clayton_dewey.yml diff --git a/config/sync/webform.webform.speaker_request_mauricio_dinarte.yml b/config/webform.webform.speaker_request_mauricio_dinarte.yml similarity index 100% rename from config/sync/webform.webform.speaker_request_mauricio_dinarte.yml rename to config/webform.webform.speaker_request_mauricio_dinarte.yml diff --git a/config/sync/webform.webform.speaker_request_michele_metts.yml b/config/webform.webform.speaker_request_michele_metts.yml similarity index 100% rename from config/sync/webform.webform.speaker_request_michele_metts.yml rename to config/webform.webform.speaker_request_michele_metts.yml diff --git a/config/sync/webform.webform.speaker_request_micky_metts.yml b/config/webform.webform.speaker_request_micky_metts.yml similarity index 100% rename from config/sync/webform.webform.speaker_request_micky_metts.yml rename to config/webform.webform.speaker_request_micky_metts.yml diff --git a/config/sync/webform.webform.training.yml b/config/webform.webform.training.yml similarity index 100% rename from config/sync/webform.webform.training.yml rename to config/webform.webform.training.yml diff --git a/config/sync/webform.webform.training_discount.yml b/config/webform.webform.training_discount.yml similarity index 100% rename from config/sync/webform.webform.training_discount.yml rename to config/webform.webform.training_discount.yml diff --git a/config/sync/webform.webform.training_notification_request.yml b/config/webform.webform.training_notification_request.yml similarity index 100% rename from config/sync/webform.webform.training_notification_request.yml rename to config/webform.webform.training_notification_request.yml diff --git a/config/sync/webform.webform.training_request_draft.yml b/config/webform.webform.training_request_draft.yml similarity index 100% rename from config/sync/webform.webform.training_request_draft.yml rename to config/webform.webform.training_request_draft.yml diff --git a/config/sync/webform.webform.workshops.yml b/config/webform.webform.workshops.yml similarity index 100% rename from config/sync/webform.webform.workshops.yml rename to config/webform.webform.workshops.yml diff --git a/config/sync/webform.webform_options.country_codes.yml b/config/webform.webform_options.country_codes.yml similarity index 100% rename from config/sync/webform.webform_options.country_codes.yml rename to config/webform.webform_options.country_codes.yml diff --git a/config/sync/webform.webform_options.country_names.yml b/config/webform.webform_options.country_names.yml similarity index 100% rename from config/sync/webform.webform_options.country_names.yml rename to config/webform.webform_options.country_names.yml diff --git a/config/sync/webform.webform_options.days.yml b/config/webform.webform_options.days.yml similarity index 100% rename from config/sync/webform.webform_options.days.yml rename to config/webform.webform_options.days.yml diff --git a/config/sync/webform.webform_options.education.yml b/config/webform.webform_options.education.yml similarity index 100% rename from config/sync/webform.webform_options.education.yml rename to config/webform.webform_options.education.yml diff --git a/config/sync/webform.webform_options.employment_status.yml b/config/webform.webform_options.employment_status.yml similarity index 100% rename from config/sync/webform.webform_options.employment_status.yml rename to config/webform.webform_options.employment_status.yml diff --git a/config/sync/webform.webform_options.ethnicity.yml b/config/webform.webform_options.ethnicity.yml similarity index 100% rename from config/sync/webform.webform_options.ethnicity.yml rename to config/webform.webform_options.ethnicity.yml diff --git a/config/sync/webform.webform_options.gender.yml b/config/webform.webform_options.gender.yml similarity index 100% rename from config/sync/webform.webform_options.gender.yml rename to config/webform.webform_options.gender.yml diff --git a/config/sync/webform.webform_options.industry.yml b/config/webform.webform_options.industry.yml similarity index 100% rename from config/sync/webform.webform_options.industry.yml rename to config/webform.webform_options.industry.yml diff --git a/config/sync/webform.webform_options.languages.yml b/config/webform.webform_options.languages.yml similarity index 100% rename from config/sync/webform.webform_options.languages.yml rename to config/webform.webform_options.languages.yml diff --git a/config/sync/webform.webform_options.likert_agreement.yml b/config/webform.webform_options.likert_agreement.yml similarity index 100% rename from config/sync/webform.webform_options.likert_agreement.yml rename to config/webform.webform_options.likert_agreement.yml diff --git a/config/sync/webform.webform_options.likert_comparison.yml b/config/webform.webform_options.likert_comparison.yml similarity index 100% rename from config/sync/webform.webform_options.likert_comparison.yml rename to config/webform.webform_options.likert_comparison.yml diff --git a/config/sync/webform.webform_options.likert_importance.yml b/config/webform.webform_options.likert_importance.yml similarity index 100% rename from config/sync/webform.webform_options.likert_importance.yml rename to config/webform.webform_options.likert_importance.yml diff --git a/config/sync/webform.webform_options.likert_quality.yml b/config/webform.webform_options.likert_quality.yml similarity index 100% rename from config/sync/webform.webform_options.likert_quality.yml rename to config/webform.webform_options.likert_quality.yml diff --git a/config/sync/webform.webform_options.likert_satisfaction.yml b/config/webform.webform_options.likert_satisfaction.yml similarity index 100% rename from config/sync/webform.webform_options.likert_satisfaction.yml rename to config/webform.webform_options.likert_satisfaction.yml diff --git a/config/sync/webform.webform_options.likert_ten_scale.yml b/config/webform.webform_options.likert_ten_scale.yml similarity index 100% rename from config/sync/webform.webform_options.likert_ten_scale.yml rename to config/webform.webform_options.likert_ten_scale.yml diff --git a/config/sync/webform.webform_options.likert_would_you.yml b/config/webform.webform_options.likert_would_you.yml similarity index 100% rename from config/sync/webform.webform_options.likert_would_you.yml rename to config/webform.webform_options.likert_would_you.yml diff --git a/config/sync/webform.webform_options.marital_status.yml b/config/webform.webform_options.marital_status.yml similarity index 100% rename from config/sync/webform.webform_options.marital_status.yml rename to config/webform.webform_options.marital_status.yml diff --git a/config/sync/webform.webform_options.months.yml b/config/webform.webform_options.months.yml similarity index 100% rename from config/sync/webform.webform_options.months.yml rename to config/webform.webform_options.months.yml diff --git a/config/sync/webform.webform_options.phone_types.yml b/config/webform.webform_options.phone_types.yml similarity index 100% rename from config/sync/webform.webform_options.phone_types.yml rename to config/webform.webform_options.phone_types.yml diff --git a/config/sync/webform.webform_options.relationship.yml b/config/webform.webform_options.relationship.yml similarity index 100% rename from config/sync/webform.webform_options.relationship.yml rename to config/webform.webform_options.relationship.yml diff --git a/config/sync/webform.webform_options.size.yml b/config/webform.webform_options.size.yml similarity index 100% rename from config/sync/webform.webform_options.size.yml rename to config/webform.webform_options.size.yml diff --git a/config/sync/webform.webform_options.state_codes.yml b/config/webform.webform_options.state_codes.yml similarity index 100% rename from config/sync/webform.webform_options.state_codes.yml rename to config/webform.webform_options.state_codes.yml diff --git a/config/sync/webform.webform_options.state_names.yml b/config/webform.webform_options.state_names.yml similarity index 100% rename from config/sync/webform.webform_options.state_names.yml rename to config/webform.webform_options.state_names.yml diff --git a/config/sync/webform.webform_options.state_province_codes.yml b/config/webform.webform_options.state_province_codes.yml similarity index 100% rename from config/sync/webform.webform_options.state_province_codes.yml rename to config/webform.webform_options.state_province_codes.yml diff --git a/config/sync/webform.webform_options.state_province_names.yml b/config/webform.webform_options.state_province_names.yml similarity index 100% rename from config/sync/webform.webform_options.state_province_names.yml rename to config/webform.webform_options.state_province_names.yml diff --git a/config/sync/webform.webform_options.time_zones.yml b/config/webform.webform_options.time_zones.yml similarity index 100% rename from config/sync/webform.webform_options.time_zones.yml rename to config/webform.webform_options.time_zones.yml diff --git a/config/sync/webform.webform_options.yes_no.yml b/config/webform.webform_options.yes_no.yml similarity index 100% rename from config/sync/webform.webform_options.yes_no.yml rename to config/webform.webform_options.yes_no.yml diff --git a/config/sync/webform_scheduled_email.settings.yml b/config/webform_scheduled_email.settings.yml similarity index 100% rename from config/sync/webform_scheduled_email.settings.yml rename to config/webform_scheduled_email.settings.yml From f803aa666843757b795e3e159b862ac0c96989f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:51:50 -0400 Subject: [PATCH 053/236] Config changes from live, inc linebreak expansions --- ...ysofmigrationsinterviewontalkingdrupal.yml | 31 + ...block.block.agarica_home_page_custom_1.yml | 2 +- .../block.block.exposedformsearchpage_1_2.yml | 4 +- ...lock.block.upcomingtrainingsfromagaric.yml | 6 - config/comment_notify.settings.yml | 42 +- ....custom_perms_entity.edit_contact_form.yml | 4 +- ...shot.config_sync.module.comment_notify.yml | 42 +- ...pshot.config_sync.module.drutopia_core.yml | 4 +- ...ot.config_sync.module.google_analytics.yml | 8 +- ...t.snapshot.config_sync.module.honeypot.yml | 10 +- ...shot.snapshot.config_sync.module.media.yml | 1010 ++++++++++++ ...pshot.config_sync.module.media_library.yml | 1469 +++++++++++++++++ ...pshot.snapshot.config_sync.module.user.yml | 104 +- ...ot.snapshot.config_sync.module.webform.yml | 578 +------ ...e.entity_form_mode.media.media_library.yml | 15 + config/core.entity_view_mode.media.full.yml | 12 + ...e.entity_view_mode.media.media_library.yml | 15 + config/core.extension.yml | 2 + config/customerror.settings.yml | 29 +- config/editor.editor.basic_html.yml | 5 +- config/google_analytics.settings.yml | 8 +- config/image.style.media_library.yml | 20 + config/language/es/views.view.blog.yml | 5 +- config/language/es/views.view.media.yml | 10 + .../language/es/views.view.media_library.yml | 35 + .../es/webform.webform.capacitacion.yml | 23 +- .../language/es/webform.webform.contact.yml | 23 +- .../language/es/webform.webform.contacto.yml | 22 +- .../language/es/webform.webform.training.yml | 23 +- config/media.settings.yml | 6 + config/media_library.settings.yml | 3 + config/redirect_404.settings.yml | 152 +- config/system.action.media_delete_action.yml | 13 + config/system.action.media_publish_action.yml | 13 + config/system.action.media_save_action.yml | 13 + .../system.action.media_unpublish_action.yml | 13 + config/tour.tour.honeypot.yml | 10 +- config/user.mail.yml | 104 +- config/user.role.anonymous.yml | 1 + config/user.role.authenticated.yml | 1 + config/views.view.blog.yml | 7 +- config/views.view.media.yml | 907 ++++++++++ config/views.view.media_library.yml | 1389 ++++++++++++++++ config/webform.settings.yml | 136 +- ...bform.attend_the_tech_and_rev_workshop.yml | 22 +- config/webform.webform.blog_posts.yml | 15 +- config/webform.webform.capacitacion.yml | 37 +- config/webform.webform.contact.yml | 43 +- config/webform.webform.contact_confirm.yml | 20 +- ....webform.drupal_8_9_content_migrations.yml | 54 +- config/webform.webform.drutopia_intake.yml | 46 +- ...bform.webform.drutopia_platform_intake.yml | 17 +- config/webform.webform.find_it_platform.yml | 8 +- config/webform.webform.general_services.yml | 22 +- ....webform.getting_started_with_drupal_9.yml | 54 +- ....webform.getting_started_with_react_js.yml | 54 +- config/webform.webform.join_the_movement.yml | 13 +- ...form.webform.join_the_movement_confirm.yml | 5 +- config/webform.webform.june_2020_webinars.yml | 53 +- config/webform.webform.lms.yml | 23 +- config/webform.webform.migrations.yml | 13 +- ...rm.webform.migrations_training_confirm.yml | 9 +- config/webform.webform.newsletter.yml | 25 +- ....webform.purchase_training_migrate_api.yml | 54 +- config/webform.webform.request.yml | 15 +- config/webform.webform.showandtell.yml | 50 +- ...webform.webform.speaker_request_agaric.yml | 129 +- ....webform.speaker_request_clayton_dewey.yml | 42 +- ...bform.speaker_request_mauricio_dinarte.yml | 42 +- ....webform.speaker_request_michele_metts.yml | 42 +- ...rm.webform.speaker_request_micky_metts.yml | 42 +- config/webform.webform.training.yml | 35 +- config/webform.webform.training_discount.yml | 60 +- ....webform.training_notification_request.yml | 30 +- ...webform.webform.training_request_draft.yml | 63 +- config/webform.webform.workshops.yml | 6 +- config/webform.webform_options.days.yml | 9 +- config/webform.webform_options.education.yml | 6 +- ...form.webform_options.employment_status.yml | 7 +- config/webform.webform_options.ethnicity.yml | 10 +- config/webform.webform_options.gender.yml | 4 +- config/webform.webform_options.industry.yml | 41 +- ...bform.webform_options.likert_agreement.yml | 7 +- ...form.webform_options.likert_comparison.yml | 7 +- ...form.webform_options.likert_importance.yml | 7 +- ...webform.webform_options.likert_quality.yml | 7 +- ...rm.webform_options.likert_satisfaction.yml | 7 +- ...bform.webform_options.likert_ten_scale.yml | 12 +- ...bform.webform_options.likert_would_you.yml | 7 +- ...webform.webform_options.marital_status.yml | 6 +- config/webform.webform_options.months.yml | 14 +- .../webform.webform_options.phone_types.yml | 5 +- .../webform.webform_options.relationship.yml | 7 +- config/webform.webform_options.size.yml | 7 +- .../webform.webform_options.state_codes.yml | 54 +- .../webform.webform_options.state_names.yml | 53 +- ...m.webform_options.state_province_codes.yml | 64 +- ...m.webform_options.state_province_names.yml | 64 +- config/webform.webform_options.yes_no.yml | 4 +- 99 files changed, 5173 insertions(+), 2708 deletions(-) create mode 100644 config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml create mode 100644 config/config_snapshot.snapshot.config_sync.module.media.yml create mode 100644 config/config_snapshot.snapshot.config_sync.module.media_library.yml create mode 100644 config/core.entity_form_mode.media.media_library.yml create mode 100644 config/core.entity_view_mode.media.full.yml create mode 100644 config/core.entity_view_mode.media.media_library.yml create mode 100644 config/image.style.media_library.yml create mode 100644 config/language/es/views.view.media.yml create mode 100644 config/language/es/views.view.media_library.yml create mode 100644 config/media.settings.yml create mode 100644 config/media_library.settings.yml create mode 100644 config/system.action.media_delete_action.yml create mode 100644 config/system.action.media_publish_action.yml create mode 100644 config/system.action.media_save_action.yml create mode 100644 config/system.action.media_unpublish_action.yml create mode 100644 config/views.view.media.yml create mode 100644 config/views.view.media_library.yml diff --git a/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml b/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml new file mode 100644 index 0000000..6f4fc75 --- /dev/null +++ b/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml @@ -0,0 +1,31 @@ +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' + provider: block_content + label_display: '0' + status: true + info: '' + view_mode: columnar +visibility: + condition_group: + id: condition_group + negate: false + block_visibility_group: '' + context_mapping: { } diff --git a/config/block.block.agarica_home_page_custom_1.yml b/config/block.block.agarica_home_page_custom_1.yml index 093efe3..177f1a6 100644 --- a/config/block.block.agarica_home_page_custom_1.yml +++ b/config/block.block.agarica_home_page_custom_1.yml @@ -1,6 +1,6 @@ uuid: 7201dbba-0cc0-46c5-a175-3b1be47aa5e3 langcode: en -status: true +status: false dependencies: content: - 'block_content:slide:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' diff --git a/config/block.block.exposedformsearchpage_1_2.yml b/config/block.block.exposedformsearchpage_1_2.yml index 0c876d5..6ce8761 100644 --- a/config/block.block.exposedformsearchpage_1_2.yml +++ b/config/block.block.exposedformsearchpage_1_2.yml @@ -30,8 +30,6 @@ visibility: context_mapping: { } request_path: id: request_path - pages: | - /search - /search/* + pages: "/search\n/search/*\n" negate: false context_mapping: { } diff --git a/config/block.block.upcomingtrainingsfromagaric.yml b/config/block.block.upcomingtrainingsfromagaric.yml index 8cb47e9..8b0b88f 100644 --- a/config/block.block.upcomingtrainingsfromagaric.yml +++ b/config/block.block.upcomingtrainingsfromagaric.yml @@ -7,7 +7,6 @@ dependencies: module: - block_content - block_visibility_groups - - system theme: - agarica id: upcomingtrainingsfromagaric @@ -30,8 +29,3 @@ visibility: negate: false block_visibility_group: '' context_mapping: { } - request_path: - id: request_path - pages: '' - negate: false - context_mapping: { } diff --git a/config/comment_notify.settings.yml b/config/comment_notify.settings.yml index f55526f..7971531 100644 --- a/config/comment_notify.settings.yml +++ b/config/comment_notify.settings.yml @@ -10,49 +10,11 @@ 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] + body: "Hi [comment-subscribed:author],\n\n[comment:author] has commented on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou can stop receiving emails when someone replies to this post,\nby going to [comment-subscribed:unsubscribe-url]\n\nYou can set up auto-following feature for all future posts\nby creating your own user with a few clicks here [site:login-url]\n\n-- [site:name] team\n[site:url]\n" 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] + body: "Hi [node:author],\n\nYou have received a comment on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou will receive emails like this for all replies to your posts. You can\ndisable this by logging in and changing the settings on your user account at\n[node:author:edit-url].\n\n-- [site:name] team\n[site:url]\n" _core: default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik bundle_types: diff --git a/config/config_perms.custom_perms_entity.edit_contact_form.yml b/config/config_perms.custom_perms_entity.edit_contact_form.yml index cec3b04..ab8ca6e 100644 --- a/config/config_perms.custom_perms_entity.edit_contact_form.yml +++ b/config/config_perms.custom_perms_entity.edit_contact_form.yml @@ -6,6 +6,4 @@ _core: default_config_hash: eJWhGhpRfmEhpk2aZAe8424DHGi6A4onjpxfouE4eWk id: edit_contact_form label: 'Edit contact form' -route: | - entity.contact_form.collection - entity.contact_form.edit_form +route: "entity.contact_form.collection\nentity.contact_form.edit_form\n" diff --git a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml index bb55b73..ef80d9b 100644 --- a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml +++ b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml @@ -24,45 +24,7 @@ items: 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] + body: "Hi [comment-subscribed:author],\n\n[comment:author] has commented on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou can stop receiving emails when someone replies to this post,\nby going to [comment-subscribed:unsubscribe-url]\n\nYou can set up auto-following feature for all future posts\nby creating your own user with a few clicks here [site:login-url]\n\n-- [site:name] team\n[site:url]\n" 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] + body: "Hi [node:author],\n\nYou have received a comment on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou will receive emails like this for all replies to your posts. You can\ndisable this by logging in and changing the settings on your user account at\n[node:author:edit-url].\n\n-- [site:name] team\n[site:url]\n" diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml index b509de6..b1a3c9f 100644 --- a/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml +++ b/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml @@ -28,9 +28,7 @@ items: dependencies: { } id: edit_contact_form label: 'Edit contact form' - route: | - entity.contact_form.collection - entity.contact_form.edit_form + route: "entity.contact_form.collection\nentity.contact_form.edit_form\n" - collection: '' name: core.date_format.month_day_year diff --git a/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml b/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml index d73caab..38affde 100644 --- a/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml +++ b/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml @@ -19,13 +19,7 @@ items: cross_domains: '' visibility: request_path_mode: 0 - request_path_pages: | - /admin - /admin/* - /batch - /node/add* - /node/*/* - /user/*/* + request_path_pages: "/admin\n/admin/*\n/batch\n/node/add*\n/node/*/*\n/user/*/*\n" user_role_mode: 0 user_role_roles: { } user_account_mode: 0 diff --git a/config/config_snapshot.snapshot.config_sync.module.honeypot.yml b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml index f2e9152..9b8ab63 100644 --- a/config/config_snapshot.snapshot.config_sync.module.honeypot.yml +++ b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml @@ -46,10 +46,7 @@ items: plugin: text label: Honeypot weight: -10 - body: | - Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots. - - Click Next to be guided through this configuration page. + body: "Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots.\n\nClick Next to be guided through this configuration page.\n" location: top protect-all-forms: id: protect-all-forms @@ -58,10 +55,7 @@ items: weight: -9 attributes: data-id: edit-protect-all-forms - body: | - Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed. - - Note: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time. + body: "Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed.\n\nNote: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time.\n" location: bottom log-blocked-form-submissions: id: log-blocked-form-submissions diff --git a/config/config_snapshot.snapshot.config_sync.module.media.yml b/config/config_snapshot.snapshot.config_sync.module.media.yml new file mode 100644 index 0000000..1ac3cff --- /dev/null +++ b/config/config_snapshot.snapshot.config_sync.module.media.yml @@ -0,0 +1,1010 @@ +uuid: 9ba28a32-9c93-4804-beff-ea375dc9fd95 +langcode: en +status: true +dependencies: + module: + - media +id: config_sync.module.media +snapshotSet: config_sync +extensionType: module +extensionName: media +items: + - + collection: '' + name: core.entity_view_mode.media.full + data: + langcode: en + status: false + dependencies: + module: + - media + id: media.full + label: 'Full content' + targetEntityType: media + cache: true + _core: + default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 + - + collection: '' + name: media.settings + data: + icon_base_uri: 'public://media-icons/generic' + iframe_domain: '' + oembed_providers_url: 'https://oembed.com/providers.json' + standalone_url: false + _core: + default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY + - + collection: '' + name: system.action.media_delete_action + data: + langcode: en + status: true + dependencies: + module: + - media + id: media_delete_action + label: 'Delete media' + type: media + plugin: 'entity:delete_action:media' + configuration: { } + _core: + default_config_hash: FrZy1tmuXJcOxhXlBoI1Hsnen5TT-9OCC1iolWH84go + - + collection: '' + name: system.action.media_publish_action + data: + langcode: en + status: true + dependencies: + module: + - media + id: media_publish_action + label: 'Publish media' + type: media + plugin: 'entity:publish_action:media' + configuration: { } + _core: + default_config_hash: nh83qNNrmWE-CDdHz2MdFOAk60T9mzv3R-MaKfZR2jw + - + collection: '' + name: system.action.media_save_action + data: + langcode: en + status: true + dependencies: + module: + - media + id: media_save_action + label: 'Save media' + type: media + plugin: 'entity:save_action:media' + configuration: { } + _core: + default_config_hash: VVyUA6PIaVeGtcIbgEWqJ6SYDiJdReBeojFswURFpKs + - + collection: '' + name: system.action.media_unpublish_action + data: + langcode: en + status: true + dependencies: + module: + - media + id: media_unpublish_action + label: 'Unpublish media' + type: media + plugin: 'entity:unpublish_action:media' + configuration: { } + _core: + default_config_hash: CsK6TseQ2DatEbZgbd30swOlZ28_HHwAESU2LvEnWq0 + - + collection: '' + name: views.view.media + data: + langcode: en + status: true + dependencies: + config: + - image.style.thumbnail + module: + - image + - media + - user + id: media + label: Media + module: views + description: 'Find and manage media.' + tag: '' + base_table: media_field_data + base_field: mid + display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: 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 + 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + name: name + bundle: bundle + changed: changed + uid: uid + status: status + thumbnail__target_id: thumbnail__target_id + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + bundle: + 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: '' + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + thumbnail__target_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + entity_type: media + plugin_id: bulk_form + thumbnail__target_id: + id: thumbnail__target_id + table: media_field_data + field: thumbnail__target_id + relationship: none + group_type: group + admin_label: '' + label: Thumbnail + 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: image + settings: + image_style: thumbnail + image_link: '' + 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: media + entity_field: thumbnail + plugin_id: field + name: + id: name + table: media_field_data + field: name + entity_type: media + entity_field: media + 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 + settings: + link_to_entity: true + plugin_id: field + relationship: none + group_type: group + admin_label: '' + label: 'Media name' + 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 + click_sort_column: value + type: string + 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 + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + label: 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: media + entity_field: bundle + plugin_id: field + uid: + id: uid + table: media_field_data + field: uid + 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: '' + 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: media + entity_field: uid + plugin_id: field + status: + id: status + table: media_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 + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_true: Published + format_custom_false: Unpublished + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: media + entity_field: status + plugin_id: field + changed: + id: changed + table: media_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: media + entity_field: changed + plugin_id: field + operations: + id: operations + table: media + 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: media + plugin_id: entity_operations + filters: + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: 'Media name' + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: bundle_op + label: Type + description: '' + use_operator: false + operator: bundle_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: bundle + plugin_id: bundle + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'True' + description: null + use_operator: false + operator: status_op + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: true + group_info: + label: 'Published 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: media + entity_field: status + status_extra: + id: status_extra + table: media_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + plugin_id: media_status + langcode: + id: langcode + table: media_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: langcode + plugin_id: language + sorts: + created: + id: created + table: media_field_data + field: created + order: DESC + entity_type: media + entity_field: created + plugin_id: date + relationship: none + group_type: group + admin_label: '' + exposed: false + expose: + label: '' + granularity: second + title: Media + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No media available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } + media_page_list: + display_plugin: page + id: media_page_list + display_title: Media + position: 1 + display_options: + display_extenders: { } + path: admin/content/media + menu: + type: tab + title: Media + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: main + display_description: '' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } + _core: + default_config_hash: UZP23LgBdE1XbvscbLCdd9uTk5t4qqA1Z56koqbvYP0 diff --git a/config/config_snapshot.snapshot.config_sync.module.media_library.yml b/config/config_snapshot.snapshot.config_sync.module.media_library.yml new file mode 100644 index 0000000..571ddd9 --- /dev/null +++ b/config/config_snapshot.snapshot.config_sync.module.media_library.yml @@ -0,0 +1,1469 @@ +uuid: d6289864-8d53-49d7-ada6-57f681ef581d +langcode: en +status: true +dependencies: + module: + - media_library +id: config_sync.module.media_library +snapshotSet: config_sync +extensionType: module +extensionName: media_library +items: + - + collection: '' + name: core.entity_form_mode.media.media_library + data: + langcode: en + status: true + dependencies: + enforced: + module: + - media_library + module: + - media + id: media.media_library + label: 'Media library' + targetEntityType: media + cache: true + _core: + default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 + - + collection: '' + name: core.entity_view_mode.media.media_library + data: + langcode: en + status: true + dependencies: + enforced: + module: + - media_library + module: + - media + id: media.media_library + label: 'Media library' + targetEntityType: media + cache: true + _core: + default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 + - + collection: '' + name: image.style.media_library + data: + langcode: en + status: true + dependencies: + enforced: + module: + - media_library + name: media_library + label: 'Media Library thumbnail (220×220)' + effects: + 75b076a8-1234-4b42-85db-bf377c4d8d5f: + uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f + id: image_scale + weight: 0 + data: + width: 220 + height: 220 + upscale: false + _core: + default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8 + - + collection: '' + name: media_library.settings + data: + advanced_ui: false + _core: + default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60 + - + collection: '' + name: views.view.media_library + data: + langcode: en + status: true + dependencies: + config: + - core.entity_view_mode.media.media_library + - image.style.media_library + enforced: + module: + - media_library + module: + - image + - media + - media_library + - user + id: media_library + label: 'Media library' + module: views + description: 'Find and manage media.' + tag: '' + base_table: media_field_data + base_field: mid + display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: 'Apply filters' + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: mini + options: + items_per_page: 24 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '6, 12, 24, 48' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: ‹‹ + next: ›› + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + entity_type: media + plugin_id: bulk_form + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + entity_type: media + plugin_id: rendered_entity + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'Publishing status' + description: null + use_operator: false + operator: status_op + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: true + group_info: + label: Published + description: '' + identifier: status + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Published + operator: '=' + value: '1' + 2: + title: Unpublished + operator: '=' + value: '0' + plugin_id: boolean + entity_type: media + entity_field: status + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: bundle_op + label: 'Media type' + description: '' + use_operator: false + operator: bundle_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: 'Media type' + description: null + identifier: bundle + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: { } + 2: { } + 3: { } + entity_type: media + entity_field: bundle + plugin_id: bundle + status_extra: + id: status_extra + table: media_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + plugin_id: media_status + langcode: + id: langcode + table: media_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: langcode + plugin_id: language + sorts: + created: + id: created + table: media_field_data + field: created + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: true + expose: + label: 'Newest first' + granularity: second + entity_type: media + entity_field: created + plugin_id: date + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + order: ASC + exposed: true + expose: + label: 'Name (A-Z)' + entity_type: media + entity_field: name + plugin_id: standard + name_1: + id: name_1 + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: true + expose: + label: 'Name (Z-A)' + entity_type: media + entity_field: name + plugin_id: standard + title: Media + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No media available.' + plugin_id: text_custom + relationships: { } + display_extenders: { } + use_ajax: true + css_class: '' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user + - user.permissions + tags: { } + page: + display_plugin: page + id: page + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/content/media-grid + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + entity_type: media + plugin_id: bulk_form + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: media + entity_field: name + plugin_id: field + edit_media: + id: edit_media + table: media + field: edit_media + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: true + text: 'Edit {{ name }}' + make_link: true + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: 'Edit {{ name }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: Edit + output_url_as_text: false + absolute: false + entity_type: media + plugin_id: entity_link_edit + delete_media: + id: delete_media + table: media + field: delete_media + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: true + text: 'Delete {{ name }}' + make_link: true + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: 'Delete {{ name }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: Delete + output_url_as_text: false + absolute: false + entity_type: media + plugin_id: entity_link_delete + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + entity_type: media + plugin_id: rendered_entity + defaults: + fields: false + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user + - user.permissions + tags: { } + widget: + display_plugin: page + id: widget + display_title: Widget + position: 2 + display_options: + display_extenders: { } + path: admin/content/media-widget + fields: + media_library_select_form: + id: media_library_select_form + table: media + field: media_library_select_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + entity_type: media + plugin_id: media_library_select_form + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + entity_type: media + plugin_id: rendered_entity + defaults: + fields: false + access: false + filters: false + filter_groups: false + arguments: false + header: false + css_class: false + display_description: '' + access: + type: perm + options: + perm: 'view media' + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: status + plugin_id: boolean + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: default_langcode + plugin_id: boolean + filter_groups: + operator: AND + groups: + 1: AND + arguments: + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 24 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: media + entity_field: bundle + plugin_id: string + header: + display_link_grid: + id: display_link_grid + table: views + field: display_link + display_id: widget + label: Grid + plugin_id: display_link + empty: true + display_link_table: + id: display_link_table + table: views + field: display_link + display_id: widget_table + label: Table + plugin_id: display_link + empty: true + css_class: '' + rendering_language: '***LANGUAGE_language_interface***' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user.permissions + tags: { } + widget_table: + display_plugin: page + id: widget_table + display_title: 'Widget (table)' + position: 3 + display_options: + display_extenders: { } + path: admin/content/media-widget-table + style: + type: table + options: + row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select' + default_row_class: true + defaults: + style: false + row: false + fields: false + access: false + filters: false + filter_groups: false + arguments: false + header: false + css_class: false + row: + type: fields + fields: + media_library_select_form: + id: media_library_select_form + label: '' + table: media + field: media_library_select_form + relationship: none + entity_type: media + plugin_id: media_library_select_form + element_wrapper_class: '' + element_class: '' + thumbnail__target_id: + id: thumbnail__target_id + label: Thumbnail + table: media_field_data + field: thumbnail__target_id + relationship: none + type: image + entity_type: media + entity_field: thumbnail + plugin_id: field + settings: + image_style: media_library + image_link: '' + name: + id: name + label: Name + table: media_field_data + field: name + relationship: none + type: string + entity_type: media + entity_field: name + plugin_id: field + settings: + link_to_entity: false + uid: + id: uid + label: Author + table: media_field_revision + field: uid + relationship: none + type: entity_reference_label + entity_type: media + entity_field: uid + plugin_id: field + settings: + link: true + changed: + id: changed + label: Updated + table: media_field_data + field: changed + relationship: none + type: timestamp + entity_type: media + entity_field: changed + plugin_id: field + settings: + date_format: short + custom_date_format: '' + timezone: '' + access: + type: perm + options: + perm: 'view media' + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: status + plugin_id: boolean + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: default_langcode + plugin_id: boolean + filter_groups: + operator: AND + groups: + 1: AND + arguments: + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 24 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: media + entity_field: bundle + plugin_id: string + header: + display_link_grid: + id: display_link_grid + table: views + field: display_link + display_id: widget + label: Grid + plugin_id: display_link + empty: true + display_link_table: + id: display_link_table + table: views + field: display_link + display_id: widget_table + label: Table + plugin_id: display_link + empty: true + css_class: '' + rendering_language: '***LANGUAGE_language_interface***' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user.permissions + tags: { } + _core: + default_config_hash: dHOSWSHbMJNke0ZBGh1O5KrnwynSOCOpQycITW-pwfs diff --git a/config/config_snapshot.snapshot.config_sync.module.user.yml b/config/config_snapshot.snapshot.config_sync.module.user.yml index 36274cd..6b88875 100644 --- a/config/config_snapshot.snapshot.config_sync.module.user.yml +++ b/config/config_snapshot.snapshot.config_sync.module.user.yml @@ -122,117 +122,31 @@ items: 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 + 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\n" 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 + 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\n" 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 + 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\n" 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 + 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\n" 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 + 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-- [site:name] team\n" 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] + body: "[user:display-name] has applied for an account.\n\n[user:edit-url]\n" 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 + 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\n" 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 + body: "[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n-- [site:name] team\n" 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 + body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n-- [site:name] team\n" subject: 'Account details for [user:display-name] at [site:name] (canceled)' langcode: en - diff --git a/config/config_snapshot.snapshot.config_sync.module.webform.yml b/config/config_snapshot.snapshot.config_sync.module.webform.yml index 5587a1d..59b242d 100644 --- a/config/config_snapshot.snapshot.config_sync.module.webform.yml +++ b/config/config_snapshot.snapshot.config_sync.module.webform.yml @@ -3274,12 +3274,7 @@ items: 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 >' @@ -3316,14 +3311,8 @@ 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 + 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 default_limit_total_message: 'No more submissions are permitted.' default_limit_user_message: 'No more submissions are permitted.' @@ -3374,28 +3363,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 @@ -3438,98 +3408,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]

\n

Submitted by: [webform_submission:user]

\n

Submitted 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 @@ -3573,31 +3457,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: @@ -3859,14 +3719,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 @@ -3881,11 +3734,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 @@ -3900,12 +3749,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 @@ -3920,15 +3764,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 @@ -3943,9 +3779,7 @@ items: label: Gender category: Demographic likert: false - options: | - Male: Male - Female: Female + options: "Male: Male\nFemale: Female\n" - collection: '' name: webform.webform_options.industry @@ -3960,46 +3794,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 @@ -4029,12 +3824,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 @@ -4049,12 +3839,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 @@ -4069,12 +3854,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 @@ -4089,12 +3869,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 @@ -4109,12 +3884,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 @@ -4129,17 +3899,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 @@ -4154,12 +3914,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 @@ -4174,11 +3929,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 @@ -4193,19 +3944,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 @@ -4220,10 +3959,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 @@ -4238,12 +3974,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 @@ -4258,12 +3989,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 @@ -4278,59 +4004,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 @@ -4345,58 +4019,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 @@ -4411,69 +4034,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 @@ -4488,69 +4049,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 @@ -4580,12 +4079,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 @@ -4600,6 +4094,4 @@ items: label: Yes/No category: General likert: false - options: | - Yes: Yes - No: No + options: "Yes: Yes\nNo: No\n" diff --git a/config/core.entity_form_mode.media.media_library.yml b/config/core.entity_form_mode.media.media_library.yml new file mode 100644 index 0000000..dc499b1 --- /dev/null +++ b/config/core.entity_form_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: ce58b4ab-1355-4710-bbc4-88f51fa2386b +langcode: en +status: true +dependencies: + enforced: + module: + - media_library + module: + - media +_core: + default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/config/core.entity_view_mode.media.full.yml b/config/core.entity_view_mode.media.full.yml new file mode 100644 index 0000000..7ccf76d --- /dev/null +++ b/config/core.entity_view_mode.media.full.yml @@ -0,0 +1,12 @@ +uuid: 7c91db2c-a8ef-4ec3-9331-dc9796f1c0e6 +langcode: en +status: false +dependencies: + module: + - media +_core: + default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 +id: media.full +label: 'Full content' +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 new file mode 100644 index 0000000..b67b34a --- /dev/null +++ b/config/core.entity_view_mode.media.media_library.yml @@ -0,0 +1,15 @@ +uuid: d1c3c179-3064-4b7e-a89c-7fa7045b4dca +langcode: en +status: true +dependencies: + enforced: + module: + - media_library + module: + - media +_core: + default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 +id: media.media_library +label: 'Media library' +targetEntityType: media +cache: true diff --git a/config/core.extension.yml b/config/core.extension.yml index 2434e10..f1179b4 100644 --- a/config/core.extension.yml +++ b/config/core.extension.yml @@ -100,6 +100,8 @@ module: locale: 0 mailchimp: 0 markdown: 0 + media: 0 + media_library: 0 menu_block: 0 menu_trail_by_path: 0 menu_ui: 0 diff --git a/config/customerror.settings.yml b/config/customerror.settings.yml index 668c562..cd2eeec 100644 --- a/config/customerror.settings.yml +++ b/config/customerror.settings.yml @@ -1,33 +1,6 @@ 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" -
-
-
-
    -
  • -
-
-
-
-
-
-
+ body: "
\n
\n
\n
\n

I'm sorry, you do not have permission to be here.

\n
\n
\n
\n
\n
\n

Knocked once
\nTried to tell 'em I've been there
\nDoor slammed
\nHospitality's thin there

\nMarvin Moore, \"Green Door\"\n
\n
\n
\n
    \n
  • \n
\n
\n
\n
\n
\n
\n
\n" theme: '' 404: title: 'Requested page not found' diff --git a/config/editor.editor.basic_html.yml b/config/editor.editor.basic_html.yml index 1b10fb7..7b25af2 100644 --- a/config/editor.editor.basic_html.yml +++ b/config/editor.editor.basic_html.yml @@ -48,10 +48,7 @@ settings: - Maximize plugins: stylescombo: - styles: | - p.subtitle.is-mono.is-4|Mono subtitle - p.title.is-5.is-spaced|Small title - p.subtitle.is-6|Small subtitle + styles: "p.subtitle.is-mono.is-4|Mono subtitle\np.title.is-5.is-spaced|Small title\np.subtitle.is-6|Small subtitle\n" language: language_list: un linebreaks: diff --git a/config/google_analytics.settings.yml b/config/google_analytics.settings.yml index 8afb5a9..801b419 100644 --- a/config/google_analytics.settings.yml +++ b/config/google_analytics.settings.yml @@ -4,13 +4,7 @@ domain_mode: 0 cross_domains: '' visibility: request_path_mode: 0 - request_path_pages: | - /admin - /admin/* - /batch - /node/add* - /node/*/* - /user/*/* + request_path_pages: "/admin\n/admin/*\n/batch\n/node/add*\n/node/*/*\n/user/*/*\n" user_role_mode: 0 user_role_roles: { } user_account_mode: 0 diff --git a/config/image.style.media_library.yml b/config/image.style.media_library.yml new file mode 100644 index 0000000..65e742a --- /dev/null +++ b/config/image.style.media_library.yml @@ -0,0 +1,20 @@ +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/language/es/views.view.blog.yml b/config/language/es/views.view.blog.yml index bd21b4f..62fbadf 100644 --- a/config/language/es/views.view.blog.yml +++ b/config/language/es/views.view.blog.yml @@ -4,10 +4,7 @@ display: footer: area: content: - value: | - + value: "\n" format: full_html page_listing: display_title: Página diff --git a/config/language/es/views.view.media.yml b/config/language/es/views.view.media.yml new file mode 100644 index 0000000..ebaa36d --- /dev/null +++ b/config/language/es/views.view.media.yml @@ -0,0 +1,10 @@ +display: + default: + display_options: + fields: + media_bulk_form: + action_title: Acción + status: + label: Estado + operations: + label: Operaciones diff --git a/config/language/es/views.view.media_library.yml b/config/language/es/views.view.media_library.yml new file mode 100644 index 0000000..404ebff --- /dev/null +++ b/config/language/es/views.view.media_library.yml @@ -0,0 +1,35 @@ +display: + default: + 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/webform.webform.capacitacion.yml b/config/language/es/webform.webform.capacitacion.yml index 7b172f3..b896db0 100644 --- a/config/language/es/webform.webform.capacitacion.yml +++ b/config/language/es/webform.webform.capacitacion.yml @@ -1,22 +1 @@ -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' +elements: "intro_text:\n '#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\"\nname:\n '#title': Nombre\ntopics:\n '#title': Temas\n '#options':\n 'Introduction to Drupal': 'Introducción a Drupal'\n 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'\n 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'\n 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'\n 'Drupal theming and templating': 'Diseño y theming en Drupal'\n 'Data migration': 'Migración de Datos'\nsize:\n '#title': Tamaño\n '#options':\n 'Personal training': 'Capacitación personal'\n 'Small group (2-5)': 'Grupo pequeño(2-5)'\n 'Larger group (more than 5)': 'Grupo grande (mas de 5)'\nactions:\n '#submit__label': 'Pedir una capacitación'\n" diff --git a/config/language/es/webform.webform.contact.yml b/config/language/es/webform.webform.contact.yml index ec80cb1..4472d1d 100644 --- a/config/language/es/webform.webform.contact.yml +++ b/config/language/es/webform.webform.contact.yml @@ -1,27 +1,8 @@ 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' +elements: "introduction:\n '#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.'\nname:\n '#title': 'Tu Nombre'\nemail:\n '#title': 'Tu Correo Electrónico'\nsubject:\n '#title': 'El Tema'\nmessage:\n '#title': Mensaje\nactions:\n '#submit__label': 'Enviar Mensaje'\n" 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) }} + body: "Hola Agarics, \n\nTú recibiste un nuevo mensaje.\n\n

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

\n

Submitted values are:

\n{{ webform_token('[webform_submission:values]', webform_submission) }}\n" diff --git a/config/language/es/webform.webform.contacto.yml b/config/language/es/webform.webform.contacto.yml index c54f21c..2684696 100644 --- a/config/language/es/webform.webform.contacto.yml +++ b/config/language/es/webform.webform.contacto.yml @@ -1,24 +1,4 @@ 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' +elements: "introduction:\n '#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.'\nname:\n '#title': 'Tu Nombre'\nemail:\n '#title': 'Tu Correo Electrónico'\nsubject:\n '#title': 'El Tema'\nmessage:\n '#title': Mensaje\nhow_did_you_find_us:\n '#title': '¿Cómo se enteró de nosotros?'\n '#options':\n 'A professional or personal recommendation': 'Una recomendación profesional o personal'\n 'I met an Agaric and was given a business card': 'Conocí a un Agárico y me dieron una tarjeta de presentación'\n 'Google or something similar': 'Google o algo similar'\n 'The Agaric logo appeared on toast I made': 'El logo de Agaric apareció en una tostada que hice'\n '#other__option_label': Otro\nactions:\n '#submit__label': 'Enviar Mensaje'\n" 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.training.yml b/config/language/es/webform.webform.training.yml index 7b172f3..b896db0 100644 --- a/config/language/es/webform.webform.training.yml +++ b/config/language/es/webform.webform.training.yml @@ -1,22 +1 @@ -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' +elements: "intro_text:\n '#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\"\nname:\n '#title': Nombre\ntopics:\n '#title': Temas\n '#options':\n 'Introduction to Drupal': 'Introducción a Drupal'\n 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'\n 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'\n 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'\n 'Drupal theming and templating': 'Diseño y theming en Drupal'\n 'Data migration': 'Migración de Datos'\nsize:\n '#title': Tamaño\n '#options':\n 'Personal training': 'Capacitación personal'\n 'Small group (2-5)': 'Grupo pequeño(2-5)'\n 'Larger group (more than 5)': 'Grupo grande (mas de 5)'\nactions:\n '#submit__label': 'Pedir una capacitación'\n" diff --git a/config/media.settings.yml b/config/media.settings.yml new file mode 100644 index 0000000..27467c0 --- /dev/null +++ b/config/media.settings.yml @@ -0,0 +1,6 @@ +icon_base_uri: 'public://media-icons/generic' +iframe_domain: '' +oembed_providers_url: 'https://oembed.com/providers.json' +standalone_url: false +_core: + default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY diff --git a/config/media_library.settings.yml b/config/media_library.settings.yml new file mode 100644 index 0000000..62ce1ed --- /dev/null +++ b/config/media_library.settings.yml @@ -0,0 +1,3 @@ +advanced_ui: false +_core: + default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60 diff --git a/config/redirect_404.settings.yml b/config/redirect_404.settings.yml index 2bd426e..691c715 100644 --- a/config/redirect_404.settings.yml +++ b/config/redirect_404.settings.yml @@ -1,155 +1,5 @@ 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 +pages: "/wp-login.php\n/\n/xmlrpc.php\n/\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/module.php?echo%2027ebdd36a8ac535e55aaeb6abf8a769d&feature=shell\n/\n/.well-known/assetlinks.json\n/\n/plus/read.php\n/\n/servlet?jumpto=status&p=login&q=loginForm\n/\n/data/cache/asd.php\n/\n/data/cache/flye.php\n/\n/plus/result.php\n/\n/phpmyadmin\n/\n/fuck.php\n/\n/plus/mytag_js.php?aid=9527\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/wordpress/wp-login.php\n/\n/coon.php\n/\n/sqlite/sqlite-manager/main.php\n/\n/plus/mytag_js.php?aid=9527\n/\n/dede/login.php\n/\n/blog/xmlrpc.php\n/\n/plus/90sec.php\n/\n/admin/login.php\n/\n/lx.php\n/\n/lequ.php\n/\n/blog/user/register\n/\n/payload.php\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/MYAdmin\n/\n/plus/mytag_js.php?aid=511348\n/\n/sb.php\n/\n/\n/sqlite/sqlitemanager/main.php\n/\n/mySqlDumper\n/\n/plus/mytag_js.php?aid=6022\n/\n/pmd/index.php\n/\n/sites/default/files/content-post.php\n/\n/gb.php\n/\n/s.php?c=echo%20InfoOS%3A%60uname%20-a%3Bid%60OSInfo%3B%20exit%3B\n/\n/modules/coder/coder_upgrade/scripts/coder_upgrade.run.php\n/\n/install/index.php.bak?insLockfile=a&install_demo_name=..%2Fdata%2Fadmin%2Fconfig_update.php&s_lang=a&step=11\n/\n/srv/svn/agaric/drupal-contrib/5/modules-all/transliteration/data/x6e.php\n/\n/config/secrets.yml\n/\n/ewebeditor/php/upload.php?action=save&language=en&style=toby57&type=FILE\n/\n/plus/da.php\n/\n/plus/car.php\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/auth/register\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n" suppress_404: false _core: default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM diff --git a/config/system.action.media_delete_action.yml b/config/system.action.media_delete_action.yml new file mode 100644 index 0000000..5bbdd1d --- /dev/null +++ b/config/system.action.media_delete_action.yml @@ -0,0 +1,13 @@ +uuid: cf910b6f-a529-4c32-b617-dc6a2fbfc1e3 +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: FrZy1tmuXJcOxhXlBoI1Hsnen5TT-9OCC1iolWH84go +id: media_delete_action +label: 'Delete media' +type: media +plugin: 'entity:delete_action:media' +configuration: { } diff --git a/config/system.action.media_publish_action.yml b/config/system.action.media_publish_action.yml new file mode 100644 index 0000000..84c1f38 --- /dev/null +++ b/config/system.action.media_publish_action.yml @@ -0,0 +1,13 @@ +uuid: 7dd11e01-400a-4b73-90f3-6da8ab2d698c +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: nh83qNNrmWE-CDdHz2MdFOAk60T9mzv3R-MaKfZR2jw +id: media_publish_action +label: 'Publish media' +type: media +plugin: 'entity:publish_action:media' +configuration: { } diff --git a/config/system.action.media_save_action.yml b/config/system.action.media_save_action.yml new file mode 100644 index 0000000..6e725c4 --- /dev/null +++ b/config/system.action.media_save_action.yml @@ -0,0 +1,13 @@ +uuid: 3dc6acf7-dd96-4481-ba78-ff4b8931536f +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: VVyUA6PIaVeGtcIbgEWqJ6SYDiJdReBeojFswURFpKs +id: media_save_action +label: 'Save media' +type: media +plugin: 'entity:save_action:media' +configuration: { } diff --git a/config/system.action.media_unpublish_action.yml b/config/system.action.media_unpublish_action.yml new file mode 100644 index 0000000..c89d8c2 --- /dev/null +++ b/config/system.action.media_unpublish_action.yml @@ -0,0 +1,13 @@ +uuid: 16252164-4745-4429-a760-0a7c3e6ef70f +langcode: en +status: true +dependencies: + module: + - media +_core: + default_config_hash: CsK6TseQ2DatEbZgbd30swOlZ28_HHwAESU2LvEnWq0 +id: media_unpublish_action +label: 'Unpublish media' +type: media +plugin: 'entity:unpublish_action:media' +configuration: { } diff --git a/config/tour.tour.honeypot.yml b/config/tour.tour.honeypot.yml index 0385688..ad5633f 100644 --- a/config/tour.tour.honeypot.yml +++ b/config/tour.tour.honeypot.yml @@ -18,10 +18,7 @@ tips: plugin: text label: Honeypot weight: -10 - body: | - Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots. - - Click Next to be guided through this configuration page. + body: "Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots.\n\nClick Next to be guided through this configuration page.\n" location: top protect-all-forms: id: protect-all-forms @@ -30,10 +27,7 @@ tips: weight: -9 attributes: data-id: edit-protect-all-forms - body: | - Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed. - - Note: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time. + body: "Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed.\n\nNote: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time.\n" location: bottom log-blocked-form-submissions: id: log-blocked-form-submissions diff --git a/config/user.mail.yml b/config/user.mail.yml index 0951c06..0d0e6db 100644 --- a/config/user.mail.yml +++ b/config/user.mail.yml @@ -1,115 +1,29 @@ 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 + 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\n" 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 + 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\n" 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 + 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\n" 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 + 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\n" 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 + 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-- [site:name] team\n" 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] + body: "[user:display-name] has applied for an account.\n\n[user:edit-url]\n" 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 + 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\n" 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 + body: "[user:display-name],\n\nYour account on [site:name] has been blocked.\n\n-- [site:name] team\n" 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 + body: "[user:display-name],\n\nYour account on [site:name] has been canceled.\n\n-- [site:name] team\n" subject: 'Account details for [user:display-name] at [site:name] (canceled)' langcode: en _core: diff --git a/config/user.role.anonymous.yml b/config/user.role.anonymous.yml index d58c85c..701be51 100644 --- a/config/user.role.anonymous.yml +++ b/config/user.role.anonymous.yml @@ -18,3 +18,4 @@ permissions: - 'use exclude node title' - 'use text format minimalhtml' - 'use text format restricted_html' + - 'view media' diff --git a/config/user.role.authenticated.yml b/config/user.role.authenticated.yml index ac33796..47b0740 100644 --- a/config/user.role.authenticated.yml +++ b/config/user.role.authenticated.yml @@ -23,3 +23,4 @@ permissions: - 'use exclude node title' - 'use text format basic_html' - 'use text format minimalhtml' + - 'view media' diff --git a/config/views.view.blog.yml b/config/views.view.blog.yml index 9efda2c..af6d006 100644 --- a/config/views.view.blog.yml +++ b/config/views.view.blog.yml @@ -282,12 +282,7 @@ display: empty: false tokenize: false content: - value: | -
- -
+ value: "
\n \n
\n" format: full_html plugin_id: text cache_metadata: diff --git a/config/views.view.media.yml b/config/views.view.media.yml new file mode 100644 index 0000000..54a1cbb --- /dev/null +++ b/config/views.view.media.yml @@ -0,0 +1,907 @@ +uuid: 01cd7093-fdc3-4710-ace5-3e4946ff94bc +langcode: en +status: true +dependencies: + config: + - image.style.thumbnail + module: + - image + - media + - user +_core: + default_config_hash: UZP23LgBdE1XbvscbLCdd9uTk5t4qqA1Z56koqbvYP0 +id: media +label: Media +module: views +description: 'Find and manage media.' +tag: '' +base_table: media_field_data +base_field: mid +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: 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 + 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + name: name + bundle: bundle + changed: changed + uid: uid + status: status + thumbnail__target_id: thumbnail__target_id + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + bundle: + 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: '' + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + thumbnail__target_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + entity_type: media + plugin_id: bulk_form + thumbnail__target_id: + id: thumbnail__target_id + table: media_field_data + field: thumbnail__target_id + relationship: none + group_type: group + admin_label: '' + label: Thumbnail + 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: image + settings: + image_style: thumbnail + image_link: '' + 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: media + entity_field: thumbnail + plugin_id: field + name: + id: name + table: media_field_data + field: name + entity_type: media + entity_field: media + 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 + settings: + link_to_entity: true + plugin_id: field + relationship: none + group_type: group + admin_label: '' + label: 'Media name' + 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 + click_sort_column: value + type: string + 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 + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + label: 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: media + entity_field: bundle + plugin_id: field + uid: + id: uid + table: media_field_data + field: uid + 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: '' + 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: media + entity_field: uid + plugin_id: field + status: + id: status + table: media_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 + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_true: Published + format_custom_false: Unpublished + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: media + entity_field: status + plugin_id: field + changed: + id: changed + table: media_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: media + entity_field: changed + plugin_id: field + operations: + id: operations + table: media + 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: media + plugin_id: entity_operations + filters: + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: 'Media name' + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: bundle_op + label: Type + description: '' + use_operator: false + operator: bundle_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: bundle + plugin_id: bundle + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'True' + description: null + use_operator: false + operator: status_op + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: true + group_info: + label: 'Published 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: media + entity_field: status + status_extra: + id: status_extra + table: media_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + plugin_id: media_status + langcode: + id: langcode + table: media_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: langcode + plugin_id: language + sorts: + created: + id: created + table: media_field_data + field: created + order: DESC + entity_type: media + entity_field: created + plugin_id: date + relationship: none + group_type: group + admin_label: '' + exposed: false + expose: + label: '' + granularity: second + title: Media + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No media available.' + plugin_id: text_custom + relationships: { } + arguments: { } + display_extenders: { } + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } + media_page_list: + display_plugin: page + id: media_page_list + display_title: Media + position: 1 + display_options: + display_extenders: { } + path: admin/content/media + menu: + type: tab + title: Media + description: '' + expanded: false + parent: '' + weight: 0 + context: '0' + menu_name: main + display_description: '' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + - user.permissions + tags: { } diff --git a/config/views.view.media_library.yml b/config/views.view.media_library.yml new file mode 100644 index 0000000..d2e83b9 --- /dev/null +++ b/config/views.view.media_library.yml @@ -0,0 +1,1389 @@ +uuid: 0c97e261-3b20-4a9d-9239-ed61169232b0 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.media.media_library + - image.style.media_library + enforced: + module: + - media_library + module: + - image + - media + - media_library + - user +_core: + default_config_hash: dHOSWSHbMJNke0ZBGh1O5KrnwynSOCOpQycITW-pwfs +id: media_library +label: 'Media library' +module: views +description: 'Find and manage media.' +tag: '' +base_table: media_field_data +base_field: mid +display: + default: + display_plugin: default + id: default + display_title: Master + position: 0 + display_options: + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: 'Apply filters' + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: mini + options: + items_per_page: 24 + offset: 0 + id: 0 + total_pages: null + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '6, 12, 24, 48' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + tags: + previous: ‹‹ + next: ›› + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + entity_type: media + plugin_id: bulk_form + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + entity_type: media + plugin_id: rendered_entity + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'Publishing status' + description: null + use_operator: false + operator: status_op + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: true + group_info: + label: Published + description: '' + identifier: status + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: + title: Published + operator: '=' + value: '1' + 2: + title: Unpublished + operator: '=' + value: '0' + plugin_id: boolean + entity_type: media + entity_field: status + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: bundle_op + label: 'Media type' + description: '' + use_operator: false + operator: bundle_op + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: 'Media type' + description: null + identifier: bundle + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: + 1: { } + 2: { } + 3: { } + entity_type: media + entity_field: bundle + plugin_id: bundle + status_extra: + id: status_extra + table: media_field_data + field: status_extra + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + plugin_id: media_status + langcode: + id: langcode + table: media_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: langcode + plugin_id: language + sorts: + created: + id: created + table: media_field_data + field: created + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: true + expose: + label: 'Newest first' + granularity: second + entity_type: media + entity_field: created + plugin_id: date + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + order: ASC + exposed: true + expose: + label: 'Name (A-Z)' + entity_type: media + entity_field: name + plugin_id: standard + name_1: + id: name_1 + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: true + expose: + label: 'Name (Z-A)' + entity_type: media + entity_field: name + plugin_id: standard + title: Media + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No media available.' + plugin_id: text_custom + relationships: { } + display_extenders: { } + use_ajax: true + css_class: '' + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user + - user.permissions + tags: { } + page: + display_plugin: page + id: page + display_title: Page + position: 1 + display_options: + display_extenders: { } + path: admin/content/media-grid + fields: + media_bulk_form: + id: media_bulk_form + table: media + field: media_bulk_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + action_title: Action + include_exclude: exclude + selected_actions: { } + entity_type: media + plugin_id: bulk_form + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + entity_type: media + entity_field: name + plugin_id: field + edit_media: + id: edit_media + table: media + field: edit_media + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: true + text: 'Edit {{ name }}' + make_link: true + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: 'Edit {{ name }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: Edit + output_url_as_text: false + absolute: false + entity_type: media + plugin_id: entity_link_edit + delete_media: + id: delete_media + table: media + field: delete_media + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: true + text: 'Delete {{ name }}' + make_link: true + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: 'Delete {{ name }}' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '0' + element_wrapper_class: '' + element_default_classes: false + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: Delete + output_url_as_text: false + absolute: false + entity_type: media + plugin_id: entity_link_delete + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + entity_type: media + plugin_id: rendered_entity + defaults: + fields: false + cache_metadata: + max-age: 0 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user + - user.permissions + tags: { } + widget: + display_plugin: page + id: widget + display_title: Widget + position: 2 + display_options: + display_extenders: { } + path: admin/content/media-widget + fields: + media_library_select_form: + id: media_library_select_form + table: media + field: media_library_select_form + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + entity_type: media + plugin_id: media_library_select_form + rendered_entity: + id: rendered_entity + table: media + field: rendered_entity + relationship: none + group_type: group + admin_label: '' + label: '' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: false + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + view_mode: media_library + entity_type: media + plugin_id: rendered_entity + defaults: + fields: false + access: false + filters: false + filter_groups: false + arguments: false + header: false + css_class: false + display_description: '' + access: + type: perm + options: + perm: 'view media' + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: status + plugin_id: boolean + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: default_langcode + plugin_id: boolean + filter_groups: + operator: AND + groups: + 1: AND + arguments: + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 24 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: media + entity_field: bundle + plugin_id: string + header: + display_link_grid: + id: display_link_grid + table: views + field: display_link + display_id: widget + label: Grid + plugin_id: display_link + empty: true + display_link_table: + id: display_link_table + table: views + field: display_link + display_id: widget_table + label: Table + plugin_id: display_link + empty: true + css_class: '' + rendering_language: '***LANGUAGE_language_interface***' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user.permissions + tags: { } + widget_table: + display_plugin: page + id: widget_table + display_title: 'Widget (table)' + position: 3 + display_options: + display_extenders: { } + path: admin/content/media-widget-table + style: + type: table + options: + row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select' + default_row_class: true + defaults: + style: false + row: false + fields: false + access: false + filters: false + filter_groups: false + arguments: false + header: false + css_class: false + row: + type: fields + fields: + media_library_select_form: + id: media_library_select_form + label: '' + table: media + field: media_library_select_form + relationship: none + entity_type: media + plugin_id: media_library_select_form + element_wrapper_class: '' + element_class: '' + thumbnail__target_id: + id: thumbnail__target_id + label: Thumbnail + table: media_field_data + field: thumbnail__target_id + relationship: none + type: image + entity_type: media + entity_field: thumbnail + plugin_id: field + settings: + image_style: media_library + image_link: '' + name: + id: name + label: Name + table: media_field_data + field: name + relationship: none + type: string + entity_type: media + entity_field: name + plugin_id: field + settings: + link_to_entity: false + uid: + id: uid + label: Author + table: media_field_revision + field: uid + relationship: none + type: entity_reference_label + entity_type: media + entity_field: uid + plugin_id: field + settings: + link: true + changed: + id: changed + label: Updated + table: media_field_data + field: changed + relationship: none + type: timestamp + entity_type: media + entity_field: changed + plugin_id: field + settings: + date_format: short + custom_date_format: '' + timezone: '' + access: + type: perm + options: + perm: 'view media' + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: status + plugin_id: boolean + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + identifier: name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + operator_limit_selection: false + operator_list: { } + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: name + plugin_id: string + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: media + entity_field: default_langcode + plugin_id: boolean + filter_groups: + operator: AND + groups: + 1: AND + arguments: + bundle: + id: bundle + table: media_field_data + field: bundle + relationship: none + group_type: group + admin_label: '' + default_action: ignore + exception: + value: all + title_enable: false + title: All + title_enable: false + title: '' + default_argument_type: fixed + default_argument_options: + argument: '' + default_argument_skip_url: false + summary_options: + base_path: '' + count: true + items_per_page: 24 + override: false + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + glossary: false + limit: 0 + case: none + path_case: none + transform_dash: false + break_phrase: false + entity_type: media + entity_field: bundle + plugin_id: string + header: + display_link_grid: + id: display_link_grid + table: views + field: display_link + display_id: widget + label: Grid + plugin_id: display_link + empty: true + display_link_table: + id: display_link_table + table: views + field: display_link + display_id: widget_table + label: Table + plugin_id: display_link + empty: true + css_class: '' + rendering_language: '***LANGUAGE_language_interface***' + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_interface' + - url + - url.query_args + - 'url.query_args:sort_by' + - user.permissions + tags: { } diff --git a/config/webform.settings.yml b/config/webform.settings.yml index e07a4cc..38efc78 100644 --- a/config/webform.settings.yml +++ b/config/webform.settings.yml @@ -23,12 +23,7 @@ settings: 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 >' @@ -70,14 +65,8 @@ settings: 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 + 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 default_limit_total_message: 'No more submissions are permitted.' default_limit_user_message: 'No more submissions are permitted.' @@ -139,28 +128,9 @@ element: machine_name_pattern: a-z0-9_ 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 @@ -203,99 +173,13 @@ mail: default_sender_mail: '' default_sender_name: Agaric default_subject: 'Webform submission from: [webform_submission:source-title]' - 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]

\n

Submitted by: [webform_submission:user]

\n

Submitted values are:

\n[webform_submission:values]\n" roles: - staff 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 diff --git a/config/webform.webform.attend_the_tech_and_rev_workshop.yml b/config/webform.webform.attend_the_tech_and_rev_workshop.yml index 51ea451..c464aad 100644 --- a/config/webform.webform.attend_the_tech_and_rev_workshop.yml +++ b/config/webform.webform.attend_the_tech_and_rev_workshop.yml @@ -12,27 +12,7 @@ id: attend_the_tech_and_rev_workshop title: 'Attend the Tech and Rev Workshop' description: '' category: '' -elements: | - intro: - '#type': webform_markup - '#markup': 'Register for the upcoming partipatory workshop on technology and revolution. The more people that RSVP the better we can prepare for the discussion.' - your_name: - '#type': textfield - '#title': 'Your Name' - organization: - '#type': textfield - '#title': 'Your organization' - attendee_number: - '#type': number - '#title': 'How many people are you bringing (including yourself)' - email: - '#type': email - '#title': 'Your email' - '#description': 'Include your email address if you'd like to be added to Agaric's announcement list for future events.' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': Register +elements: "intro:\n '#type': webform_markup\n '#markup': 'Register for the upcoming partipatory workshop on technology and revolution. The more people that RSVP the better we can prepare for the discussion.'\nyour_name:\n '#type': textfield\n '#title': 'Your Name'\norganization:\n '#type': textfield\n '#title': 'Your organization'\nattendee_number:\n '#type': number\n '#title': 'How many people are you bringing (including yourself)'\nemail:\n '#type': email\n '#title': 'Your email'\n '#description': 'Include your email address if you'd like to be added to Agaric's announcement list for future events.'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': Register\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.blog_posts.yml b/config/webform.webform.blog_posts.yml index ea9396e..0e48a13 100644 --- a/config/webform.webform.blog_posts.yml +++ b/config/webform.webform.blog_posts.yml @@ -12,20 +12,7 @@ id: blog_posts title: 'Blog posts' description: 'Get blog posts via email' category: Mailchimp -elements: | - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#middle__access': false - '#suffix__access': false - '#degree__access': false - your_email_address: - '#type': email - '#title': 'Your email address' - send_blog_posts_via_email: - '#type': checkbox - '#title': 'Send blog posts via email' +elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#middle__access': false\n '#suffix__access': false\n '#degree__access': false\nyour_email_address:\n '#type': email\n '#title': 'Your email address'\nsend_blog_posts_via_email:\n '#type': checkbox\n '#title': 'Send blog posts via email'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.capacitacion.yml b/config/webform.webform.capacitacion.yml index c667e1b..2f813a0 100644 --- a/config/webform.webform.capacitacion.yml +++ b/config/webform.webform.capacitacion.yml @@ -12,38 +12,7 @@ id: capacitacion title: Capacitación description: '

Formulario para capacitación

' category: '' -elements: | - intro_text: - '#type': processed_text - '#text': "

Thanks for showing interest in our trainings. Just share a bit about what you're looking for and we'll follow up with you soon thereafter.

\r\n" - '#format': basic_html - name: - '#type': textfield - '#title': Name - email: - '#type': email - '#title': Email - topics: - '#type': checkboxes - '#title': Topics - '#options': - 'Introduction to Drupal': 'Introduction to Drupal' - 'Drupal development (beginning)': 'Drupal development (beginning)' - 'Drupal development (intermediate)': 'Drupal development (intermediate)' - 'Drupal development (advanced)': 'Drupal development (advanced)' - 'Drupal theming and templating': 'Drupal theming and templating' - 'Data migration': 'Data migration' - size: - '#type': checkboxes - '#title': Size - '#options': - 'Personal training': 'Personal training' - 'Small group (2-5)': 'Small group (2-5)' - 'Larger group (more than 5)': 'Larger group (more than 5)' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Request training' +elements: "intro_text:\n '#type': processed_text\n '#text': \"

Thanks for showing interest in our trainings. Just share a bit about what you're looking for and we'll follow up with you soon thereafter.

\\r\\n\"\n '#format': basic_html\nname:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\ntopics:\n '#type': checkboxes\n '#title': Topics\n '#options':\n 'Introduction to Drupal': 'Introduction to Drupal'\n 'Drupal development (beginning)': 'Drupal development (beginning)'\n 'Drupal development (intermediate)': 'Drupal development (intermediate)'\n 'Drupal development (advanced)': 'Drupal development (advanced)'\n 'Drupal theming and templating': 'Drupal theming and templating'\n 'Data migration': 'Data migration'\nsize:\n '#type': checkboxes\n '#title': Size\n '#options':\n 'Personal training': 'Personal training'\n 'Small group (2-5)': 'Small group (2-5)'\n 'Larger group (more than 5)': 'Larger group (more than 5)'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Request training'\n" css: '' javascript: '' settings: @@ -145,9 +114,7 @@ settings: draft_pending_multiple_message: '' confirmation_type: page confirmation_title: 'Tu solicitud de entrenamiento fue un éxito.' - confirmation_message: | - Gracias por solicitar un entrenamiento. Revisaremos sus necesidades y haremos un seguimiento pronto. Mientras tanto, no dude en leer nuestras publicaciones de blog o nuestros videos de capacitación.
-   + confirmation_message: "Gracias por solicitar un entrenamiento. Revisaremos sus necesidades y haremos un seguimiento pronto. Mientras tanto, no dude en leer nuestras publicaciones de blog o nuestros videos de capacitación.
\n \n" confirmation_url: '' confirmation_attributes: { } confirmation_back: true diff --git a/config/webform.webform.contact.yml b/config/webform.webform.contact.yml index 886e34c..10a6d29 100644 --- a/config/webform.webform.contact.yml +++ b/config/webform.webform.contact.yml @@ -5,6 +5,8 @@ dependencies: enforced: module: - webform +_core: + default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww open: null close: null weight: 0 @@ -15,35 +17,7 @@ id: contact title: Contact description: 'Basic email contact webform.' category: '' -elements: | - introduction: - '#type': webform_markup - '#admin_title': Introduction - '#markup': 'You – our clients, colleagues, and crazed adoring fans – are the reason we do what we do. We would love to hear from you.' - 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: "introduction:\n '#type': webform_markup\n '#admin_title': Introduction\n '#markup': 'You – our clients, colleagues, and crazed adoring fans – are the reason we do what we do. We would love to hear from you.'\nname:\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: @@ -244,14 +218,7 @@ handlers: from_options: { } from_name: '[webform_submission:values:name:raw]' subject: '[webform_submission:values:subject:raw]' - body: | - Hi Agarics, - - You got a new message. - -

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

-

Submitted values are:

- {{ webform_token('[webform_submission:values]', webform_submission) }} + body: "Hi Agarics, \n\nYou got a new message.\n\n

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

\n

Submitted values are:

\n{{ webform_token('[webform_submission:values]', webform_submission) }}\n" excluded_elements: { } ignore_access: false exclude_empty: true @@ -268,5 +235,3 @@ handlers: theme_name: '' parameters: { } variants: { } -_core: - default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww diff --git a/config/webform.webform.contact_confirm.yml b/config/webform.webform.contact_confirm.yml index c3efb09..38967f2 100644 --- a/config/webform.webform.contact_confirm.yml +++ b/config/webform.webform.contact_confirm.yml @@ -12,25 +12,7 @@ id: contact_confirm title: 'Thanks for contacting Agaric' description: 'A confirmation page to ask some follow-up questions.' category: '' -elements: | - do_you_have_any_feedback_for_us_: - '#type': textarea - '#title': 'Do you have any feedback for us?' - '#required': true - '#format_items': comma - how_did_you_find_us: - '#type': webform_radios_other - '#title': 'How did you find us?' - '#options': - 'A professional or personal recommendation': 'A professional or personal recommendation' - 'I met an Agaric and was given a business card': 'I met an Agaric and was given a business card' - 'Google or something similar': 'Google or something similar' - 'The Agaric logo appeared on toast I made': 'The Agaric logo appeared on toast I made' - '#other__option_label': Other - submission_id: - '#type': hidden - '#title': 'Submission ID' - '#default_value': '[current-page:query:submission]' +elements: "do_you_have_any_feedback_for_us_:\n '#type': textarea\n '#title': 'Do you have any feedback for us?'\n '#required': true\n '#format_items': comma\nhow_did_you_find_us:\n '#type': webform_radios_other\n '#title': 'How did you find us?'\n '#options':\n 'A professional or personal recommendation': 'A professional or personal recommendation'\n 'I met an Agaric and was given a business card': 'I met an Agaric and was given a business card'\n 'Google or something similar': 'Google or something similar'\n 'The Agaric logo appeared on toast I made': 'The Agaric logo appeared on toast I made'\n '#other__option_label': Other\nsubmission_id:\n '#type': hidden\n '#title': 'Submission ID'\n '#default_value': '[current-page:query:submission]'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.drupal_8_9_content_migrations.yml b/config/webform.webform.drupal_8_9_content_migrations.yml index ddfc93b..02b8734 100644 --- a/config/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/webform.webform.drupal_8_9_content_migrations.yml @@ -14,41 +14,7 @@ id: drupal_8_9_content_migrations title: 'Drupal 8/9 content migrations' description: '' category: Purchase -elements: | - course_summary: - '#type': processed_text - '#display_on': both - '#text': |2 - * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, February 02** and **Thursday, February 04, 2021** - * Time: Both sessions at **10AM–1:30PM Eastern** - * Cost: **$500** - - '#format': markdown - name: - '#type': textfield - '#title': Name - '#required': true - email: - '#type': email - '#title': E-mail - '#required': true - payment: - '#type': stripe - '#title': Payment - '#format_items': ul - '#format_items_html': '' - '#format_items_text': '' - '#stripe_selectors_name': ':input[name="name"]' - optional_info_for_your_receipt: - '#type': textarea - '#title': 'Optional info for your receipt' - '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' - '#autocomplete': 'off' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Purchase ticket' +elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, February 02** and **Thursday, February 04, 2021**\n * Time: Both sessions at **10AM–1:30PM Eastern**\n * Cost: **$500**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" css: '' javascript: '' settings: @@ -150,10 +116,7 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: | - Thank you [webform_submission:values:name]!  You're registered for:
- [webform_submission:values:course_summary:html]
- We've sent an e-mail to [webform_submission:values:email]. + confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -272,18 +235,7 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: | - Dear [webform_submission:values:name],
-
- Thank you for registering!
-
- [webform_submission:values:course_summary:html]
-
- Connection information for joining the training online will be sent prior to the event.
-
- Best,
-
- The team at Agaric + body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.drutopia_intake.yml b/config/webform.webform.drutopia_intake.yml index 9d25602..66ae937 100644 --- a/config/webform.webform.drutopia_intake.yml +++ b/config/webform.webform.drutopia_intake.yml @@ -12,51 +12,7 @@ id: drutopia_intake title: 'Drutopia Intake' description: 'Determine a potential Drutopia partner's needs.' category: 'Survey of needs' -elements: | - contactinfo: - '#type': webform_contact - '#title': 'Contact Info' - your_mission: - '#type': textarea - '#title': 'Your Mission' - '#description': 'What are you all about?' - how_do_you_plan_to_reach_your_goal_: - '#type': textarea - '#title': 'How do you plan to reach your goal?' - what_is_your_role_in_the_organization_: - '#type': webform_checkboxes_other - '#title': 'What is your role in the Organization?' - '#options': - 1: 'Worker-Owner -- A worker-owner of a cooperative' - 2: 'Member -- A member of a cooperative' - 3: 'Founder -- Founder of an organization' - 4: 'Sales and Marketing -- Advertisements' - 5: 'Financials and Fundraising -- Financials and Fundraising' - 6: None - '#options_display': two_columns - '#options_randomize': true - '#other__title': Other - what_version_of_drupal_are_you_currently_using_: - '#type': textfield - '#title': 'What version of Drupal are you currently using?' - what_specific_goals_are_you_trying_to_accomplish_by_building_pla: - '#type': textarea - '#title': 'What specific goals are you trying to accomplish by building platform?' - lead_this_project: - '#type': textarea - '#title': 'Is there someone on the team to lead this project and go forward to maintain it?' - are_volunteers_important_to_your_organization_meeting_its_goals_: - '#type': checkbox - '#title': 'Are volunteers important to your organization meeting its goals?' - what_s_the_biggest_barrier_to_engaging_your_supporters_: - '#type': webform_select_other - '#title': 'What''s the biggest barrier to engaging your supporters?' - '#options': - funding: Funding - time: Time - people: People - logistics: Logistics - '#empty_option': Other +elements: "contactinfo:\n '#type': webform_contact\n '#title': 'Contact Info'\nyour_mission:\n '#type': textarea\n '#title': 'Your Mission'\n '#description': 'What are you all about?'\nhow_do_you_plan_to_reach_your_goal_:\n '#type': textarea\n '#title': 'How do you plan to reach your goal?'\nwhat_is_your_role_in_the_organization_:\n '#type': webform_checkboxes_other\n '#title': 'What is your role in the Organization?'\n '#options':\n 1: 'Worker-Owner -- A worker-owner of a cooperative'\n 2: 'Member -- A member of a cooperative'\n 3: 'Founder -- Founder of an organization'\n 4: 'Sales and Marketing -- Advertisements'\n 5: 'Financials and Fundraising -- Financials and Fundraising'\n 6: None\n '#options_display': two_columns\n '#options_randomize': true\n '#other__title': Other\nwhat_version_of_drupal_are_you_currently_using_:\n '#type': textfield\n '#title': 'What version of Drupal are you currently using?'\nwhat_specific_goals_are_you_trying_to_accomplish_by_building_pla:\n '#type': textarea\n '#title': 'What specific goals are you trying to accomplish by building platform?'\nlead_this_project:\n '#type': textarea\n '#title': 'Is there someone on the team to lead this project and go forward to maintain it?'\nare_volunteers_important_to_your_organization_meeting_its_goals_:\n '#type': checkbox\n '#title': 'Are volunteers important to your organization meeting its goals?'\nwhat_s_the_biggest_barrier_to_engaging_your_supporters_:\n '#type': webform_select_other\n '#title': 'What''s the biggest barrier to engaging your supporters?'\n '#options':\n funding: Funding\n time: Time\n people: People\n logistics: Logistics\n '#empty_option': Other\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.drutopia_platform_intake.yml b/config/webform.webform.drutopia_platform_intake.yml index 40f1e1c..3262666 100644 --- a/config/webform.webform.drutopia_platform_intake.yml +++ b/config/webform.webform.drutopia_platform_intake.yml @@ -12,22 +12,7 @@ id: drutopia_platform_intake title: 'Drutopia platform intake' description: 'Request for minimal contact information and an optional statement of need regarding a hosted site.' category: Lead -elements: | - e_mail_address: - '#type': email - '#title': 'E-mail address:' - '#required': true - '#required_error': 'Please provide an e-mail address so we can contact you!' - name: - '#type': textfield - '#title': 'Name:' - needs: - '#type': textarea - '#title': 'What online or website goals does your group have? ' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Share your need' +elements: "e_mail_address:\n '#type': email\n '#title': 'E-mail address:'\n '#required': true\n '#required_error': 'Please provide an e-mail address so we can contact you!'\nname:\n '#type': textfield\n '#title': 'Name:'\nneeds:\n '#type': textarea\n '#title': 'What online or website goals does your group have? '\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Share your need'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.find_it_platform.yml b/config/webform.webform.find_it_platform.yml index 7a2b0f9..eac04e0 100644 --- a/config/webform.webform.find_it_platform.yml +++ b/config/webform.webform.find_it_platform.yml @@ -12,13 +12,7 @@ id: find_it_platform title: 'Find It Platform' description: '' category: '' -elements: | - name: - '#type': textfield - '#title': Name - email: - '#type': email - '#title': Email +elements: "name:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.general_services.yml b/config/webform.webform.general_services.yml index 30e0a18..31c5bf2 100644 --- a/config/webform.webform.general_services.yml +++ b/config/webform.webform.general_services.yml @@ -12,27 +12,7 @@ id: general_services title: 'General services' description: 'Intake form for general services inquiries.' category: '' -elements: | - budget: - '#type': range - '#title': Budget - '#description': 'Approximate budget.' - '#title_display': inline - '#default_value': '45' - '#min': 3 - '#max': 600 - '#step': 3 - '#output': above - '#output__field_prefix': $ - '#output__field_suffix': K - contact_information: - '#type': webform_contact - '#title': 'Contact information' - '#email__required': true - '#address__access': false - '#address_2__access': false - '#postal_code__access': false - '#required': true +elements: "budget:\n '#type': range\n '#title': Budget\n '#description': 'Approximate budget.'\n '#title_display': inline\n '#default_value': '45'\n '#min': 3\n '#max': 600\n '#step': 3\n '#output': above\n '#output__field_prefix': $\n '#output__field_suffix': K\ncontact_information:\n '#type': webform_contact\n '#title': 'Contact information'\n '#email__required': true\n '#address__access': false\n '#address_2__access': false\n '#postal_code__access': false\n '#required': true\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.getting_started_with_drupal_9.yml b/config/webform.webform.getting_started_with_drupal_9.yml index 2dfa378..84b6590 100644 --- a/config/webform.webform.getting_started_with_drupal_9.yml +++ b/config/webform.webform.getting_started_with_drupal_9.yml @@ -14,41 +14,7 @@ id: getting_started_with_drupal_9 title: 'Getting started with Drupal 9' description: '' category: Purchase -elements: | - course_summary: - '#type': processed_text - '#display_on': both - '#text': |2 - * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, January 26** and **Thursday, January 28, 2021** - * Time: Both sessions at **10AM–1:30PM Eastern** - * Cost: **$250** - - '#format': markdown - name: - '#type': textfield - '#title': Name - '#required': true - email: - '#type': email - '#title': E-mail - '#required': true - payment: - '#type': stripe - '#title': Payment - '#format_items': ul - '#format_items_html': '' - '#format_items_text': '' - '#stripe_selectors_name': ':input[name="name"]' - optional_info_for_your_receipt: - '#type': textarea - '#title': 'Optional info for your receipt' - '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' - '#autocomplete': 'off' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Purchase ticket' +elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, January 26** and **Thursday, January 28, 2021**\n * Time: Both sessions at **10AM–1:30PM Eastern**\n * Cost: **$250**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" css: '' javascript: '' settings: @@ -150,10 +116,7 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: | - Thank you [webform_submission:values:name]!  You're registered for:
- [webform_submission:values:course_summary:html]
- We've sent an e-mail to [webform_submission:values:email]. + confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -272,18 +235,7 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: | - Dear [webform_submission:values:name],
-
- Thank you for registering!
-
- [webform_submission:values:course_summary:html]
-
- Connection information for joining the training online will be sent prior to the event.
-
- Best,
-
- The team at Agaric + body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.getting_started_with_react_js.yml b/config/webform.webform.getting_started_with_react_js.yml index d4ec4a1..458e08c 100644 --- a/config/webform.webform.getting_started_with_react_js.yml +++ b/config/webform.webform.getting_started_with_react_js.yml @@ -14,41 +14,7 @@ id: getting_started_with_react_js title: 'Getting started with React.js' description: '' category: Purchase -elements: | - course_summary: - '#type': processed_text - '#display_on': both - '#text': |2 - * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, February 16** and **Thursday, February 18, 2021** - * Time: Both sessions at **10AM - 1:30PM Eastern** - * Cost: **$500** - - '#format': markdown - name: - '#type': textfield - '#title': Name - '#required': true - email: - '#type': email - '#title': E-mail - '#required': true - payment: - '#type': stripe - '#title': Payment - '#format_items': ul - '#format_items_html': '' - '#format_items_text': '' - '#stripe_selectors_name': ':input[name="name"]' - optional_info_for_your_receipt: - '#type': textarea - '#title': 'Optional info for your receipt' - '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' - '#autocomplete': 'off' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Purchase ticket' +elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, February 16** and **Thursday, February 18, 2021**\n * Time: Both sessions at **10AM - 1:30PM Eastern**\n * Cost: **$500**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" css: '' javascript: '' settings: @@ -150,10 +116,7 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: | - Thank you [webform_submission:values:name]!  You're registered for:
- [webform_submission:values:course_summary:html]
- We've sent an e-mail to [webform_submission:values:email]. + confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -272,18 +235,7 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: | - Dear [webform_submission:values:name],
-
- Thank you for registering!
-
- [webform_submission:values:course_summary:html]
-
- Connection information for joining the training online will be sent prior to the event.
-
- Best,
-
- The team at Agaric + body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.join_the_movement.yml b/config/webform.webform.join_the_movement.yml index e49623c..fa77a9a 100644 --- a/config/webform.webform.join_the_movement.yml +++ b/config/webform.webform.join_the_movement.yml @@ -14,18 +14,7 @@ id: join_the_movement title: 'Join the movement' description: '' category: Mailchimp -elements: | - intro_text: - '#type': processed_text - '#text': "

We will send you very occasional dispatches from our perspective on various overlapping movements for cooperation, freedom and justice as workers and as passionate observers.

\r\n" - '#format': basic_html - email: - '#type': email - '#title': 'Your e-mail address' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Join the movement' +elements: "intro_text:\n '#type': processed_text\n '#text': \"

We will send you very occasional dispatches from our perspective on various overlapping movements for cooperation, freedom and justice as workers and as passionate observers.

\\r\\n\"\n '#format': basic_html\nemail:\n '#type': email\n '#title': 'Your e-mail address'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Join the movement'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.join_the_movement_confirm.yml b/config/webform.webform.join_the_movement_confirm.yml index 20e9150..e13ebd5 100644 --- a/config/webform.webform.join_the_movement_confirm.yml +++ b/config/webform.webform.join_the_movement_confirm.yml @@ -12,10 +12,7 @@ id: join_the_movement_confirm title: 'Join the movement confirm' description: 'Confirmation webform after submitting the "join the movement" form.' category: 'Confirmation (do not use directly)' -elements: | - what_inspired_to_sign_up: - '#type': textarea - '#title': 'What inspired you to make this potentially life-changing decision?' +elements: "what_inspired_to_sign_up:\n '#type': textarea\n '#title': 'What inspired you to make this potentially life-changing decision?'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.june_2020_webinars.yml b/config/webform.webform.june_2020_webinars.yml index 2a6a684..9978a88 100644 --- a/config/webform.webform.june_2020_webinars.yml +++ b/config/webform.webform.june_2020_webinars.yml @@ -12,23 +12,7 @@ id: june_2020_webinars title: 'July 2020 webinars' description: '' category: Education -elements: | - name: - '#type': textfield - '#title': Name - '#required': true - email: - '#type': email - '#title': Email - '#required': true - interested_in: - '#type': checkboxes - '#title': 'Interested in' - '#options': - d9_site_building: 'Getting started Drupal 9' - d9_updates: 'Introduction to Drupal 9 migrations' - d9_upgrades: 'Drupal 9 upgrades: how and when to move your Drupal 7 sites?' - '#required': true +elements: "name:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': Email\n '#required': true\ninterested_in:\n '#type': checkboxes\n '#title': 'Interested in'\n '#options':\n d9_site_building: 'Getting started Drupal 9'\n d9_updates: 'Introduction to Drupal 9 migrations'\n d9_upgrades: 'Drupal 9 upgrades: how and when to move your Drupal 7 sites?'\n '#required': true\n" css: '' javascript: '' settings: @@ -229,40 +213,7 @@ handlers: from_options: { } from_name: _default subject: 'Agaric webinars on July 7, 2020 - Connection details' - body: | - Thank you for registering!
-
- All webinars on July 7 will take place in the same Zoom room. Below are the details on time and connection information. We look forward to seeing you there.
-
- Getting started Drupal 9 @ 10:00 AM - 11:00 AM Eastern Time (EDT)
-
- Introduction to Drupal 9 migrations @ 11:30 AM - 12:30 AM Eastern Time (EDT)
-
- Drupal 9 upgrades: how and when to move your Drupal 7 sites? @ 1:00 PM - 2:00 PM Eastern Time (EDT)
-
- You might as well be interested in these full-day training options: https://agaric.coop/training
-
- Join Zoom Meeting
- https://zoom.us/j/94411125686?pwd=VXp1bnZtV21OOGhNUDk0S253a211QT09
-
- Meeting ID: 944 1112 5686
- Password: AgaricWeb
- One tap mobile
- +13126266799,,94411125686#,,,,0#,,514824770# US (Chicago)
- +16468769923,,94411125686#,,,,0#,,514824770# US (New York)
-
- Dial by your location
-         +1 312 626 6799 US (Chicago)
-         +1 646 876 9923 US (New York)
-         +1 301 715 8592 US (Germantown)
-         +1 346 248 7799 US (Houston)
-         +1 669 900 6833 US (San Jose)
-         +1 253 215 8782 US (Tacoma)
- Meeting ID: 944 1112 5686
- Password: 514824770
-
- In solidarity,
- Agaric.coop + body: "Thank you for registering!
\n
\nAll webinars on July 7 will take place in the same Zoom room. Below are the details on time and connection information. We look forward to seeing you there.
\n
\nGetting started Drupal 9 @ 10:00 AM - 11:00 AM Eastern Time (EDT)
\n
\nIntroduction to Drupal 9 migrations @ 11:30 AM - 12:30 AM Eastern Time (EDT)
\n
\nDrupal 9 upgrades: how and when to move your Drupal 7 sites? @ 1:00 PM - 2:00 PM Eastern Time (EDT)
\n
\nYou might as well be interested in these full-day training options: https://agaric.coop/training
\n
\nJoin Zoom Meeting
\nhttps://zoom.us/j/94411125686?pwd=VXp1bnZtV21OOGhNUDk0S253a211QT09
\n
\nMeeting ID: 944 1112 5686
\nPassword: AgaricWeb
\nOne tap mobile
\n+13126266799,,94411125686#,,,,0#,,514824770# US (Chicago)
\n+16468769923,,94411125686#,,,,0#,,514824770# US (New York)
\n
\nDial by your location
\n        +1 312 626 6799 US (Chicago)
\n        +1 646 876 9923 US (New York)
\n        +1 301 715 8592 US (Germantown)
\n        +1 346 248 7799 US (Houston)
\n        +1 669 900 6833 US (San Jose)
\n        +1 253 215 8782 US (Tacoma)
\nMeeting ID: 944 1112 5686
\nPassword: 514824770
\n
\nIn solidarity,
\nAgaric.coop\n" excluded_elements: { } ignore_access: false exclude_empty: true diff --git a/config/webform.webform.lms.yml b/config/webform.webform.lms.yml index 611d104..d529d80 100644 --- a/config/webform.webform.lms.yml +++ b/config/webform.webform.lms.yml @@ -12,28 +12,7 @@ id: lms title: 'Request an LMS - Video chat - Consultation ' description: 'Online learning platform' category: Education -elements: | - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#first__title': 'Your name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - your_email_address: - '#type': email - '#title': 'Your email address' - '#required': true - '#required_error': 'We will need a contact email address to respond to you.' - contact_s_phone_number: - '#type': tel - '#title': 'Your phone number' - how_will_you_be_using_the_platform_: - '#type': textarea - '#title': 'How will you be using the platform?' - '#description': 'Tell us how you would like to use the online learning platform. The more details you can give, the easier it will be for us to help your mission!' +elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nyour_email_address:\n '#type': email\n '#title': 'Your email address'\n '#required': true\n '#required_error': 'We will need a contact email address to respond to you.'\ncontact_s_phone_number:\n '#type': tel\n '#title': 'Your phone number'\nhow_will_you_be_using_the_platform_:\n '#type': textarea\n '#title': 'How will you be using the platform?'\n '#description': 'Tell us how you would like to use the online learning platform. The more details you can give, the easier it will be for us to help your mission!'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.migrations.yml b/config/webform.webform.migrations.yml index 3df0a84..848792e 100644 --- a/config/webform.webform.migrations.yml +++ b/config/webform.webform.migrations.yml @@ -14,18 +14,7 @@ id: migrations title: 'Migrations training' description: 'A webform for people joining our migration trainings announcement list.' category: Mailchimp -elements: | - your_email: - '#type': email - '#title': 'Your e-mail address' - '#required': true - your_name: - '#type': textfield - '#title': 'Your name (optional)' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Get notified' +elements: "your_email:\n '#type': email\n '#title': 'Your e-mail address'\n '#required': true\nyour_name:\n '#type': textfield\n '#title': 'Your name (optional)'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Get notified'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.migrations_training_confirm.yml b/config/webform.webform.migrations_training_confirm.yml index c39166a..d1290c2 100644 --- a/config/webform.webform.migrations_training_confirm.yml +++ b/config/webform.webform.migrations_training_confirm.yml @@ -12,14 +12,7 @@ id: migrations_training_confirm title: 'Migrations training confirm' description: 'Confirmation page for the migrations training signup.' category: 'Confirmation (do not use directly)' -elements: | - what_motivated_sign_up_for_migration_training: - '#type': textarea - '#title': 'What motivated you to sign up for migration training?' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Share your motivation' +elements: "what_motivated_sign_up_for_migration_training:\n '#type': textarea\n '#title': 'What motivated you to sign up for migration training?'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Share your motivation'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.newsletter.yml b/config/webform.webform.newsletter.yml index c532be3..63e32de 100644 --- a/config/webform.webform.newsletter.yml +++ b/config/webform.webform.newsletter.yml @@ -12,30 +12,7 @@ id: newsletter title: Newsletter description: 'Sign up for the Agaric Newsletter' category: Marketing -elements: | - processed_text: - '#type': processed_text - '#text': | -

Join the Agaric list to receive our infrequent Newsletters throughout the year! 

- - '#format': basic_html - name: - '#type': webform_name - '#title': Name - '#description_display': invisible - '#required': true - '#title__access': false - '#first__title': 'First Name' - '#first__required': true - '#middle__access': false - '#last__title': 'Last Name' - '#last__required': true - '#suffix__access': false - '#degree__access': false - email: - '#type': webform_email_confirm - '#title': Email - '#required': true +elements: "processed_text:\n '#type': processed_text\n '#text': |\n

Join the Agaric list to receive our infrequent Newsletters throughout the year! 

\n \n '#format': basic_html\nname:\n '#type': webform_name\n '#title': Name\n '#description_display': invisible\n '#required': true\n '#title__access': false\n '#first__title': 'First Name'\n '#first__required': true\n '#middle__access': false\n '#last__title': 'Last Name'\n '#last__required': true\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': webform_email_confirm\n '#title': Email\n '#required': true\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.purchase_training_migrate_api.yml b/config/webform.webform.purchase_training_migrate_api.yml index 7e93844..1a885ce 100644 --- a/config/webform.webform.purchase_training_migrate_api.yml +++ b/config/webform.webform.purchase_training_migrate_api.yml @@ -14,41 +14,7 @@ id: purchase_training_migrate_api title: 'Upgrading to Drupal 9 using the Migrate API' description: '' category: Purchase -elements: | - course_summary: - '#type': processed_text - '#display_on': both - '#text': |2 - * Lead instructor: **Mauricio Dinarte** - * Date: **Tuesday, February 09** and **Thursday, February 11, 2021** - * Time: Both sessions at **10AM - 1:30PM Eastern** - * Cost: **$500** - - '#format': markdown - name: - '#type': textfield - '#title': Name - '#required': true - email: - '#type': email - '#title': E-mail - '#required': true - payment: - '#type': stripe - '#title': Payment - '#format_items': ul - '#format_items_html': '' - '#format_items_text': '' - '#stripe_selectors_name': ':input[name="name"]' - optional_info_for_your_receipt: - '#type': textarea - '#title': 'Optional info for your receipt' - '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' - '#autocomplete': 'off' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Purchase ticket' +elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, February 09** and **Thursday, February 11, 2021**\n * Time: Both sessions at **10AM - 1:30PM Eastern**\n * Cost: **$500**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" css: '' javascript: '' settings: @@ -150,10 +116,7 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: | - Thank you [webform_submission:values:name]!  You're registered for:
- [webform_submission:values:course_summary:html]
- We've sent an e-mail to [webform_submission:values:email]. + confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -272,18 +235,7 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: | - Dear [webform_submission:values:name],
-
- Thank you for registering!
-
- [webform_submission:values:course_summary:html]
-
- Connection information for joining the training online will be sent prior to the event.
-
- Best,
-
- The the team at Agaric + body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe the team at Agaric\n" excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.request.yml b/config/webform.webform.request.yml index 3766e13..194e67e 100644 --- a/config/webform.webform.request.yml +++ b/config/webform.webform.request.yml @@ -12,20 +12,7 @@ id: request title: Request description: 'Very simple form for potential clients to tell us what they need.' category: Lead -elements: | - describe_goal: - '#type': textarea - '#title': 'Describe your goal' - email_address: - '#type': email - '#title': 'E-mail address' - phone_number: - '#type': tel - '#title': 'Phone number' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Send request' +elements: "describe_goal:\n '#type': textarea\n '#title': 'Describe your goal'\nemail_address:\n '#type': email\n '#title': 'E-mail address'\nphone_number:\n '#type': tel\n '#title': 'Phone number'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Send request'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.showandtell.yml b/config/webform.webform.showandtell.yml index c1a100c..2e5b65a 100644 --- a/config/webform.webform.showandtell.yml +++ b/config/webform.webform.showandtell.yml @@ -17,55 +17,7 @@ id: showandtell title: 'Show and Tell' description: 'Submit an idea for Show and Tell.' category: 'Show and Tell' -elements: | - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#first__title': 'Your Name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - your_email_address: - '#type': email - '#title': 'Your email address' - '#required': true - i_would_like_to: - '#type': select - '#title': 'I would like to' - '#description': 'Tell us how you would like to take part in Show and Tell or send us a suggestion.' - '#options': - 'present a demo': 'Present a demo' - 'do a presentation': 'Do a presentation' - 'start a conversation': 'Start a conversation' - 'suggest a topic for discussion': 'Suggest a topic for discussion' - 'request a presentation': 'Request a presentation' - 'suggest a presenter': 'Suggest a presenter' - 'give a lightning talk': 'Give a lightning talk' - '#empty_option': 'Choose one' - '#empty_value': 'Choose one' - '#options_randomize': true - contact_email: - '#type': email - '#title': 'Email address of the presenter you are suggesting' - '#description': 'Let us know how to contact the suggested presenter or speaker.' - '#states': - visible: - ':input[name="i_would_like_to"]': - value: 'suggest a presenter' - details: - '#type': textarea - '#title': Details - '#description': 'Tell us some details about your request. If you have something to present or would like to do a demo, write a short description. If you have a suggestion, write it here.' - i_am_available: - '#type': date - '#title': 'I am available' - '#description': 'Choose a date that you are available.' - '#date_days': - - '3' - '#datepicker': true - '#date_date_format': m/d/Y +elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your Name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nyour_email_address:\n '#type': email\n '#title': 'Your email address'\n '#required': true\ni_would_like_to:\n '#type': select\n '#title': 'I would like to'\n '#description': 'Tell us how you would like to take part in Show and Tell or send us a suggestion.'\n '#options':\n 'present a demo': 'Present a demo'\n 'do a presentation': 'Do a presentation'\n 'start a conversation': 'Start a conversation'\n 'suggest a topic for discussion': 'Suggest a topic for discussion'\n 'request a presentation': 'Request a presentation'\n 'suggest a presenter': 'Suggest a presenter'\n 'give a lightning talk': 'Give a lightning talk'\n '#empty_option': 'Choose one'\n '#empty_value': 'Choose one'\n '#options_randomize': true\ncontact_email:\n '#type': email\n '#title': 'Email address of the presenter you are suggesting'\n '#description': 'Let us know how to contact the suggested presenter or speaker.'\n '#states':\n visible:\n ':input[name=\"i_would_like_to\"]':\n value: 'suggest a presenter'\ndetails:\n '#type': textarea\n '#title': Details\n '#description': 'Tell us some details about your request. If you have something to present or would like to do a demo, write a short description. If you have a suggestion, write it here.'\ni_am_available:\n '#type': date\n '#title': 'I am available'\n '#description': 'Choose a date that you are available.'\n '#date_days':\n - '3'\n '#datepicker': true\n '#date_date_format': m/d/Y\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.speaker_request_agaric.yml b/config/webform.webform.speaker_request_agaric.yml index bfa7186..fda35da 100644 --- a/config/webform.webform.speaker_request_agaric.yml +++ b/config/webform.webform.speaker_request_agaric.yml @@ -12,134 +12,7 @@ id: speaker_request_agaric title: 'Speaker Request - Agaric' description: 'Request an Agaric's presence for a presentation, workshop or lecture.' category: '' -elements: | - event_website: - '#type': url - '#title': 'Event website' - '#description': 'If there is a website for this event, typle the URL here. Leave blank if there is no website. The more information we have about your event, the more relevant our presentation will be!' - '#title_display': inline - '#maxlength': 120 - '#size': 120 - '#placeholder': 'https://' - event_dates: - '#type': datetime - '#title': 'Event date and time' - '#title_display': inline - '#date_date_element': datepicker - '#date_date_datepicker_button': true - '#date_date_placeholder': 'Date of event' - '#date_date_format': 'D, m/d/Y' - '#date_time_element': timepicker - '#date_time_placeholder': 'Time of the event' - '#date_time_format': 'g:i A' - '#date_time_step': '1800' - event_location: - '#type': select - '#title': 'Event location' - '#description': 'If you do not have an event location yet, leave this field set to 'None'.' - '#options': - online: Online - in_person: 'In Person' - conference_call: 'Conference Call' - event_address: - '#type': webform_address - '#title': 'Event address' - '#states': - visible: - ':input[name="event_location"]': - value: in_person - '#address_2__access': false - '#state_province__access': false - '#postal_code__access': false - event_type: - '#type': select - '#title': 'Event type' - '#description': | -

What type of event are you having? We can provide presentations, workshops or demonstrations of free software tools such as video chat, document management and storage, communication tools that protect your privacy and security.
-  

- - '#title_display': inline - '#options': - presentation: Presentation - workshop: Workshop - demo: Demo - interview: Interview - consultation: Consultation - '#empty_option': 'Select one' - '#empty_value': 'Select one' - '#options_randomize': true - would_you_like_agaric_to_host_your_online_event_: - '#type': select - '#title': 'Would you like Agaric to host your online event?' - '#options': yes_no - '#options_randomize': true - '#states': - visible: - ':input[name="event_location"]': - value: online - would_you_like_agaric_to_provide_a_video_recording_of_your_event: - '#type': select - '#title': 'Would you like Agaric to provide a recording of your event?' - '#options': yes_no - '#states': - visible: - ':input[name="event_location"]': - value: online - budget_for_speaker: - '#type': textfield - '#title': 'Your budget' - '#description': 'If you do not have a budget, leave this field blank and check the box below.' - '#maxlength': 10 - i_do_not_have_a_budget_: - '#type': checkbox - '#title': 'I do not have a budget' - i_do_not_have_a_budget: - '#type': textarea - '#title': 'I have a mission without a budget' - '#description': 'Please explain the mission of your request and how it will help your community. We do not wish to prevent those without funds from benefitting from our expertise.' - '#states': - visible: - ':input[name="i_do_not_have_a_budget_"]': - checked: true - description_of_event: - '#type': textarea - '#title': 'What else should the speaker know about this event?' - '#description': 'Please include any information that would be helpful for us to be able to give the most relevant presentation or workshop.' - your_name: - '#type': webform_name - '#title': 'Contact''s name' - '#title__access': false - '#first__title': 'Contact''s name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - email: - '#type': email - '#title': 'Contact''s email *' - '#required': true - '#required_error': 'Your email is required for Agaric to respond. Your contact information will not be shared.' - phone: - '#type': tel - '#title': 'Contact''s phone number' - '#description': 'Your information will not be shared.' - '#international': true - speaker_s_name: - '#type': webform_select_other - '#title': 'Select an Agaric!' - '#title_display': none - '#options': - mlncn: 'Ben Melançon' - dinarcon: 'Mauricio Dinarte' - Gnuget: 'David Valdez' - wolcen: 'Christopher Thompson' - freescholar: 'Micky Metts' - '#empty_option': 'Select an Agaric' - '#empty_value': 'Select one' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Send to Agaric' +elements: "event_website:\n '#type': url\n '#title': 'Event website'\n '#description': 'If there is a website for this event, typle the URL here. Leave blank if there is no website. The more information we have about your event, the more relevant our presentation will be!'\n '#title_display': inline\n '#maxlength': 120\n '#size': 120\n '#placeholder': 'https://'\nevent_dates:\n '#type': datetime\n '#title': 'Event date and time'\n '#title_display': inline\n '#date_date_element': datepicker\n '#date_date_datepicker_button': true\n '#date_date_placeholder': 'Date of event'\n '#date_date_format': 'D, m/d/Y'\n '#date_time_element': timepicker\n '#date_time_placeholder': 'Time of the event'\n '#date_time_format': 'g:i A'\n '#date_time_step': '1800'\nevent_location:\n '#type': select\n '#title': 'Event location'\n '#description': 'If you do not have an event location yet, leave this field set to 'None'.'\n '#options':\n online: Online\n in_person: 'In Person'\n conference_call: 'Conference Call'\nevent_address:\n '#type': webform_address\n '#title': 'Event address'\n '#states':\n visible:\n ':input[name=\"event_location\"]':\n value: in_person\n '#address_2__access': false\n '#state_province__access': false\n '#postal_code__access': false\nevent_type:\n '#type': select\n '#title': 'Event type'\n '#description': |\n

What type of event are you having? We can provide presentations, workshops or demonstrations of free software tools such as video chat, document management and storage, communication tools that protect your privacy and security.
\n  

\n \n '#title_display': inline\n '#options':\n presentation: Presentation\n workshop: Workshop\n demo: Demo\n interview: Interview\n consultation: Consultation\n '#empty_option': 'Select one'\n '#empty_value': 'Select one'\n '#options_randomize': true\nwould_you_like_agaric_to_host_your_online_event_:\n '#type': select\n '#title': 'Would you like Agaric to host your online event?'\n '#options': yes_no\n '#options_randomize': true\n '#states':\n visible:\n ':input[name=\"event_location\"]':\n value: online\nwould_you_like_agaric_to_provide_a_video_recording_of_your_event:\n '#type': select\n '#title': 'Would you like Agaric to provide a recording of your event?'\n '#options': yes_no\n '#states':\n visible:\n ':input[name=\"event_location\"]':\n value: online\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Your budget'\n '#description': 'If you do not have a budget, leave this field blank and check the box below.'\n '#maxlength': 10\ni_do_not_have_a_budget_:\n '#type': checkbox\n '#title': 'I do not have a budget'\ni_do_not_have_a_budget:\n '#type': textarea\n '#title': 'I have a mission without a budget'\n '#description': 'Please explain the mission of your request and how it will help your community. We do not wish to prevent those without funds from benefitting from our expertise.'\n '#states':\n visible:\n ':input[name=\"i_do_not_have_a_budget_\"]':\n checked: true\ndescription_of_event:\n '#type': textarea\n '#title': 'What else should the speaker know about this event?'\n '#description': 'Please include any information that would be helpful for us to be able to give the most relevant presentation or workshop.'\nyour_name:\n '#type': webform_name\n '#title': 'Contact''s name'\n '#title__access': false\n '#first__title': 'Contact''s name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': 'Contact''s email *'\n '#required': true\n '#required_error': 'Your email is required for Agaric to respond. Your contact information will not be shared.'\nphone:\n '#type': tel\n '#title': 'Contact''s phone number'\n '#description': 'Your information will not be shared.'\n '#international': true\nspeaker_s_name:\n '#type': webform_select_other\n '#title': 'Select an Agaric!'\n '#title_display': none\n '#options':\n mlncn: 'Ben Melançon'\n dinarcon: 'Mauricio Dinarte'\n Gnuget: 'David Valdez'\n wolcen: 'Christopher Thompson'\n freescholar: 'Micky Metts'\n '#empty_option': 'Select an Agaric'\n '#empty_value': 'Select one'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Send to Agaric'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.speaker_request_clayton_dewey.yml b/config/webform.webform.speaker_request_clayton_dewey.yml index 9264463..b4a6dc6 100644 --- a/config/webform.webform.speaker_request_clayton_dewey.yml +++ b/config/webform.webform.speaker_request_clayton_dewey.yml @@ -12,47 +12,7 @@ id: speaker_request_clayton_dewey title: 'Speaker Request - Clayton Dewey' description: 'Invite Clayton to speak.' category: '' -elements: | - event_website: - '#type': url - '#title': 'Event website' - event_dates: - '#type': datetime - '#title': 'Event date' - '#date_date_datepicker_button': false - '#date_time_element': none - event_location: - '#type': textfield - '#title': 'Event location' - description_of_event: - '#type': textarea - '#title': 'What should Clayton know about this event?' - budget_for_speaker: - '#type': textfield - '#title': 'Budget for speaker' - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#first__title': 'Your name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - email: - '#type': email - '#title': 'Your email' - '#required': true - phone: - '#type': tel - '#title': 'Your phone' - additional_info: - '#type': textarea - '#title': 'Additional information' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Invite Clayton to speak' +elements: "event_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should Clayton know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nyour_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': 'Your email'\n '#required': true\nphone:\n '#type': tel\n '#title': 'Your phone'\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Clayton to speak'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.speaker_request_mauricio_dinarte.yml b/config/webform.webform.speaker_request_mauricio_dinarte.yml index 84f5863..c543f4d 100644 --- a/config/webform.webform.speaker_request_mauricio_dinarte.yml +++ b/config/webform.webform.speaker_request_mauricio_dinarte.yml @@ -12,47 +12,7 @@ id: speaker_request_mauricio_dinarte title: 'Speaker Request - Mauricio Dinarte' description: 'Invite Mauricio to speak.' category: '' -elements: | - event_website: - '#type': url - '#title': 'Event website' - event_dates: - '#type': datetime - '#title': 'Event date' - '#date_date_datepicker_button': false - '#date_time_element': none - event_location: - '#type': textfield - '#title': 'Event location' - description_of_event: - '#type': textarea - '#title': 'What should Mauricio know about this event?' - budget_for_speaker: - '#type': textfield - '#title': 'Budget for speaker' - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#first__title': 'Your name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - email: - '#type': email - '#title': 'Your email' - '#required': true - phone: - '#type': tel - '#title': 'Your phone' - additional_info: - '#type': textarea - '#title': 'Additional information' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Invite Mauricio to speak' +elements: "event_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should Mauricio know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nyour_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': 'Your email'\n '#required': true\nphone:\n '#type': tel\n '#title': 'Your phone'\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Mauricio to speak'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.speaker_request_michele_metts.yml b/config/webform.webform.speaker_request_michele_metts.yml index e66f1ab..ae25ca0 100644 --- a/config/webform.webform.speaker_request_michele_metts.yml +++ b/config/webform.webform.speaker_request_michele_metts.yml @@ -12,47 +12,7 @@ id: speaker_request_michele_metts title: 'Speaker request form for Michele Metts' description: '' category: Speaker -elements: | - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#first__title': 'Your name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - event_website: - '#type': url - '#title': 'Event website' - event_dates: - '#type': datetime - '#title': 'Event date' - '#date_date_datepicker_button': false - '#date_time_element': none - event_location: - '#type': textfield - '#title': 'Event location' - description_of_event: - '#type': textarea - '#title': 'What should the speaker know about this event?' - budget_for_speaker: - '#type': textfield - '#title': 'Budget for speaker' - email: - '#type': email - '#title': Email - '#required': true - phone: - '#type': tel - '#title': Phone - additional_info: - '#type': textarea - '#title': 'Additional information' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Invite Micky to speak' +elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nevent_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should the speaker know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nemail:\n '#type': email\n '#title': Email\n '#required': true\nphone:\n '#type': tel\n '#title': Phone\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Micky to speak'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.speaker_request_micky_metts.yml b/config/webform.webform.speaker_request_micky_metts.yml index 67804dc..ffa0f99 100644 --- a/config/webform.webform.speaker_request_micky_metts.yml +++ b/config/webform.webform.speaker_request_micky_metts.yml @@ -12,47 +12,7 @@ id: speaker_request_micky_metts title: 'Speaker Request - Micky Metts' description: 'Speaker Request for Micky Metts' category: '' -elements: | - your_name: - '#type': webform_name - '#title': 'Your name' - '#title__access': false - '#first__title': 'Your name' - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - event_website: - '#type': url - '#title': 'Event website' - event_dates: - '#type': datetime - '#title': 'Event date' - '#date_date_datepicker_button': false - '#date_time_element': none - event_location: - '#type': textfield - '#title': 'Event location' - description_of_event: - '#type': textarea - '#title': 'What should the speaker know about this event?' - budget_for_speaker: - '#type': textfield - '#title': 'Budget for speaker' - email: - '#type': email - '#title': Email - '#required': true - phone: - '#type': tel - '#title': Phone - additional_info: - '#type': textarea - '#title': 'Additional information' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Invite Micky to speak' +elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nevent_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should the speaker know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nemail:\n '#type': email\n '#title': Email\n '#required': true\nphone:\n '#type': tel\n '#title': Phone\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Micky to speak'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.training.yml b/config/webform.webform.training.yml index 246c1fb..7022ee6 100644 --- a/config/webform.webform.training.yml +++ b/config/webform.webform.training.yml @@ -12,40 +12,7 @@ id: training title: Training description: 'Training intake form' category: '' -elements: | - intro_text: - '#type': processed_text - '#text': | -

If you are interested in a private training tailored to your needs, give us an idea of what you are looking for and we will follow up with you soon thereafter.

- - '#format': basic_html - name: - '#type': textfield - '#title': Name - email: - '#type': email - '#title': Email - topics: - '#type': checkboxes - '#title': Topics - '#options': - 'Introduction to Drupal': 'Introduction to Drupal' - 'Drupal development (beginning)': 'Drupal development (beginning)' - 'Drupal development (intermediate)': 'Drupal development (intermediate)' - 'Drupal development (advanced)': 'Drupal development (advanced)' - 'Drupal theming and templating': 'Drupal theming and templating' - 'Data migration': 'Data migration' - size: - '#type': checkboxes - '#title': Size - '#options': - 'Personal training': 'Personal training' - 'Small group (2-5)': 'Small group (2-5)' - 'Larger group (more than 5)': 'Larger group (more than 5)' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Request training' +elements: "intro_text:\n '#type': processed_text\n '#text': |\n

If you are interested in a private training tailored to your needs, give us an idea of what you are looking for and we will follow up with you soon thereafter.

\n \n '#format': basic_html\nname:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\ntopics:\n '#type': checkboxes\n '#title': Topics\n '#options':\n 'Introduction to Drupal': 'Introduction to Drupal'\n 'Drupal development (beginning)': 'Drupal development (beginning)'\n 'Drupal development (intermediate)': 'Drupal development (intermediate)'\n 'Drupal development (advanced)': 'Drupal development (advanced)'\n 'Drupal theming and templating': 'Drupal theming and templating'\n 'Data migration': 'Data migration'\nsize:\n '#type': checkboxes\n '#title': Size\n '#options':\n 'Personal training': 'Personal training'\n 'Small group (2-5)': 'Small group (2-5)'\n 'Larger group (more than 5)': 'Larger group (more than 5)'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Request training'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.training_discount.yml b/config/webform.webform.training_discount.yml index fcad6d7..980f33b 100644 --- a/config/webform.webform.training_discount.yml +++ b/config/webform.webform.training_discount.yml @@ -14,47 +14,7 @@ id: training_discount title: 'Training Discount' description: '' category: Purchase -elements: | - course_summary: - '#type': processed_text - '#display_on': both - '#text': |2 - * Lead instructor: **Mauricio Dinarte** - * Cost: **$250** (50% discount off $500 usual price) - - '#format': markdown - name: - '#type': textfield - '#title': Name - '#required': true - email: - '#type': email - '#title': E-mail - '#required': true - choose_training: - '#type': radios - '#title': 'Choose training:' - '#help_title': 'How about both?' - '#help': 'To register for multiple trainings, simply come back to this form after paying for the first one and do it again.  Or contact Agaric for an invoice.' - '#options': - upgrades: 'Upgrading to Drupal 8/9 using the Migrate API' - '#required': true - payment: - '#type': stripe - '#title': Payment - '#format_items': ul - '#format_items_html': '' - '#format_items_text': '' - '#stripe_selectors_name': ':input[name="name"]' - optional_info_for_your_receipt: - '#type': textarea - '#title': 'Optional info for your receipt' - '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' - '#autocomplete': 'off' - actions: - '#type': webform_actions - '#title': 'Submit button(s)' - '#submit__label': 'Purchase ticket' +elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Cost: **$250** (50% discount off $500 usual price)\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\nchoose_training:\n '#type': radios\n '#title': 'Choose training:'\n '#help_title': 'How about both?'\n '#help': 'To register for multiple trainings, simply come back to this form after paying for the first one and do it again.  Or contact Agaric for an invoice.'\n '#options':\n upgrades: 'Upgrading to Drupal 8/9 using the Migrate API'\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" css: '' javascript: '' settings: @@ -156,10 +116,7 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: | - Thank you [webform_submission:values:name]!  You're registered for:
- [webform_submission:values:course_summary:html]
- We've sent an e-mail to [webform_submission:values:email]. + confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -278,18 +235,7 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: | - Dear [webform_submission:values:name],
-
- Thank you for registering!
-
- [webform_submission:values:course_summary:html]
-
- Connection information for joining the training online will be sent prior to the event.
-
- Best,
-
- The team at Agaric + body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.training_notification_request.yml b/config/webform.webform.training_notification_request.yml index 9f0bcd9..13a7568 100644 --- a/config/webform.webform.training_notification_request.yml +++ b/config/webform.webform.training_notification_request.yml @@ -12,35 +12,7 @@ id: training_notification_request title: 'Training Notification Request' description: 'Users who submit this form should be notified when any of the trainings they are interested in become available.' category: '' -elements: | - intro_text: - '#type': processed_text - '#text': | -

We do not currently have any public trainings scheduled. If you would like to be notified the next time any of our trainings are being offered, please tell us which ones. By filling out this form, you are also helping us to gage interest so that we will know when the time is right to host!

- -

 

- - '#format': basic_html - name: - '#type': textfield - '#title': Name - email: - '#type': email - '#title': Email - trainings: - '#type': checkboxes - '#title': Trainings - '#description': 'Tell us which of our trainings you would like to be notified about ' - '#title_display': invisible - '#description_display': invisible - '#options': - 'Getting started with Drupal 9': 'Getting started with Drupal 9' - 'Drupal 8/9 content migrations': 'Drupal 8/9 content migrations' - 'Upgrading to Drupal 8/9 using the Migrate API': 'Upgrading to Drupal 8/9 using the Migrate API' - 'Getting started with React.js': 'Getting started with React.js' - '#required': true - '#required_error': 'you must select a training.' - '#options__properties': '' +elements: "intro_text:\n '#type': processed_text\n '#text': |\n

We do not currently have any public trainings scheduled. If you would like to be notified the next time any of our trainings are being offered, please tell us which ones. By filling out this form, you are also helping us to gage interest so that we will know when the time is right to host!

\n \n

 

\n \n '#format': basic_html\nname:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\ntrainings:\n '#type': checkboxes\n '#title': Trainings\n '#description': 'Tell us which of our trainings you would like to be notified about '\n '#title_display': invisible\n '#description_display': invisible\n '#options':\n 'Getting started with Drupal 9': 'Getting started with Drupal 9'\n 'Drupal 8/9 content migrations': 'Drupal 8/9 content migrations'\n 'Upgrading to Drupal 8/9 using the Migrate API': 'Upgrading to Drupal 8/9 using the Migrate API'\n 'Getting started with React.js': 'Getting started with React.js'\n '#required': true\n '#required_error': 'you must select a training.'\n '#options__properties': ''\n" css: '' javascript: '' settings: diff --git a/config/webform.webform.training_request_draft.yml b/config/webform.webform.training_request_draft.yml index c1fdb80..b302655 100644 --- a/config/webform.webform.training_request_draft.yml +++ b/config/webform.webform.training_request_draft.yml @@ -12,29 +12,7 @@ id: training_request_draft title: 'General Training Request Form' description: 'This is the training request form that will be placed on all specific training pages. Upon submission, you can tell which page this form was submitted from by looking at the results tab.' category: '' -elements: | - name: - '#type': webform_name - '#title': Name - '#description_display': invisible - '#required': true - '#title__access': false - '#first__title': Name - '#first__required': true - '#middle__access': false - '#last__access': false - '#suffix__access': false - '#degree__access': false - email: - '#type': email - '#title': Email - '#description_display': invisible - '#required': true - '#required_error': 'Please enter your email address to submit the form.' - message: - '#type': textarea - '#title': Message - '#help': 'Let us know what you need, or if you have any questions about our training.' +elements: "name:\n '#type': webform_name\n '#title': Name\n '#description_display': invisible\n '#required': true\n '#title__access': false\n '#first__title': Name\n '#first__required': true\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': Email\n '#description_display': invisible\n '#required': true\n '#required_error': 'Please enter your email address to submit the form.'\nmessage:\n '#type': textarea\n '#title': Message\n '#help': 'Let us know what you need, or if you have any questions about our training.'\n" css: '' javascript: '' settings: @@ -213,5 +191,42 @@ access: roles: { } users: { } permissions: { } -handlers: { } +handlers: + email: + id: email + label: Email + notes: '' + handler_id: email + status: true + conditions: { } + weight: 0 + settings: + states: + - completed + to_mail: keegan@agaric.coop + to_options: { } + cc_mail: '' + cc_options: { } + bcc_mail: '' + bcc_options: { } + from_mail: _default + from_options: { } + from_name: _default + subject: _default + body: _default + excluded_elements: { } + ignore_access: false + exclude_empty: true + exclude_empty_checkbox: false + exclude_attachments: false + html: true + attachments: false + twig: false + debug: false + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' + theme_name: '' + parameters: { } variants: { } diff --git a/config/webform.webform.workshops.yml b/config/webform.webform.workshops.yml index c38d4aa..9d56251 100644 --- a/config/webform.webform.workshops.yml +++ b/config/webform.webform.workshops.yml @@ -12,11 +12,7 @@ id: workshops title: Workshops description: Workshops category: '' -elements: | - basic_encryption: - '#type': textarea - '#title': 'Basic encryption' - '#description': 'Encrypt your email and phone communications.' +elements: "basic_encryption:\n '#type': textarea\n '#title': 'Basic encryption'\n '#description': 'Encrypt your email and phone communications.'\n" css: '' javascript: '' settings: diff --git a/config/webform.webform_options.days.yml b/config/webform.webform_options.days.yml index 2479ab3..6c6f317 100644 --- a/config/webform.webform_options.days.yml +++ b/config/webform.webform_options.days.yml @@ -11,11 +11,4 @@ id: days 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" diff --git a/config/webform.webform_options.education.yml b/config/webform.webform_options.education.yml index d9e54be..5579559 100644 --- a/config/webform.webform_options.education.yml +++ b/config/webform.webform_options.education.yml @@ -11,8 +11,4 @@ id: education 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" diff --git a/config/webform.webform_options.employment_status.yml b/config/webform.webform_options.employment_status.yml index 151fde2..df247bf 100644 --- a/config/webform.webform_options.employment_status.yml +++ b/config/webform.webform_options.employment_status.yml @@ -11,9 +11,4 @@ id: employment_status 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" diff --git a/config/webform.webform_options.ethnicity.yml b/config/webform.webform_options.ethnicity.yml index b3b0a12..15351a4 100644 --- a/config/webform.webform_options.ethnicity.yml +++ b/config/webform.webform_options.ethnicity.yml @@ -11,12 +11,4 @@ id: ethnicity 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" diff --git a/config/webform.webform_options.gender.yml b/config/webform.webform_options.gender.yml index 72b81e4..e32670b 100644 --- a/config/webform.webform_options.gender.yml +++ b/config/webform.webform_options.gender.yml @@ -11,6 +11,4 @@ id: gender label: Gender category: Demographic likert: false -options: | - Male: Male - Female: Female +options: "Male: Male\nFemale: Female\n" diff --git a/config/webform.webform_options.industry.yml b/config/webform.webform_options.industry.yml index 3bb4dec..785c756 100644 --- a/config/webform.webform_options.industry.yml +++ b/config/webform.webform_options.industry.yml @@ -11,43 +11,4 @@ id: industry 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" diff --git a/config/webform.webform_options.likert_agreement.yml b/config/webform.webform_options.likert_agreement.yml index 270ad10..6fe0026 100644 --- a/config/webform.webform_options.likert_agreement.yml +++ b/config/webform.webform_options.likert_agreement.yml @@ -11,9 +11,4 @@ id: likert_agreement 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" diff --git a/config/webform.webform_options.likert_comparison.yml b/config/webform.webform_options.likert_comparison.yml index 6caf395..fe21b41 100644 --- a/config/webform.webform_options.likert_comparison.yml +++ b/config/webform.webform_options.likert_comparison.yml @@ -11,9 +11,4 @@ id: likert_comparison 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" diff --git a/config/webform.webform_options.likert_importance.yml b/config/webform.webform_options.likert_importance.yml index e2fae6b..baa7a66 100644 --- a/config/webform.webform_options.likert_importance.yml +++ b/config/webform.webform_options.likert_importance.yml @@ -11,9 +11,4 @@ id: likert_importance 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" diff --git a/config/webform.webform_options.likert_quality.yml b/config/webform.webform_options.likert_quality.yml index 9dd267a..ec988df 100644 --- a/config/webform.webform_options.likert_quality.yml +++ b/config/webform.webform_options.likert_quality.yml @@ -11,9 +11,4 @@ id: likert_quality 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" diff --git a/config/webform.webform_options.likert_satisfaction.yml b/config/webform.webform_options.likert_satisfaction.yml index 5f7fcb7..8ba7b14 100644 --- a/config/webform.webform_options.likert_satisfaction.yml +++ b/config/webform.webform_options.likert_satisfaction.yml @@ -11,9 +11,4 @@ id: likert_satisfaction 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" diff --git a/config/webform.webform_options.likert_ten_scale.yml b/config/webform.webform_options.likert_ten_scale.yml index 67e1989..8ed0b09 100644 --- a/config/webform.webform_options.likert_ten_scale.yml +++ b/config/webform.webform_options.likert_ten_scale.yml @@ -11,14 +11,4 @@ id: likert_ten_scale 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" diff --git a/config/webform.webform_options.likert_would_you.yml b/config/webform.webform_options.likert_would_you.yml index b2aca4b..6fc30f3 100644 --- a/config/webform.webform_options.likert_would_you.yml +++ b/config/webform.webform_options.likert_would_you.yml @@ -11,9 +11,4 @@ id: likert_would_you 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" diff --git a/config/webform.webform_options.marital_status.yml b/config/webform.webform_options.marital_status.yml index 69d1a68..50900f7 100644 --- a/config/webform.webform_options.marital_status.yml +++ b/config/webform.webform_options.marital_status.yml @@ -11,8 +11,4 @@ id: marital_status 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" diff --git a/config/webform.webform_options.months.yml b/config/webform.webform_options.months.yml index 0f01f07..388724c 100644 --- a/config/webform.webform_options.months.yml +++ b/config/webform.webform_options.months.yml @@ -11,16 +11,4 @@ id: months 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" diff --git a/config/webform.webform_options.phone_types.yml b/config/webform.webform_options.phone_types.yml index d2504e9..157abb9 100644 --- a/config/webform.webform_options.phone_types.yml +++ b/config/webform.webform_options.phone_types.yml @@ -11,7 +11,4 @@ id: phone_types label: 'Phone type' category: Demographic likert: false -options: | - Home: Home - Office: Office - Cell: Cell +options: "Home: Home\nOffice: Office\nCell: Cell\n" diff --git a/config/webform.webform_options.relationship.yml b/config/webform.webform_options.relationship.yml index 075b724..3c55efa 100644 --- a/config/webform.webform_options.relationship.yml +++ b/config/webform.webform_options.relationship.yml @@ -11,9 +11,4 @@ id: relationship 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" diff --git a/config/webform.webform_options.size.yml b/config/webform.webform_options.size.yml index 9eee9b5..7f71ffb 100644 --- a/config/webform.webform_options.size.yml +++ b/config/webform.webform_options.size.yml @@ -11,9 +11,4 @@ id: size 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" diff --git a/config/webform.webform_options.state_codes.yml b/config/webform.webform_options.state_codes.yml index a4cc588..b135405 100644 --- a/config/webform.webform_options.state_codes.yml +++ b/config/webform.webform_options.state_codes.yml @@ -11,56 +11,4 @@ id: state_codes 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" diff --git a/config/webform.webform_options.state_names.yml b/config/webform.webform_options.state_names.yml index 120e6ec..ab75912 100644 --- a/config/webform.webform_options.state_names.yml +++ b/config/webform.webform_options.state_names.yml @@ -11,55 +11,4 @@ id: state_names 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" diff --git a/config/webform.webform_options.state_province_codes.yml b/config/webform.webform_options.state_province_codes.yml index bff582f..3545c7d 100644 --- a/config/webform.webform_options.state_province_codes.yml +++ b/config/webform.webform_options.state_province_codes.yml @@ -11,66 +11,4 @@ id: state_province_codes 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" diff --git a/config/webform.webform_options.state_province_names.yml b/config/webform.webform_options.state_province_names.yml index 7a14e0a..4eb7ebd 100644 --- a/config/webform.webform_options.state_province_names.yml +++ b/config/webform.webform_options.state_province_names.yml @@ -11,66 +11,4 @@ id: state_province_names 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" diff --git a/config/webform.webform_options.yes_no.yml b/config/webform.webform_options.yes_no.yml index 045273d..926a878 100644 --- a/config/webform.webform_options.yes_no.yml +++ b/config/webform.webform_options.yes_no.yml @@ -11,6 +11,4 @@ id: yes_no label: Yes/No category: General likert: false -options: | - Yes: Yes - No: No +options: "Yes: Yes\nNo: No\n" From 27bc701d4a1eb4768ea20950c60052ad340feabf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 08:53:40 -0400 Subject: [PATCH 054/236] Commit config after db updates; primarily linebreak expansions --- .../block.block.exposedformsearchpage_1_2.yml | 4 +- config/block.block.footer_about_us.yml | 4 +- config/block.block.footer_get_involved.yml | 4 +- config/block.block.footer_our_work.yml | 4 +- config/comment_notify.settings.yml | 42 +- ....custom_perms_entity.edit_contact_form.yml | 4 +- ...shot.config_sync.module.comment_notify.yml | 42 +- ...pshot.config_sync.module.drutopia_core.yml | 4 +- ...ot.config_sync.module.google_analytics.yml | 8 +- ...t.snapshot.config_sync.module.honeypot.yml | 10 +- ...pshot.snapshot.config_sync.module.user.yml | 104 +++- ...ot.snapshot.config_sync.module.webform.yml | 578 ++++++++++++++++-- config/customerror.settings.yml | 29 +- config/editor.editor.basic_html.yml | 5 +- config/google_analytics.settings.yml | 8 +- config/group.type.group.yml | 1 + config/language/es/views.view.blog.yml | 5 +- .../es/webform.webform.capacitacion.yml | 23 +- .../language/es/webform.webform.contact.yml | 23 +- .../language/es/webform.webform.contacto.yml | 22 +- .../language/es/webform.webform.training.yml | 23 +- config/redirect_404.settings.yml | 152 ++++- config/tour.tour.honeypot.yml | 10 +- config/user.mail.yml | 104 +++- config/views.view.blog.yml | 7 +- config/views.view.glossary.yml | 13 + config/webform.settings.yml | 140 ++++- ...bform.attend_the_tech_and_rev_workshop.yml | 24 +- config/webform.webform.blog_posts.yml | 17 +- config/webform.webform.capacitacion.yml | 39 +- config/webform.webform.contact.yml | 45 +- config/webform.webform.contact_confirm.yml | 22 +- ....webform.drupal_8_9_content_migrations.yml | 56 +- config/webform.webform.drutopia_intake.yml | 48 +- ...bform.webform.drutopia_platform_intake.yml | 19 +- config/webform.webform.find_it_platform.yml | 10 +- config/webform.webform.general_services.yml | 24 +- ....webform.getting_started_with_drupal_9.yml | 56 +- ....webform.getting_started_with_react_js.yml | 56 +- config/webform.webform.join_the_movement.yml | 17 +- ...form.webform.join_the_movement_confirm.yml | 7 +- config/webform.webform.june_2020_webinars.yml | 55 +- config/webform.webform.lms.yml | 25 +- config/webform.webform.migrations.yml | 17 +- ...rm.webform.migrations_training_confirm.yml | 11 +- config/webform.webform.newsletter.yml | 27 +- ....webform.purchase_training_migrate_api.yml | 56 +- config/webform.webform.request.yml | 17 +- config/webform.webform.showandtell.yml | 52 +- ...webform.webform.speaker_request_agaric.yml | 133 +++- ....webform.speaker_request_clayton_dewey.yml | 46 +- ...bform.speaker_request_mauricio_dinarte.yml | 46 +- ....webform.speaker_request_michele_metts.yml | 46 +- ...rm.webform.speaker_request_micky_metts.yml | 46 +- config/webform.webform.training.yml | 37 +- config/webform.webform.training_discount.yml | 62 +- ....webform.training_notification_request.yml | 32 +- ...webform.webform.training_request_draft.yml | 26 +- config/webform.webform.workshops.yml | 8 +- config/webform.webform_options.days.yml | 9 +- config/webform.webform_options.education.yml | 6 +- ...form.webform_options.employment_status.yml | 7 +- config/webform.webform_options.ethnicity.yml | 10 +- config/webform.webform_options.gender.yml | 4 +- config/webform.webform_options.industry.yml | 41 +- ...bform.webform_options.likert_agreement.yml | 7 +- ...form.webform_options.likert_comparison.yml | 7 +- ...form.webform_options.likert_importance.yml | 7 +- ...webform.webform_options.likert_quality.yml | 7 +- ...rm.webform_options.likert_satisfaction.yml | 7 +- ...bform.webform_options.likert_ten_scale.yml | 12 +- ...bform.webform_options.likert_would_you.yml | 7 +- ...webform.webform_options.marital_status.yml | 6 +- config/webform.webform_options.months.yml | 14 +- .../webform.webform_options.phone_types.yml | 5 +- .../webform.webform_options.relationship.yml | 7 +- config/webform.webform_options.size.yml | 7 +- .../webform.webform_options.state_codes.yml | 54 +- .../webform.webform_options.state_names.yml | 53 +- ...m.webform_options.state_province_codes.yml | 64 +- ...m.webform_options.state_province_names.yml | 64 +- config/webform.webform_options.yes_no.yml | 4 +- 82 files changed, 2765 insertions(+), 199 deletions(-) diff --git a/config/block.block.exposedformsearchpage_1_2.yml b/config/block.block.exposedformsearchpage_1_2.yml index 6ce8761..0c876d5 100644 --- a/config/block.block.exposedformsearchpage_1_2.yml +++ b/config/block.block.exposedformsearchpage_1_2.yml @@ -30,6 +30,8 @@ visibility: context_mapping: { } request_path: id: request_path - pages: "/search\n/search/*\n" + pages: | + /search + /search/* negate: false context_mapping: { } diff --git a/config/block.block.footer_about_us.yml b/config/block.block.footer_about_us.yml index 1bce7e8..36bf514 100644 --- a/config/block.block.footer_about_us.yml +++ b/config/block.block.footer_about_us.yml @@ -26,9 +26,11 @@ settings: follow_parent: child level: 1 depth: 0 - expand: 0 + expand_all_items: false parent: 'main:menu_link_content:33435872-bdbe-4833-9477-c057c2c33359' suggestion: main + label_type: block + label_link: false visibility: condition_group: id: condition_group diff --git a/config/block.block.footer_get_involved.yml b/config/block.block.footer_get_involved.yml index 2a00d01..ef65519 100644 --- a/config/block.block.footer_get_involved.yml +++ b/config/block.block.footer_get_involved.yml @@ -26,9 +26,11 @@ settings: follow_parent: child level: 1 depth: 0 - expand: 0 + expand_all_items: false parent: 'main:menu_link_content:f1eaa438-620d-418b-acd3-ad00dab9c635' suggestion: main + label_type: block + label_link: false visibility: condition_group: id: condition_group diff --git a/config/block.block.footer_our_work.yml b/config/block.block.footer_our_work.yml index 1b3fa10..2c980e0 100644 --- a/config/block.block.footer_our_work.yml +++ b/config/block.block.footer_our_work.yml @@ -26,9 +26,11 @@ settings: follow_parent: child level: 1 depth: 0 - expand: 0 + expand_all_items: false parent: 'main:menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd' suggestion: main + label_type: block + label_link: false visibility: condition_group: id: condition_group diff --git a/config/comment_notify.settings.yml b/config/comment_notify.settings.yml index 7971531..f55526f 100644 --- a/config/comment_notify.settings.yml +++ b/config/comment_notify.settings.yml @@ -10,11 +10,49 @@ mail_templates: watcher: node: subject: '[site:name] :: new comment on [node:title]' - body: "Hi [comment-subscribed:author],\n\n[comment:author] has commented on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou can stop receiving emails when someone replies to this post,\nby going to [comment-subscribed:unsubscribe-url]\n\nYou can set up auto-following feature for all future posts\nby creating your own user with a few clicks here [site:login-url]\n\n-- [site:name] team\n[site:url]\n" + 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],\n\nYou have received a comment on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou will receive emails like this for all replies to your posts. You can\ndisable this by logging in and changing the settings on your user account at\n[node:author:edit-url].\n\n-- [site:name] team\n[site:url]\n" + body: | + Hi [node:author], + + You have received a comment on: "[node:title]" + + ---- + [comment:title] + [comment:body] + ---- + + You can view the comment at the following url + [comment:url] + + You will receive emails like this for all replies to your posts. You can + disable this by logging in and changing the settings on your user account at + [node:author:edit-url]. + + -- [site:name] team + [site:url] _core: default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik bundle_types: diff --git a/config/config_perms.custom_perms_entity.edit_contact_form.yml b/config/config_perms.custom_perms_entity.edit_contact_form.yml index ab8ca6e..cec3b04 100644 --- a/config/config_perms.custom_perms_entity.edit_contact_form.yml +++ b/config/config_perms.custom_perms_entity.edit_contact_form.yml @@ -6,4 +6,6 @@ _core: default_config_hash: eJWhGhpRfmEhpk2aZAe8424DHGi6A4onjpxfouE4eWk id: edit_contact_form label: 'Edit contact form' -route: "entity.contact_form.collection\nentity.contact_form.edit_form\n" +route: | + entity.contact_form.collection + entity.contact_form.edit_form diff --git a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml index ef80d9b..bb55b73 100644 --- a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml +++ b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml @@ -24,7 +24,45 @@ items: mail_templates: watcher: subject: '[site:name] :: new comment on [node:title]' - body: "Hi [comment-subscribed:author],\n\n[comment:author] has commented on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou can stop receiving emails when someone replies to this post,\nby going to [comment-subscribed:unsubscribe-url]\n\nYou can set up auto-following feature for all future posts\nby creating your own user with a few clicks here [site:login-url]\n\n-- [site:name] team\n[site:url]\n" + 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],\n\nYou have received a comment on: \"[node:title]\"\n\n----\n[comment:title]\n[comment:body]\n----\n\nYou can view the comment at the following url\n[comment:url]\n\nYou will receive emails like this for all replies to your posts. You can\ndisable this by logging in and changing the settings on your user account at\n[node:author:edit-url].\n\n-- [site:name] team\n[site:url]\n" + 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.drutopia_core.yml b/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml index b1a3c9f..b509de6 100644 --- a/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml +++ b/config/config_snapshot.snapshot.config_sync.module.drutopia_core.yml @@ -28,7 +28,9 @@ items: dependencies: { } id: edit_contact_form label: 'Edit contact form' - route: "entity.contact_form.collection\nentity.contact_form.edit_form\n" + route: | + entity.contact_form.collection + entity.contact_form.edit_form - collection: '' name: core.date_format.month_day_year diff --git a/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml b/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml index 38affde..d73caab 100644 --- a/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml +++ b/config/config_snapshot.snapshot.config_sync.module.google_analytics.yml @@ -19,7 +19,13 @@ items: cross_domains: '' visibility: request_path_mode: 0 - request_path_pages: "/admin\n/admin/*\n/batch\n/node/add*\n/node/*/*\n/user/*/*\n" + request_path_pages: | + /admin + /admin/* + /batch + /node/add* + /node/*/* + /user/*/* user_role_mode: 0 user_role_roles: { } user_account_mode: 0 diff --git a/config/config_snapshot.snapshot.config_sync.module.honeypot.yml b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml index 9b8ab63..f2e9152 100644 --- a/config/config_snapshot.snapshot.config_sync.module.honeypot.yml +++ b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml @@ -46,7 +46,10 @@ items: plugin: text label: Honeypot weight: -10 - body: "Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots.\n\nClick Next to be guided through this configuration page.\n" + body: | + Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots. + + Click Next to be guided through this configuration page. location: top protect-all-forms: id: protect-all-forms @@ -55,7 +58,10 @@ items: weight: -9 attributes: data-id: edit-protect-all-forms - body: "Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed.\n\nNote: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time.\n" + body: | + Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed. + + Note: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time. location: bottom log-blocked-form-submissions: id: log-blocked-form-submissions diff --git a/config/config_snapshot.snapshot.config_sync.module.user.yml b/config/config_snapshot.snapshot.config_sync.module.user.yml index 6b88875..36274cd 100644 --- a/config/config_snapshot.snapshot.config_sync.module.user.yml +++ b/config/config_snapshot.snapshot.config_sync.module.user.yml @@ -122,31 +122,117 @@ items: 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\n" + 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],\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\n" + 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],\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\n" + 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],\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\n" + 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],\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-- [site:name] team\n" + 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.\n\n[user:edit-url]\n" + 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],\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\n" + 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],\n\nYour account on [site:name] has been blocked.\n\n-- [site:name] team\n" + 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],\n\nYour account on [site:name] has been canceled.\n\n-- [site:name] team\n" + 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 - diff --git a/config/config_snapshot.snapshot.config_sync.module.webform.yml b/config/config_snapshot.snapshot.config_sync.module.webform.yml index 59b242d..5587a1d 100644 --- a/config/config_snapshot.snapshot.config_sync.module.webform.yml +++ b/config/config_snapshot.snapshot.config_sync.module.webform.yml @@ -3274,7 +3274,12 @@ items: default_form_required_label: 'Indicates required field' default_form_details_toggle: true default_form_file_limit: '' - form_classes: "container-inline clearfix\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n" + form_classes: | + container-inline clearfix + form--inline clearfix + messages messages--error + messages messages--warning + messages messages--status button_classes: '' default_wizard_prev_button_label: '< Previous Page' default_wizard_next_button_label: 'Next Page >' @@ -3311,8 +3316,14 @@ 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\nmessages messages--warning\nmessages messages--status\n" - confirmation_classes: "messages messages--error\nmessages messages--warning\nmessages messages--status\n" + 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 default_limit_total_message: 'No more submissions are permitted.' default_limit_user_message: 'No more submissions are permitted.' @@ -3363,9 +3374,28 @@ items: element: empty_message: '{Empty}' allowed_tags: admin - 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" + 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 default_description_display: '' default_more_title: More default_section_title_tag: h2 @@ -3408,12 +3438,98 @@ items: default_sender_mail: '' default_sender_name: '' default_subject: 'Webform submission from: [webform_submission:source-entity]' - 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]

\n

Submitted by: [webform_submission:user]

\n

Submitted values are:

\n[webform_submission:values]\n" + 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] roles: { } test: - 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" + 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' ui: video_display: dialog details_save: true @@ -3457,7 +3573,31 @@ items: title: Contact description: 'Basic email contact webform.' category: '' - 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" + 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' css: '' javascript: '' settings: @@ -3719,7 +3859,14 @@ items: label: Days category: 'Date and time' likert: false - options: "Sunday: Sunday\nMonday: Monday\nTuesday: Tuesday\nWednesday: Wednesday\nThursday: Thursday\nFriday: Friday\nSaturday: Saturday\n" + options: | + Sunday: Sunday + Monday: Monday + Tuesday: Tuesday + Wednesday: Wednesday + Thursday: Thursday + Friday: Friday + Saturday: Saturday - collection: '' name: webform.webform_options.education @@ -3734,7 +3881,11 @@ items: label: Education category: Demographic likert: false - options: "High School: High School\nAssociate Degree: Associate Degree\nGraduate or Professional Degree: Graduate or Professional Degree\nSome College: Some College\n" + options: | + High School: High School + Associate Degree: Associate Degree + Graduate or Professional Degree: Graduate or Professional Degree + Some College: Some College - collection: '' name: webform.webform_options.employment_status @@ -3749,7 +3900,12 @@ items: label: 'Employment status' category: Demographic likert: false - options: "'Full Time': 'Full Time'\n'Part Time': 'Part Time'\n'Military': 'Military'\nUnemployed: Unemployed\nRetired: Retired\n" + options: | + 'Full Time': 'Full Time' + 'Part Time': 'Part Time' + 'Military': 'Military' + Unemployed: Unemployed + Retired: Retired - collection: '' name: webform.webform_options.ethnicity @@ -3764,7 +3920,15 @@ items: label: Ethnicity category: Demographic likert: false - 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" + 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 - collection: '' name: webform.webform_options.gender @@ -3779,7 +3943,9 @@ items: label: Gender category: Demographic likert: false - options: "Male: Male\nFemale: Female\n" + options: | + Male: Male + Female: Female - collection: '' name: webform.webform_options.industry @@ -3794,7 +3960,46 @@ items: label: Industry category: Demographic likert: false - 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" + 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 - collection: '' name: webform.webform_options.languages @@ -3824,7 +4029,12 @@ items: label: 'Likert: Agreement' category: Likert likert: true - options: "1: 'Much Worse'\n2: 'Somewhat Worse'\n3: 'About the Same'\n4: 'Somewhat Better'\n5: 'Much Better'\n" + options: | + 1: 'Much Worse' + 2: 'Somewhat Worse' + 3: 'About the Same' + 4: 'Somewhat Better' + 5: 'Much Better' - collection: '' name: webform.webform_options.likert_comparison @@ -3839,7 +4049,12 @@ items: label: 'Likert: Comparison' category: Likert likert: true - options: "1: Strongly Disagree\n2: Disagree\n3: Neutral\n4: Agree\n5: Strongly Agree\n" + options: | + 1: Strongly Disagree + 2: Disagree + 3: Neutral + 4: Agree + 5: Strongly Agree - collection: '' name: webform.webform_options.likert_importance @@ -3854,7 +4069,12 @@ items: label: 'Likert: Importance' category: Likert likert: true - options: "1: Not at all Important\n2: Somewhat Important\n3: Neutral\n4: Important\n5: Very Important\n" + options: | + 1: Not at all Important + 2: Somewhat Important + 3: Neutral + 4: Important + 5: Very Important - collection: '' name: webform.webform_options.likert_quality @@ -3869,7 +4089,12 @@ items: label: 'Likert: Quality' category: Likert likert: true - options: "1: Poor\n2: Fair\n3: Good\n4: Very good\n5: Excellent\n" + options: | + 1: Poor + 2: Fair + 3: Good + 4: Very good + 5: Excellent - collection: '' name: webform.webform_options.likert_satisfaction @@ -3884,7 +4109,12 @@ items: label: 'Likert: Satisfaction' category: Likert likert: true - options: "1: Very Unsatisfied\n2: Unsatisfied\n3: Neutral\n4: Satisfied\n5: Very Satisfied\n" + options: | + 1: Very Unsatisfied + 2: Unsatisfied + 3: Neutral + 4: Satisfied + 5: Very Satisfied - collection: '' name: webform.webform_options.likert_ten_scale @@ -3899,7 +4129,17 @@ items: label: 'Likert: Ten Scale' category: Likert likert: true - options: "1: 1\n2: 2\n3: 3\n4: 4\n5: 5\n6: 6\n7: 7\n8: 8\n9: 9\n10: 10\n" + options: | + 1: 1 + 2: 2 + 3: 3 + 4: 4 + 5: 5 + 6: 6 + 7: 7 + 8: 8 + 9: 9 + 10: 10 - collection: '' name: webform.webform_options.likert_would_you @@ -3914,7 +4154,12 @@ items: label: 'Likert: Would You' category: Likert likert: true - options: "1: Definitely Not\n2: Probably Not\n3: Not Sure\n4: Probably\n5: Definitely\n" + options: | + 1: Definitely Not + 2: Probably Not + 3: Not Sure + 4: Probably + 5: Definitely - collection: '' name: webform.webform_options.marital_status @@ -3929,7 +4174,11 @@ items: label: 'Marital status' category: Demographic likert: false - options: "Single: Single\nMarried: Married\nDivorced: Divorced\nWidowed: Widowed\n" + options: | + Single: Single + Married: Married + Divorced: Divorced + Widowed: Widowed - collection: '' name: webform.webform_options.months @@ -3944,7 +4193,19 @@ items: label: Months category: 'Date and time' likert: false - 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" + 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 - collection: '' name: webform.webform_options.phone_types @@ -3959,7 +4220,10 @@ items: label: 'Phone type' category: Demographic likert: false - options: "Home: Home\nOffice: Office\nCell: Cell\n" + options: | + Home: Home + Office: Office + Cell: Cell - collection: '' name: webform.webform_options.relationship @@ -3974,7 +4238,12 @@ items: label: Relationship category: Demographic likert: false - options: "Parent: Parent\n'Significant Other': 'Significant Other'\nSibling: Sibling\nChild: Child\nFriend: Friend\n" + options: | + Parent: Parent + 'Significant Other': 'Significant Other' + Sibling: Sibling + Child: Child + Friend: Friend - collection: '' name: webform.webform_options.size @@ -3989,7 +4258,12 @@ items: label: Size category: General likert: false - options: "Extra Small: Extra Small\nSmall: Small\nMedium: Medium\nLarge: Large\nExtra Large: Extra Large\n" + options: | + Extra Small: Extra Small + Small: Small + Medium: Medium + Large: Large + Extra Large: Extra Large - collection: '' name: webform.webform_options.state_codes @@ -4004,7 +4278,59 @@ items: label: 'State codes' category: Geographic likert: false - 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" + 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 - collection: '' name: webform.webform_options.state_names @@ -4019,7 +4345,58 @@ items: label: 'State names' category: Geographic likert: false - 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" + 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 - collection: '' name: webform.webform_options.state_province_codes @@ -4034,7 +4411,69 @@ items: label: 'State/Province codes' category: Geographic likert: false - 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" + 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 - collection: '' name: webform.webform_options.state_province_names @@ -4049,7 +4488,69 @@ items: label: 'State/Province names' category: Geographic likert: false - 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" + 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 - collection: '' name: webform.webform_options.time_zones @@ -4079,7 +4580,12 @@ items: label: Titles category: Demographic likert: false - options: "Miss: Miss\nMs: Ms\nMr: Mr\nMrs: Mrs\nDr: Dr\n" + options: | + Miss: Miss + Ms: Ms + Mr: Mr + Mrs: Mrs + Dr: Dr - collection: '' name: webform.webform_options.yes_no @@ -4094,4 +4600,6 @@ items: label: Yes/No category: General likert: false - options: "Yes: Yes\nNo: No\n" + options: | + Yes: Yes + No: No diff --git a/config/customerror.settings.yml b/config/customerror.settings.yml index cd2eeec..668c562 100644 --- a/config/customerror.settings.yml +++ b/config/customerror.settings.yml @@ -1,6 +1,33 @@ 403: title: 'Access denied' - body: "
\n
\n
\n
\n

I'm sorry, you do not have permission to be here.

\n
\n
\n
\n
\n
\n

Knocked once
\nTried to tell 'em I've been there
\nDoor slammed
\nHospitality's thin there

\nMarvin Moore, \"Green Door\"\n
\n
\n
\n
    \n
  • \n
\n
\n
\n
\n
\n
\n
\n" + 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: '' 404: title: 'Requested page not found' diff --git a/config/editor.editor.basic_html.yml b/config/editor.editor.basic_html.yml index 7b25af2..1b10fb7 100644 --- a/config/editor.editor.basic_html.yml +++ b/config/editor.editor.basic_html.yml @@ -48,7 +48,10 @@ settings: - Maximize plugins: stylescombo: - styles: "p.subtitle.is-mono.is-4|Mono subtitle\np.title.is-5.is-spaced|Small title\np.subtitle.is-6|Small subtitle\n" + styles: | + p.subtitle.is-mono.is-4|Mono subtitle + p.title.is-5.is-spaced|Small title + p.subtitle.is-6|Small subtitle language: language_list: un linebreaks: diff --git a/config/google_analytics.settings.yml b/config/google_analytics.settings.yml index 801b419..8afb5a9 100644 --- a/config/google_analytics.settings.yml +++ b/config/google_analytics.settings.yml @@ -4,7 +4,13 @@ domain_mode: 0 cross_domains: '' visibility: request_path_mode: 0 - request_path_pages: "/admin\n/admin/*\n/batch\n/node/add*\n/node/*/*\n/user/*/*\n" + request_path_pages: | + /admin + /admin/* + /batch + /node/add* + /node/*/* + /user/*/* user_role_mode: 0 user_role_roles: { } user_account_mode: 0 diff --git a/config/group.type.group.yml b/config/group.type.group.yml index 1e80e7c..fa37171 100644 --- a/config/group.type.group.yml +++ b/config/group.type.group.yml @@ -10,3 +10,4 @@ description: 'Basic group type that can be classified by a group type vocabulary creator_membership: true creator_wizard: true creator_roles: { } +new_revision: false diff --git a/config/language/es/views.view.blog.yml b/config/language/es/views.view.blog.yml index 62fbadf..bd21b4f 100644 --- a/config/language/es/views.view.blog.yml +++ b/config/language/es/views.view.blog.yml @@ -4,7 +4,10 @@ display: footer: area: content: - value: "\n" + value: | + format: full_html page_listing: display_title: Página diff --git a/config/language/es/webform.webform.capacitacion.yml b/config/language/es/webform.webform.capacitacion.yml index b896db0..7b172f3 100644 --- a/config/language/es/webform.webform.capacitacion.yml +++ b/config/language/es/webform.webform.capacitacion.yml @@ -1 +1,22 @@ -elements: "intro_text:\n '#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\"\nname:\n '#title': Nombre\ntopics:\n '#title': Temas\n '#options':\n 'Introduction to Drupal': 'Introducción a Drupal'\n 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'\n 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'\n 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'\n 'Drupal theming and templating': 'Diseño y theming en Drupal'\n 'Data migration': 'Migración de Datos'\nsize:\n '#title': Tamaño\n '#options':\n 'Personal training': 'Capacitación personal'\n 'Small group (2-5)': 'Grupo pequeño(2-5)'\n 'Larger group (more than 5)': 'Grupo grande (mas de 5)'\nactions:\n '#submit__label': 'Pedir una capacitación'\n" +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 index 4472d1d..ec80cb1 100644 --- a/config/language/es/webform.webform.contact.yml +++ b/config/language/es/webform.webform.contact.yml @@ -1,8 +1,27 @@ title: Contact -elements: "introduction:\n '#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.'\nname:\n '#title': 'Tu Nombre'\nemail:\n '#title': 'Tu Correo Electrónico'\nsubject:\n '#title': 'El Tema'\nmessage:\n '#title': Mensaje\nactions:\n '#submit__label': 'Enviar Mensaje'\n" +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, \n\nTú recibiste un nuevo mensaje.\n\n

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

\n

Submitted values are:

\n{{ webform_token('[webform_submission:values]', webform_submission) }}\n" + 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 index 2684696..c54f21c 100644 --- a/config/language/es/webform.webform.contacto.yml +++ b/config/language/es/webform.webform.contacto.yml @@ -1,4 +1,24 @@ title: Contacto -elements: "introduction:\n '#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.'\nname:\n '#title': 'Tu Nombre'\nemail:\n '#title': 'Tu Correo Electrónico'\nsubject:\n '#title': 'El Tema'\nmessage:\n '#title': Mensaje\nhow_did_you_find_us:\n '#title': '¿Cómo se enteró de nosotros?'\n '#options':\n 'A professional or personal recommendation': 'Una recomendación profesional o personal'\n 'I met an Agaric and was given a business card': 'Conocí a un Agárico y me dieron una tarjeta de presentación'\n 'Google or something similar': 'Google o algo similar'\n 'The Agaric logo appeared on toast I made': 'El logo de Agaric apareció en una tostada que hice'\n '#other__option_label': Otro\nactions:\n '#submit__label': 'Enviar Mensaje'\n" +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.training.yml b/config/language/es/webform.webform.training.yml index b896db0..7b172f3 100644 --- a/config/language/es/webform.webform.training.yml +++ b/config/language/es/webform.webform.training.yml @@ -1 +1,22 @@ -elements: "intro_text:\n '#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\"\nname:\n '#title': Nombre\ntopics:\n '#title': Temas\n '#options':\n 'Introduction to Drupal': 'Introducción a Drupal'\n 'Drupal development (beginning)': 'Desarollo en Drupal development (principiante)'\n 'Drupal development (intermediate)': 'Desarrollo en Drupal (intermedio)'\n 'Drupal development (advanced)': 'Desarrollo en Drupal (avanzado)'\n 'Drupal theming and templating': 'Diseño y theming en Drupal'\n 'Data migration': 'Migración de Datos'\nsize:\n '#title': Tamaño\n '#options':\n 'Personal training': 'Capacitación personal'\n 'Small group (2-5)': 'Grupo pequeño(2-5)'\n 'Larger group (more than 5)': 'Grupo grande (mas de 5)'\nactions:\n '#submit__label': 'Pedir una capacitación'\n" +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/redirect_404.settings.yml b/config/redirect_404.settings.yml index 691c715..2bd426e 100644 --- a/config/redirect_404.settings.yml +++ b/config/redirect_404.settings.yml @@ -1,5 +1,155 @@ row_limit: 100000 -pages: "/wp-login.php\n/\n/xmlrpc.php\n/\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/module.php?echo%2027ebdd36a8ac535e55aaeb6abf8a769d&feature=shell\n/\n/.well-known/assetlinks.json\n/\n/plus/read.php\n/\n/servlet?jumpto=status&p=login&q=loginForm\n/\n/data/cache/asd.php\n/\n/data/cache/flye.php\n/\n/plus/result.php\n/\n/phpmyadmin\n/\n/fuck.php\n/\n/plus/mytag_js.php?aid=9527\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/wordpress/wp-login.php\n/\n/coon.php\n/\n/sqlite/sqlite-manager/main.php\n/\n/plus/mytag_js.php?aid=9527\n/\n/dede/login.php\n/\n/blog/xmlrpc.php\n/\n/plus/90sec.php\n/\n/admin/login.php\n/\n/lx.php\n/\n/lequ.php\n/\n/blog/user/register\n/\n/payload.php\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/MYAdmin\n/\n/plus/mytag_js.php?aid=511348\n/\n/sb.php\n/\n/\n/sqlite/sqlitemanager/main.php\n/\n/mySqlDumper\n/\n/plus/mytag_js.php?aid=6022\n/\n/pmd/index.php\n/\n/sites/default/files/content-post.php\n/\n/gb.php\n/\n/s.php?c=echo%20InfoOS%3A%60uname%20-a%3Bid%60OSInfo%3B%20exit%3B\n/\n/modules/coder/coder_upgrade/scripts/coder_upgrade.run.php\n/\n/install/index.php.bak?insLockfile=a&install_demo_name=..%2Fdata%2Fadmin%2Fconfig_update.php&s_lang=a&step=11\n/\n/srv/svn/agaric/drupal-contrib/5/modules-all/transliteration/data/x6e.php\n/\n/config/secrets.yml\n/\n/ewebeditor/php/upload.php?action=save&language=en&style=toby57&type=FILE\n/\n/plus/da.php\n/\n/plus/car.php\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/core/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/27ebdd36a8ac535e55aaeb6abf8a769d.php?_cmd=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/s.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/ps.php?c=echo%2027ebdd36a8ac535e55aaeb6abf8a769d\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/auth/register\n/\n/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/VaVWK/ZkPMP/imWVj/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/PMkNg/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/OOYUZ/USSVZ/WNOgZ/WifnZ/~kava/paypal/us/webscr.php?cmd=_login-run\n/\n/keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run\n" +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 _core: default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM diff --git a/config/tour.tour.honeypot.yml b/config/tour.tour.honeypot.yml index ad5633f..0385688 100644 --- a/config/tour.tour.honeypot.yml +++ b/config/tour.tour.honeypot.yml @@ -18,7 +18,10 @@ tips: plugin: text label: Honeypot weight: -10 - body: "Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots.\n\nClick Next to be guided through this configuration page.\n" + body: | + Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots. + + Click Next to be guided through this configuration page. location: top protect-all-forms: id: protect-all-forms @@ -27,7 +30,10 @@ tips: weight: -9 attributes: data-id: edit-protect-all-forms - body: "Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed.\n\nNote: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time.\n" + body: | + Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed. + + Note: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time. location: bottom log-blocked-form-submissions: id: log-blocked-form-submissions diff --git a/config/user.mail.yml b/config/user.mail.yml index 0d0e6db..0951c06 100644 --- a/config/user.mail.yml +++ b/config/user.mail.yml @@ -1,29 +1,115 @@ 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\n" + 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],\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\n" + 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],\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\n" + 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],\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\n" + 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],\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-- [site:name] team\n" + 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.\n\n[user:edit-url]\n" + 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],\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\n" + 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],\n\nYour account on [site:name] has been blocked.\n\n-- [site:name] team\n" + 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],\n\nYour account on [site:name] has been canceled.\n\n-- [site:name] team\n" + 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 _core: diff --git a/config/views.view.blog.yml b/config/views.view.blog.yml index af6d006..9efda2c 100644 --- a/config/views.view.blog.yml +++ b/config/views.view.blog.yml @@ -282,7 +282,12 @@ display: empty: false tokenize: false content: - value: "
\n \n
\n" + value: | +
+ +
format: full_html plugin_id: text cache_metadata: diff --git a/config/views.view.glossary.yml b/config/views.view.glossary.yml index 34b985b..da1f2c6 100644 --- a/config/views.view.glossary.yml +++ b/config/views.view.glossary.yml @@ -352,6 +352,19 @@ display: plugin_id: language entity_type: node entity_field: langcode + status: + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + field: status + group: 1 + id: status + table: node_field_data + value: '1' + plugin_id: boolean + entity_type: node + entity_field: status display_extenders: { } cache_metadata: contexts: diff --git a/config/webform.settings.yml b/config/webform.settings.yml index 38efc78..9bcd62d 100644 --- a/config/webform.settings.yml +++ b/config/webform.settings.yml @@ -1,6 +1,6 @@ settings: default_status: open - default_page_base_path: form + default_page_base_path: /form default_ajax: false default_ajax_effect: fade default_ajax_speed: 500 @@ -17,13 +17,19 @@ settings: default_form_disable_back: false default_form_submit_back: false default_form_unsaved: false + default_form_disable_remote_addr: false default_form_novalidate: false default_form_disable_inline_errors: false 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\nform--inline clearfix\nmessages messages--error\nmessages messages--warning\nmessages messages--status\n" + form_classes: | + container-inline clearfix + form--inline clearfix + messages messages--error + messages messages--warning + messages messages--status button_classes: '' default_wizard_prev_button_label: '< Previous Page' default_wizard_next_button_label: 'Next Page >' @@ -65,8 +71,14 @@ settings: 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\nmessages messages--warning\nmessages messages--status\n" - confirmation_classes: "messages messages--error\nmessages messages--warning\nmessages messages--status\n" + 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 default_limit_total_message: 'No more submissions are permitted.' default_limit_user_message: 'No more submissions are permitted.' @@ -128,9 +140,28 @@ element: machine_name_pattern: a-z0-9_ empty_message: '{Empty}' allowed_tags: admin - 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" + 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 default_description_display: '' default_more_title: More default_section_title_tag: h2 @@ -173,13 +204,99 @@ mail: default_sender_mail: '' default_sender_name: Agaric default_subject: 'Webform submission from: [webform_submission:source-title]' - 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]

\n

Submitted by: [webform_submission:user]

\n

Submitted values are:

\n[webform_submission:values]\n" + 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] roles: - staff test: - 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" + 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' ui: video_display: dialog details_save: true @@ -187,6 +304,7 @@ ui: dialog_disabled: false offcanvas_disabled: false promotions_disabled: false + support_disabled: false description_help: true toolbar_item: false libraries: diff --git a/config/webform.webform.attend_the_tech_and_rev_workshop.yml b/config/webform.webform.attend_the_tech_and_rev_workshop.yml index c464aad..ae26394 100644 --- a/config/webform.webform.attend_the_tech_and_rev_workshop.yml +++ b/config/webform.webform.attend_the_tech_and_rev_workshop.yml @@ -12,7 +12,27 @@ id: attend_the_tech_and_rev_workshop title: 'Attend the Tech and Rev Workshop' description: '' category: '' -elements: "intro:\n '#type': webform_markup\n '#markup': 'Register for the upcoming partipatory workshop on technology and revolution. The more people that RSVP the better we can prepare for the discussion.'\nyour_name:\n '#type': textfield\n '#title': 'Your Name'\norganization:\n '#type': textfield\n '#title': 'Your organization'\nattendee_number:\n '#type': number\n '#title': 'How many people are you bringing (including yourself)'\nemail:\n '#type': email\n '#title': 'Your email'\n '#description': 'Include your email address if you'd like to be added to Agaric's announcement list for future events.'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': Register\n" +elements: | + intro: + '#type': webform_markup + '#markup': 'Register for the upcoming partipatory workshop on technology and revolution. The more people that RSVP the better we can prepare for the discussion.' + your_name: + '#type': textfield + '#title': 'Your Name' + organization: + '#type': textfield + '#title': 'Your organization' + attendee_number: + '#type': number + '#title': 'How many people are you bringing (including yourself)' + email: + '#type': email + '#title': 'Your email' + '#description': 'Include your email address if you'd like to be added to Agaric's announcement list for future events.' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': Register css: '' javascript: '' settings: @@ -33,7 +53,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.blog_posts.yml b/config/webform.webform.blog_posts.yml index 0e48a13..f534366 100644 --- a/config/webform.webform.blog_posts.yml +++ b/config/webform.webform.blog_posts.yml @@ -12,7 +12,20 @@ id: blog_posts title: 'Blog posts' description: 'Get blog posts via email' category: Mailchimp -elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#middle__access': false\n '#suffix__access': false\n '#degree__access': false\nyour_email_address:\n '#type': email\n '#title': 'Your email address'\nsend_blog_posts_via_email:\n '#type': checkbox\n '#title': 'Send blog posts via email'\n" +elements: | + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#middle__access': false + '#suffix__access': false + '#degree__access': false + your_email_address: + '#type': email + '#title': 'Your email address' + send_blog_posts_via_email: + '#type': checkbox + '#title': 'Send blog posts via email' css: '' javascript: '' settings: @@ -33,7 +46,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.capacitacion.yml b/config/webform.webform.capacitacion.yml index 2f813a0..308e2b5 100644 --- a/config/webform.webform.capacitacion.yml +++ b/config/webform.webform.capacitacion.yml @@ -12,7 +12,38 @@ id: capacitacion title: Capacitación description: '

Formulario para capacitación

' category: '' -elements: "intro_text:\n '#type': processed_text\n '#text': \"

Thanks for showing interest in our trainings. Just share a bit about what you're looking for and we'll follow up with you soon thereafter.

\\r\\n\"\n '#format': basic_html\nname:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\ntopics:\n '#type': checkboxes\n '#title': Topics\n '#options':\n 'Introduction to Drupal': 'Introduction to Drupal'\n 'Drupal development (beginning)': 'Drupal development (beginning)'\n 'Drupal development (intermediate)': 'Drupal development (intermediate)'\n 'Drupal development (advanced)': 'Drupal development (advanced)'\n 'Drupal theming and templating': 'Drupal theming and templating'\n 'Data migration': 'Data migration'\nsize:\n '#type': checkboxes\n '#title': Size\n '#options':\n 'Personal training': 'Personal training'\n 'Small group (2-5)': 'Small group (2-5)'\n 'Larger group (more than 5)': 'Larger group (more than 5)'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Request training'\n" +elements: | + intro_text: + '#type': processed_text + '#text': "

Thanks for showing interest in our trainings. Just share a bit about what you're looking for and we'll follow up with you soon thereafter.

\r\n" + '#format': basic_html + name: + '#type': textfield + '#title': Name + email: + '#type': email + '#title': Email + topics: + '#type': checkboxes + '#title': Topics + '#options': + 'Introduction to Drupal': 'Introduction to Drupal' + 'Drupal development (beginning)': 'Drupal development (beginning)' + 'Drupal development (intermediate)': 'Drupal development (intermediate)' + 'Drupal development (advanced)': 'Drupal development (advanced)' + 'Drupal theming and templating': 'Drupal theming and templating' + 'Data migration': 'Data migration' + size: + '#type': checkboxes + '#title': Size + '#options': + 'Personal training': 'Personal training' + 'Small group (2-5)': 'Small group (2-5)' + 'Larger group (more than 5)': 'Larger group (more than 5)' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Request training' css: '' javascript: '' settings: @@ -33,7 +64,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -114,7 +145,9 @@ settings: draft_pending_multiple_message: '' confirmation_type: page confirmation_title: 'Tu solicitud de entrenamiento fue un éxito.' - confirmation_message: "Gracias por solicitar un entrenamiento. Revisaremos sus necesidades y haremos un seguimiento pronto. Mientras tanto, no dude en leer nuestras publicaciones de blog o nuestros videos de capacitación.
\n \n" + confirmation_message: | + Gracias por solicitar un entrenamiento. Revisaremos sus necesidades y haremos un seguimiento pronto. Mientras tanto, no dude en leer nuestras publicaciones de blog o nuestros videos de capacitación.
+   confirmation_url: '' confirmation_attributes: { } confirmation_back: true diff --git a/config/webform.webform.contact.yml b/config/webform.webform.contact.yml index 10a6d29..91191e7 100644 --- a/config/webform.webform.contact.yml +++ b/config/webform.webform.contact.yml @@ -5,8 +5,6 @@ dependencies: enforced: module: - webform -_core: - default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww open: null close: null weight: 0 @@ -17,7 +15,35 @@ id: contact title: Contact description: 'Basic email contact webform.' category: '' -elements: "introduction:\n '#type': webform_markup\n '#admin_title': Introduction\n '#markup': 'You – our clients, colleagues, and crazed adoring fans – are the reason we do what we do. We would love to hear from you.'\nname:\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" +elements: | + introduction: + '#type': webform_markup + '#admin_title': Introduction + '#markup': 'You – our clients, colleagues, and crazed adoring fans – are the reason we do what we do. We would love to hear from you.' + 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' css: '' javascript: '' settings: @@ -38,7 +64,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -218,7 +244,14 @@ handlers: from_options: { } from_name: '[webform_submission:values:name:raw]' subject: '[webform_submission:values:subject:raw]' - body: "Hi Agarics, \n\nYou got a new message.\n\n

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

\n

Submitted values are:

\n{{ webform_token('[webform_submission:values]', webform_submission) }}\n" + body: | + Hi Agarics, + + You got a new message. + +

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

+

Submitted values are:

+ {{ webform_token('[webform_submission:values]', webform_submission) }} excluded_elements: { } ignore_access: false exclude_empty: true @@ -235,3 +268,5 @@ handlers: theme_name: '' parameters: { } variants: { } +_core: + default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww diff --git a/config/webform.webform.contact_confirm.yml b/config/webform.webform.contact_confirm.yml index 38967f2..9a2961d 100644 --- a/config/webform.webform.contact_confirm.yml +++ b/config/webform.webform.contact_confirm.yml @@ -12,7 +12,25 @@ id: contact_confirm title: 'Thanks for contacting Agaric' description: 'A confirmation page to ask some follow-up questions.' category: '' -elements: "do_you_have_any_feedback_for_us_:\n '#type': textarea\n '#title': 'Do you have any feedback for us?'\n '#required': true\n '#format_items': comma\nhow_did_you_find_us:\n '#type': webform_radios_other\n '#title': 'How did you find us?'\n '#options':\n 'A professional or personal recommendation': 'A professional or personal recommendation'\n 'I met an Agaric and was given a business card': 'I met an Agaric and was given a business card'\n 'Google or something similar': 'Google or something similar'\n 'The Agaric logo appeared on toast I made': 'The Agaric logo appeared on toast I made'\n '#other__option_label': Other\nsubmission_id:\n '#type': hidden\n '#title': 'Submission ID'\n '#default_value': '[current-page:query:submission]'\n" +elements: | + do_you_have_any_feedback_for_us_: + '#type': textarea + '#title': 'Do you have any feedback for us?' + '#required': true + '#format_items': comma + how_did_you_find_us: + '#type': webform_radios_other + '#title': 'How did you find us?' + '#options': + 'A professional or personal recommendation': 'A professional or personal recommendation' + 'I met an Agaric and was given a business card': 'I met an Agaric and was given a business card' + 'Google or something similar': 'Google or something similar' + 'The Agaric logo appeared on toast I made': 'The Agaric logo appeared on toast I made' + '#other__option_label': Other + submission_id: + '#type': hidden + '#title': 'Submission ID' + '#default_value': '[current-page:query:submission]' css: '' javascript: '' settings: @@ -33,7 +51,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.drupal_8_9_content_migrations.yml b/config/webform.webform.drupal_8_9_content_migrations.yml index 02b8734..8f57dc1 100644 --- a/config/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/webform.webform.drupal_8_9_content_migrations.yml @@ -14,7 +14,41 @@ id: drupal_8_9_content_migrations title: 'Drupal 8/9 content migrations' description: '' category: Purchase -elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, February 02** and **Thursday, February 04, 2021**\n * Time: Both sessions at **10AM–1:30PM Eastern**\n * Cost: **$500**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Date: **Tuesday, February 02** and **Thursday, February 04, 2021** + * Time: Both sessions at **10AM–1:30PM Eastern** + * Cost: **$500** + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' css: '' javascript: '' settings: @@ -35,7 +69,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -116,7 +150,10 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -235,7 +272,18 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.drutopia_intake.yml b/config/webform.webform.drutopia_intake.yml index 66ae937..acbc6cf 100644 --- a/config/webform.webform.drutopia_intake.yml +++ b/config/webform.webform.drutopia_intake.yml @@ -12,7 +12,51 @@ id: drutopia_intake title: 'Drutopia Intake' description: 'Determine a potential Drutopia partner's needs.' category: 'Survey of needs' -elements: "contactinfo:\n '#type': webform_contact\n '#title': 'Contact Info'\nyour_mission:\n '#type': textarea\n '#title': 'Your Mission'\n '#description': 'What are you all about?'\nhow_do_you_plan_to_reach_your_goal_:\n '#type': textarea\n '#title': 'How do you plan to reach your goal?'\nwhat_is_your_role_in_the_organization_:\n '#type': webform_checkboxes_other\n '#title': 'What is your role in the Organization?'\n '#options':\n 1: 'Worker-Owner -- A worker-owner of a cooperative'\n 2: 'Member -- A member of a cooperative'\n 3: 'Founder -- Founder of an organization'\n 4: 'Sales and Marketing -- Advertisements'\n 5: 'Financials and Fundraising -- Financials and Fundraising'\n 6: None\n '#options_display': two_columns\n '#options_randomize': true\n '#other__title': Other\nwhat_version_of_drupal_are_you_currently_using_:\n '#type': textfield\n '#title': 'What version of Drupal are you currently using?'\nwhat_specific_goals_are_you_trying_to_accomplish_by_building_pla:\n '#type': textarea\n '#title': 'What specific goals are you trying to accomplish by building platform?'\nlead_this_project:\n '#type': textarea\n '#title': 'Is there someone on the team to lead this project and go forward to maintain it?'\nare_volunteers_important_to_your_organization_meeting_its_goals_:\n '#type': checkbox\n '#title': 'Are volunteers important to your organization meeting its goals?'\nwhat_s_the_biggest_barrier_to_engaging_your_supporters_:\n '#type': webform_select_other\n '#title': 'What''s the biggest barrier to engaging your supporters?'\n '#options':\n funding: Funding\n time: Time\n people: People\n logistics: Logistics\n '#empty_option': Other\n" +elements: | + contactinfo: + '#type': webform_contact + '#title': 'Contact Info' + your_mission: + '#type': textarea + '#title': 'Your Mission' + '#description': 'What are you all about?' + how_do_you_plan_to_reach_your_goal_: + '#type': textarea + '#title': 'How do you plan to reach your goal?' + what_is_your_role_in_the_organization_: + '#type': webform_checkboxes_other + '#title': 'What is your role in the Organization?' + '#options': + 1: 'Worker-Owner -- A worker-owner of a cooperative' + 2: 'Member -- A member of a cooperative' + 3: 'Founder -- Founder of an organization' + 4: 'Sales and Marketing -- Advertisements' + 5: 'Financials and Fundraising -- Financials and Fundraising' + 6: None + '#options_display': two_columns + '#options_randomize': true + '#other__title': Other + what_version_of_drupal_are_you_currently_using_: + '#type': textfield + '#title': 'What version of Drupal are you currently using?' + what_specific_goals_are_you_trying_to_accomplish_by_building_pla: + '#type': textarea + '#title': 'What specific goals are you trying to accomplish by building platform?' + lead_this_project: + '#type': textarea + '#title': 'Is there someone on the team to lead this project and go forward to maintain it?' + are_volunteers_important_to_your_organization_meeting_its_goals_: + '#type': checkbox + '#title': 'Are volunteers important to your organization meeting its goals?' + what_s_the_biggest_barrier_to_engaging_your_supporters_: + '#type': webform_select_other + '#title': 'What''s the biggest barrier to engaging your supporters?' + '#options': + funding: Funding + time: Time + people: People + logistics: Logistics + '#empty_option': Other css: '' javascript: '' settings: @@ -33,7 +77,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.drutopia_platform_intake.yml b/config/webform.webform.drutopia_platform_intake.yml index 3262666..34d3965 100644 --- a/config/webform.webform.drutopia_platform_intake.yml +++ b/config/webform.webform.drutopia_platform_intake.yml @@ -12,7 +12,22 @@ id: drutopia_platform_intake title: 'Drutopia platform intake' description: 'Request for minimal contact information and an optional statement of need regarding a hosted site.' category: Lead -elements: "e_mail_address:\n '#type': email\n '#title': 'E-mail address:'\n '#required': true\n '#required_error': 'Please provide an e-mail address so we can contact you!'\nname:\n '#type': textfield\n '#title': 'Name:'\nneeds:\n '#type': textarea\n '#title': 'What online or website goals does your group have? '\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Share your need'\n" +elements: | + e_mail_address: + '#type': email + '#title': 'E-mail address:' + '#required': true + '#required_error': 'Please provide an e-mail address so we can contact you!' + name: + '#type': textfield + '#title': 'Name:' + needs: + '#type': textarea + '#title': 'What online or website goals does your group have? ' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Share your need' css: '' javascript: '' settings: @@ -33,7 +48,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.find_it_platform.yml b/config/webform.webform.find_it_platform.yml index eac04e0..ce3fc52 100644 --- a/config/webform.webform.find_it_platform.yml +++ b/config/webform.webform.find_it_platform.yml @@ -12,7 +12,13 @@ id: find_it_platform title: 'Find It Platform' description: '' category: '' -elements: "name:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\n" +elements: | + name: + '#type': textfield + '#title': Name + email: + '#type': email + '#title': Email css: '' javascript: '' settings: @@ -33,7 +39,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: false + form_disable_remote_addr: true form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.general_services.yml b/config/webform.webform.general_services.yml index 31c5bf2..570012e 100644 --- a/config/webform.webform.general_services.yml +++ b/config/webform.webform.general_services.yml @@ -12,7 +12,27 @@ id: general_services title: 'General services' description: 'Intake form for general services inquiries.' category: '' -elements: "budget:\n '#type': range\n '#title': Budget\n '#description': 'Approximate budget.'\n '#title_display': inline\n '#default_value': '45'\n '#min': 3\n '#max': 600\n '#step': 3\n '#output': above\n '#output__field_prefix': $\n '#output__field_suffix': K\ncontact_information:\n '#type': webform_contact\n '#title': 'Contact information'\n '#email__required': true\n '#address__access': false\n '#address_2__access': false\n '#postal_code__access': false\n '#required': true\n" +elements: | + budget: + '#type': range + '#title': Budget + '#description': 'Approximate budget.' + '#title_display': inline + '#default_value': '45' + '#min': 3 + '#max': 600 + '#step': 3 + '#output': above + '#output__field_prefix': $ + '#output__field_suffix': K + contact_information: + '#type': webform_contact + '#title': 'Contact information' + '#email__required': true + '#address__access': false + '#address_2__access': false + '#postal_code__access': false + '#required': true css: '' javascript: '' settings: @@ -33,7 +53,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.getting_started_with_drupal_9.yml b/config/webform.webform.getting_started_with_drupal_9.yml index 84b6590..24c0695 100644 --- a/config/webform.webform.getting_started_with_drupal_9.yml +++ b/config/webform.webform.getting_started_with_drupal_9.yml @@ -14,7 +14,41 @@ id: getting_started_with_drupal_9 title: 'Getting started with Drupal 9' description: '' category: Purchase -elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, January 26** and **Thursday, January 28, 2021**\n * Time: Both sessions at **10AM–1:30PM Eastern**\n * Cost: **$250**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Date: **Tuesday, January 26** and **Thursday, January 28, 2021** + * Time: Both sessions at **10AM–1:30PM Eastern** + * Cost: **$250** + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' css: '' javascript: '' settings: @@ -35,7 +69,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -116,7 +150,10 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -235,7 +272,18 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.getting_started_with_react_js.yml b/config/webform.webform.getting_started_with_react_js.yml index 458e08c..7d25594 100644 --- a/config/webform.webform.getting_started_with_react_js.yml +++ b/config/webform.webform.getting_started_with_react_js.yml @@ -14,7 +14,41 @@ id: getting_started_with_react_js title: 'Getting started with React.js' description: '' category: Purchase -elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, February 16** and **Thursday, February 18, 2021**\n * Time: Both sessions at **10AM - 1:30PM Eastern**\n * Cost: **$500**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Date: **Tuesday, February 16** and **Thursday, February 18, 2021** + * Time: Both sessions at **10AM - 1:30PM Eastern** + * Cost: **$500** + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' css: '' javascript: '' settings: @@ -35,7 +69,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -116,7 +150,10 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -235,7 +272,18 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.join_the_movement.yml b/config/webform.webform.join_the_movement.yml index fa77a9a..1c1f1c4 100644 --- a/config/webform.webform.join_the_movement.yml +++ b/config/webform.webform.join_the_movement.yml @@ -14,7 +14,18 @@ id: join_the_movement title: 'Join the movement' description: '' category: Mailchimp -elements: "intro_text:\n '#type': processed_text\n '#text': \"

We will send you very occasional dispatches from our perspective on various overlapping movements for cooperation, freedom and justice as workers and as passionate observers.

\\r\\n\"\n '#format': basic_html\nemail:\n '#type': email\n '#title': 'Your e-mail address'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Join the movement'\n" +elements: | + intro_text: + '#type': processed_text + '#text': "

We will send you very occasional dispatches from our perspective on various overlapping movements for cooperation, freedom and justice as workers and as passionate observers.

\r\n" + '#format': basic_html + email: + '#type': email + '#title': 'Your e-mail address' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Join the movement' css: '' javascript: '' settings: @@ -35,7 +46,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +128,7 @@ settings: confirmation_type: url confirmation_title: '' confirmation_message: '' - confirmation_url: '/confirmation/thanks-joining-movement?webform_sid=[webform_submission:sid]' + confirmation_url: 'confirmation/thanks-joining-movement?webform_sid=[webform_submission:sid]' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.join_the_movement_confirm.yml b/config/webform.webform.join_the_movement_confirm.yml index e13ebd5..c48655c 100644 --- a/config/webform.webform.join_the_movement_confirm.yml +++ b/config/webform.webform.join_the_movement_confirm.yml @@ -12,7 +12,10 @@ id: join_the_movement_confirm title: 'Join the movement confirm' description: 'Confirmation webform after submitting the "join the movement" form.' category: 'Confirmation (do not use directly)' -elements: "what_inspired_to_sign_up:\n '#type': textarea\n '#title': 'What inspired you to make this potentially life-changing decision?'\n" +elements: | + what_inspired_to_sign_up: + '#type': textarea + '#title': 'What inspired you to make this potentially life-changing decision?' css: '' javascript: '' settings: @@ -33,7 +36,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.june_2020_webinars.yml b/config/webform.webform.june_2020_webinars.yml index 9978a88..d5b2899 100644 --- a/config/webform.webform.june_2020_webinars.yml +++ b/config/webform.webform.june_2020_webinars.yml @@ -12,7 +12,23 @@ id: june_2020_webinars title: 'July 2020 webinars' description: '' category: Education -elements: "name:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': Email\n '#required': true\ninterested_in:\n '#type': checkboxes\n '#title': 'Interested in'\n '#options':\n d9_site_building: 'Getting started Drupal 9'\n d9_updates: 'Introduction to Drupal 9 migrations'\n d9_upgrades: 'Drupal 9 upgrades: how and when to move your Drupal 7 sites?'\n '#required': true\n" +elements: | + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': Email + '#required': true + interested_in: + '#type': checkboxes + '#title': 'Interested in' + '#options': + d9_site_building: 'Getting started Drupal 9' + d9_updates: 'Introduction to Drupal 9 migrations' + d9_upgrades: 'Drupal 9 upgrades: how and when to move your Drupal 7 sites?' + '#required': true css: '' javascript: '' settings: @@ -33,7 +49,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -213,7 +229,40 @@ handlers: from_options: { } from_name: _default subject: 'Agaric webinars on July 7, 2020 - Connection details' - body: "Thank you for registering!
\n
\nAll webinars on July 7 will take place in the same Zoom room. Below are the details on time and connection information. We look forward to seeing you there.
\n
\nGetting started Drupal 9 @ 10:00 AM - 11:00 AM Eastern Time (EDT)
\n
\nIntroduction to Drupal 9 migrations @ 11:30 AM - 12:30 AM Eastern Time (EDT)
\n
\nDrupal 9 upgrades: how and when to move your Drupal 7 sites? @ 1:00 PM - 2:00 PM Eastern Time (EDT)
\n
\nYou might as well be interested in these full-day training options: https://agaric.coop/training
\n
\nJoin Zoom Meeting
\nhttps://zoom.us/j/94411125686?pwd=VXp1bnZtV21OOGhNUDk0S253a211QT09
\n
\nMeeting ID: 944 1112 5686
\nPassword: AgaricWeb
\nOne tap mobile
\n+13126266799,,94411125686#,,,,0#,,514824770# US (Chicago)
\n+16468769923,,94411125686#,,,,0#,,514824770# US (New York)
\n
\nDial by your location
\n        +1 312 626 6799 US (Chicago)
\n        +1 646 876 9923 US (New York)
\n        +1 301 715 8592 US (Germantown)
\n        +1 346 248 7799 US (Houston)
\n        +1 669 900 6833 US (San Jose)
\n        +1 253 215 8782 US (Tacoma)
\nMeeting ID: 944 1112 5686
\nPassword: 514824770
\n
\nIn solidarity,
\nAgaric.coop\n" + body: | + Thank you for registering!
+
+ All webinars on July 7 will take place in the same Zoom room. Below are the details on time and connection information. We look forward to seeing you there.
+
+ Getting started Drupal 9 @ 10:00 AM - 11:00 AM Eastern Time (EDT)
+
+ Introduction to Drupal 9 migrations @ 11:30 AM - 12:30 AM Eastern Time (EDT)
+
+ Drupal 9 upgrades: how and when to move your Drupal 7 sites? @ 1:00 PM - 2:00 PM Eastern Time (EDT)
+
+ You might as well be interested in these full-day training options: https://agaric.coop/training
+
+ Join Zoom Meeting
+ https://zoom.us/j/94411125686?pwd=VXp1bnZtV21OOGhNUDk0S253a211QT09
+
+ Meeting ID: 944 1112 5686
+ Password: AgaricWeb
+ One tap mobile
+ +13126266799,,94411125686#,,,,0#,,514824770# US (Chicago)
+ +16468769923,,94411125686#,,,,0#,,514824770# US (New York)
+
+ Dial by your location
+         +1 312 626 6799 US (Chicago)
+         +1 646 876 9923 US (New York)
+         +1 301 715 8592 US (Germantown)
+         +1 346 248 7799 US (Houston)
+         +1 669 900 6833 US (San Jose)
+         +1 253 215 8782 US (Tacoma)
+ Meeting ID: 944 1112 5686
+ Password: 514824770
+
+ In solidarity,
+ Agaric.coop excluded_elements: { } ignore_access: false exclude_empty: true diff --git a/config/webform.webform.lms.yml b/config/webform.webform.lms.yml index d529d80..a0956e7 100644 --- a/config/webform.webform.lms.yml +++ b/config/webform.webform.lms.yml @@ -12,7 +12,28 @@ id: lms title: 'Request an LMS - Video chat - Consultation ' description: 'Online learning platform' category: Education -elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nyour_email_address:\n '#type': email\n '#title': 'Your email address'\n '#required': true\n '#required_error': 'We will need a contact email address to respond to you.'\ncontact_s_phone_number:\n '#type': tel\n '#title': 'Your phone number'\nhow_will_you_be_using_the_platform_:\n '#type': textarea\n '#title': 'How will you be using the platform?'\n '#description': 'Tell us how you would like to use the online learning platform. The more details you can give, the easier it will be for us to help your mission!'\n" +elements: | + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#first__title': 'Your name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + your_email_address: + '#type': email + '#title': 'Your email address' + '#required': true + '#required_error': 'We will need a contact email address to respond to you.' + contact_s_phone_number: + '#type': tel + '#title': 'Your phone number' + how_will_you_be_using_the_platform_: + '#type': textarea + '#title': 'How will you be using the platform?' + '#description': 'Tell us how you would like to use the online learning platform. The more details you can give, the easier it will be for us to help your mission!' css: '' javascript: '' settings: @@ -33,7 +54,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.migrations.yml b/config/webform.webform.migrations.yml index 848792e..def8028 100644 --- a/config/webform.webform.migrations.yml +++ b/config/webform.webform.migrations.yml @@ -14,7 +14,18 @@ id: migrations title: 'Migrations training' description: 'A webform for people joining our migration trainings announcement list.' category: Mailchimp -elements: "your_email:\n '#type': email\n '#title': 'Your e-mail address'\n '#required': true\nyour_name:\n '#type': textfield\n '#title': 'Your name (optional)'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Get notified'\n" +elements: | + your_email: + '#type': email + '#title': 'Your e-mail address' + '#required': true + your_name: + '#type': textfield + '#title': 'Your name (optional)' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Get notified' css: '' javascript: '' settings: @@ -35,7 +46,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +128,7 @@ settings: confirmation_type: url_message confirmation_title: 'You are now subscribed.' confirmation_message: 'Welcome to the training list! You are subscribed as [webform_submission:values:your_name] <[webform_submission:values:your_email]>. We hope to see you at one of our trainings in the near future.' - confirmation_url: /thanks-your-interest-data-migration-training + confirmation_url: thanks-your-interest-data-migration-training confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.migrations_training_confirm.yml b/config/webform.webform.migrations_training_confirm.yml index d1290c2..51edb67 100644 --- a/config/webform.webform.migrations_training_confirm.yml +++ b/config/webform.webform.migrations_training_confirm.yml @@ -12,7 +12,14 @@ id: migrations_training_confirm title: 'Migrations training confirm' description: 'Confirmation page for the migrations training signup.' category: 'Confirmation (do not use directly)' -elements: "what_motivated_sign_up_for_migration_training:\n '#type': textarea\n '#title': 'What motivated you to sign up for migration training?'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Share your motivation'\n" +elements: | + what_motivated_sign_up_for_migration_training: + '#type': textarea + '#title': 'What motivated you to sign up for migration training?' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Share your motivation' css: '' javascript: '' settings: @@ -33,7 +40,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.newsletter.yml b/config/webform.webform.newsletter.yml index 63e32de..05c965e 100644 --- a/config/webform.webform.newsletter.yml +++ b/config/webform.webform.newsletter.yml @@ -12,7 +12,30 @@ id: newsletter title: Newsletter description: 'Sign up for the Agaric Newsletter' category: Marketing -elements: "processed_text:\n '#type': processed_text\n '#text': |\n

Join the Agaric list to receive our infrequent Newsletters throughout the year! 

\n \n '#format': basic_html\nname:\n '#type': webform_name\n '#title': Name\n '#description_display': invisible\n '#required': true\n '#title__access': false\n '#first__title': 'First Name'\n '#first__required': true\n '#middle__access': false\n '#last__title': 'Last Name'\n '#last__required': true\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': webform_email_confirm\n '#title': Email\n '#required': true\n" +elements: | + processed_text: + '#type': processed_text + '#text': | +

Join the Agaric list to receive our infrequent Newsletters throughout the year! 

+ + '#format': basic_html + name: + '#type': webform_name + '#title': Name + '#description_display': invisible + '#required': true + '#title__access': false + '#first__title': 'First Name' + '#first__required': true + '#middle__access': false + '#last__title': 'Last Name' + '#last__required': true + '#suffix__access': false + '#degree__access': false + email: + '#type': webform_email_confirm + '#title': Email + '#required': true css: '' javascript: '' settings: @@ -33,7 +56,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.purchase_training_migrate_api.yml b/config/webform.webform.purchase_training_migrate_api.yml index 1a885ce..b754eb2 100644 --- a/config/webform.webform.purchase_training_migrate_api.yml +++ b/config/webform.webform.purchase_training_migrate_api.yml @@ -14,7 +14,41 @@ id: purchase_training_migrate_api title: 'Upgrading to Drupal 9 using the Migrate API' description: '' category: Purchase -elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Date: **Tuesday, February 09** and **Thursday, February 11, 2021**\n * Time: Both sessions at **10AM - 1:30PM Eastern**\n * Cost: **$500**\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Date: **Tuesday, February 09** and **Thursday, February 11, 2021** + * Time: Both sessions at **10AM - 1:30PM Eastern** + * Cost: **$500** + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' css: '' javascript: '' settings: @@ -35,7 +69,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -116,7 +150,10 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -235,7 +272,18 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe the team at Agaric\n" + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The the team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.request.yml b/config/webform.webform.request.yml index 194e67e..0ee0cab 100644 --- a/config/webform.webform.request.yml +++ b/config/webform.webform.request.yml @@ -12,7 +12,20 @@ id: request title: Request description: 'Very simple form for potential clients to tell us what they need.' category: Lead -elements: "describe_goal:\n '#type': textarea\n '#title': 'Describe your goal'\nemail_address:\n '#type': email\n '#title': 'E-mail address'\nphone_number:\n '#type': tel\n '#title': 'Phone number'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Send request'\n" +elements: | + describe_goal: + '#type': textarea + '#title': 'Describe your goal' + email_address: + '#type': email + '#title': 'E-mail address' + phone_number: + '#type': tel + '#title': 'Phone number' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Send request' css: '' javascript: '' settings: @@ -33,7 +46,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.showandtell.yml b/config/webform.webform.showandtell.yml index 2e5b65a..07196dd 100644 --- a/config/webform.webform.showandtell.yml +++ b/config/webform.webform.showandtell.yml @@ -17,7 +17,55 @@ id: showandtell title: 'Show and Tell' description: 'Submit an idea for Show and Tell.' category: 'Show and Tell' -elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your Name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nyour_email_address:\n '#type': email\n '#title': 'Your email address'\n '#required': true\ni_would_like_to:\n '#type': select\n '#title': 'I would like to'\n '#description': 'Tell us how you would like to take part in Show and Tell or send us a suggestion.'\n '#options':\n 'present a demo': 'Present a demo'\n 'do a presentation': 'Do a presentation'\n 'start a conversation': 'Start a conversation'\n 'suggest a topic for discussion': 'Suggest a topic for discussion'\n 'request a presentation': 'Request a presentation'\n 'suggest a presenter': 'Suggest a presenter'\n 'give a lightning talk': 'Give a lightning talk'\n '#empty_option': 'Choose one'\n '#empty_value': 'Choose one'\n '#options_randomize': true\ncontact_email:\n '#type': email\n '#title': 'Email address of the presenter you are suggesting'\n '#description': 'Let us know how to contact the suggested presenter or speaker.'\n '#states':\n visible:\n ':input[name=\"i_would_like_to\"]':\n value: 'suggest a presenter'\ndetails:\n '#type': textarea\n '#title': Details\n '#description': 'Tell us some details about your request. If you have something to present or would like to do a demo, write a short description. If you have a suggestion, write it here.'\ni_am_available:\n '#type': date\n '#title': 'I am available'\n '#description': 'Choose a date that you are available.'\n '#date_days':\n - '3'\n '#datepicker': true\n '#date_date_format': m/d/Y\n" +elements: | + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#first__title': 'Your Name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + your_email_address: + '#type': email + '#title': 'Your email address' + '#required': true + i_would_like_to: + '#type': select + '#title': 'I would like to' + '#description': 'Tell us how you would like to take part in Show and Tell or send us a suggestion.' + '#options': + 'present a demo': 'Present a demo' + 'do a presentation': 'Do a presentation' + 'start a conversation': 'Start a conversation' + 'suggest a topic for discussion': 'Suggest a topic for discussion' + 'request a presentation': 'Request a presentation' + 'suggest a presenter': 'Suggest a presenter' + 'give a lightning talk': 'Give a lightning talk' + '#empty_option': 'Choose one' + '#empty_value': 'Choose one' + '#options_randomize': true + contact_email: + '#type': email + '#title': 'Email address of the presenter you are suggesting' + '#description': 'Let us know how to contact the suggested presenter or speaker.' + '#states': + visible: + ':input[name="i_would_like_to"]': + value: 'suggest a presenter' + details: + '#type': textarea + '#title': Details + '#description': 'Tell us some details about your request. If you have something to present or would like to do a demo, write a short description. If you have a suggestion, write it here.' + i_am_available: + '#type': date + '#title': 'I am available' + '#description': 'Choose a date that you are available.' + '#date_days': + - '3' + '#datepicker': true + '#date_date_format': m/d/Y css: '' javascript: '' settings: @@ -38,7 +86,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.speaker_request_agaric.yml b/config/webform.webform.speaker_request_agaric.yml index fda35da..1c43618 100644 --- a/config/webform.webform.speaker_request_agaric.yml +++ b/config/webform.webform.speaker_request_agaric.yml @@ -12,7 +12,134 @@ id: speaker_request_agaric title: 'Speaker Request - Agaric' description: 'Request an Agaric's presence for a presentation, workshop or lecture.' category: '' -elements: "event_website:\n '#type': url\n '#title': 'Event website'\n '#description': 'If there is a website for this event, typle the URL here. Leave blank if there is no website. The more information we have about your event, the more relevant our presentation will be!'\n '#title_display': inline\n '#maxlength': 120\n '#size': 120\n '#placeholder': 'https://'\nevent_dates:\n '#type': datetime\n '#title': 'Event date and time'\n '#title_display': inline\n '#date_date_element': datepicker\n '#date_date_datepicker_button': true\n '#date_date_placeholder': 'Date of event'\n '#date_date_format': 'D, m/d/Y'\n '#date_time_element': timepicker\n '#date_time_placeholder': 'Time of the event'\n '#date_time_format': 'g:i A'\n '#date_time_step': '1800'\nevent_location:\n '#type': select\n '#title': 'Event location'\n '#description': 'If you do not have an event location yet, leave this field set to 'None'.'\n '#options':\n online: Online\n in_person: 'In Person'\n conference_call: 'Conference Call'\nevent_address:\n '#type': webform_address\n '#title': 'Event address'\n '#states':\n visible:\n ':input[name=\"event_location\"]':\n value: in_person\n '#address_2__access': false\n '#state_province__access': false\n '#postal_code__access': false\nevent_type:\n '#type': select\n '#title': 'Event type'\n '#description': |\n

What type of event are you having? We can provide presentations, workshops or demonstrations of free software tools such as video chat, document management and storage, communication tools that protect your privacy and security.
\n  

\n \n '#title_display': inline\n '#options':\n presentation: Presentation\n workshop: Workshop\n demo: Demo\n interview: Interview\n consultation: Consultation\n '#empty_option': 'Select one'\n '#empty_value': 'Select one'\n '#options_randomize': true\nwould_you_like_agaric_to_host_your_online_event_:\n '#type': select\n '#title': 'Would you like Agaric to host your online event?'\n '#options': yes_no\n '#options_randomize': true\n '#states':\n visible:\n ':input[name=\"event_location\"]':\n value: online\nwould_you_like_agaric_to_provide_a_video_recording_of_your_event:\n '#type': select\n '#title': 'Would you like Agaric to provide a recording of your event?'\n '#options': yes_no\n '#states':\n visible:\n ':input[name=\"event_location\"]':\n value: online\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Your budget'\n '#description': 'If you do not have a budget, leave this field blank and check the box below.'\n '#maxlength': 10\ni_do_not_have_a_budget_:\n '#type': checkbox\n '#title': 'I do not have a budget'\ni_do_not_have_a_budget:\n '#type': textarea\n '#title': 'I have a mission without a budget'\n '#description': 'Please explain the mission of your request and how it will help your community. We do not wish to prevent those without funds from benefitting from our expertise.'\n '#states':\n visible:\n ':input[name=\"i_do_not_have_a_budget_\"]':\n checked: true\ndescription_of_event:\n '#type': textarea\n '#title': 'What else should the speaker know about this event?'\n '#description': 'Please include any information that would be helpful for us to be able to give the most relevant presentation or workshop.'\nyour_name:\n '#type': webform_name\n '#title': 'Contact''s name'\n '#title__access': false\n '#first__title': 'Contact''s name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': 'Contact''s email *'\n '#required': true\n '#required_error': 'Your email is required for Agaric to respond. Your contact information will not be shared.'\nphone:\n '#type': tel\n '#title': 'Contact''s phone number'\n '#description': 'Your information will not be shared.'\n '#international': true\nspeaker_s_name:\n '#type': webform_select_other\n '#title': 'Select an Agaric!'\n '#title_display': none\n '#options':\n mlncn: 'Ben Melançon'\n dinarcon: 'Mauricio Dinarte'\n Gnuget: 'David Valdez'\n wolcen: 'Christopher Thompson'\n freescholar: 'Micky Metts'\n '#empty_option': 'Select an Agaric'\n '#empty_value': 'Select one'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Send to Agaric'\n" +elements: | + event_website: + '#type': url + '#title': 'Event website' + '#description': 'If there is a website for this event, typle the URL here. Leave blank if there is no website. The more information we have about your event, the more relevant our presentation will be!' + '#title_display': inline + '#maxlength': 120 + '#size': 120 + '#placeholder': 'https://' + event_dates: + '#type': datetime + '#title': 'Event date and time' + '#title_display': inline + '#date_date_element': datepicker + '#date_date_datepicker_button': true + '#date_date_placeholder': 'Date of event' + '#date_date_format': 'D, m/d/Y' + '#date_time_element': timepicker + '#date_time_placeholder': 'Time of the event' + '#date_time_format': 'g:i A' + '#date_time_step': '1800' + event_location: + '#type': select + '#title': 'Event location' + '#description': 'If you do not have an event location yet, leave this field set to 'None'.' + '#options': + online: Online + in_person: 'In Person' + conference_call: 'Conference Call' + event_address: + '#type': webform_address + '#title': 'Event address' + '#states': + visible: + ':input[name="event_location"]': + value: in_person + '#address_2__access': false + '#state_province__access': false + '#postal_code__access': false + event_type: + '#type': select + '#title': 'Event type' + '#description': | +

What type of event are you having? We can provide presentations, workshops or demonstrations of free software tools such as video chat, document management and storage, communication tools that protect your privacy and security.
+  

+ + '#title_display': inline + '#options': + presentation: Presentation + workshop: Workshop + demo: Demo + interview: Interview + consultation: Consultation + '#empty_option': 'Select one' + '#empty_value': 'Select one' + '#options_randomize': true + would_you_like_agaric_to_host_your_online_event_: + '#type': select + '#title': 'Would you like Agaric to host your online event?' + '#options': yes_no + '#options_randomize': true + '#states': + visible: + ':input[name="event_location"]': + value: online + would_you_like_agaric_to_provide_a_video_recording_of_your_event: + '#type': select + '#title': 'Would you like Agaric to provide a recording of your event?' + '#options': yes_no + '#states': + visible: + ':input[name="event_location"]': + value: online + budget_for_speaker: + '#type': textfield + '#title': 'Your budget' + '#description': 'If you do not have a budget, leave this field blank and check the box below.' + '#maxlength': 10 + i_do_not_have_a_budget_: + '#type': checkbox + '#title': 'I do not have a budget' + i_do_not_have_a_budget: + '#type': textarea + '#title': 'I have a mission without a budget' + '#description': 'Please explain the mission of your request and how it will help your community. We do not wish to prevent those without funds from benefitting from our expertise.' + '#states': + visible: + ':input[name="i_do_not_have_a_budget_"]': + checked: true + description_of_event: + '#type': textarea + '#title': 'What else should the speaker know about this event?' + '#description': 'Please include any information that would be helpful for us to be able to give the most relevant presentation or workshop.' + your_name: + '#type': webform_name + '#title': 'Contact''s name' + '#title__access': false + '#first__title': 'Contact''s name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + email: + '#type': email + '#title': 'Contact''s email *' + '#required': true + '#required_error': 'Your email is required for Agaric to respond. Your contact information will not be shared.' + phone: + '#type': tel + '#title': 'Contact''s phone number' + '#description': 'Your information will not be shared.' + '#international': true + speaker_s_name: + '#type': webform_select_other + '#title': 'Select an Agaric!' + '#title_display': none + '#options': + mlncn: 'Ben Melançon' + dinarcon: 'Mauricio Dinarte' + Gnuget: 'David Valdez' + wolcen: 'Christopher Thompson' + freescholar: 'Micky Metts' + '#empty_option': 'Select an Agaric' + '#empty_value': 'Select one' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Send to Agaric' css: '' javascript: '' settings: @@ -33,7 +160,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +244,7 @@ settings: confirmation_type: page confirmation_title: 'Thank you for asking an Agaric to speak!' confirmation_message: 'Thank you! You have requested an Agaric's presence for a presentation, interview, workshop, or lecture. One of us will respond to you very soon! You can find past appearances on our individual Agaric worker-owner pages.' - confirmation_url: /your-request-has-been-sent-agaric + confirmation_url: your-request-has-been-sent-agaric confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.speaker_request_clayton_dewey.yml b/config/webform.webform.speaker_request_clayton_dewey.yml index b4a6dc6..6708201 100644 --- a/config/webform.webform.speaker_request_clayton_dewey.yml +++ b/config/webform.webform.speaker_request_clayton_dewey.yml @@ -12,7 +12,47 @@ id: speaker_request_clayton_dewey title: 'Speaker Request - Clayton Dewey' description: 'Invite Clayton to speak.' category: '' -elements: "event_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should Clayton know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nyour_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': 'Your email'\n '#required': true\nphone:\n '#type': tel\n '#title': 'Your phone'\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Clayton to speak'\n" +elements: | + event_website: + '#type': url + '#title': 'Event website' + event_dates: + '#type': datetime + '#title': 'Event date' + '#date_date_datepicker_button': false + '#date_time_element': none + event_location: + '#type': textfield + '#title': 'Event location' + description_of_event: + '#type': textarea + '#title': 'What should Clayton know about this event?' + budget_for_speaker: + '#type': textfield + '#title': 'Budget for speaker' + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#first__title': 'Your name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + email: + '#type': email + '#title': 'Your email' + '#required': true + phone: + '#type': tel + '#title': 'Your phone' + additional_info: + '#type': textarea + '#title': 'Additional information' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Invite Clayton to speak' css: '' javascript: '' settings: @@ -33,7 +73,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: false + form_disable_remote_addr: true form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +157,7 @@ settings: confirmation_type: url confirmation_title: '' confirmation_message: '' - confirmation_url: /people/clayton-dewey/speaking-request-received + confirmation_url: people/clayton-dewey/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.speaker_request_mauricio_dinarte.yml b/config/webform.webform.speaker_request_mauricio_dinarte.yml index c543f4d..86f813c 100644 --- a/config/webform.webform.speaker_request_mauricio_dinarte.yml +++ b/config/webform.webform.speaker_request_mauricio_dinarte.yml @@ -12,7 +12,47 @@ id: speaker_request_mauricio_dinarte title: 'Speaker Request - Mauricio Dinarte' description: 'Invite Mauricio to speak.' category: '' -elements: "event_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should Mauricio know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nyour_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': 'Your email'\n '#required': true\nphone:\n '#type': tel\n '#title': 'Your phone'\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Mauricio to speak'\n" +elements: | + event_website: + '#type': url + '#title': 'Event website' + event_dates: + '#type': datetime + '#title': 'Event date' + '#date_date_datepicker_button': false + '#date_time_element': none + event_location: + '#type': textfield + '#title': 'Event location' + description_of_event: + '#type': textarea + '#title': 'What should Mauricio know about this event?' + budget_for_speaker: + '#type': textfield + '#title': 'Budget for speaker' + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#first__title': 'Your name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + email: + '#type': email + '#title': 'Your email' + '#required': true + phone: + '#type': tel + '#title': 'Your phone' + additional_info: + '#type': textarea + '#title': 'Additional information' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Invite Mauricio to speak' css: '' javascript: '' settings: @@ -33,7 +73,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: false + form_disable_remote_addr: true form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +157,7 @@ settings: confirmation_type: url confirmation_title: '' confirmation_message: '' - confirmation_url: /people/michele-metts/speaking-request-received + confirmation_url: people/michele-metts/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.speaker_request_michele_metts.yml b/config/webform.webform.speaker_request_michele_metts.yml index ae25ca0..a232de8 100644 --- a/config/webform.webform.speaker_request_michele_metts.yml +++ b/config/webform.webform.speaker_request_michele_metts.yml @@ -12,7 +12,47 @@ id: speaker_request_michele_metts title: 'Speaker request form for Michele Metts' description: '' category: Speaker -elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nevent_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should the speaker know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nemail:\n '#type': email\n '#title': Email\n '#required': true\nphone:\n '#type': tel\n '#title': Phone\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Micky to speak'\n" +elements: | + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#first__title': 'Your name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + event_website: + '#type': url + '#title': 'Event website' + event_dates: + '#type': datetime + '#title': 'Event date' + '#date_date_datepicker_button': false + '#date_time_element': none + event_location: + '#type': textfield + '#title': 'Event location' + description_of_event: + '#type': textarea + '#title': 'What should the speaker know about this event?' + budget_for_speaker: + '#type': textfield + '#title': 'Budget for speaker' + email: + '#type': email + '#title': Email + '#required': true + phone: + '#type': tel + '#title': Phone + additional_info: + '#type': textarea + '#title': 'Additional information' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Invite Micky to speak' css: '' javascript: '' settings: @@ -33,7 +73,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +157,7 @@ settings: confirmation_type: url confirmation_title: '' confirmation_message: '' - confirmation_url: /people/michele-metts/speaking-request-received + confirmation_url: people/michele-metts/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.speaker_request_micky_metts.yml b/config/webform.webform.speaker_request_micky_metts.yml index ffa0f99..2fda8d6 100644 --- a/config/webform.webform.speaker_request_micky_metts.yml +++ b/config/webform.webform.speaker_request_micky_metts.yml @@ -12,7 +12,47 @@ id: speaker_request_micky_metts title: 'Speaker Request - Micky Metts' description: 'Speaker Request for Micky Metts' category: '' -elements: "your_name:\n '#type': webform_name\n '#title': 'Your name'\n '#title__access': false\n '#first__title': 'Your name'\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nevent_website:\n '#type': url\n '#title': 'Event website'\nevent_dates:\n '#type': datetime\n '#title': 'Event date'\n '#date_date_datepicker_button': false\n '#date_time_element': none\nevent_location:\n '#type': textfield\n '#title': 'Event location'\ndescription_of_event:\n '#type': textarea\n '#title': 'What should the speaker know about this event?'\nbudget_for_speaker:\n '#type': textfield\n '#title': 'Budget for speaker'\nemail:\n '#type': email\n '#title': Email\n '#required': true\nphone:\n '#type': tel\n '#title': Phone\nadditional_info:\n '#type': textarea\n '#title': 'Additional information'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Invite Micky to speak'\n" +elements: | + your_name: + '#type': webform_name + '#title': 'Your name' + '#title__access': false + '#first__title': 'Your name' + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + event_website: + '#type': url + '#title': 'Event website' + event_dates: + '#type': datetime + '#title': 'Event date' + '#date_date_datepicker_button': false + '#date_time_element': none + event_location: + '#type': textfield + '#title': 'Event location' + description_of_event: + '#type': textarea + '#title': 'What should the speaker know about this event?' + budget_for_speaker: + '#type': textfield + '#title': 'Budget for speaker' + email: + '#type': email + '#title': Email + '#required': true + phone: + '#type': tel + '#title': Phone + additional_info: + '#type': textarea + '#title': 'Additional information' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Invite Micky to speak' css: '' javascript: '' settings: @@ -33,7 +73,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -117,7 +157,7 @@ settings: confirmation_type: url confirmation_title: '' confirmation_message: '' - confirmation_url: /people/michele-metts/speaking-request-received + confirmation_url: people/michele-metts/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.training.yml b/config/webform.webform.training.yml index 7022ee6..f3ad1ae 100644 --- a/config/webform.webform.training.yml +++ b/config/webform.webform.training.yml @@ -12,7 +12,40 @@ id: training title: Training description: 'Training intake form' category: '' -elements: "intro_text:\n '#type': processed_text\n '#text': |\n

If you are interested in a private training tailored to your needs, give us an idea of what you are looking for and we will follow up with you soon thereafter.

\n \n '#format': basic_html\nname:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\ntopics:\n '#type': checkboxes\n '#title': Topics\n '#options':\n 'Introduction to Drupal': 'Introduction to Drupal'\n 'Drupal development (beginning)': 'Drupal development (beginning)'\n 'Drupal development (intermediate)': 'Drupal development (intermediate)'\n 'Drupal development (advanced)': 'Drupal development (advanced)'\n 'Drupal theming and templating': 'Drupal theming and templating'\n 'Data migration': 'Data migration'\nsize:\n '#type': checkboxes\n '#title': Size\n '#options':\n 'Personal training': 'Personal training'\n 'Small group (2-5)': 'Small group (2-5)'\n 'Larger group (more than 5)': 'Larger group (more than 5)'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Request training'\n" +elements: | + intro_text: + '#type': processed_text + '#text': | +

If you are interested in a private training tailored to your needs, give us an idea of what you are looking for and we will follow up with you soon thereafter.

+ + '#format': basic_html + name: + '#type': textfield + '#title': Name + email: + '#type': email + '#title': Email + topics: + '#type': checkboxes + '#title': Topics + '#options': + 'Introduction to Drupal': 'Introduction to Drupal' + 'Drupal development (beginning)': 'Drupal development (beginning)' + 'Drupal development (intermediate)': 'Drupal development (intermediate)' + 'Drupal development (advanced)': 'Drupal development (advanced)' + 'Drupal theming and templating': 'Drupal theming and templating' + 'Data migration': 'Data migration' + size: + '#type': checkboxes + '#title': Size + '#options': + 'Personal training': 'Personal training' + 'Small group (2-5)': 'Small group (2-5)' + 'Larger group (more than 5)': 'Larger group (more than 5)' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Request training' css: '' javascript: '' settings: @@ -33,7 +66,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.training_discount.yml b/config/webform.webform.training_discount.yml index 980f33b..5c70eda 100644 --- a/config/webform.webform.training_discount.yml +++ b/config/webform.webform.training_discount.yml @@ -14,7 +14,47 @@ id: training_discount title: 'Training Discount' description: '' category: Purchase -elements: "course_summary:\n '#type': processed_text\n '#display_on': both\n '#text': |2\n * Lead instructor: **Mauricio Dinarte**\n * Cost: **$250** (50% discount off $500 usual price)\n \n '#format': markdown\nname:\n '#type': textfield\n '#title': Name\n '#required': true\nemail:\n '#type': email\n '#title': E-mail\n '#required': true\nchoose_training:\n '#type': radios\n '#title': 'Choose training:'\n '#help_title': 'How about both?'\n '#help': 'To register for multiple trainings, simply come back to this form after paying for the first one and do it again.  Or contact Agaric for an invoice.'\n '#options':\n upgrades: 'Upgrading to Drupal 8/9 using the Migrate API'\n '#required': true\npayment:\n '#type': stripe\n '#title': Payment\n '#format_items': ul\n '#format_items_html': ''\n '#format_items_text': ''\n '#stripe_selectors_name': ':input[name=\"name\"]'\noptional_info_for_your_receipt:\n '#type': textarea\n '#title': 'Optional info for your receipt'\n '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.'\n '#autocomplete': 'off'\nactions:\n '#type': webform_actions\n '#title': 'Submit button(s)'\n '#submit__label': 'Purchase ticket'\n" +elements: | + course_summary: + '#type': processed_text + '#display_on': both + '#text': |2 + * Lead instructor: **Mauricio Dinarte** + * Cost: **$250** (50% discount off $500 usual price) + + '#format': markdown + name: + '#type': textfield + '#title': Name + '#required': true + email: + '#type': email + '#title': E-mail + '#required': true + choose_training: + '#type': radios + '#title': 'Choose training:' + '#help_title': 'How about both?' + '#help': 'To register for multiple trainings, simply come back to this form after paying for the first one and do it again.  Or contact Agaric for an invoice.' + '#options': + upgrades: 'Upgrading to Drupal 8/9 using the Migrate API' + '#required': true + payment: + '#type': stripe + '#title': Payment + '#format_items': ul + '#format_items_html': '' + '#format_items_text': '' + '#stripe_selectors_name': ':input[name="name"]' + optional_info_for_your_receipt: + '#type': textarea + '#title': 'Optional info for your receipt' + '#placeholder': 'Your company name, purchase order, etc. Leave blank if you don''t need it.' + '#autocomplete': 'off' + actions: + '#type': webform_actions + '#title': 'Submit button(s)' + '#submit__label': 'Purchase ticket' css: '' javascript: '' settings: @@ -35,7 +75,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false @@ -116,7 +156,10 @@ settings: draft_pending_multiple_message: '' confirmation_type: inline confirmation_title: '' - confirmation_message: "Thank you [webform_submission:values:name]!  You're registered for:
\n[webform_submission:values:course_summary:html]
\nWe've sent an e-mail to [webform_submission:values:email].\n" + confirmation_message: | + Thank you [webform_submission:values:name]!  You're registered for:
+ [webform_submission:values:course_summary:html]
+ We've sent an e-mail to [webform_submission:values:email]. confirmation_url: '' confirmation_attributes: { } confirmation_back: false @@ -235,7 +278,18 @@ handlers: from_options: { } from_name: _default subject: 'Training registration for [webform:title]' - body: "Dear [webform_submission:values:name],
\n
\nThank you for registering!
\n
\n[webform_submission:values:course_summary:html]
\n
\nConnection information for joining the training online will be sent prior to the event.
\n
\nBest,
\n
\nThe team at Agaric\n" + body: | + Dear [webform_submission:values:name],
+
+ Thank you for registering!
+
+ [webform_submission:values:course_summary:html]
+
+ Connection information for joining the training online will be sent prior to the event.
+
+ Best,
+
+ The team at Agaric excluded_elements: course_summary: course_summary payment: payment diff --git a/config/webform.webform.training_notification_request.yml b/config/webform.webform.training_notification_request.yml index 13a7568..56affc4 100644 --- a/config/webform.webform.training_notification_request.yml +++ b/config/webform.webform.training_notification_request.yml @@ -12,7 +12,35 @@ id: training_notification_request title: 'Training Notification Request' description: 'Users who submit this form should be notified when any of the trainings they are interested in become available.' category: '' -elements: "intro_text:\n '#type': processed_text\n '#text': |\n

We do not currently have any public trainings scheduled. If you would like to be notified the next time any of our trainings are being offered, please tell us which ones. By filling out this form, you are also helping us to gage interest so that we will know when the time is right to host!

\n \n

 

\n \n '#format': basic_html\nname:\n '#type': textfield\n '#title': Name\nemail:\n '#type': email\n '#title': Email\ntrainings:\n '#type': checkboxes\n '#title': Trainings\n '#description': 'Tell us which of our trainings you would like to be notified about '\n '#title_display': invisible\n '#description_display': invisible\n '#options':\n 'Getting started with Drupal 9': 'Getting started with Drupal 9'\n 'Drupal 8/9 content migrations': 'Drupal 8/9 content migrations'\n 'Upgrading to Drupal 8/9 using the Migrate API': 'Upgrading to Drupal 8/9 using the Migrate API'\n 'Getting started with React.js': 'Getting started with React.js'\n '#required': true\n '#required_error': 'you must select a training.'\n '#options__properties': ''\n" +elements: | + intro_text: + '#type': processed_text + '#text': | +

We do not currently have any public trainings scheduled. If you would like to be notified the next time any of our trainings are being offered, please tell us which ones. By filling out this form, you are also helping us to gage interest so that we will know when the time is right to host!

+ +

 

+ + '#format': basic_html + name: + '#type': textfield + '#title': Name + email: + '#type': email + '#title': Email + trainings: + '#type': checkboxes + '#title': Trainings + '#description': 'Tell us which of our trainings you would like to be notified about ' + '#title_display': invisible + '#description_display': invisible + '#options': + 'Getting started with Drupal 9': 'Getting started with Drupal 9' + 'Drupal 8/9 content migrations': 'Drupal 8/9 content migrations' + 'Upgrading to Drupal 8/9 using the Migrate API': 'Upgrading to Drupal 8/9 using the Migrate API' + 'Getting started with React.js': 'Getting started with React.js' + '#required': true + '#required_error': 'you must select a training.' + '#options__properties': '' css: '' javascript: '' settings: @@ -33,7 +61,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.training_request_draft.yml b/config/webform.webform.training_request_draft.yml index b302655..466961c 100644 --- a/config/webform.webform.training_request_draft.yml +++ b/config/webform.webform.training_request_draft.yml @@ -12,7 +12,29 @@ id: training_request_draft title: 'General Training Request Form' description: 'This is the training request form that will be placed on all specific training pages. Upon submission, you can tell which page this form was submitted from by looking at the results tab.' category: '' -elements: "name:\n '#type': webform_name\n '#title': Name\n '#description_display': invisible\n '#required': true\n '#title__access': false\n '#first__title': Name\n '#first__required': true\n '#middle__access': false\n '#last__access': false\n '#suffix__access': false\n '#degree__access': false\nemail:\n '#type': email\n '#title': Email\n '#description_display': invisible\n '#required': true\n '#required_error': 'Please enter your email address to submit the form.'\nmessage:\n '#type': textarea\n '#title': Message\n '#help': 'Let us know what you need, or if you have any questions about our training.'\n" +elements: | + name: + '#type': webform_name + '#title': Name + '#description_display': invisible + '#required': true + '#title__access': false + '#first__title': Name + '#first__required': true + '#middle__access': false + '#last__access': false + '#suffix__access': false + '#degree__access': false + email: + '#type': email + '#title': Email + '#description_display': invisible + '#required': true + '#required_error': 'Please enter your email address to submit the form.' + message: + '#type': textarea + '#title': Message + '#help': 'Let us know what you need, or if you have any questions about our training.' css: '' javascript: '' settings: @@ -33,7 +55,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform.workshops.yml b/config/webform.webform.workshops.yml index 9d56251..a873fb2 100644 --- a/config/webform.webform.workshops.yml +++ b/config/webform.webform.workshops.yml @@ -12,7 +12,11 @@ id: workshops title: Workshops description: Workshops category: '' -elements: "basic_encryption:\n '#type': textarea\n '#title': 'Basic encryption'\n '#description': 'Encrypt your email and phone communications.'\n" +elements: | + basic_encryption: + '#type': textarea + '#title': 'Basic encryption' + '#description': 'Encrypt your email and phone communications.' css: '' javascript: '' settings: @@ -33,7 +37,7 @@ settings: form_previous_submissions: true form_confidential: false form_confidential_message: '' - form_remote_addr: true + form_disable_remote_addr: false form_convert_anonymous: false form_prepopulate: false form_prepopulate_source_entity: false diff --git a/config/webform.webform_options.days.yml b/config/webform.webform_options.days.yml index 6c6f317..2479ab3 100644 --- a/config/webform.webform_options.days.yml +++ b/config/webform.webform_options.days.yml @@ -11,4 +11,11 @@ id: days label: Days category: 'Date and time' likert: false -options: "Sunday: Sunday\nMonday: Monday\nTuesday: Tuesday\nWednesday: Wednesday\nThursday: Thursday\nFriday: Friday\nSaturday: Saturday\n" +options: | + Sunday: Sunday + Monday: Monday + Tuesday: Tuesday + Wednesday: Wednesday + Thursday: Thursday + Friday: Friday + Saturday: Saturday diff --git a/config/webform.webform_options.education.yml b/config/webform.webform_options.education.yml index 5579559..d9e54be 100644 --- a/config/webform.webform_options.education.yml +++ b/config/webform.webform_options.education.yml @@ -11,4 +11,8 @@ id: education label: Education category: Demographic likert: false -options: "High School: High School\nAssociate Degree: Associate Degree\nGraduate or Professional Degree: Graduate or Professional Degree\nSome College: Some College\n" +options: | + High School: High School + Associate Degree: Associate Degree + Graduate or Professional Degree: Graduate or Professional Degree + Some College: Some College diff --git a/config/webform.webform_options.employment_status.yml b/config/webform.webform_options.employment_status.yml index df247bf..151fde2 100644 --- a/config/webform.webform_options.employment_status.yml +++ b/config/webform.webform_options.employment_status.yml @@ -11,4 +11,9 @@ id: employment_status label: 'Employment status' category: Demographic likert: false -options: "'Full Time': 'Full Time'\n'Part Time': 'Part Time'\n'Military': 'Military'\nUnemployed: Unemployed\nRetired: Retired\n" +options: | + 'Full Time': 'Full Time' + 'Part Time': 'Part Time' + 'Military': 'Military' + Unemployed: Unemployed + Retired: Retired diff --git a/config/webform.webform_options.ethnicity.yml b/config/webform.webform_options.ethnicity.yml index 15351a4..b3b0a12 100644 --- a/config/webform.webform_options.ethnicity.yml +++ b/config/webform.webform_options.ethnicity.yml @@ -11,4 +11,12 @@ id: ethnicity label: Ethnicity category: Demographic likert: false -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" +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 diff --git a/config/webform.webform_options.gender.yml b/config/webform.webform_options.gender.yml index e32670b..72b81e4 100644 --- a/config/webform.webform_options.gender.yml +++ b/config/webform.webform_options.gender.yml @@ -11,4 +11,6 @@ id: gender label: Gender category: Demographic likert: false -options: "Male: Male\nFemale: Female\n" +options: | + Male: Male + Female: Female diff --git a/config/webform.webform_options.industry.yml b/config/webform.webform_options.industry.yml index 785c756..3bb4dec 100644 --- a/config/webform.webform_options.industry.yml +++ b/config/webform.webform_options.industry.yml @@ -11,4 +11,43 @@ id: industry label: Industry category: Demographic likert: false -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" +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 diff --git a/config/webform.webform_options.likert_agreement.yml b/config/webform.webform_options.likert_agreement.yml index 6fe0026..270ad10 100644 --- a/config/webform.webform_options.likert_agreement.yml +++ b/config/webform.webform_options.likert_agreement.yml @@ -11,4 +11,9 @@ id: likert_agreement label: 'Likert: Agreement' category: Likert likert: true -options: "1: 'Much Worse'\n2: 'Somewhat Worse'\n3: 'About the Same'\n4: 'Somewhat Better'\n5: 'Much Better'\n" +options: | + 1: 'Much Worse' + 2: 'Somewhat Worse' + 3: 'About the Same' + 4: 'Somewhat Better' + 5: 'Much Better' diff --git a/config/webform.webform_options.likert_comparison.yml b/config/webform.webform_options.likert_comparison.yml index fe21b41..6caf395 100644 --- a/config/webform.webform_options.likert_comparison.yml +++ b/config/webform.webform_options.likert_comparison.yml @@ -11,4 +11,9 @@ id: likert_comparison label: 'Likert: Comparison' category: Likert likert: true -options: "1: Strongly Disagree\n2: Disagree\n3: Neutral\n4: Agree\n5: Strongly Agree\n" +options: | + 1: Strongly Disagree + 2: Disagree + 3: Neutral + 4: Agree + 5: Strongly Agree diff --git a/config/webform.webform_options.likert_importance.yml b/config/webform.webform_options.likert_importance.yml index baa7a66..e2fae6b 100644 --- a/config/webform.webform_options.likert_importance.yml +++ b/config/webform.webform_options.likert_importance.yml @@ -11,4 +11,9 @@ id: likert_importance label: 'Likert: Importance' category: Likert likert: true -options: "1: Not at all Important\n2: Somewhat Important\n3: Neutral\n4: Important\n5: Very Important\n" +options: | + 1: Not at all Important + 2: Somewhat Important + 3: Neutral + 4: Important + 5: Very Important diff --git a/config/webform.webform_options.likert_quality.yml b/config/webform.webform_options.likert_quality.yml index ec988df..9dd267a 100644 --- a/config/webform.webform_options.likert_quality.yml +++ b/config/webform.webform_options.likert_quality.yml @@ -11,4 +11,9 @@ id: likert_quality label: 'Likert: Quality' category: Likert likert: true -options: "1: Poor\n2: Fair\n3: Good\n4: Very good\n5: Excellent\n" +options: | + 1: Poor + 2: Fair + 3: Good + 4: Very good + 5: Excellent diff --git a/config/webform.webform_options.likert_satisfaction.yml b/config/webform.webform_options.likert_satisfaction.yml index 8ba7b14..5f7fcb7 100644 --- a/config/webform.webform_options.likert_satisfaction.yml +++ b/config/webform.webform_options.likert_satisfaction.yml @@ -11,4 +11,9 @@ id: likert_satisfaction label: 'Likert: Satisfaction' category: Likert likert: true -options: "1: Very Unsatisfied\n2: Unsatisfied\n3: Neutral\n4: Satisfied\n5: Very Satisfied\n" +options: | + 1: Very Unsatisfied + 2: Unsatisfied + 3: Neutral + 4: Satisfied + 5: Very Satisfied diff --git a/config/webform.webform_options.likert_ten_scale.yml b/config/webform.webform_options.likert_ten_scale.yml index 8ed0b09..67e1989 100644 --- a/config/webform.webform_options.likert_ten_scale.yml +++ b/config/webform.webform_options.likert_ten_scale.yml @@ -11,4 +11,14 @@ id: likert_ten_scale label: 'Likert: Ten Scale' category: Likert likert: true -options: "1: 1\n2: 2\n3: 3\n4: 4\n5: 5\n6: 6\n7: 7\n8: 8\n9: 9\n10: 10\n" +options: | + 1: 1 + 2: 2 + 3: 3 + 4: 4 + 5: 5 + 6: 6 + 7: 7 + 8: 8 + 9: 9 + 10: 10 diff --git a/config/webform.webform_options.likert_would_you.yml b/config/webform.webform_options.likert_would_you.yml index 6fc30f3..b2aca4b 100644 --- a/config/webform.webform_options.likert_would_you.yml +++ b/config/webform.webform_options.likert_would_you.yml @@ -11,4 +11,9 @@ id: likert_would_you label: 'Likert: Would You' category: Likert likert: true -options: "1: Definitely Not\n2: Probably Not\n3: Not Sure\n4: Probably\n5: Definitely\n" +options: | + 1: Definitely Not + 2: Probably Not + 3: Not Sure + 4: Probably + 5: Definitely diff --git a/config/webform.webform_options.marital_status.yml b/config/webform.webform_options.marital_status.yml index 50900f7..69d1a68 100644 --- a/config/webform.webform_options.marital_status.yml +++ b/config/webform.webform_options.marital_status.yml @@ -11,4 +11,8 @@ id: marital_status label: 'Marital status' category: Demographic likert: false -options: "Single: Single\nMarried: Married\nDivorced: Divorced\nWidowed: Widowed\n" +options: | + Single: Single + Married: Married + Divorced: Divorced + Widowed: Widowed diff --git a/config/webform.webform_options.months.yml b/config/webform.webform_options.months.yml index 388724c..0f01f07 100644 --- a/config/webform.webform_options.months.yml +++ b/config/webform.webform_options.months.yml @@ -11,4 +11,16 @@ id: months label: Months category: 'Date and time' likert: false -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" +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 diff --git a/config/webform.webform_options.phone_types.yml b/config/webform.webform_options.phone_types.yml index 157abb9..d2504e9 100644 --- a/config/webform.webform_options.phone_types.yml +++ b/config/webform.webform_options.phone_types.yml @@ -11,4 +11,7 @@ id: phone_types label: 'Phone type' category: Demographic likert: false -options: "Home: Home\nOffice: Office\nCell: Cell\n" +options: | + Home: Home + Office: Office + Cell: Cell diff --git a/config/webform.webform_options.relationship.yml b/config/webform.webform_options.relationship.yml index 3c55efa..075b724 100644 --- a/config/webform.webform_options.relationship.yml +++ b/config/webform.webform_options.relationship.yml @@ -11,4 +11,9 @@ id: relationship label: Relationship category: Demographic likert: false -options: "Parent: Parent\n'Significant Other': 'Significant Other'\nSibling: Sibling\nChild: Child\nFriend: Friend\n" +options: | + Parent: Parent + 'Significant Other': 'Significant Other' + Sibling: Sibling + Child: Child + Friend: Friend diff --git a/config/webform.webform_options.size.yml b/config/webform.webform_options.size.yml index 7f71ffb..9eee9b5 100644 --- a/config/webform.webform_options.size.yml +++ b/config/webform.webform_options.size.yml @@ -11,4 +11,9 @@ id: size label: Size category: General likert: false -options: "Extra Small: Extra Small\nSmall: Small\nMedium: Medium\nLarge: Large\nExtra Large: Extra Large\n" +options: | + Extra Small: Extra Small + Small: Small + Medium: Medium + Large: Large + Extra Large: Extra Large diff --git a/config/webform.webform_options.state_codes.yml b/config/webform.webform_options.state_codes.yml index b135405..a4cc588 100644 --- a/config/webform.webform_options.state_codes.yml +++ b/config/webform.webform_options.state_codes.yml @@ -11,4 +11,56 @@ id: state_codes label: 'State codes' category: Geographic likert: false -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" +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 diff --git a/config/webform.webform_options.state_names.yml b/config/webform.webform_options.state_names.yml index ab75912..120e6ec 100644 --- a/config/webform.webform_options.state_names.yml +++ b/config/webform.webform_options.state_names.yml @@ -11,4 +11,55 @@ id: state_names label: 'State names' category: Geographic likert: false -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" +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 diff --git a/config/webform.webform_options.state_province_codes.yml b/config/webform.webform_options.state_province_codes.yml index 3545c7d..bff582f 100644 --- a/config/webform.webform_options.state_province_codes.yml +++ b/config/webform.webform_options.state_province_codes.yml @@ -11,4 +11,66 @@ id: state_province_codes label: 'State/Province codes' category: Geographic likert: false -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" +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 diff --git a/config/webform.webform_options.state_province_names.yml b/config/webform.webform_options.state_province_names.yml index 4eb7ebd..7a14e0a 100644 --- a/config/webform.webform_options.state_province_names.yml +++ b/config/webform.webform_options.state_province_names.yml @@ -11,4 +11,66 @@ id: state_province_names label: 'State/Province names' category: Geographic likert: false -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" +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 diff --git a/config/webform.webform_options.yes_no.yml b/config/webform.webform_options.yes_no.yml index 926a878..045273d 100644 --- a/config/webform.webform_options.yes_no.yml +++ b/config/webform.webform_options.yes_no.yml @@ -11,4 +11,6 @@ id: yes_no label: Yes/No category: General likert: false -options: "Yes: Yes\nNo: No\n" +options: | + Yes: Yes + No: No From e15c50e7406636ef8275023676fffda1c241fe04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 14 Jul 2021 11:22:29 -0400 Subject: [PATCH 055/236] Update README to be a bit more clear about deployment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5860ce..f148298 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ If Agaric's Drutopia PaaS base has changed (the composer.lock in this directory) ahoy deploy-build agaric ``` -To deploy everything else (config, templates, styles): +To deploy this build to an instance of the site plus config, templates, styles: ``` ahoy deploy-site agaric_test From 1e6b9bef3ccd61e437d648d71684a83f30a36fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 13 Aug 2021 09:59:29 -0400 Subject: [PATCH 056/236] Update composer lock with security release, other updates --- composer.lock | 248 +++++++++++++++++++++++++------------------------- 1 file changed, 126 insertions(+), 122 deletions(-) diff --git a/composer.lock b/composer.lock index 91ce467..c54976b 100644 --- a/composer.lock +++ b/composer.lock @@ -3865,16 +3865,16 @@ }, { "name": "drupal/core", - "version": "8.9.16", + "version": "8.9.18", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "498effa27ae5111f53f04fbe80fd05369a88c53d" + "reference": "e536176c45d9d75ec57f7a12c0e3c0aead856841" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/498effa27ae5111f53f04fbe80fd05369a88c53d", - "reference": "498effa27ae5111f53f04fbe80fd05369a88c53d", + "url": "https://api.github.com/repos/drupal/core/zipball/e536176c45d9d75ec57f7a12c0e3c0aead856841", + "reference": "e536176c45d9d75ec57f7a12c0e3c0aead856841", "shasum": "" }, "require": { @@ -3901,7 +3901,7 @@ "laminas/laminas-diactoros": "^1.8", "laminas/laminas-feed": "^2.12", "masterminds/html5": "^2.1", - "pear/archive_tar": "^1.4.12", + "pear/archive_tar": "^1.4.14", "php": "^7.0.8", "psr/log": "^1.0", "stack/builder": "^1.0", @@ -4093,13 +4093,13 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/8.9.16" + "source": "https://github.com/drupal/core/tree/8.9.18" }, - "time": "2021-05-25T09:17:58+00:00" + "time": "2021-08-12T17:48:42+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.16", + "version": "8.9.18", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -4143,22 +4143,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4" + "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.5" }, "time": "2020-08-07T22:30:30+00:00" }, { "name": "drupal/core-recommended", - "version": "8.9.16", + "version": "8.9.18", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "ec38f5cb75ca1848f2247a645d4a4dee4abe4c28" + "reference": "71839bb9799b70f449b76294b461877ba1e9ff2c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ec38f5cb75ca1848f2247a645d4a4dee4abe4c28", - "reference": "ec38f5cb75ca1848f2247a645d4a4dee4abe4c28", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/71839bb9799b70f449b76294b461877ba1e9ff2c", + "reference": "71839bb9799b70f449b76294b461877ba1e9ff2c", "shasum": "" }, "require": { @@ -4170,7 +4170,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.16", + "drupal/core": "8.9.18", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4183,7 +4183,7 @@ "laminas/laminas-zendframework-bridge": "1.0.4", "masterminds/html5": "2.3.0", "paragonie/random_compat": "v9.99.99", - "pear/archive_tar": "1.4.13", + "pear/archive_tar": "1.4.14", "pear/console_getopt": "v1.4.3", "pear/pear-core-minimal": "v1.10.10", "pear/pear_exception": "v1.0.1", @@ -4228,9 +4228,9 @@ ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/8.9.16" + "source": "https://github.com/drupal/core-recommended/tree/8.9.18" }, - "time": "2021-05-25T09:17:58+00:00" + "time": "2021-08-12T17:48:42+00:00" }, { "name": "drupal/crop", @@ -6712,17 +6712,17 @@ }, { "name": "drupal/field_group", - "version": "3.1.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.1" + "reference": "8.x-3.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip", - "reference": "8.x-3.1", - "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "2020bbfe40f6ba43bc733ae7c8761632572433a0" }, "require": { "drupal/core": "^8.8 || ^9" @@ -6733,8 +6733,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.1", - "datestamp": "1591772567", + "version": "8.x-3.2", + "datestamp": "1628513585", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8951,31 +8951,31 @@ }, { "name": "drupal/scheduler", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scheduler.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "704f9e289c7a42ddfb65297beb0be02e324f02c6" + "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "5b2203e4688e5d3ac67d0780605809c92c6ece70" }, "require": { "drupal/core": "^8 || ^9" }, "require-dev": { - "drupal/devel_generate": "^2.0 || 3.x-dev", + "drupal/devel_generate": "^2.0 || 4.x-dev", "drupal/rules": "^3", "drush/drush": "^9.0 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1591436219", + "version": "8.x-1.4", + "datestamp": "1626702090", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8983,7 +8983,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10" } } }, @@ -9134,17 +9134,17 @@ }, { "name": "drupal/search_api", - "version": "1.19.0", + "version": "1.20.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.19" + "reference": "8.x-1.20" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.19.zip", - "reference": "8.x-1.19", - "shasum": "5654e9d02117e28c585d89a25ea3cc40d20c5019" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.20.zip", + "reference": "8.x-1.20", + "shasum": "4bed60ac7b502ccc1d4a01411aa35d2cb7f496c7" }, "require": { "drupal/core": "^8.8 || ^9" @@ -9165,8 +9165,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.19", - "datestamp": "1612192040", + "version": "8.x-1.20", + "datestamp": "1626684847", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9174,7 +9174,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10" } } }, @@ -9206,7 +9206,7 @@ }, { "name": "drupal/search_api_db", - "version": "1.19.0", + "version": "1.20.0", "require": { "drupal/core": "^8.8 || ^9", "drupal/search_api": "*" @@ -9214,8 +9214,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.19", - "datestamp": "1612192040", + "version": "8.x-1.20", + "datestamp": "1626684847", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9300,17 +9300,17 @@ }, { "name": "drupal/skins", - "version": "1.0.0-rc2", + "version": "1.0.0-rc3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/skins.git", - "reference": "8.x-1.0-rc2" + "reference": "8.x-1.0-rc3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-rc2.zip", - "reference": "8.x-1.0-rc2", - "shasum": "798404891a9f21538bf0bf513594197f4ae8e94c" + "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-rc3.zip", + "reference": "8.x-1.0-rc3", + "shasum": "28744035c0bd89865b75733f98474154cab4d25b" }, "require": { "drupal/core": "^8.8 || ^9" @@ -9318,8 +9318,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc2", - "datestamp": "1604019090", + "version": "8.x-1.0-rc3", + "datestamp": "1627756727", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -12408,16 +12408,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.11.0", + "version": "v4.12.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94" + "reference": "6608f01670c3cc5079e18c1dab1104e002579143" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/fe14cf3672a149364fb66dfe11bf6549af899f94", - "reference": "fe14cf3672a149364fb66dfe11bf6549af899f94", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143", + "reference": "6608f01670c3cc5079e18c1dab1104e002579143", "shasum": "" }, "require": { @@ -12458,9 +12458,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.11.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0" }, - "time": "2021-07-03T13:36:55+00:00" + "time": "2021-07-21T10:44:31+00:00" }, { "name": "p3k/http", @@ -12867,16 +12867,16 @@ }, { "name": "pear/archive_tar", - "version": "1.4.13", + "version": "1.4.14", "source": { "type": "git", "url": "https://github.com/pear/Archive_Tar.git", - "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011" + "reference": "4d761c5334c790e45ef3245f0864b8955c562caa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/2b87b41178cc6d4ad3cba678a46a1cae49786011", - "reference": "2b87b41178cc6d4ad3cba678a46a1cae49786011", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa", + "reference": "4d761c5334c790e45ef3245f0864b8955c562caa", "shasum": "" }, "require": { @@ -12943,7 +12943,7 @@ "type": "patreon" } ], - "time": "2021-02-16T10:50:50+00:00" + "time": "2021-07-20T13:53:39+00:00" }, { "name": "pear/console_getopt", @@ -13519,16 +13519,16 @@ }, { "name": "stripe/stripe-php", - "version": "v7.88.0", + "version": "v7.93.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "7203d00ba9b09830c0c5d5c06a9558db43b8e0ea" + "reference": "c739cf6841bb3498e23bd52ecfadfcb21c521a14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7203d00ba9b09830c0c5d5c06a9558db43b8e0ea", - "reference": "7203d00ba9b09830c0c5d5c06a9558db43b8e0ea", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c739cf6841bb3498e23bd52ecfadfcb21c521a14", + "reference": "c739cf6841bb3498e23bd52ecfadfcb21c521a14", "shasum": "" }, "require": { @@ -13574,9 +13574,9 @@ ], "support": { "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v7.88.0" + "source": "https://github.com/stripe/stripe-php/tree/v7.93.0" }, - "time": "2021-07-09T20:01:03+00:00" + "time": "2021-08-11T18:48:54+00:00" }, { "name": "svg-pan-zoom/svg-pan-zoom", @@ -14119,21 +14119,22 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.26", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "a501126eb6ec9288a3434af01b3d4499ec1268a0" + "reference": "517fb795794faf29086a77d99eb8f35e457837a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/a501126eb6ec9288a3434af01b3d4499ec1268a0", - "reference": "a501126eb6ec9288a3434af01b3d4499ec1268a0", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/517fb795794faf29086a77d99eb8f35e457837a7", + "reference": "517fb795794faf29086a77d99eb8f35e457837a7", "shasum": "" }, "require": { "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8" + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -14161,7 +14162,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.26" + "source": "https://github.com/symfony/filesystem/tree/v4.4.27" }, "funding": [ { @@ -14177,24 +14178,25 @@ "type": "tidelift" } ], - "time": "2021-06-30T07:12:23+00:00" + "time": "2021-07-21T12:19:41+00:00" }, { "name": "symfony/finder", - "version": "v5.3.0", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6" + "reference": "17f50e06018baec41551a71a15731287dbaab186" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", - "reference": "0ae3f047bed4edff6fd35b26a9a6bfdc92c953c6", + "url": "https://api.github.com/repos/symfony/finder/zipball/17f50e06018baec41551a71a15731287dbaab186", + "reference": "17f50e06018baec41551a71a15731287dbaab186", "shasum": "" }, "require": { - "php": ">=7.2.5" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -14222,7 +14224,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.3.0" + "source": "https://github.com/symfony/finder/tree/v5.3.4" }, "funding": [ { @@ -14238,7 +14240,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T12:52:38+00:00" + "time": "2021-07-23T15:54:19+00:00" }, { "name": "symfony/http-foundation", @@ -14947,16 +14949,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", - "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", "shasum": "" }, "require": { @@ -15010,7 +15012,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" }, "funding": [ { @@ -15026,7 +15028,7 @@ "type": "tidelift" } ], - "time": "2021-02-19T12:13:01+00:00" + "time": "2021-07-28T13:41:28+00:00" }, { "name": "symfony/polyfill-util", @@ -15611,23 +15613,23 @@ }, { "name": "symfony/var-dumper", - "version": "v4.4.26", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "a586efdf2aa832d05b9249e9115d24f6a2691160" + "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a586efdf2aa832d05b9249e9115d24f6a2691160", - "reference": "a586efdf2aa832d05b9249e9115d24f6a2691160", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/391d6d0e7a06ab54eb7c38fab29b8d174471b3ba", + "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba", "shasum": "" }, "require": { "php": ">=7.1.3", "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php72": "~1.5", - "symfony/polyfill-php80": "^1.15" + "symfony/polyfill-php80": "^1.16" }, "conflict": { "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", @@ -15680,7 +15682,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v4.4.26" + "source": "https://github.com/symfony/var-dumper/tree/v4.4.27" }, "funding": [ { @@ -15696,7 +15698,7 @@ "type": "tidelift" } ], - "time": "2021-06-17T06:35:48+00:00" + "time": "2021-07-23T15:41:52+00:00" }, { "name": "symfony/yaml", @@ -15791,16 +15793,16 @@ }, { "name": "thinkshout/mailchimp-api-php", - "version": "v2.1.0", + "version": "v2.1.1", "source": { "type": "git", "url": "https://github.com/thinkshout/mailchimp-api-php.git", - "reference": "83ea6bcfe01b52d79b068e03c05cbfaea6c1b820" + "reference": "eae0e4647ca724bbd5982bb179891af11f641578" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/83ea6bcfe01b52d79b068e03c05cbfaea6c1b820", - "reference": "83ea6bcfe01b52d79b068e03c05cbfaea6c1b820", + "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/eae0e4647ca724bbd5982bb179891af11f641578", + "reference": "eae0e4647ca724bbd5982bb179891af11f641578", "shasum": "" }, "require": { @@ -15826,9 +15828,9 @@ ], "support": { "issues": "https://github.com/thinkshout/mailchimp-api-php/issues", - "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v2.1.0" + "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v2.1.1" }, - "time": "2021-04-27T19:29:12+00:00" + "time": "2021-08-05T15:12:34+00:00" }, { "name": "tippyjs/5.x", @@ -16632,21 +16634,22 @@ }, { "name": "symfony/browser-kit", - "version": "v4.4.25", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "729b1f0eca3ef18ea4e1a29b166145aff75d8fa1" + "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/729b1f0eca3ef18ea4e1a29b166145aff75d8fa1", - "reference": "729b1f0eca3ef18ea4e1a29b166145aff75d8fa1", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9629d1524d8ced5a4ec3e94abdbd638b4ec8319b", + "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b", "shasum": "" }, "require": { "php": ">=7.1.3", - "symfony/dom-crawler": "^3.4|^4.0|^5.0" + "symfony/dom-crawler": "^3.4|^4.0|^5.0", + "symfony/polyfill-php80": "^1.16" }, "require-dev": { "symfony/css-selector": "^3.4|^4.0|^5.0", @@ -16683,7 +16686,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v4.4.25" + "source": "https://github.com/symfony/browser-kit/tree/v4.4.27" }, "funding": [ { @@ -16699,20 +16702,20 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:39:37+00:00" + "time": "2021-07-21T12:19:41+00:00" }, { "name": "symfony/config", - "version": "v5.3.3", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "a69e0c55528b47df88d3c4067ddedf32d485d662" + "reference": "4268f3059c904c61636275182707f81645517a37" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/a69e0c55528b47df88d3c4067ddedf32d485d662", - "reference": "a69e0c55528b47df88d3c4067ddedf32d485d662", + "url": "https://api.github.com/repos/symfony/config/zipball/4268f3059c904c61636275182707f81645517a37", + "reference": "4268f3059c904c61636275182707f81645517a37", "shasum": "" }, "require": { @@ -16720,7 +16723,7 @@ "symfony/deprecation-contracts": "^2.1", "symfony/filesystem": "^4.4|^5.0", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.15", + "symfony/polyfill-php80": "^1.16", "symfony/polyfill-php81": "^1.22" }, "conflict": { @@ -16762,7 +16765,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v5.3.3" + "source": "https://github.com/symfony/config/tree/v5.3.4" }, "funding": [ { @@ -16778,24 +16781,25 @@ "type": "tidelift" } ], - "time": "2021-06-24T08:13:00+00:00" + "time": "2021-07-21T12:40:44+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.25", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "c1e29de6dc893b130b45d20d8051efbb040560a9" + "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1e29de6dc893b130b45d20d8051efbb040560a9", - "reference": "c1e29de6dc893b130b45d20d8051efbb040560a9", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6", + "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6", "shasum": "" }, "require": { - "php": ">=7.1.3" + "php": ">=7.1.3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", "autoload": { @@ -16827,7 +16831,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v4.4.25" + "source": "https://github.com/symfony/css-selector/tree/v4.4.27" }, "funding": [ { @@ -16843,7 +16847,7 @@ "type": "tidelift" } ], - "time": "2021-05-26T17:39:37+00:00" + "time": "2021-07-21T12:19:41+00:00" }, { "name": "symfony/deprecation-contracts", From d1fb1cb5231a878eafbe6b3b908323525efbc420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sat, 18 Sep 2021 15:29:19 -0400 Subject: [PATCH 057/236] Add Drupal Remote Desktop command center to Agaric site --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 1aa3456..7756f58 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,7 @@ "drupal/core-recommended": "^8.8", "drupal/customerror": "1.x-dev", "drupal/diff": "^1.0@RC", + "drupal/drd": "^4.0", "drupal/dropdown_language": "^2.2", "drupal/drutopia_core": "1.x-dev", "drupal/drutopia_site": "dev-1.x", From b54ccaf53fd5d94289064a8329885c9fa424da4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sat, 18 Sep 2021 15:29:36 -0400 Subject: [PATCH 058/236] Commit composer lock file --- composer.lock | 1094 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1093 insertions(+), 1 deletion(-) diff --git a/composer.lock b/composer.lock index c54976b..632eb96 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,60 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d8fef263ce189cf052aed138c3acd6bc", + "content-hash": "c7e75902610019f3dccba66dd1b8a5f2", "packages": [ + { + "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": "algolia/places", "version": "1.19.0", @@ -344,6 +396,75 @@ "installer-name": "ckeditor.link" } }, + { + "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" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ivo Bathke", + "email": "ivo.bathke@gmail.com" + }, + { + "name": "Florian Eckerstorfer", + "email": "florian@eckerstorfer.co", + "homepage": "https://florian.ec" + } + ], + "description": "Converts a string into a slug.", + "keywords": [ + "slug", + "slugify" + ], + "support": { + "issues": "https://github.com/cocur/slugify/issues", + "source": "https://github.com/cocur/slugify/tree/master" + }, + "time": "2019-01-31T20:38:55+00:00" + }, { "name": "codemirror/codemirror", "version": "5.61.1", @@ -1503,6 +1624,69 @@ }, "time": "2021-06-08T15:12:46+00:00" }, + { + "name": "cypresslab/gitelephant", + "version": "v4.3.0", + "source": { + "type": "git", + "url": "https://github.com/matteosister/GitElephant.git", + "reference": "4776b42fc7c8eadb7724699f50983740a1389b8e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/matteosister/GitElephant/zipball/4776b42fc7c8eadb7724699f50983740a1389b8e", + "reference": "4776b42fc7c8eadb7724699f50983740a1389b8e", + "shasum": "" + }, + "require": { + "php": ">=7.2.0", + "phpcollection/phpcollection": "~0.4|~0.5", + "symfony/filesystem": "~3.4|~4.0|~5.0", + "symfony/finder": "~3.4|~4.0|~5.0", + "symfony/process": "~3.4|~4.0|~5.0" + }, + "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.3.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/cypresslab/gitelephant", + "type": "tidelift" + } + ], + "time": "2021-02-09T08:18:43+00:00" + }, { "name": "dflydev/dot-access-data", "version": "v1.1.0", @@ -2346,6 +2530,94 @@ "source": "https://git.drupalcode.org/project/admin_toolbar" } }, + { + "name": "drupal/advancedqueue", + "version": "1.0.0-rc2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/advancedqueue.git", + "reference": "8.x-1.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/advancedqueue-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "9ec5422d0220ad30f670daf64812b36b5bed56a5" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-rc2", + "datestamp": "1624393873", + "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": "Damien Tournoud", + "homepage": "https://www.drupal.org/user/22211" + }, + { + "name": "Kazanir", + "homepage": "https://www.drupal.org/user/2279698" + }, + { + "name": "amitaibu", + "homepage": "https://www.drupal.org/user/57511" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "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": "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": "1.3.0", @@ -4599,6 +4871,142 @@ "issues": "https://www.drupal.org/project/issues/diff" } }, + { + "name": "drupal/drd", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drd.git", + "reference": "4.0.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drd-4.0.5.zip", + "reference": "4.0.5", + "shasum": "220b19c72443dffca33657090e0391deff704e4c" + }, + "require": { + "albertofem/rsync-lib": "^1.0", + "cypresslab/gitelephant": "^2.0|^4.0", + "drupal/advancedqueue": "^1.0@RC", + "drupal/core": "^8.8 || ^9", + "drupal/drd_agent": "^4.0", + "drupal/encrypt": "^3.0@RC", + "drupal/eva": "^2.1", + "drupal/key_value_field": "^1.2", + "mikehaertl/php-shellcommand": "^1.6", + "php": ">=7.2", + "phpseclib/phpseclib": "^2.0", + "platformsh/client": "^2.0", + "symfony/filesystem": "^2.8|^3|^4" + }, + "require-dev": { + "drupal/drd_pi": "*", + "drupal/gitlab_api": "*", + "drupal/webform": "*" + }, + "suggest": { + "drupal/console": "CLI to use and optionally automate DRD actions.", + "drupal/extlink": "Allows to open external links in new tabs/windows.", + "drupal/hacked": "Validate each project if it got changed compared to the original code from drupal.org.", + "drupal/monitoring": "Site monitoring module with sensors.", + "drupal/real_aes": "Encryption method for the encrypt module.", + "drupal/security_review": "Site security and configuration review module.", + "drush/drush": "Another CLI to use and optionally automate DRD actions." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.0.5", + "datestamp": "1620800692", + "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": "Jürgen Haas", + "homepage": "https://www.drupal.org/u/jurgenhaas" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "Dashboard to monitor and manage any number of remote Drupal 6, 7 or 8 sites", + "homepage": "https://www.drupal.org/project/drd", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupal.org/project/drd", + "issues": "https://www.drupal.org/project/issues/drd" + } + }, + { + "name": "drupal/drd_agent", + "version": "4.0.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drd_agent.git", + "reference": "4.0.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drd_agent-4.0.2.zip", + "reference": "4.0.2", + "shasum": "70c9d90e021e6b8a497a15fa3d8ad2ff61e81740" + }, + "require": { + "drupal/core": "^8.8 || ^9", + "php": ">=7.2" + }, + "suggest": { + "drupal/hacked": "Validate each project if it got changed compared to the original code from drupal.org.", + "drupal/monitoring": "Site monitoring module with sensors.", + "drupal/security_review": "Site security and configuration review module." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.0.2", + "datestamp": "1612195755", + "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": "Jürgen Haas", + "homepage": "https://www.drupal.org/u/jurgenhaas" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "TODO", + "homepage": "https://www.drupal.org/project/drd_agent", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupal.org/project/drd_agent", + "issues": "https://www.drupal.org/project/issues/drd" + } + }, { "name": "drupal/dropdown_language", "version": "2.7.0", @@ -6252,6 +6660,75 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/encrypt", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/encrypt.git", + "reference": "8.x-3.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/encrypt-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "6916583be6d08c9684582358d7b7722fdeea8487" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/key": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.0", + "datestamp": "1602354427", + "security-coverage": { + "status": "covered", + "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": "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.2.0", @@ -6444,6 +6921,69 @@ "slack": "https://app.slack.com/client/T06GX3JTS/C012XBTH81E" } }, + { + "name": "drupal/eva", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/eva.git", + "reference": "8.x-2.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/eva-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "9fd3bed40ad1c05c05d32a90965ad45c30d2fb41" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "suggest": { + "drupal/token": "Enable the argument token browser" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.1", + "datestamp": "1591701896", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Crell", + "homepage": "https://www.drupal.org/user/26398" + }, + { + "name": "ahebrank", + "homepage": "https://www.drupal.org/user/3190515" + }, + { + "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" + } + }, { "name": "drupal/exclude_node_title", "version": "1.2.0", @@ -7482,6 +8022,123 @@ "source": "https://git.drupalcode.org/project/jquery_ui_accordion" } }, + { + "name": "drupal/key", + "version": "1.14.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/key.git", + "reference": "8.x-1.14" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "097cec8e86b1c164727ca62521a06c36459754f1" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.14", + "datestamp": "1591765429", + "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+" + ], + "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": "http://cgit.drupalcode.org/key", + "issues": "http://drupal.org/project/key" + } + }, + { + "name": "drupal/key_value_field", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/key_value_field.git", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/key_value_field-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "30a9cb01cac31059bdf4177d8e0d42fc4865c72a" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1586279687", + "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/mailchimp", "version": "2.0.2", @@ -12183,6 +12840,76 @@ ], "time": "2021-02-22T09:20:06+00:00" }, + { + "name": "league/oauth2-client", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/oauth2-client.git", + "reference": "badb01e62383430706433191b82506b6df24ad98" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98", + "reference": "badb01e62383430706433191b82506b6df24ad98", + "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", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3", + "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.6.0" + }, + "time": "2020-10-28T02:03:40+00:00" + }, { "name": "masterminds/html5", "version": "2.3.0", @@ -12365,6 +13092,52 @@ }, "time": "2019-12-02T02:32:27+00:00" }, + { + "name": "mikehaertl/php-shellcommand", + "version": "1.6.4", + "source": { + "type": "git", + "url": "https://github.com/mikehaertl/php-shellcommand.git", + "reference": "3488d7803df1e8f1a343d3d0ca452d527ad8d5e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/3488d7803df1e8f1a343d3d0ca452d527ad8d5e5", + "reference": "3488d7803df1e8f1a343d3d0ca452d527ad8d5e5", + "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.6.4" + }, + "time": "2021-03-17T06:54:33+00:00" + }, { "name": "mkalkbrenner/php-htmldiff-advanced", "version": "0.0.8", @@ -13103,6 +13876,325 @@ }, "time": "2019-12-10T10:24:42+00:00" }, + { + "name": "phpcollection/phpcollection", + "version": "0.5.0", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-collection.git", + "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6", + "reference": "f2bcff45c0da7c27991bbc1f90f47c4b7fb434a6", + "shasum": "" + }, + "require": { + "phpoption/phpoption": "1.*" + }, + "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/master" + }, + "time": "2015-05-17T12:39:23+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28", + "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8-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" + }, + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk" + } + ], + "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.8.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2021-08-28T21:27:29+00:00" + }, + { + "name": "phpseclib/phpseclib", + "version": "2.0.33", + "source": { + "type": "git", + "url": "https://github.com/phpseclib/phpseclib.git", + "reference": "fb53b7889497ec7c1362c94e61d8127ac67ea094" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/fb53b7889497ec7c1362c94e61d8127ac67ea094", + "reference": "fb53b7889497ec7c1362c94e61d8127ac67ea094", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "phing/phing": "~2.7", + "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4", + "squizlabs/php_codesniffer": "~2.0" + }, + "suggest": { + "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": { + "phpseclib\\": "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/2.0.33" + }, + "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": "2021-08-16T04:20:12+00:00" + }, + { + "name": "platformsh/client", + "version": "2.5.0", + "source": { + "type": "git", + "url": "https://github.com/platformsh/platformsh-client-php.git", + "reference": "270af9c511e8ca8d5eca84613ce7c29e716ec1d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/platformsh/platformsh-client-php/zipball/270af9c511e8ca8d5eca84613ce7c29e716ec1d0", + "reference": "270af9c511e8ca8d5eca84613ce7c29e716ec1d0", + "shasum": "" + }, + "require": { + "cocur/slugify": "^3.0", + "ext-json": "*", + "guzzlehttp/guzzle": "^6.3 || ^7.0", + "php": ">=7.1.0", + "platformsh/oauth2": ">=0.0.2 <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.0" + }, + "time": "2021-06-24T08:16:45+00:00" + }, + { + "name": "platformsh/oauth2", + "version": "0.0.2", + "source": { + "type": "git", + "url": "https://github.com/platformsh/platformsh-oauth2-php.git", + "reference": "399068e875567e8073dca7ea1669bbdb8a37a5f1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/platformsh/platformsh-oauth2-php/zipball/399068e875567e8073dca7ea1669bbdb8a37a5f1", + "reference": "399068e875567e8073dca7ea1669bbdb8a37a5f1", + "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.2" + }, + "time": "2020-11-09T13:00:32+00:00" + }, { "name": "progress-tracker/progress-tracker", "version": "2.0.6", From 7bc894678d334ac3462d7a624ce31938e0b1671a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 1 Mar 2022 23:21:01 -0500 Subject: [PATCH 059/236] Apply self-updates to ddev files --- .ddev/.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 5003016..500e5dc 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -22,6 +22,8 @@ /db_snapshots /import-db /import.yaml +/mutagen /nginx_full/nginx-site.conf /sequelpro.spf +/xhprof /**/README.* From b1a36cdc40205516ab70ee952efed25ca340ec6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 1 Mar 2022 23:21:14 -0500 Subject: [PATCH 060/236] Allow useful plugins to write to files --- composer.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7756f58..cffdb6a 100644 --- a/composer.json +++ b/composer.json @@ -78,7 +78,13 @@ "prefer-stable": true, "config": { "sort-packages": true, - "process-timeout": 600 + "process-timeout": 600, + "allow-plugins": { + "composer/installers": true, + "cweagans/composer-patches": true, + "drupal/core-composer-scaffold": true, + "wikimedia/composer-merge-plugin": true + } }, "extra": { "drupal-scaffold": { From b94463ae96a3684cf53f1548ed44cfbd9a7aeb61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 1 Mar 2022 23:21:35 -0500 Subject: [PATCH 061/236] Commit updated composer lock file --- composer.lock | 1403 ++++++++++++++++++++++++------------------------- 1 file changed, 701 insertions(+), 702 deletions(-) diff --git a/composer.lock b/composer.lock index 632eb96..7c4185e 100644 --- a/composer.lock +++ b/composer.lock @@ -131,16 +131,16 @@ }, { "name": "caxy/php-htmldiff", - "version": "v0.1.12", + "version": "v0.1.14", "source": { "type": "git", "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "7fb8aa0ad77864f1d3604ae4a31af9cbabb91485" + "reference": "3f8ee7edda3d7c6d2e58a02d70a12d3242c84ea5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/7fb8aa0ad77864f1d3604ae4a31af9cbabb91485", - "reference": "7fb8aa0ad77864f1d3604ae4a31af9cbabb91485", + "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/3f8ee7edda3d7c6d2e58a02d70a12d3242c84ea5", + "reference": "3f8ee7edda3d7c6d2e58a02d70a12d3242c84ea5", "shasum": "" }, "require": { @@ -186,22 +186,22 @@ ], "support": { "issues": "https://github.com/caxy/php-htmldiff/issues", - "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.12" + "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.14" }, - "time": "2021-04-05T21:19:33+00:00" + "time": "2022-01-19T11:09:59+00:00" }, { "name": "cebe/markdown", - "version": "1.1.2", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/cebe/markdown.git", - "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e" + "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cebe/markdown/zipball/25b28bae8a6f185b5030673af77b32e1163d5c6e", - "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e", + "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86", + "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86", "shasum": "" }, "require": { @@ -219,7 +219,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -252,7 +252,7 @@ "issues": "https://github.com/cebe/markdown/issues", "source": "https://github.com/cebe/markdown" }, - "time": "2017-07-16T21:13:23+00:00" + "time": "2018-03-26T11:24:36+00:00" }, { "name": "chi-teck/drupal-code-generator", @@ -482,16 +482,16 @@ }, { "name": "commerceguys/addressing", - "version": "v1.2.1", + "version": "v1.2.2", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "311040bd78ea2ea82105dd1f17205c449ac8de47" + "reference": "fb98dfc72f8a3d12fac55f69ab2477a0fbfa9860" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/311040bd78ea2ea82105dd1f17205c449ac8de47", - "reference": "311040bd78ea2ea82105dd1f17205c449ac8de47", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/fb98dfc72f8a3d12fac55f69ab2477a0fbfa9860", + "reference": "fb98dfc72f8a3d12fac55f69ab2477a0fbfa9860", "shasum": "" }, "require": { @@ -539,22 +539,22 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v1.2.1" + "source": "https://github.com/commerceguys/addressing/tree/v1.2.2" }, - "time": "2021-05-17T08:05:21+00:00" + "time": "2021-10-30T12:33:41+00:00" }, { "name": "composer/installers", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "ae03311f45dfe194412081526be2e003960df74b" + "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b", - "reference": "ae03311f45dfe194412081526be2e003960df74b", + "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19", + "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19", "shasum": "" }, "require": { @@ -653,6 +653,7 @@ "modx", "moodle", "osclass", + "pantheon", "phpbb", "piwik", "ppi", @@ -675,7 +676,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v1.11.0" + "source": "https://github.com/composer/installers/tree/v1.12.0" }, "funding": [ { @@ -691,7 +692,7 @@ "type": "tidelift" } ], - "time": "2021-04-28T06:42:17+00:00" + "time": "2021-09-13T08:19:44+00:00" }, { "name": "composer/semver", @@ -761,16 +762,16 @@ }, { "name": "consolidation/annotated-command", - "version": "2.12.1", + "version": "2.12.2", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "0ee361762df2274f360c085e3239784a53f850b5" + "reference": "2472a23610cba1d86dcb783a81a21259473b059e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/0ee361762df2274f360c085e3239784a53f850b5", - "reference": "0ee361762df2274f360c085e3239784a53f850b5", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e", + "reference": "2472a23610cba1d86dcb783a81a21259473b059e", "shasum": "" }, "require": { @@ -865,9 +866,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/2.12.1" + "source": "https://github.com/consolidation/annotated-command/tree/2.12.2" }, - "time": "2020-10-11T04:30:03+00:00" + "time": "2022-01-03T00:23:44+00:00" }, { "name": "consolidation/config", @@ -1235,32 +1236,32 @@ }, { "name": "consolidation/robo", - "version": "1.4.13", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343" + "reference": "12bf6b608057604a283e9e597edfed36ba071631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/fd28dcca1b935950ece26e63541fbdeeb09f7343", - "reference": "fd28dcca1b935950ece26e63541fbdeeb09f7343", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631", + "reference": "12bf6b608057604a283e9e597edfed36ba071631", "shasum": "" }, "require": { - "consolidation/annotated-command": "^2.12.1|^4.1", + "consolidation/annotated-command": "^2.12.1 || ^4.1", "consolidation/config": "^1.2.1", - "consolidation/log": "^1.1.1|^2", - "consolidation/output-formatters": "^3.5.1|^4.1", - "consolidation/self-update": "^1.1.5", + "consolidation/log": "^1.1.1 || ^2", + "consolidation/output-formatters": "^3.5.1 || ^4.1", + "consolidation/self-update": "^1.1.5 || ^2", "grasmash/yaml-expander": "^1.4", "league/container": "^2.4.1", "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4", - "symfony/event-dispatcher": "^2.5|^3|^4", - "symfony/filesystem": "^2.5|^3|^4", - "symfony/finder": "^2.5|^3|^4|^5", - "symfony/process": "^2.5|^3|^4" + "symfony/console": "^2.8 || ^3 || ^4", + "symfony/event-dispatcher": "^2.5 || ^3 || ^4", + "symfony/filesystem": "^2.5 || ^3 || ^4", + "symfony/finder": "^2.5 || ^3 || ^4 || ^5", + "symfony/process": "^2.5 || ^3 || ^4" }, "replace": { "codegyre/robo": "< 1.0" @@ -1348,9 +1349,9 @@ "description": "Modern task runner", "support": { "issues": "https://github.com/consolidation/Robo/issues", - "source": "https://github.com/consolidation/Robo/tree/1.4.13" + "source": "https://github.com/consolidation/Robo/tree/1.5.0" }, - "time": "2020-10-11T04:51:34+00:00" + "time": "2021-10-08T03:51:31+00:00" }, { "name": "consolidation/self-update", @@ -1408,22 +1409,22 @@ }, { "name": "consolidation/site-alias", - "version": "3.1.0", + "version": "3.1.5", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c" + "reference": "ef2eb7d37e59b3d837b4556d4d8070cb345b378c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/ef2eb7d37e59b3d837b4556d4d8070cb345b378c", + "reference": "ef2eb7d37e59b3d837b4556d4d8070cb345b378c", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", + "consolidation/config": "^1.2.1 || ^2", "php": ">=5.5.0", - "symfony/finder": "~2.3|^3|^4.4|^5" + "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1460,9 +1461,9 @@ "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/3.1.0" + "source": "https://github.com/consolidation/site-alias/tree/3.1.5" }, - "time": "2021-02-20T20:03:10+00:00" + "time": "2022-02-23T23:59:18+00:00" }, { "name": "consolidation/site-process", @@ -1578,16 +1579,16 @@ }, { "name": "cweagans/composer-patches", - "version": "1.7.1", + "version": "1.7.2", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c" + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c", - "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e9969cfc0796e6dea9b4e52f77f18e1065212871", + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871", "shasum": "" }, "require": { @@ -1620,9 +1621,9 @@ "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.1" + "source": "https://github.com/cweagans/composer-patches/tree/1.7.2" }, - "time": "2021-06-08T15:12:46+00:00" + "time": "2022-01-25T19:21:20+00:00" }, { "name": "cypresslab/gitelephant", @@ -1752,21 +1753,21 @@ }, { "name": "dg/twitter-php", - "version": "v3.6", + "version": "v3.8", "source": { "type": "git", "url": "https://github.com/dg/twitter-php.git", - "reference": "dd872ad12121ff919b358989e61f7f08ba6cc7a8" + "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dg/twitter-php/zipball/dd872ad12121ff919b358989e61f7f08ba6cc7a8", - "reference": "dd872ad12121ff919b358989e61f7f08ba6cc7a8", + "url": "https://api.github.com/repos/dg/twitter-php/zipball/d9370c9759138200a77ca86abcb0c5ddfe857c68", + "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68", "shasum": "" }, "require": { "ext-curl": "*", - "php": ">=5.2.0" + "php": ">=5.4.0" }, "type": "library", "autoload": { @@ -1791,10 +1792,9 @@ "twitter" ], "support": { - "issues": "https://github.com/dg/twitter-php/issues", - "source": "https://github.com/dg/twitter-php/tree/v3.6" + "source": "https://github.com/dg/twitter-php/tree/v3.8" }, - "time": "2016-08-15T16:46:22+00:00" + "time": "2019-02-08T16:20:01+00:00" }, { "name": "doctrine/annotations", @@ -2261,6 +2261,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, { "name": "bojanz", "homepage": "https://www.drupal.org/user/86106" @@ -2338,26 +2342,29 @@ }, { "name": "drupal/admin_toolbar", - "version": "2.4.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "8.x-2.4" + "reference": "3.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "6240047b8d91ac78f98d861ba8282af971fa0b38" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.1.0.zip", + "reference": "3.1.0", + "shasum": "7b596d7de04faca747ba3e5216c2e819aae71f40" }, "require": { - "drupal/core": "^8.8.0 || ^9.0" + "drupal/core": "^8.8.0 || ^9.0 || ^10.0" + }, + "require-dev": { + "drupal/admin_toolbar_tools": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.4", - "datestamp": "1601999178", + "version": "3.1.0", + "datestamp": "1643742891", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2416,16 +2423,16 @@ }, { "name": "drupal/admin_toolbar_links_access_filter", - "version": "3.0.1", + "version": "3.1.0", "require": { "drupal/admin_toolbar": "*", - "drupal/core": "^8.8.0 || ^9.0" + "drupal/core": "^8.8.0 || ^9.0 || ^10" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.0.1", - "datestamp": "1622644077", + "version": "3.1.0", + "datestamp": "1643742891", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2474,16 +2481,16 @@ }, { "name": "drupal/admin_toolbar_tools", - "version": "3.0.1", + "version": "3.1.0", "require": { "drupal/admin_toolbar": "*", - "drupal/core": "^8.8.0 || ^9.0" + "drupal/core": "^8.8.0 || ^9.0 || ^10" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.0.1", - "datestamp": "1622644077", + "version": "3.1.0", + "datestamp": "1643742891", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2532,17 +2539,17 @@ }, { "name": "drupal/advancedqueue", - "version": "1.0.0-rc2", + "version": "1.0.0-rc3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/advancedqueue.git", - "reference": "8.x-1.0-rc2" + "reference": "8.x-1.0-rc3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/advancedqueue-8.x-1.0-rc2.zip", - "reference": "8.x-1.0-rc2", - "shasum": "9ec5422d0220ad30f670daf64812b36b5bed56a5" + "url": "https://ftp.drupal.org/files/projects/advancedqueue-8.x-1.0-rc3.zip", + "reference": "8.x-1.0-rc3", + "shasum": "0cb4472faa142b565740350bbd34f09686b5b56d" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -2550,12 +2557,17 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc2", - "datestamp": "1624393873", + "version": "8.x-1.0-rc3", + "datestamp": "1638106300", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -2620,26 +2632,26 @@ }, { "name": "drupal/allowed_formats", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "4c3c036d7b41428d6e22b61f1219de0ab012feec" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "6c73fd69781e8a7c3ebc394ce74f981b6da50eae" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1592909219", + "version": "8.x-1.4", + "datestamp": "1643490593", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2652,33 +2664,46 @@ ], "authors": [ { - "name": "floretan", - "homepage": "https://www.drupal.org/user/66163" + "name": "Northern Commerce (formerly Digital Echidna)", + "homepage": "https://www.drupal.org/northern-commerce-formerly-digital-echidna", + "role": "Supporting organization" }, { - "name": "nord102", - "homepage": "https://www.drupal.org/user/3471419" + "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": "https://git.drupalcode.org/project/allowed_formats" + "source": "http://cgit.drupalcode.org/allowed_formats", + "issues": "https://www.drupal.org/project/issues/allowed_formats" } }, { "name": "drupal/antibot", - "version": "1.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/antibot.git", - "reference": "8.x-1.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/antibot-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "2ef65587c34c94f6a7ec0538c755eef5cdd359fd" + "url": "https://ftp.drupal.org/files/projects/antibot-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "f3597cde2903c979042bf8c1b25a9d3694159e43" }, "require": { "drupal/core": "^8.8 || ^9" @@ -2686,8 +2711,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1590592550", + "version": "8.x-1.5", + "datestamp": "1637670654", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2699,6 +2724,10 @@ "GPL-2.0+" ], "authors": [ + { + "name": "gaurav.kapoor", + "homepage": "https://www.drupal.org/user/3495331" + }, { "name": "mstef", "homepage": "https://www.drupal.org/user/107190" @@ -2712,17 +2741,17 @@ }, { "name": "drupal/autosave_form", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/autosave_form.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "e7a893dfdba574b74cd77e16be2140d82bb353a6" + "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "5a7d07baf6952e7ac00a580ed96f7effffe72c8f" }, "require": { "drupal/core": "^8 || ^9" @@ -2730,8 +2759,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1591627224", + "version": "8.x-1.3", + "datestamp": "1635343527", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3273,7 +3302,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/comment_notify.git", - "reference": "63346371fad80a77d2340dadd7a376773a67f870" + "reference": "0397bbf2be3abfa94700b75109588daa829b48eb" }, "require": { "drupal/core": "^8 || ^9", @@ -3285,8 +3314,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.2+1-dev", - "datestamp": "1594403007", + "version": "8.x-1.2+2-dev", + "datestamp": "1633380397", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -3778,6 +3807,10 @@ "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" @@ -4121,12 +4154,12 @@ ], "authors": [ { - "name": "jhodgdon", - "homepage": "https://www.drupal.org/user/155601" + "name": "Pasqualle", + "homepage": "https://www.drupal.org/user/80733" }, { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" + "name": "codebymikey", + "homepage": "https://www.drupal.org/user/3573206" } ], "description": "Provides basic revert and update functionality for other modules", @@ -4137,16 +4170,16 @@ }, { "name": "drupal/core", - "version": "8.9.18", + "version": "8.9.20", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "e536176c45d9d75ec57f7a12c0e3c0aead856841" + "reference": "39e2e1c32498338921923af66a90cb4a23a5b389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/e536176c45d9d75ec57f7a12c0e3c0aead856841", - "reference": "e536176c45d9d75ec57f7a12c0e3c0aead856841", + "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389", + "reference": "39e2e1c32498338921923af66a90cb4a23a5b389", "shasum": "" }, "require": { @@ -4346,8 +4379,8 @@ "autoload": { "psr-4": { "Drupal\\Core\\": "lib/Drupal/Core", - "Drupal\\Component\\": "lib/Drupal/Component", - "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver" + "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver", + "Drupal\\Component\\": "lib/Drupal/Component" }, "classmap": [ "lib/Drupal.php", @@ -4365,13 +4398,13 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/8.9.18" + "source": "https://github.com/drupal/core/tree/8.9.20" }, - "time": "2021-08-12T17:48:42+00:00" + "time": "2021-11-17T21:24:28+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.18", + "version": "8.9.20", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", @@ -4415,22 +4448,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.5" + "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4" }, "time": "2020-08-07T22:30:30+00:00" }, { "name": "drupal/core-recommended", - "version": "8.9.18", + "version": "8.9.20", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "71839bb9799b70f449b76294b461877ba1e9ff2c" + "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/71839bb9799b70f449b76294b461877ba1e9ff2c", - "reference": "71839bb9799b70f449b76294b461877ba1e9ff2c", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1", + "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1", "shasum": "" }, "require": { @@ -4442,7 +4475,7 @@ "doctrine/common": "v2.7.3", "doctrine/inflector": "v1.2.0", "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.18", + "drupal/core": "8.9.20", "easyrdf/easyrdf": "0.9.1", "egulias/email-validator": "2.1.17", "guzzlehttp/guzzle": "6.5.4", @@ -4500,23 +4533,23 @@ ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/8.9.18" + "source": "https://github.com/drupal/core-recommended/tree/8.9.20" }, - "time": "2021-08-12T17:48:42+00:00" + "time": "2021-11-17T21:24:28+00:00" }, { "name": "drupal/crop", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-2.1" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "c03541907d59874ca8a81f574258f6c0de8cbdc8" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "b5a84c6b85b9582e686ccf421295611d9dd52055" }, "require": { "drupal/core": "^8.8 || ^9" @@ -4524,8 +4557,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.1", - "datestamp": "1585251827", + "version": "8.x-2.2", + "datestamp": "1645187494", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4660,7 +4693,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/customerror.git", - "reference": "e767b6408947b792548d63148a3666ef8ef2a3d0" + "reference": "d4ea873c929b272ea98c9fa0767c17a591185691" }, "require": { "drupal/core": "^8.8 || ^9" @@ -4671,8 +4704,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-alpha1+10-dev", - "datestamp": "1617297879", + "version": "8.x-1.0-alpha1+12-dev", + "datestamp": "1630688010", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -4873,17 +4906,17 @@ }, { "name": "drupal/drd", - "version": "4.0.5", + "version": "4.0.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drd.git", - "reference": "4.0.5" + "reference": "4.0.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd-4.0.5.zip", - "reference": "4.0.5", - "shasum": "220b19c72443dffca33657090e0391deff704e4c" + "url": "https://ftp.drupal.org/files/projects/drd-4.0.7.zip", + "reference": "4.0.7", + "shasum": "471a4de00f1b6a4379fc33d3da901cc1f05b409c" }, "require": { "albertofem/rsync-lib": "^1.0", @@ -4917,8 +4950,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.5", - "datestamp": "1620800692", + "version": "4.0.7", + "datestamp": "1637756081", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4951,17 +4984,17 @@ }, { "name": "drupal/drd_agent", - "version": "4.0.2", + "version": "4.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drd_agent.git", - "reference": "4.0.2" + "reference": "4.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd_agent-4.0.2.zip", - "reference": "4.0.2", - "shasum": "70c9d90e021e6b8a497a15fa3d8ad2ff61e81740" + "url": "https://ftp.drupal.org/files/projects/drd_agent-4.0.3.zip", + "reference": "4.0.3", + "shasum": "d19400753f0fcf03748f91504d3ee46c13e7cdf9" }, "require": { "drupal/core": "^8.8 || ^9", @@ -4975,8 +5008,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.2", - "datestamp": "1612195755", + "version": "4.0.3", + "datestamp": "1644339477", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6295,10 +6328,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "eb914783d49bcd402920cc24b45ac60aa31b2783" + "reference": "1c48960d62febc83b560aaa6f4ef05b7f7f5b7b0" }, "require": { - "drupal/admin_toolbar": "^2.2", + "drupal/admin_toolbar": "^3.0", "drupal/admin_toolbar_links_access_filter": "*", "drupal/admin_toolbar_tools": "*", "drupal/autosave_form": "^1.1", @@ -6332,10 +6365,6 @@ "GPL-2.0+" ], "authors": [ - { - "name": "cedewey", - "homepage": "https://www.drupal.org/user/38694" - }, { "name": "drutopia_gitlab", "homepage": "https://www.drupal.org/user/3514271" @@ -6766,6 +6795,10 @@ "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, + { + "name": "TR", + "homepage": "https://www.drupal.org/user/202830" + }, { "name": "bojanz", "homepage": "https://www.drupal.org/user/86106" @@ -6854,26 +6887,26 @@ }, { "name": "drupal/eu_cookie_compliance", - "version": "1.14.0", + "version": "1.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git", - "reference": "8.x-1.14" + "reference": "8.x-1.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "37b7d8e33d5bc466272a288dbbb386d8702ed3c1" + "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.19.zip", + "reference": "8.x-1.19", + "shasum": "5a13cd53f87a58501cebd6e560c280ad7274035c" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.9 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1606569775", + "version": "8.x-1.19", + "datestamp": "1633775773", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6903,6 +6936,10 @@ { "name": "See other contributors", "homepage": "https://www.drupal.org/node/1538032/committers" + }, + { + "name": "svenryen", + "homepage": "https://www.drupal.org/user/667244" } ], "description": "This module aims at making the website compliant with the new EU cookie regulation.", @@ -6986,17 +7023,17 @@ }, { "name": "drupal/exclude_node_title", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/exclude_node_title.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "c7bda0086adfe5b090fc1ee8bc166f9d456d62d6" + "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "da96901e2baff9638b98575f2a9b161056a83689" }, "require": { "drupal/core": "^8 || ^9" @@ -7004,8 +7041,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1614965953", + "version": "8.x-1.3", + "datestamp": "1634750930", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7632,26 +7669,26 @@ }, { "name": "drupal/honeypot", - "version": "1.30.0", + "version": "1.31.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "8.x-1.30" + "reference": "8.x-1.31" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.30.zip", - "reference": "8.x-1.30", - "shasum": "1d7983e8e07feee4f13e4b05c9a10db15ae2097e" + "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.31.zip", + "reference": "8.x-1.31", + "shasum": "a0e7fd5cabdf8bbd4ceedc39d0a25f9d54ea3c41" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8.2 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.30", - "datestamp": "1576274288", + "version": "8.x-1.31", + "datestamp": "1637735546", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7660,7 +7697,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -7668,6 +7705,10 @@ "homepage": "https://www.drupal.org/user/213194", "email": "geerlingguy@mac.com" }, + { + "name": "TR", + "homepage": "https://www.drupal.org/user/202830" + }, { "name": "geerlingguy", "homepage": "https://www.drupal.org/user/389011" @@ -7688,7 +7729,8 @@ "spam" ], "support": { - "source": "https://git.drupalcode.org/project/honeypot" + "source": "https://git.drupalcode.org/project/honeypot", + "issues": "https://www.drupal.org/project/issues/honeypot" } }, { @@ -7836,7 +7878,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "0100473be426f415d286949f19a2af15ec06c6ba" + "reference": "5fe250c12a5f03e4dc79a933c71801c0c18832ab" }, "require": { "drupal/core": "^8.7|^9.0", @@ -7858,8 +7900,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.15+2-dev", - "datestamp": "1609072936", + "version": "8.x-1.17+1-dev", + "datestamp": "1637437583", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7873,7 +7915,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -8024,17 +8066,17 @@ }, { "name": "drupal/key", - "version": "1.14.0", + "version": "1.15.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.14" + "reference": "8.x-1.15" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "097cec8e86b1c164727ca62521a06c36459754f1" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.15.zip", + "reference": "8.x-1.15", + "shasum": "ebef48e042968862b6767af4b1bf49835eca487e" }, "require": { "drupal/core": "^8.7.7 || ^9" @@ -8042,8 +8084,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1591765429", + "version": "8.x-1.15", + "datestamp": "1634075859", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8083,7 +8125,7 @@ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/key", + "source": "https://git.drupalcode.org/project/key", "issues": "http://drupal.org/project/key" } }, @@ -8347,8 +8389,8 @@ "homepage": "https://www.drupal.org/user/409554" }, { - "name": "markhalliwell", - "homepage": "https://www.drupal.org/user/501638" + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" } ], "description": "Allows content to be submitted using Markdown, a simple plain-text syntax that is transformed into valid HTML.", @@ -8714,6 +8756,10 @@ "homepage": "https://www.drupal.org/u/mikeryan", "role": "Maintainer" }, + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, { "name": "mikeryan", "homepage": "https://www.drupal.org/user/4420" @@ -8794,27 +8840,30 @@ }, { "name": "drupal/mimemail", - "version": "1.0.0-alpha3", + "version": "1.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/mimemail.git", - "reference": "8.x-1.0-alpha3" + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha3.zip", - "reference": "8.x-1.0-alpha3", - "shasum": "5e02422aa7ea56411c10086c56a5033558eccfa4" + "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "7e65bbcb616de898ecc7c01d280b8d69101f2dcc" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^8.8.2 || ^9", "drupal/mailsystem": "*" }, + "require-dev": { + "drupal/rules": "*" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha3", - "datestamp": "1591399267", + "version": "8.x-1.0-alpha4", + "datestamp": "1638738304", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -8986,10 +9035,6 @@ "GPL-2.0+" ], "authors": [ - { - "name": "cedewey", - "homepage": "https://www.drupal.org/user/38694" - }, { "name": "drutopia_gitlab", "homepage": "https://www.drupal.org/user/3514271" @@ -9028,17 +9073,17 @@ }, { "name": "drupal/paragraphs", - "version": "1.12.0", + "version": "1.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.12" + "reference": "8.x-1.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "3b67d8af1160af42d93a4610be1e02869e428965" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.13.zip", + "reference": "8.x-1.13", + "shasum": "5e06df68411b17a5d8adaa292ddf70840d00876f" }, "require": { "drupal/core": "^8.8 || ^9", @@ -9054,7 +9099,7 @@ "drupal/inline_entity_form": "~1.0", "drupal/paragraphs-paragraphs_library": "*", "drupal/replicate": "~1.0", - "drupal/search_api": "~1.0", + "drupal/search_api": "1.x-dev", "drupal/search_api_db": "*" }, "suggest": { @@ -9063,8 +9108,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1590140081", + "version": "8.x-1.13", + "datestamp": "1646121716", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9156,17 +9201,16 @@ }, { "name": "Christian Fritsch", - "homepage": "https://www.drupal.org/user/3453049", + "homepage": "https://www.drupal.org/user/3511180", "email": "christian.fritsch@burda.com" }, { "name": "Volker Killesreiter", - "homepage": "https://www.drupal.org/user/3511180", + "homepage": "https://www.drupal.org/user/57527", "email": "volker.killesreiter@burda.com" }, { "name": "Alex Pott", - "homepage": "https://www.drupal.org/user/57527", "email": "alex.a.pott@gmail.com" } ], @@ -9234,17 +9278,17 @@ }, { "name": "drupal/pathauto", - "version": "1.8.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.8" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "ede3216abb9c4f77709338d9147334c595046329" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "f075ebff595c9b8b62333d65ad29020330e0ea9d" }, "require": { "drupal/core": "^8.8 || ^9", @@ -9257,8 +9301,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1588103046", + "version": "8.x-1.9", + "datestamp": "1644822949", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9341,6 +9385,10 @@ "name": "Sam152", "homepage": "https://www.drupal.org/user/1485048" }, + { + "name": "acbramley", + "homepage": "https://www.drupal.org/user/1036766" + }, { "name": "benjy", "homepage": "https://www.drupal.org/user/1852732" @@ -9362,17 +9410,17 @@ }, { "name": "drupal/redirect", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "f848e001deac8425ae57d4b9397087c491d37294" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877" }, "require": { "drupal/core": "^8.8 || ^9" @@ -9380,8 +9428,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1589312204", + "version": "8.x-1.7", + "datestamp": "1639380488", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9414,7 +9462,7 @@ }, { "name": "drupal/redirect_404", - "version": "1.6.0", + "version": "1.7.0", "require": { "drupal/core": "^8.8 || ^9", "drupal/redirect": "*" @@ -9422,8 +9470,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1589312204", + "version": "8.x-1.7", + "datestamp": "1639380488", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9632,7 +9680,7 @@ "extra": { "drupal": { "version": "8.x-1.4", - "datestamp": "1626702090", + "datestamp": "1637145565", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9791,17 +9839,17 @@ }, { "name": "drupal/search_api", - "version": "1.20.0", + "version": "1.23.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.20" + "reference": "8.x-1.23" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "4bed60ac7b502ccc1d4a01411aa35d2cb7f496c7" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip", + "reference": "8.x-1.23", + "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7" }, "require": { "drupal/core": "^8.8 || ^9" @@ -9822,8 +9870,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1626684847", + "version": "8.x-1.23", + "datestamp": "1642935837", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9863,7 +9911,7 @@ }, { "name": "drupal/search_api_db", - "version": "1.20.0", + "version": "1.23.0", "require": { "drupal/core": "^8.8 || ^9", "drupal/search_api": "*" @@ -9871,8 +9919,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1626684847", + "version": "8.x-1.23", + "datestamp": "1642935837", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9992,6 +10040,10 @@ "name": "Poieo", "homepage": "https://www.drupal.org/user/303228" }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -10358,17 +10410,17 @@ }, { "name": "drupal/token", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.9" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "8b81224ab0420221b292e8d3b66d0da726317400" }, "require": { "drupal/core": "^8.8 || ^9" @@ -10376,8 +10428,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1608284866", + "version": "8.x-1.10", + "datestamp": "1638619775", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10787,17 +10839,17 @@ }, { "name": "drupal/webform", - "version": "6.0.4", + "version": "6.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.0.4" + "reference": "6.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.0.4.zip", - "reference": "6.0.4", - "shasum": "8b87ffb19f980e9d77957dfb2d784a1a68619d57" + "url": "https://ftp.drupal.org/files/projects/webform-6.1.3.zip", + "reference": "6.1.3", + "shasum": "efd032eadc10a4752b9b0203152a5d20eefac175" }, "require": { "drupal/core": "^8.8 || ^9" @@ -10845,8 +10897,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.4", - "datestamp": "1624461046", + "version": "6.1.3", + "datestamp": "1644940723", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11386,32 +11438,29 @@ }, { "name": "ezyang/htmlpurifier", - "version": "v4.13.0", + "version": "v4.14.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" + "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", - "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75", + "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75", "shasum": "" }, "require": { "php": ">=5.2" }, - "require-dev": { - "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" - }, "type": "library", "autoload": { - "psr-0": { - "HTMLPurifier": "library/" - }, "files": [ "library/HTMLPurifier.composer.php" ], + "psr-0": { + "HTMLPurifier": "library/" + }, "exclude-from-classmap": [ "/library/HTMLPurifier/Language/" ] @@ -11434,71 +11483,9 @@ ], "support": { "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/master" + "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0" }, - "time": "2020-06-29T00:56:53+00:00" - }, - { - "name": "facebook/graph-sdk", - "version": "5.7.0", - "source": { - "type": "git", - "url": "https://github.com/facebook/php-graph-sdk.git", - "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/facebook/php-graph-sdk/zipball/2d8250638b33d73e7a87add65f47fabf91f8ad9b", - "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b", - "shasum": "" - }, - "require": { - "php": "^5.4|^7.0" - }, - "require-dev": { - "guzzlehttp/guzzle": "~5.0", - "mockery/mockery": "~0.8", - "phpunit/phpunit": "~4.0" - }, - "suggest": { - "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client", - "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - } - }, - "autoload": { - "psr-4": { - "Facebook\\": "src/Facebook/" - }, - "files": [ - "src/Facebook/polyfills.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Facebook Platform" - ], - "authors": [ - { - "name": "Facebook", - "homepage": "https://github.com/facebook/php-graph-sdk/contributors" - } - ], - "description": "Facebook SDK for PHP", - "homepage": "https://github.com/facebook/php-graph-sdk", - "keywords": [ - "facebook", - "sdk" - ], - "support": { - "issues": "https://github.com/facebook/php-graph-sdk/issues", - "source": "https://github.com/facebook/php-graph-sdk/tree/5.7.0" - }, - "time": "2018-12-11T22:56:31+00:00" + "time": "2021-12-25T01:21:49+00:00" }, { "name": "grasmash/expander", @@ -11639,12 +11626,12 @@ } }, "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11701,12 +11688,12 @@ } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11765,12 +11752,12 @@ } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11943,24 +11930,24 @@ }, { "name": "indieweb/mention-client", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/indieweb/mention-client-php.git", - "reference": "12e3dc4b3f8f9ae82fa7a3953792bea33f59118a" + "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/12e3dc4b3f8f9ae82fa7a3953792bea33f59118a", - "reference": "12e3dc4b3f8f9ae82fa7a3953792bea33f59118a", + "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/6807f4b1b96df7f47ea425eebfc7c032768652cf", + "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf", "shasum": "" }, "require": { "mf2/mf2": ">=0.2", - "php": ">=5.4" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "4.8.*" + "phpunit/phpunit": "^6" }, "type": "library", "autoload": { @@ -11983,9 +11970,9 @@ "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/master" + "source": "https://github.com/indieweb/mention-client-php/tree/1.2.1" }, - "time": "2018-10-27T19:41:41+00:00" + "time": "2021-02-02T13:13:07+00:00" }, { "name": "indieweb/representative-h-card", @@ -12491,29 +12478,31 @@ }, { "name": "laminas/laminas-xml", - "version": "1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-xml.git", - "reference": "2eada592359aec9d9e55339270b621295cff3a4f" + "reference": "dcadeefdb6d7ed6b39d772b47e3845003d6ea60f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/2eada592359aec9d9e55339270b621295cff3a4f", - "reference": "2eada592359aec9d9e55339270b621295cff3a4f", + "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/dcadeefdb6d7ed6b39d772b47e3845003d6ea60f", + "reference": "dcadeefdb6d7ed6b39d772b47e3845003d6ea60f", "shasum": "" }, "require": { - "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^7.3 || ~8.0.0" + "ext-dom": "*", + "ext-simplexml": "*", + "php": "^7.3 || ~8.0.0 || ~8.1.0" }, - "replace": { - "zendframework/zendxml": "^1.2.0" + "conflict": { + "zendframework/zendxml": "*" }, "require-dev": { "ext-iconv": "*", "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^9.4" + "phpunit/phpunit": "^9.5.8", + "squizlabs/php_codesniffer": "3.6.1 as 2.9999999.9999999" }, "type": "library", "autoload": { @@ -12545,7 +12534,7 @@ "type": "community_bridge" } ], - "time": "2021-02-17T22:44:58+00:00" + "time": "2021-11-30T02:16:35+00:00" }, { "name": "laminas/laminas-zendframework-bridge", @@ -12613,16 +12602,16 @@ }, { "name": "lcobucci/jwt", - "version": "3.4.5", + "version": "3.4.6", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "511629a54465e89a31d3d7e4cf0935feab8b14c1" + "reference": "3ef8657a78278dfeae7707d51747251db4176240" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/511629a54465e89a31d3d7e4cf0935feab8b14c1", - "reference": "511629a54465e89a31d3d7e4cf0935feab8b14c1", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/3ef8657a78278dfeae7707d51747251db4176240", + "reference": "3ef8657a78278dfeae7707d51747251db4176240", "shasum": "" }, "require": { @@ -12647,14 +12636,14 @@ } }, "autoload": { - "psr-4": { - "Lcobucci\\JWT\\": "src" - }, "files": [ "compat/class-aliases.php", "compat/json-exception-polyfill.php", "compat/lcobucci-clock-polyfill.php" - ] + ], + "psr-4": { + "Lcobucci\\JWT\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -12674,7 +12663,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/3.4.5" + "source": "https://github.com/lcobucci/jwt/tree/3.4.6" }, "funding": [ { @@ -12686,7 +12675,7 @@ "type": "patreon" } ], - "time": "2021-02-16T09:40:01+00:00" + "time": "2021-09-28T19:18:28+00:00" }, { "name": "league/commonmark", @@ -12842,16 +12831,16 @@ }, { "name": "league/oauth2-client", - "version": "2.6.0", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "badb01e62383430706433191b82506b6df24ad98" + "reference": "2334c249907190c132364f5dae0287ab8666aa19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/badb01e62383430706433191b82506b6df24ad98", - "reference": "badb01e62383430706433191b82506b6df24ad98", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/2334c249907190c132364f5dae0287ab8666aa19", + "reference": "2334c249907190c132364f5dae0287ab8666aa19", "shasum": "" }, "require": { @@ -12860,9 +12849,9 @@ "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { - "mockery/mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpunit/phpunit": "^5.7 || ^6.0 || ^9.3", + "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", @@ -12906,9 +12895,9 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-client/issues", - "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.0" + "source": "https://github.com/thephpleague/oauth2-client/tree/2.6.1" }, - "time": "2020-10-28T02:03:40+00:00" + "time": "2021-12-22T16:42:49+00:00" }, { "name": "masterminds/html5", @@ -13041,16 +13030,16 @@ }, { "name": "michelf/php-markdown", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/michelf/php-markdown.git", - "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c" + "reference": "5024d623c1a057dcd2d076d25b7d270a1d0d55f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/michelf/php-markdown/zipball/c83178d49e372ca967d1a8c77ae4e051b3a3c75c", - "reference": "c83178d49e372ca967d1a8c77ae4e051b3a3c75c", + "url": "https://api.github.com/repos/michelf/php-markdown/zipball/5024d623c1a057dcd2d076d25b7d270a1d0d55f3", + "reference": "5024d623c1a057dcd2d076d25b7d270a1d0d55f3", "shasum": "" }, "require": { @@ -13088,9 +13077,9 @@ ], "support": { "issues": "https://github.com/michelf/php-markdown/issues", - "source": "https://github.com/michelf/php-markdown/tree/1.9.0" + "source": "https://github.com/michelf/php-markdown/tree/1.9.1" }, - "time": "2019-12-02T02:32:27+00:00" + "time": "2021-11-24T02:52:38+00:00" }, { "name": "mikehaertl/php-shellcommand", @@ -13181,16 +13170,16 @@ }, { "name": "nikic/php-parser", - "version": "v4.12.0", + "version": "v4.13.2", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "6608f01670c3cc5079e18c1dab1104e002579143" + "reference": "210577fe3cf7badcc5814d99455df46564f3c077" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143", - "reference": "6608f01670c3cc5079e18c1dab1104e002579143", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077", + "reference": "210577fe3cf7badcc5814d99455df46564f3c077", "shasum": "" }, "require": { @@ -13231,22 +13220,22 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2" }, - "time": "2021-07-21T10:44:31+00:00" + "time": "2021-11-30T19:35:32+00:00" }, { "name": "p3k/http", - "version": "0.1.11", + "version": "0.1.12", "source": { "type": "git", "url": "https://github.com/aaronpk/p3k-http.git", - "reference": "24d28287e0c5606aa45b23c6e3c17628d89468f7" + "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/24d28287e0c5606aa45b23c6e3c17628d89468f7", - "reference": "24d28287e0c5606aa45b23c6e3c17628d89468f7", + "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b", + "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b", "shasum": "" }, "require": { @@ -13273,9 +13262,9 @@ "homepage": "https://github.com/aaronpk/p3k-http", "support": { "issues": "https://github.com/aaronpk/p3k-http/issues", - "source": "https://github.com/aaronpk/p3k-http/tree/master" + "source": "https://github.com/aaronpk/p3k-http/tree/0.1.12" }, - "time": "2020-02-19T03:00:09+00:00" + "time": "2021-10-12T14:12:29+00:00" }, { "name": "p3k/micropub", @@ -13433,16 +13422,16 @@ }, { "name": "p3k/utils", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/aaronpk/p3k-utils.git", - "reference": "ecd0ba1afca8e586f09792f7be5052e142d3cbde" + "reference": "8436f02ec02d916177a23250ae32b34ae5316942" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/ecd0ba1afca8e586f09792f7be5052e142d3cbde", - "reference": "ecd0ba1afca8e586f09792f7be5052e142d3cbde", + "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/8436f02ec02d916177a23250ae32b34ae5316942", + "reference": "8436f02ec02d916177a23250ae32b34ae5316942", "shasum": "" }, "require": { @@ -13477,9 +13466,9 @@ "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.0" + "source": "https://github.com/aaronpk/p3k-utils/tree/1.2.1" }, - "time": "2018-03-28T13:44:56+00:00" + "time": "2021-11-16T21:44:23+00:00" }, { "name": "p3k/websub", @@ -13537,44 +13526,43 @@ }, { "name": "p3k/xray", - "version": "v1.11.1", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/aaronpk/XRay.git", - "reference": "dfc620d10282d6af1302ab70adb8cb11915a2a30" + "reference": "3e63e841bf723b8decfa6d05049687a53c35698a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/XRay/zipball/dfc620d10282d6af1302ab70adb8cb11915a2a30", - "reference": "dfc620d10282d6af1302ab70adb8cb11915a2a30", + "url": "https://api.github.com/repos/aaronpk/XRay/zipball/3e63e841bf723b8decfa6d05049687a53c35698a", + "reference": "3e63e841bf723b8decfa6d05049687a53c35698a", "shasum": "" }, "require": { - "cebe/markdown": "1.1.*", - "dg/twitter-php": "3.6.*", + "cebe/markdown": "^1.1.0", + "dg/twitter-php": "^3.0.0", "ezyang/htmlpurifier": "^4.10", - "facebook/graph-sdk": "^5.5", - "indieweb/link-rel-parser": "0.1.*", + "indieweb/link-rel-parser": "^0.1.0", "masterminds/html5": "^2.3", "mf2/mf2": "^0.4", - "p3k/http": ">=0.1.11", - "p3k/picofeed": ">=0.1.39", - "p3k/timezone": "*" + "p3k/http": "^0.1.0", + "p3k/picofeed": "^0.1.0", + "p3k/timezone": "^0.1.0" }, "require-dev": { - "league/plates": "3.*", - "league/route": "1.*", - "phpunit/phpunit": "4.8.*" + "league/plates": "^3.0", + "league/route": "^1.0", + "phpunit/phpunit": "^8.0.0|^9.0.0" }, "type": "library", "autoload": { - "psr-4": { - "p3k\\XRay\\": "lib/XRay" - }, "files": [ "lib/helpers.php", "lib/XRay.php" - ] + ], + "psr-4": { + "p3k\\XRay\\": "lib/XRay" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -13584,9 +13572,9 @@ "homepage": "https://github.com/aaronpk/XRay", "support": { "issues": "https://github.com/aaronpk/XRay/issues", - "source": "https://github.com/aaronpk/XRay/tree/v1.11.1" + "source": "https://github.com/aaronpk/XRay/tree/v1.12.0" }, - "time": "2021-02-13T23:05:06+00:00" + "time": "2022-01-28T16:45:47+00:00" }, { "name": "paragonie/random_compat", @@ -13930,16 +13918,16 @@ }, { "name": "phpoption/phpoption", - "version": "1.8.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28" + "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/5455cb38aed4523f99977c4a12ef19da4bfe2a28", - "reference": "5455cb38aed4523f99977c4a12ef19da4bfe2a28", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15", + "reference": "eab7a0df01fe2344d172bff4cd6dbd3f8b84ad15", "shasum": "" }, "require": { @@ -13947,7 +13935,7 @@ }, "require-dev": { "bamarni/composer-bin-plugin": "^1.4.1", - "phpunit/phpunit": "^6.5.14 || ^7.0.20 || ^8.5.19 || ^9.5.8" + "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8" }, "type": "library", "extra": { @@ -13967,11 +13955,13 @@ "authors": [ { "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com" + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" }, { "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "Option Type for PHP", @@ -13983,7 +13973,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.8.0" + "source": "https://github.com/schmittjoh/php-option/tree/1.8.1" }, "funding": [ { @@ -13995,20 +13985,20 @@ "type": "tidelift" } ], - "time": "2021-08-28T21:27:29+00:00" + "time": "2021-12-04T23:24:31+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.33", + "version": "2.0.36", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "fb53b7889497ec7c1362c94e61d8127ac67ea094" + "reference": "a97547126396548c224703a267a30af1592be146" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/fb53b7889497ec7c1362c94e61d8127ac67ea094", - "reference": "fb53b7889497ec7c1362c94e61d8127ac67ea094", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/a97547126396548c224703a267a30af1592be146", + "reference": "a97547126396548c224703a267a30af1592be146", "shasum": "" }, "require": { @@ -14088,7 +14078,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/2.0.33" + "source": "https://github.com/phpseclib/phpseclib/tree/2.0.36" }, "funding": [ { @@ -14104,20 +14094,20 @@ "type": "tidelift" } ], - "time": "2021-08-16T04:20:12+00:00" + "time": "2022-01-30T08:48:36+00:00" }, { "name": "platformsh/client", - "version": "2.5.0", + "version": "2.5.1", "source": { "type": "git", "url": "https://github.com/platformsh/platformsh-client-php.git", - "reference": "270af9c511e8ca8d5eca84613ce7c29e716ec1d0" + "reference": "a8744d8a4dedff4a22c47d714045885005c32624" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/platformsh/platformsh-client-php/zipball/270af9c511e8ca8d5eca84613ce7c29e716ec1d0", - "reference": "270af9c511e8ca8d5eca84613ce7c29e716ec1d0", + "url": "https://api.github.com/repos/platformsh/platformsh-client-php/zipball/a8744d8a4dedff4a22c47d714045885005c32624", + "reference": "a8744d8a4dedff4a22c47d714045885005c32624", "shasum": "" }, "require": { @@ -14125,7 +14115,7 @@ "ext-json": "*", "guzzlehttp/guzzle": "^6.3 || ^7.0", "php": ">=7.1.0", - "platformsh/oauth2": ">=0.0.2 <2" + "platformsh/oauth2": ">=0.0.3 <2" }, "require-dev": { "phpunit/phpunit": "^7.0" @@ -14148,22 +14138,22 @@ "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.0" + "source": "https://github.com/platformsh/platformsh-client-php/tree/2.5.1" }, - "time": "2021-06-24T08:16:45+00:00" + "time": "2021-10-20T20:22:39+00:00" }, { "name": "platformsh/oauth2", - "version": "0.0.2", + "version": "0.0.3", "source": { "type": "git", "url": "https://github.com/platformsh/platformsh-oauth2-php.git", - "reference": "399068e875567e8073dca7ea1669bbdb8a37a5f1" + "reference": "5daa2274b4cbc95658e5b32ebe4f05b5090e4549" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/platformsh/platformsh-oauth2-php/zipball/399068e875567e8073dca7ea1669bbdb8a37a5f1", - "reference": "399068e875567e8073dca7ea1669bbdb8a37a5f1", + "url": "https://api.github.com/repos/platformsh/platformsh-oauth2-php/zipball/5daa2274b4cbc95658e5b32ebe4f05b5090e4549", + "reference": "5daa2274b4cbc95658e5b32ebe4f05b5090e4549", "shasum": "" }, "require": { @@ -14191,9 +14181,9 @@ "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.2" + "source": "https://github.com/platformsh/platformsh-oauth2-php/tree/0.0.3" }, - "time": "2020-11-09T13:00:32+00:00" + "time": "2021-10-20T20:12:14+00:00" }, { "name": "progress-tracker/progress-tracker", @@ -14368,29 +14358,32 @@ }, { "name": "psy/psysh", - "version": "v0.10.8", + "version": "v0.11.2", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" + "reference": "7f7da640d68b9c9fec819caae7c744a213df6514" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/7f7da640d68b9c9fec819caae7c744a213df6514", + "reference": "7f7da640d68b9c9fec819caae7c744a213df6514", "shasum": "" }, "require": { "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", - "php": "^8.0 || ^7.0 || ^5.5.9", - "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10", - "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7" + "nikic/php-parser": "^4.0 || ^3.1", + "php": "^8.0 || ^7.0.8", + "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^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" }, "require-dev": { "bamarni/composer-bin-plugin": "^1.2", - "hoa/console": "3.17.*" + "hoa/console": "3.17.05.02" }, "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", @@ -14405,7 +14398,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.10.x-dev" + "dev-main": "0.11.x-dev" } }, "autoload": { @@ -14437,9 +14430,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.11.2" }, - "time": "2021-04-10T16:23:39+00:00" + "time": "2022-02-28T15:28:54+00:00" }, { "name": "ralouphie/getallheaders", @@ -14502,16 +14495,16 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "3.6.0", + "version": "3.6.2", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" + "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", - "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/5e4e71592f69da17871dba6e80dd51bce74a351a", + "reference": "5e4e71592f69da17871dba6e80dd51bce74a351a", "shasum": "" }, "require": { @@ -14554,7 +14547,7 @@ "source": "https://github.com/squizlabs/PHP_CodeSniffer", "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" }, - "time": "2021-04-09T00:54:41+00:00" + "time": "2021-12-12T21:44:58+00:00" }, { "name": "stack/builder", @@ -14611,16 +14604,16 @@ }, { "name": "stripe/stripe-php", - "version": "v7.93.0", + "version": "v7.115.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "c739cf6841bb3498e23bd52ecfadfcb21c521a14" + "reference": "a1c528a5076b80dc156601505994870d23313a73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c739cf6841bb3498e23bd52ecfadfcb21c521a14", - "reference": "c739cf6841bb3498e23bd52ecfadfcb21c521a14", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/a1c528a5076b80dc156601505994870d23313a73", + "reference": "a1c528a5076b80dc156601505994870d23313a73", "shasum": "" }, "require": { @@ -14630,11 +14623,10 @@ "php": ">=5.6.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "2.17.1", - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5.7", - "squizlabs/php_codesniffer": "^3.3", - "symfony/process": "~3.4" + "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": { @@ -14666,9 +14658,9 @@ ], "support": { "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v7.93.0" + "source": "https://github.com/stripe/stripe-php/tree/v7.115.0" }, - "time": "2021-08-11T18:48:54+00:00" + "time": "2022-03-01T22:45:01+00:00" }, { "name": "svg-pan-zoom/svg-pan-zoom", @@ -14741,6 +14733,7 @@ "issues": "https://github.com/swiftmailer/swiftmailer/issues", "source": "https://github.com/swiftmailer/swiftmailer/tree/v5.4.12" }, + "abandoned": "symfony/mailer", "time": "2018-07-31T09:26:32+00:00" }, { @@ -15129,6 +15122,73 @@ ], "time": "2020-05-30T21:06:01+00:00" }, + { + "name": "symfony/deprecation-contracts", + "version": "v2.5.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8", + "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-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/v2.5.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": "2021-07-12T14:48:14+00:00" + }, { "name": "symfony/event-dispatcher", "version": "v3.4.41", @@ -15211,16 +15271,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.27", + "version": "v4.4.37", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "517fb795794faf29086a77d99eb8f35e457837a7" + "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/517fb795794faf29086a77d99eb8f35e457837a7", - "reference": "517fb795794faf29086a77d99eb8f35e457837a7", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/c59f37705c3e513ae55b2735f128f4ce363c82ec", + "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec", "shasum": "" }, "require": { @@ -15254,7 +15314,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.27" + "source": "https://github.com/symfony/filesystem/tree/v4.4.37" }, "funding": [ { @@ -15270,24 +15330,25 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:19:41+00:00" + "time": "2022-01-02T09:41:36+00:00" }, { "name": "symfony/finder", - "version": "v5.3.4", + "version": "v5.4.3", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "17f50e06018baec41551a71a15731287dbaab186" + "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/17f50e06018baec41551a71a15731287dbaab186", - "reference": "17f50e06018baec41551a71a15731287dbaab186", + "url": "https://api.github.com/repos/symfony/finder/zipball/231313534dded84c7ecaa79d14bc5da4ccb69b7d", + "reference": "231313534dded84c7ecaa79d14bc5da4ccb69b7d", "shasum": "" }, "require": { "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", "symfony/polyfill-php80": "^1.16" }, "type": "library", @@ -15316,7 +15377,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.3.4" + "source": "https://github.com/symfony/finder/tree/v5.4.3" }, "funding": [ { @@ -15332,7 +15393,7 @@ "type": "tidelift" } ], - "time": "2021-07-23T15:54:19+00:00" + "time": "2022-01-26T16:34:36+00:00" }, { "name": "symfony/http-foundation", @@ -15539,12 +15600,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15614,12 +15675,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Iconv\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15692,12 +15753,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15769,12 +15830,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15843,12 +15904,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php56\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Php56\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -15916,12 +15977,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php70\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php70\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -15991,12 +16052,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" - }, "files": [ "bootstrap.php" - ] + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -16041,16 +16102,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.23.1", + "version": "v1.24.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" + "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", - "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9", + "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9", "shasum": "" }, "require": { @@ -16067,12 +16128,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -16104,7 +16165,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0" }, "funding": [ { @@ -16120,7 +16181,7 @@ "type": "tidelift" } ], - "time": "2021-07-28T13:41:28+00:00" + "time": "2021-09-13T13:58:33+00:00" }, { "name": "symfony/polyfill-util", @@ -16705,16 +16766,16 @@ }, { "name": "symfony/var-dumper", - "version": "v4.4.27", + "version": "v4.4.38", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba" + "reference": "20030f729d5539e2672181930fd6d5a3525f118e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/391d6d0e7a06ab54eb7c38fab29b8d174471b3ba", - "reference": "391d6d0e7a06ab54eb7c38fab29b8d174471b3ba", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/20030f729d5539e2672181930fd6d5a3525f118e", + "reference": "20030f729d5539e2672181930fd6d5a3525f118e", "shasum": "" }, "require": { @@ -16774,7 +16835,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v4.4.27" + "source": "https://github.com/symfony/var-dumper/tree/v4.4.38" }, "funding": [ { @@ -16790,7 +16851,7 @@ "type": "tidelift" } ], - "time": "2021-07-23T15:41:52+00:00" + "time": "2022-02-21T14:44:47+00:00" }, { "name": "symfony/yaml", @@ -16885,16 +16946,16 @@ }, { "name": "thinkshout/mailchimp-api-php", - "version": "v2.1.1", + "version": "v2.1.3", "source": { "type": "git", "url": "https://github.com/thinkshout/mailchimp-api-php.git", - "reference": "eae0e4647ca724bbd5982bb179891af11f641578" + "reference": "b402bd67308974cae6186b386957d910cd808f0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/eae0e4647ca724bbd5982bb179891af11f641578", - "reference": "eae0e4647ca724bbd5982bb179891af11f641578", + "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/b402bd67308974cae6186b386957d910cd808f0d", + "reference": "b402bd67308974cae6186b386957d910cd808f0d", "shasum": "" }, "require": { @@ -16912,6 +16973,9 @@ } }, "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": [ @@ -16920,9 +16984,9 @@ ], "support": { "issues": "https://github.com/thinkshout/mailchimp-api-php/issues", - "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v2.1.1" + "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v2.1.3" }, - "time": "2021-08-05T15:12:34+00:00" + "time": "2021-12-29T19:57:45+00:00" }, { "name": "tippyjs/5.x", @@ -17226,6 +17290,7 @@ "issues": "https://github.com/webmozart/path-util/issues", "source": "https://github.com/webmozart/path-util/tree/2.3.0" }, + "abandoned": "symfony/filesystem", "time": "2015-12-17T08:42:14+00:00" }, { @@ -17369,25 +17434,24 @@ }, { "name": "behat/gherkin", - "version": "v4.8.0", + "version": "v4.9.0", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd" + "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/2391482cd003dfdc36b679b27e9f5326bd656acd", - "reference": "2391482cd003dfdc36b679b27e9f5326bd656acd", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4", + "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4", "shasum": "" }, "require": { "php": "~7.2|~8.0" }, "require-dev": { - "cucumber/cucumber": "dev-gherkin-16.0.0", + "cucumber/cucumber": "dev-gherkin-22.0.0", "phpunit/phpunit": "~8|~9", - "symfony/phpunit-bridge": "~3|~4|~5", "symfony/yaml": "~3|~4|~5" }, "suggest": { @@ -17396,7 +17460,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "4.x-dev" } }, "autoload": { @@ -17427,32 +17491,33 @@ ], "support": { "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.8.0" + "source": "https://github.com/Behat/Gherkin/tree/v4.9.0" }, - "time": "2021-02-04T12:44:21+00:00" + "time": "2021-10-12T13:05:09+00:00" }, { "name": "behat/mink", - "version": "v1.8.1", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/minkphp/Mink.git", - "reference": "07c6a9fe3fa98c2de074b25d9ed26c22904e3887" + "reference": "e35f4695de8800fc776af34ebf665ad58ebdd996" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/07c6a9fe3fa98c2de074b25d9ed26c22904e3887", - "reference": "07c6a9fe3fa98c2de074b25d9ed26c22904e3887", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/e35f4695de8800fc776af34ebf665ad58ebdd996", + "reference": "e35f4695de8800fc776af34ebf665ad58ebdd996", "shasum": "" }, "require": { - "php": ">=5.3.1", + "php": ">=5.4", "symfony/css-selector": "^2.7|^3.0|^4.0|^5.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20", - "symfony/debug": "^2.7|^3.0|^4.0", - "symfony/phpunit-bridge": "^3.4.38 || ^5.0.5" + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5 || ^9.5", + "symfony/debug": "^2.7|^3.0|^4.0|^5.0", + "symfony/phpunit-bridge": "^3.4.38 || ^4.4 || ^5.0.5", + "yoast/phpunit-polyfills": "^1.0" }, "suggest": { "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)", @@ -17464,7 +17529,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -17484,7 +17549,7 @@ } ], "description": "Browser controller/emulator abstraction for PHP", - "homepage": "http://mink.behat.org/", + "homepage": "https://mink.behat.org/", "keywords": [ "browser", "testing", @@ -17492,39 +17557,41 @@ ], "support": { "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.8.1" + "source": "https://github.com/minkphp/Mink/tree/v1.9.0" }, - "time": "2020-03-11T15:45:53+00:00" + "time": "2021-10-11T11:58:47+00:00" }, { "name": "behat/mink-browserkit-driver", - "version": "v1.3.4", + "version": "v1.4.1", "source": { "type": "git", "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", - "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee" + "reference": "057926c9da452bac5bfcffb92eb4f3e1ce74dae9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/e3b90840022ebcd544c7b394a3c9597ae242cbee", - "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/057926c9da452bac5bfcffb92eb4f3e1ce74dae9", + "reference": "057926c9da452bac5bfcffb92eb4f3e1ce74dae9", "shasum": "" }, "require": { "behat/mink": "^1.7.1@dev", - "php": ">=5.3.6", + "php": ">=5.4", "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", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.18 || ^8.5 || ^9.5", "symfony/debug": "^2.7|^3.0|^4.0", - "symfony/http-kernel": "~2.3|~3.0|~4.0" + "symfony/http-kernel": "~2.3|~3.0|~4.0", + "yoast/phpunit-polyfills": "^1.0" }, "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -17544,7 +17611,7 @@ } ], "description": "Symfony2 BrowserKit driver for Mink framework", - "homepage": "http://mink.behat.org/", + "homepage": "https://mink.behat.org/", "keywords": [ "Mink", "Symfony2", @@ -17553,37 +17620,36 @@ ], "support": { "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", - "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v1.3.4" + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v1.4.1" }, - "time": "2020-03-11T09:49:45+00:00" + "time": "2021-12-10T14:17:06+00:00" }, { "name": "behat/mink-goutte-driver", - "version": "v1.2.1", + "version": "v1.3.0", "source": { "type": "git", "url": "https://github.com/minkphp/MinkGoutteDriver.git", - "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca" + "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca", - "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca", + "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8139f520f417c81bf9d2f9a171fff400f6adc9ea", + "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea", "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" + "php": ">=5.4" }, "require-dev": { - "symfony/phpunit-bridge": "~2.7|~3.0" + "mink/driver-testsuite": "dev-master" }, "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -17603,7 +17669,7 @@ } ], "description": "Goutte driver for Mink framework", - "homepage": "http://mink.behat.org/", + "homepage": "https://mink.behat.org/", "keywords": [ "browser", "goutte", @@ -17612,9 +17678,9 @@ ], "support": { "issues": "https://github.com/minkphp/MinkGoutteDriver/issues", - "source": "https://github.com/minkphp/MinkGoutteDriver/tree/master" + "source": "https://github.com/minkphp/MinkGoutteDriver/tree/v1.3.0" }, - "time": "2016-03-05T09:04:22+00:00" + "time": "2021-10-12T11:35:46+00:00" }, { "name": "behat/transliterator", @@ -17726,16 +17792,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.4.27", + "version": "v4.4.37", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b" + "reference": "6e81008cac62369871cb6b8de64576ed138e3998" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9629d1524d8ced5a4ec3e94abdbd638b4ec8319b", - "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/6e81008cac62369871cb6b8de64576ed138e3998", + "reference": "6e81008cac62369871cb6b8de64576ed138e3998", "shasum": "" }, "require": { @@ -17778,7 +17844,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v4.4.27" + "source": "https://github.com/symfony/browser-kit/tree/v4.4.37" }, "funding": [ { @@ -17794,26 +17860,26 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:19:41+00:00" + "time": "2022-01-02T09:41:36+00:00" }, { "name": "symfony/config", - "version": "v5.3.4", + "version": "v5.4.3", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "4268f3059c904c61636275182707f81645517a37" + "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/4268f3059c904c61636275182707f81645517a37", - "reference": "4268f3059c904c61636275182707f81645517a37", + "url": "https://api.github.com/repos/symfony/config/zipball/d65e1bd990c740e31feb07d2b0927b8d4df9956f", + "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f", "shasum": "" }, "require": { "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1", - "symfony/filesystem": "^4.4|^5.0", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/filesystem": "^4.4|^5.0|^6.0", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-php80": "^1.16", "symfony/polyfill-php81": "^1.22" @@ -17822,11 +17888,11 @@ "symfony/finder": "<4.4" }, "require-dev": { - "symfony/event-dispatcher": "^4.4|^5.0", - "symfony/finder": "^4.4|^5.0", - "symfony/messenger": "^4.4|^5.0", - "symfony/service-contracts": "^1.1|^2", - "symfony/yaml": "^4.4|^5.0" + "symfony/event-dispatcher": "^4.4|^5.0|^6.0", + "symfony/finder": "^4.4|^5.0|^6.0", + "symfony/messenger": "^4.4|^5.0|^6.0", + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/yaml": "^4.4|^5.0|^6.0" }, "suggest": { "symfony/yaml": "To use the yaml reference dumper" @@ -17857,7 +17923,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v5.3.4" + "source": "https://github.com/symfony/config/tree/v5.4.3" }, "funding": [ { @@ -17873,20 +17939,20 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:40:44+00:00" + "time": "2022-01-03T09:50:52+00:00" }, { "name": "symfony/css-selector", - "version": "v4.4.27", + "version": "v4.4.37", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6" + "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6", - "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/0628e6c6d7c92f1a7bae543959bdc17347be2436", + "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436", "shasum": "" }, "require": { @@ -17923,7 +17989,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v4.4.27" + "source": "https://github.com/symfony/css-selector/tree/v4.4.37" }, "funding": [ { @@ -17939,74 +18005,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:19:41+00:00" - }, - { - "name": "symfony/deprecation-contracts", - "version": "v2.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", - "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.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/v2.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": "2021-03-23T23:28:01+00:00" + "time": "2022-01-02T09:41:36+00:00" }, { "name": "symfony/dom-crawler", @@ -18070,16 +18069,16 @@ }, { "name": "symfony/polyfill-php81", - "version": "v1.23.0", + "version": "v1.24.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "e66119f3de95efc359483f810c4c3e6436279436" + "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436", - "reference": "e66119f3de95efc359483f810c4c3e6436279436", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f", + "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f", "shasum": "" }, "require": { @@ -18096,12 +18095,12 @@ } }, "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" - }, "files": [ "bootstrap.php" ], + "psr-4": { + "Symfony\\Polyfill\\Php81\\": "" + }, "classmap": [ "Resources/stubs" ] @@ -18129,7 +18128,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.24.0" }, "funding": [ { @@ -18145,7 +18144,7 @@ "type": "tidelift" } ], - "time": "2021-05-21T13:25:03+00:00" + "time": "2021-09-13T13:58:11+00:00" } ], "aliases": [], @@ -18170,5 +18169,5 @@ "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "2.1.0" + "plugin-api-version": "2.2.0" } From 44cb10e8e7746792769717a89c15ad8248bf51f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 1 Mar 2022 23:42:01 -0500 Subject: [PATCH 062/236] Upgrade composer info to Drupal 9 & bring more in line w/ Drutopia --- composer.json | 127 ++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 96 insertions(+), 31 deletions(-) diff --git a/composer.json b/composer.json index cffdb6a..ef2cee0 100644 --- a/composer.json +++ b/composer.json @@ -3,94 +3,155 @@ "description": "Agaric site modified from template for composer-based Drupal 8 Drutopia projects.", "type": "project", "license": "GPL-2.0-or-later", + "minimum-stability": "dev", + "prefer-stable": true, "homepage": "https://agaric.coop", + "support": { + "docs": "http://docs.drutopia.org/en/latest" + }, "repositories": { - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" + "drupal/octavia_camouflage": { + "type": "git", + "url": "git@gitlab.com:drutopia/octavia_camouflage.git" + }, + "drupal/drutopia_collection": { + "type": "git", + "url": "git@gitlab.com:drutopia/drutopia_collection.git" }, "drutopia": { "type": "vcs", - "url": "https://github.com/drutopia/drutopia" + "url": "https://gitlab.com/drutopia/drutopia" + }, + "drupal/drutopia_core": { + "type": "git", + "url": "git@gitlab.com:drutopia/drutopia_core.git" + }, + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" } }, "require": { "composer/installers": "^1.9", - "cweagans/composer-patches": "^1.6", + "cweagans/composer-patches": "^1.7", "drupal/admin_links_access_filter": "^1.0@alpha", "drupal/allowed_formats": "^1.1", "drupal/antibot": "^1.2", - "drupal/block_theme_sync": "^1.0@alpha", - "drupal/ckeditor_markdown": "^1.1", + "drupal/backup_migrate": "^5", + "drupal/block_class": "^1.3", + "drupal/ckeditorheight": "^1.3", + "drupal/ckeditor_markdown": "^1.3", + "drupal/classitup": "^1", + "drupal/convert_bundles": "^1.0@alpha", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", - "drupal/core-composer-scaffold": "^8.9", - "drupal/core-recommended": "^8.8", + "drupal/core-composer-scaffold": "^9", + "drupal/core-recommended": "^9", + "drupal/csp": "^1.13", "drupal/customerror": "1.x-dev", - "drupal/diff": "^1.0@RC", + "drupal/diff": "^1.0", "drupal/drd": "^4.0", + "drupal/drd_agent": "^4", "drupal/dropdown_language": "^2.2", - "drupal/drutopia_core": "1.x-dev", + "drupal/drutopia_collection": "dev-8.x-1.x as 1.x-dev", + "drupal/drutopia_core": "dev-8.x-1.x as 1.x-dev", + "drupal/drutopia_paragraph_title": "1.x-dev", "drupal/drutopia_site": "dev-1.x", + "drupal/editor_advanced_link": "^2.0", + "drupal/empty_page": "^3", + "drupal/entity_reference_override": "^2", + "drupal/environment_indicator": "^4.0", + "drupal/field_token_value": "^2", + "drupal/fitvids": "^1.1", + "drupal/fixed_block_content": "^1.0", + "drupal/footnotes": "2.x-dev", + "drupal/geolocation": "^3.2", "drupal/google_analytics": "^2.3", "drupal/honeypot": "^1.29", "drupal/hotjar": "^1.5", "drupal/http_cache_control": "^1.0", "drupal/http_client_error_status": "^1.0", - "drupal/indieweb": "1.x-dev", + "drupal/indieweb": "^1.12", + "drupal/insert": "^1.0", + "drupal/key": "^1.14", + "drupal/link_attributes": "^1.9", + "drupal/linkit": "^6", "drupal/mailsystem": "^4.3", - "drupal/markdown": "^1.2", + "drupal/markdown": "^3", + "drupal/menu_link_config": "^1.0@alpha", "drupal/menu_trail_by_path": "^1.1", - "drupal/migrate_plus": "^4.0", - "drupal/migrate_tools": "^4.0", + "drupal/microformats": "^2", + "drupal/migrate_plus": "^5", + "drupal/migrate_source_csv": "^3", + "drupal/migrate_tools": "^4.1", + "drupal/migrate_upgrade": "^3", "drupal/mimemail": "^1.0@alpha", - "drupal/minimalhtml": "^1.0", + "drupal/minimalhtml": "^1.1", + "drupal/node_view_permissions": "^1.4", + "drupal/noreferrer": "^1.7", "drupal/multiline_config": "^1.0", + "drupal/notfoundpassthrough": "1.x-dev", + "drupal/octavia": "1.x-dev", + "drupal/octavia_camouflage": "dev-8.x-1.x as 1.x-dev", "drupal/paragraphs_features": "^1.4", - "drupal/preview_link": "^1.1", + "drupal/password_policy": "^3.0", + "drupal/preview_link": "^1.7", "drupal/redirect": "^1.2", "drupal/regionincontent": "1.x-dev", + "drupal/role_delegation": "^1.0", "drupal/scheduler": "^1.0", "drupal/scn": "^1.1", "drupal/search404": "^1.0", + "drupal/search_api_saved_searches": "^1.0@alpha", + "drupal/seckit": "^2.0", + "drupal/shield": "^1.4", "drupal/stripe_webform": "^1.1", + "drupal/subpathauto": "^1.0@RC", "drupal/swiftmailer": "^1.0@beta", + "drupal/taxonomy_manager": "^2", "drupal/textarea_widget_for_text": "^1.1", - "drupal/twigsuggest": "1.x-dev", + "drupal/trim": "^1.0", + "drupal/twigsuggest": "^1", + "drupal/urllogin": "^2", + "drupal/view_unpublished": "^1.0", "drupal/ui_patterns": "^1.0@RC", "drupal/viewsreference": "^1.2", "drupal/webform": "^6.0", "drupal/webform_mailchimp": "^5.4", - "drupal/wysiwyg_linebreaks": "^1.9", - "drush/drush": "^10.0", - "drutopia/drutopia": "^1.0-beta1", - "wikimedia/composer-merge-plugin": "^2.0" + "drupal/weight": "^3.3", + "drupal/wysiwyg_linebreaks": "^1.10", + "drush/drush": "^10", + "drutopia/drutopia": "dev-8.x-1.x", + "vlucas/phpdotenv": "^5.1", + "webflo/drupal-finder": "^1.2" }, "require-dev": { "behat/behat": "^3.4", "behat/mink": "^1.7", - "behat/mink-goutte-driver": "^1.2" + "behat/mink-goutte-driver": "^1.2", + "drupal/upgrade_status": "^3" }, - "conflict": { - "drupal/drupal": "*" - }, - "minimum-stability": "dev", - "prefer-stable": true, "config": { "sort-packages": true, "process-timeout": 600, "allow-plugins": { - "composer/installers": true, "cweagans/composer-patches": true, "drupal/core-composer-scaffold": true, - "wikimedia/composer-merge-plugin": true + "composer/installers": true, + "drupal/core-project-message": false } }, + "conflict": { + "drupal/drupal": "*" + }, "extra": { "drupal-scaffold": { "locations": { "web-root": "web/" - } + }, + "allowed-packages": [ + "drupal/ui_patterns" + ] }, "installer-paths": { "web/core": ["type:drupal-core"], @@ -125,5 +186,9 @@ "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" + ] } } From fbc5665ec40571343a6e15e17eeb2fe8e583eb5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 1 Mar 2022 23:44:11 -0500 Subject: [PATCH 063/236] Fix typo in composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ef2cee0..f8ba7b4 100644 --- a/composer.json +++ b/composer.json @@ -185,7 +185,7 @@ "nuke": "scripts/nuke.sh", "pull": "scripts/pull.sh", "pull-files": "drush -y rsync @live:%files @self:%files", - "css": "scripts/css.sh" + "css": "scripts/css.sh", "quick-start": [ "composer install", "php docroot/core/scripts/drupal quick-start drutopia --no-interaction" From 000dab7e9fb54f529b5bbd5b2b3f795e21aeebd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 2 Mar 2022 12:58:11 -0500 Subject: [PATCH 064/236] Uninstall Block Theme Sync module (removed from Drutopia in favor of Skins) --- ...t.snapshot.config_sync.module.block_theme_sync.yml | 11 ----------- config/core.extension.yml | 1 - 2 files changed, 12 deletions(-) delete mode 100644 config/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml b/config/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml deleted file mode 100644 index 488907e..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: 854d3b96-f788-42c9-8061-2f52ee1ce278 -langcode: en -status: true -dependencies: - module: - - block_theme_sync -id: config_sync.module.block_theme_sync -snapshotSet: config_sync -extensionType: module -extensionName: block_theme_sync -items: { } diff --git a/config/core.extension.yml b/config/core.extension.yml index f1179b4..4beb783 100644 --- a/config/core.extension.yml +++ b/config/core.extension.yml @@ -12,7 +12,6 @@ module: better_normalizers: 0 block: 0 block_content: 0 - block_theme_sync: 0 block_visibility_groups: 0 breakpoint: 0 ckeditor: 0 From fec9c52f576ce787adb3fea0edbd1dcffb81e94f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Wed, 2 Mar 2022 12:58:38 -0500 Subject: [PATCH 065/236] Swap out Keegan for David in speaker request form Change brought in from live --- config/webform.webform.speaker_request_agaric.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/webform.webform.speaker_request_agaric.yml b/config/webform.webform.speaker_request_agaric.yml index 1c43618..e29f908 100644 --- a/config/webform.webform.speaker_request_agaric.yml +++ b/config/webform.webform.speaker_request_agaric.yml @@ -131,9 +131,9 @@ elements: | '#options': mlncn: 'Ben Melançon' dinarcon: 'Mauricio Dinarte' - Gnuget: 'David Valdez' wolcen: 'Christopher Thompson' freescholar: 'Micky Metts' + keegan: 'Keegan Rankin' '#empty_option': 'Select an Agaric' '#empty_value': 'Select one' actions: From bd26ecacf7093f7926d3fd8b370549cb20779380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Thu, 3 Mar 2022 21:23:55 -0500 Subject: [PATCH 066/236] Upgrade DDEV configuration --- .ddev/config.yaml | 55 ++++++++++++++++++++++++++++++----------------- 1 file changed, 35 insertions(+), 20 deletions(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 10f9a60..945f342 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,29 +1,22 @@ name: agaric-coop -type: drupal8 +type: drupal9 docroot: web php_version: "7.3" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" -# xdebug_enabled: true +xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] mariadb_version: "10.2" mysql_version: "" +nfs_mount_enabled: false +mutagen_enabled: false webimage_extra_packages: [rake, sassc] use_dns_when_possible: false composer_version: "2" web_environment: [] - -# This config.yaml was created with ddev version v1.17.1 -# webimage: drud/ddev-webserver:v1.17.1 -# dbimage: drud/ddev-dbserver-mariadb-10.3:v1.17.0 -# dbaimage: phpmyadmin:5 -# However we do not recommend explicitly wiring these images into the -# config.yaml as they may break future versions of ddev. -# You can update this config.yaml using 'ddev config'. - # Key features of ddev's config.yaml: # name: # Name of the project, automatically provides @@ -33,7 +26,7 @@ web_environment: [] # docroot: # Relative path to the directory containing index.php. -# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" "8.0" +# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1" # You can explicitly specify the webimage, dbimage, dbaimage lines but this # is not recommended, as the images are often closely tied to ddev's' behavior, @@ -57,6 +50,11 @@ web_environment: [] # "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, # as leaving xdebug enabled all the time is a big performance hit. +# xhprof_enabled: false # Set to true to enable xhprof and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xhprof" to enable xhprof and "ddev xhprof off" to disable it work better, +# as leaving xhprof enabled all the time is a big performance hit. + # webserver_type: nginx-fpm # or apache-fpm # timezone: Europe/Berlin @@ -65,10 +63,10 @@ web_environment: [] # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # For example Europe/Dublin or MST7MDT -# composer_version: "" -# if composer_version:"" it will use the current ddev default composer release. +# composer_version: "2" +# if composer_version:"2" it will use the most recent composer v2 # It can also be set to "1", to get most recent composer v1 -# or "2" for most recent composer v2. +# or "" for the default v2 created at release time. # It can be set to any existing specific composer version. # After first project 'ddev start' this will not be updated until it changes @@ -85,7 +83,7 @@ web_environment: [] # Please take care with this because it can cause great confusion. # upload_dir: custom/upload/dir -# would set the destination path for ddev import-files to custom/upload/dir. +# would set the destination path for ddev import-files to /custom/upload/dir # working_dir: # web: /var/www/html @@ -98,12 +96,17 @@ web_environment: [] # Currently only these containers are supported. Some containers can also be # omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit # the "db" container, several standard features of ddev that access the -# database container will be unusable. +# database container will be unusable. In the global configuration it is also +# possible to omit ddev-router, but not here. # nfs_mount_enabled: false # Great performance improvement but requires host configuration first. # See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container +# mutagen_enabled: false +# Experimental performance improvement using mutagen asynchronous updates. +# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen + # fail_on_hook_fail: False # Decide whether 'ddev start' should be interrupted by a failing hook @@ -127,10 +130,18 @@ web_environment: [] # phpmyadmin_https_port: "8037" # The PHPMyAdmin ports can be changed from the default 8036 and 8037 +# host_phpmyadmin_port: "8036" +# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be specified and bound. + # mailhog_port: "8025" # mailhog_https_port: "8026" # The MailHog ports can be changed from the default 8025 and 8026 +# host_mailhog_port: "8025" +# The mailhog port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be bound directly to localhost if specified here. + # webimage_extra_packages: [php7.4-tidy, php-bcmath] # Extra Debian packages that are needed in the webimage can be added here @@ -159,7 +170,7 @@ web_environment: [] # In this case the user must provide all such settings. # You can inject environment variables into the web container with: -# web_environment: +# web_environment: # - SOMEENV=somevalue # - SOMEOTHERENV=someothervalue @@ -169,8 +180,12 @@ web_environment: [] # This is to enable experimentation with alternate file mounting strategies. # For advanced users only! -# provider: default # Currently "default", "pantheon", "ddev-live" -# +# bind_all_interfaces: false +# If true, host ports will be bound on all network interfaces, +# not just the localhost interface. This means that ports +# will be available on the local network if the host firewall +# allows it. + # Many ddev commands can be extended to run tasks before or after the # ddev command is executed, for example "post-start", "post-import-db", # "pre-composer", "post-composer" From fd68f437ae6761d7b7f00906e62092785a46d823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Thu, 3 Mar 2022 21:27:18 -0500 Subject: [PATCH 067/236] Remove incorrect local drush information --- drush/drush.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 drush/drush.yml diff --git a/drush/drush.yml b/drush/drush.yml deleted file mode 100644 index 03672fa..0000000 --- a/drush/drush.yml +++ /dev/null @@ -1,3 +0,0 @@ -options: - uri: "http://agaric-com.test" - root: "/var/www/drutopia//web" From 2c08a09cc571c495780f86162c7f559fc7fc4cb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 4 Mar 2022 11:44:56 -0500 Subject: [PATCH 068/236] Configure Indieweb to be able to push to Twitter & Mastodon through Bridgy --- config/indieweb_webmention.settings.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/config/indieweb_webmention.settings.yml b/config/indieweb_webmention.settings.yml index 9a49b69..606ebd7 100644 --- a/config/indieweb_webmention.settings.yml +++ b/config/indieweb_webmention.settings.yml @@ -12,13 +12,15 @@ pingback_endpoint: '' pingback_expose_link_tag: false webmention_uid: 1 webmention_log_payload: true -syndication_targets: 'Twitter (bridgy)|https://brid.gy/publish/twitter' +syndication_targets: | + Twitter (bridgy)|https://brid.gy/publish/twitter|1 + Mastodon - social.coop (bridgy)|https://brid.gy/publish/mastodon|1 bridgy_back_link: always send_webmention_handler: disabled -send_custom_url: true +send_custom_url: false send_link_fields: '' -send_log_response: false -send_comment_webmention_field: '' +send_log_response: true +send_comment_webmention_field: indieweb_webmention send_comment_permission_fields: true _core: default_config_hash: bYXASvKSQG0TXFKL-ACHIRzci6Fn4pmrAn9uU4Cpt54 From c69eb0b9ea825d623dcef4bf369dae1374880a47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 4 Mar 2022 11:58:54 -0500 Subject: [PATCH 069/236] Include (hidden) Indieweb fields for syndicating to Mastodon, Twitter --- ....entity_view_display.node.article.full.yml | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/config/core.entity_view_display.node.article.full.yml b/config/core.entity_view_display.node.article.full.yml index 5408b88..fe594bc 100644 --- a/config/core.entity_view_display.node.article.full.yml +++ b/config/core.entity_view_display.node.article.full.yml @@ -31,6 +31,7 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: + label: '' wrappers: header: div left: div @@ -56,6 +57,10 @@ third_party_settings: - field_tags - comment - links + footer: + - indieweb_syndication + - indieweb_bridgypublishtwitter + - indieweb_bridgypublishmastodon fields: node_post_date: plugin_id: node_post_date @@ -130,6 +135,21 @@ content: settings: link: true third_party_settings: { } + indieweb_bridgypublishmastodon: + weight: 11 + region: footer + settings: { } + third_party_settings: { } + indieweb_bridgypublishtwitter: + weight: 10 + region: footer + settings: { } + third_party_settings: { } + indieweb_syndication: + weight: 9 + region: footer + settings: { } + third_party_settings: { } links: weight: 8 region: middle @@ -139,6 +159,5 @@ hidden: body: true field_meta_tags: true field_summary: true - indieweb_bridgypublishtwitter: true - indieweb_syndication: true langcode: true + search_api_excerpt: true From b52b7c9a71e58cc8f86cafc18c0ad3d9c4bc118c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 4 Mar 2022 14:13:49 -0500 Subject: [PATCH 070/236] Commit updated configuration from successful upgrade to Drupal 9 --- config/admin_toolbar.settings.yml | 1 + config/admin_toolbar_tools.settings.yml | 2 ++ config/autosave_form.settings.yml | 1 + ...eld.field.comment.comment.comment_body.yml | 9 ++------ .../field.field.node.people.field_summary.yml | 8 ++----- ...h.quotation_with_image.field_quotation.yml | 8 ++----- ...d.field.paragraph.title.field_subtitle.yml | 8 ++----- ...ield.field.paragraph.title.field_title.yml | 8 ++----- config/search_api.index.action.yml | 1 + config/search_api.index.article.yml | 1 + config/search_api.index.blog.yml | 1 + config/search_api.index.campaign.yml | 1 + config/search_api.index.case_study.yml | 1 + config/search_api.index.content.yml | 1 + config/search_api.index.event.yml | 1 + config/search_api.index.people.yml | 1 + config/search_api.index.resource.yml | 1 + config/search_api.settings.yml | 22 +++++++++++++++++++ .../system.action.webform_archive_action.yml | 11 ++++++++++ config/system.action.webform_close_action.yml | 11 ++++++++++ .../system.action.webform_delete_action.yml | 11 ++++++++++ config/system.action.webform_open_action.yml | 11 ++++++++++ ...system.action.webform_unarchive_action.yml | 11 ++++++++++ config/webform.settings.yml | 15 +++++++++++++ ...bform.attend_the_tech_and_rev_workshop.yml | 3 +++ config/webform.webform.blog_posts.yml | 3 +++ config/webform.webform.capacitacion.yml | 3 +++ config/webform.webform.contact.yml | 3 +++ config/webform.webform.contact_confirm.yml | 3 +++ ....webform.drupal_8_9_content_migrations.yml | 3 +++ config/webform.webform.drutopia_intake.yml | 3 +++ ...bform.webform.drutopia_platform_intake.yml | 3 +++ config/webform.webform.find_it_platform.yml | 3 +++ config/webform.webform.general_services.yml | 3 +++ ....webform.getting_started_with_drupal_9.yml | 3 +++ ....webform.getting_started_with_react_js.yml | 3 +++ config/webform.webform.join_the_movement.yml | 3 +++ ...form.webform.join_the_movement_confirm.yml | 3 +++ config/webform.webform.june_2020_webinars.yml | 3 +++ config/webform.webform.lms.yml | 3 +++ config/webform.webform.migrations.yml | 3 +++ ...rm.webform.migrations_training_confirm.yml | 3 +++ config/webform.webform.newsletter.yml | 3 +++ ....webform.purchase_training_migrate_api.yml | 3 +++ config/webform.webform.request.yml | 3 +++ config/webform.webform.showandtell.yml | 3 +++ ...webform.webform.speaker_request_agaric.yml | 3 +++ ....webform.speaker_request_clayton_dewey.yml | 3 +++ ...bform.speaker_request_mauricio_dinarte.yml | 3 +++ ....webform.speaker_request_michele_metts.yml | 3 +++ ...rm.webform.speaker_request_micky_metts.yml | 3 +++ config/webform.webform.training.yml | 3 +++ config/webform.webform.training_discount.yml | 3 +++ ....webform.training_notification_request.yml | 3 +++ ...webform.webform.training_request_draft.yml | 3 +++ config/webform.webform.workshops.yml | 3 +++ 56 files changed, 211 insertions(+), 31 deletions(-) create mode 100644 config/admin_toolbar.settings.yml create mode 100644 config/admin_toolbar_tools.settings.yml create mode 100644 config/system.action.webform_archive_action.yml create mode 100644 config/system.action.webform_close_action.yml create mode 100644 config/system.action.webform_delete_action.yml create mode 100644 config/system.action.webform_open_action.yml create mode 100644 config/system.action.webform_unarchive_action.yml diff --git a/config/admin_toolbar.settings.yml b/config/admin_toolbar.settings.yml new file mode 100644 index 0000000..5965a31 --- /dev/null +++ b/config/admin_toolbar.settings.yml @@ -0,0 +1 @@ +menu_depth: 4 diff --git a/config/admin_toolbar_tools.settings.yml b/config/admin_toolbar_tools.settings.yml new file mode 100644 index 0000000..2f4de20 --- /dev/null +++ b/config/admin_toolbar_tools.settings.yml @@ -0,0 +1,2 @@ +max_bundle_number: 20 +hoverintent_functionality: true diff --git a/config/autosave_form.settings.yml b/config/autosave_form.settings.yml index 03f89c9..70b39c0 100644 --- a/config/autosave_form.settings.yml +++ b/config/autosave_form.settings.yml @@ -9,3 +9,4 @@ notification: allowed_content_entity_types: { } _core: default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0 +only_on_form_change: false diff --git a/config/field.field.comment.comment.comment_body.yml b/config/field.field.comment.comment.comment_body.yml index b91c87a..23d916d 100644 --- a/config/field.field.comment.comment.comment_body.yml +++ b/config/field.field.comment.comment.comment_body.yml @@ -10,13 +10,8 @@ dependencies: - text third_party_settings: allowed_formats: - minimalhtml: minimalhtml - basic_html: '0' - markdown: '0' - restricted_html: '0' - minimalhtmltitle: '0' - full_html: '0' - plain_text: '0' + allowed_formats: + - minimalhtml _core: default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs id: comment.comment.comment_body diff --git a/config/field.field.node.people.field_summary.yml b/config/field.field.node.people.field_summary.yml index a104e5a..210a612 100644 --- a/config/field.field.node.people.field_summary.yml +++ b/config/field.field.node.people.field_summary.yml @@ -10,12 +10,8 @@ dependencies: - text third_party_settings: allowed_formats: - minimalhtmltitle: minimalhtmltitle - basic_html: '0' - minimalhtml: '0' - restricted_html: '0' - full_html: '0' - plain_text: '0' + allowed_formats: + - minimalhtmltitle _core: default_config_hash: EXOljgShOmy983x8K_RBAJkJ2cWknYTQvOdpbfg3EC4 id: node.people.field_summary diff --git a/config/field.field.paragraph.quotation_with_image.field_quotation.yml b/config/field.field.paragraph.quotation_with_image.field_quotation.yml index e2f3f86..f941dd1 100644 --- a/config/field.field.paragraph.quotation_with_image.field_quotation.yml +++ b/config/field.field.paragraph.quotation_with_image.field_quotation.yml @@ -10,12 +10,8 @@ dependencies: - text third_party_settings: allowed_formats: - minimalhtml: minimalhtml - basic_html: '0' - restricted_html: '0' - minimalhtmltitle: '0' - full_html: '0' - plain_text: '0' + allowed_formats: + - minimalhtml id: paragraph.quotation_with_image.field_quotation field_name: field_quotation entity_type: paragraph diff --git a/config/field.field.paragraph.title.field_subtitle.yml b/config/field.field.paragraph.title.field_subtitle.yml index be30b34..b6b3027 100644 --- a/config/field.field.paragraph.title.field_subtitle.yml +++ b/config/field.field.paragraph.title.field_subtitle.yml @@ -10,12 +10,8 @@ dependencies: - text third_party_settings: allowed_formats: - minimalhtmltitle: minimalhtmltitle - basic_html: '0' - minimalhtml: '0' - restricted_html: '0' - full_html: '0' - plain_text: '0' + allowed_formats: + - minimalhtmltitle id: paragraph.title.field_subtitle field_name: field_subtitle entity_type: paragraph diff --git a/config/field.field.paragraph.title.field_title.yml b/config/field.field.paragraph.title.field_title.yml index e8cf58b..3fa811a 100644 --- a/config/field.field.paragraph.title.field_title.yml +++ b/config/field.field.paragraph.title.field_title.yml @@ -10,12 +10,8 @@ dependencies: - text third_party_settings: allowed_formats: - minimalhtmltitle: minimalhtmltitle - basic_html: '0' - minimalhtml: '0' - restricted_html: '0' - full_html: '0' - plain_text: '0' + allowed_formats: + - minimalhtmltitle id: paragraph.title.field_title field_name: field_title entity_type: paragraph diff --git a/config/search_api.index.action.yml b/config/search_api.index.action.yml index b5bb010..4508c11 100644 --- a/config/search_api.index.action.yml +++ b/config/search_api.index.action.yml @@ -265,4 +265,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.article.yml b/config/search_api.index.article.yml index c19b62f..2a0aa7f 100644 --- a/config/search_api.index.article.yml +++ b/config/search_api.index.article.yml @@ -265,4 +265,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.blog.yml b/config/search_api.index.blog.yml index 822aaef..050bda7 100644 --- a/config/search_api.index.blog.yml +++ b/config/search_api.index.blog.yml @@ -255,4 +255,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.campaign.yml b/config/search_api.index.campaign.yml index 8f4a366..17a5b0f 100644 --- a/config/search_api.index.campaign.yml +++ b/config/search_api.index.campaign.yml @@ -229,4 +229,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.case_study.yml b/config/search_api.index.case_study.yml index 5a3793a..550f683 100644 --- a/config/search_api.index.case_study.yml +++ b/config/search_api.index.case_study.yml @@ -299,4 +299,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.content.yml b/config/search_api.index.content.yml index fa24a1d..8a844ea 100644 --- a/config/search_api.index.content.yml +++ b/config/search_api.index.content.yml @@ -253,4 +253,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.event.yml b/config/search_api.index.event.yml index e742981..02a2c53 100644 --- a/config/search_api.index.event.yml +++ b/config/search_api.index.event.yml @@ -273,4 +273,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.people.yml b/config/search_api.index.people.yml index 75b64c0..486bbd8 100644 --- a/config/search_api.index.people.yml +++ b/config/search_api.index.people.yml @@ -238,4 +238,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.index.resource.yml b/config/search_api.index.resource.yml index d9e0ecd..7e2b056 100644 --- a/config/search_api.index.resource.yml +++ b/config/search_api.index.resource.yml @@ -256,4 +256,5 @@ tracker_settings: options: index_directly: true cron_limit: 50 + track_changes_in_references: true server: database diff --git a/config/search_api.settings.yml b/config/search_api.settings.yml index 6a3ea2e..a625fdf 100644 --- a/config/search_api.settings.yml +++ b/config/search_api.settings.yml @@ -4,3 +4,25 @@ default_tracker: default tracking_page_size: 100 _core: default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE +boost_factors: + - !!float 0 + - 0.1 + - 0.2 + - 0.3 + - 0.5 + - 0.6 + - 0.7 + - 0.8 + - 0.9 + - !!float 1 + - 1.1 + - 1.2 + - 1.3 + - 1.4 + - 1.5 + - !!float 2 + - !!float 3 + - !!float 5 + - !!float 8 + - !!float 13 + - !!float 21 diff --git a/config/system.action.webform_archive_action.yml b/config/system.action.webform_archive_action.yml new file mode 100644 index 0000000..a162bb6 --- /dev/null +++ b/config/system.action.webform_archive_action.yml @@ -0,0 +1,11 @@ +uuid: d1737d27-79b1-4cfa-9d50-fbd23d4bb7e5 +langcode: en +status: true +dependencies: + module: + - webform +id: webform_archive_action +label: 'Archive webform' +type: webform +plugin: webform_archive_action +configuration: { } diff --git a/config/system.action.webform_close_action.yml b/config/system.action.webform_close_action.yml new file mode 100644 index 0000000..20b23c3 --- /dev/null +++ b/config/system.action.webform_close_action.yml @@ -0,0 +1,11 @@ +uuid: 133d1930-4f19-44b4-a70c-f825aadffbbc +langcode: en +status: true +dependencies: + module: + - webform +id: webform_close_action +label: 'Close webform' +type: webform +plugin: webform_close_action +configuration: { } diff --git a/config/system.action.webform_delete_action.yml b/config/system.action.webform_delete_action.yml new file mode 100644 index 0000000..4a17fdf --- /dev/null +++ b/config/system.action.webform_delete_action.yml @@ -0,0 +1,11 @@ +uuid: 566be4f3-1c4d-416f-9da8-caaecf1b7dfe +langcode: en +status: true +dependencies: + module: + - webform +id: webform_delete_action +label: 'Delete webform' +type: webform +plugin: webform_delete_action +configuration: { } diff --git a/config/system.action.webform_open_action.yml b/config/system.action.webform_open_action.yml new file mode 100644 index 0000000..21038b6 --- /dev/null +++ b/config/system.action.webform_open_action.yml @@ -0,0 +1,11 @@ +uuid: acd0d963-47e8-45eb-afbb-18a8a20d5288 +langcode: en +status: true +dependencies: + module: + - webform +id: webform_open_action +label: 'Open webform' +type: webform +plugin: webform_open_action +configuration: { } diff --git a/config/system.action.webform_unarchive_action.yml b/config/system.action.webform_unarchive_action.yml new file mode 100644 index 0000000..4159b41 --- /dev/null +++ b/config/system.action.webform_unarchive_action.yml @@ -0,0 +1,11 @@ +uuid: 6596cd60-03d3-450c-805d-5d270168a695 +langcode: en +status: true +dependencies: + module: + - webform +id: webform_unarchive_action +label: 'Restore webform' +type: webform +plugin: webform_unarchive_action +configuration: { } diff --git a/config/webform.settings.yml b/config/webform.settings.yml index 9bcd62d..5ed97f9 100644 --- a/config/webform.settings.yml +++ b/config/webform.settings.yml @@ -96,6 +96,20 @@ settings: wide: title: Wide width: 1000 + webform_bulk_form: true + webform_bulk_form_actions: + - webform_open_action + - webform_close_action + - webform_archive_action + - webform_unarchive_action + - webform_delete_action + webform_submission_bulk_form: true + webform_submission_bulk_form_actions: + - webform_submission_make_sticky_action + - webform_submission_make_unsticky_action + - webform_submission_make_lock_action + - webform_submission_make_unlock_action + - webform_submission_delete_action assets: css: '' javascript: '' @@ -134,6 +148,7 @@ batch: purge: cron_size: 100 form: + limit: 50 filter_category: '' filter_state: '' element: diff --git a/config/webform.webform.attend_the_tech_and_rev_workshop.yml b/config/webform.webform.attend_the_tech_and_rev_workshop.yml index ae26394..cba708c 100644 --- a/config/webform.webform.attend_the_tech_and_rev_workshop.yml +++ b/config/webform.webform.attend_the_tech_and_rev_workshop.yml @@ -74,6 +74,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.blog_posts.yml b/config/webform.webform.blog_posts.yml index f534366..17bfbb0 100644 --- a/config/webform.webform.blog_posts.yml +++ b/config/webform.webform.blog_posts.yml @@ -67,6 +67,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.capacitacion.yml b/config/webform.webform.capacitacion.yml index 308e2b5..f6a3147 100644 --- a/config/webform.webform.capacitacion.yml +++ b/config/webform.webform.capacitacion.yml @@ -85,6 +85,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.contact.yml b/config/webform.webform.contact.yml index 91191e7..275c7a9 100644 --- a/config/webform.webform.contact.yml +++ b/config/webform.webform.contact.yml @@ -85,6 +85,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.contact_confirm.yml b/config/webform.webform.contact_confirm.yml index 9a2961d..454754c 100644 --- a/config/webform.webform.contact_confirm.yml +++ b/config/webform.webform.contact_confirm.yml @@ -72,6 +72,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.drupal_8_9_content_migrations.yml b/config/webform.webform.drupal_8_9_content_migrations.yml index 8f57dc1..4040a17 100644 --- a/config/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/webform.webform.drupal_8_9_content_migrations.yml @@ -90,6 +90,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.drutopia_intake.yml b/config/webform.webform.drutopia_intake.yml index acbc6cf..61da318 100644 --- a/config/webform.webform.drutopia_intake.yml +++ b/config/webform.webform.drutopia_intake.yml @@ -98,6 +98,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.drutopia_platform_intake.yml b/config/webform.webform.drutopia_platform_intake.yml index 34d3965..f61f80b 100644 --- a/config/webform.webform.drutopia_platform_intake.yml +++ b/config/webform.webform.drutopia_platform_intake.yml @@ -69,6 +69,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.find_it_platform.yml b/config/webform.webform.find_it_platform.yml index ce3fc52..0f64d02 100644 --- a/config/webform.webform.find_it_platform.yml +++ b/config/webform.webform.find_it_platform.yml @@ -60,6 +60,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.general_services.yml b/config/webform.webform.general_services.yml index 570012e..c9745b6 100644 --- a/config/webform.webform.general_services.yml +++ b/config/webform.webform.general_services.yml @@ -74,6 +74,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.getting_started_with_drupal_9.yml b/config/webform.webform.getting_started_with_drupal_9.yml index 24c0695..8d16535 100644 --- a/config/webform.webform.getting_started_with_drupal_9.yml +++ b/config/webform.webform.getting_started_with_drupal_9.yml @@ -90,6 +90,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.getting_started_with_react_js.yml b/config/webform.webform.getting_started_with_react_js.yml index 7d25594..43cd668 100644 --- a/config/webform.webform.getting_started_with_react_js.yml +++ b/config/webform.webform.getting_started_with_react_js.yml @@ -90,6 +90,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.join_the_movement.yml b/config/webform.webform.join_the_movement.yml index 1c1f1c4..6230143 100644 --- a/config/webform.webform.join_the_movement.yml +++ b/config/webform.webform.join_the_movement.yml @@ -67,6 +67,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.join_the_movement_confirm.yml b/config/webform.webform.join_the_movement_confirm.yml index c48655c..edbdc45 100644 --- a/config/webform.webform.join_the_movement_confirm.yml +++ b/config/webform.webform.join_the_movement_confirm.yml @@ -57,6 +57,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.june_2020_webinars.yml b/config/webform.webform.june_2020_webinars.yml index d5b2899..d086a56 100644 --- a/config/webform.webform.june_2020_webinars.yml +++ b/config/webform.webform.june_2020_webinars.yml @@ -70,6 +70,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.lms.yml b/config/webform.webform.lms.yml index a0956e7..e46bb18 100644 --- a/config/webform.webform.lms.yml +++ b/config/webform.webform.lms.yml @@ -75,6 +75,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.migrations.yml b/config/webform.webform.migrations.yml index def8028..3d87361 100644 --- a/config/webform.webform.migrations.yml +++ b/config/webform.webform.migrations.yml @@ -67,6 +67,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.migrations_training_confirm.yml b/config/webform.webform.migrations_training_confirm.yml index 51edb67..f7d6ccb 100644 --- a/config/webform.webform.migrations_training_confirm.yml +++ b/config/webform.webform.migrations_training_confirm.yml @@ -61,6 +61,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.newsletter.yml b/config/webform.webform.newsletter.yml index 05c965e..794114d 100644 --- a/config/webform.webform.newsletter.yml +++ b/config/webform.webform.newsletter.yml @@ -77,6 +77,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.purchase_training_migrate_api.yml b/config/webform.webform.purchase_training_migrate_api.yml index b754eb2..b2ffc06 100644 --- a/config/webform.webform.purchase_training_migrate_api.yml +++ b/config/webform.webform.purchase_training_migrate_api.yml @@ -90,6 +90,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.request.yml b/config/webform.webform.request.yml index 0ee0cab..5fca9f9 100644 --- a/config/webform.webform.request.yml +++ b/config/webform.webform.request.yml @@ -67,6 +67,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.showandtell.yml b/config/webform.webform.showandtell.yml index 07196dd..d7e0c7a 100644 --- a/config/webform.webform.showandtell.yml +++ b/config/webform.webform.showandtell.yml @@ -107,6 +107,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.speaker_request_agaric.yml b/config/webform.webform.speaker_request_agaric.yml index e29f908..12139ef 100644 --- a/config/webform.webform.speaker_request_agaric.yml +++ b/config/webform.webform.speaker_request_agaric.yml @@ -181,6 +181,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.speaker_request_clayton_dewey.yml b/config/webform.webform.speaker_request_clayton_dewey.yml index 6708201..b70229a 100644 --- a/config/webform.webform.speaker_request_clayton_dewey.yml +++ b/config/webform.webform.speaker_request_clayton_dewey.yml @@ -94,6 +94,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.speaker_request_mauricio_dinarte.yml b/config/webform.webform.speaker_request_mauricio_dinarte.yml index 86f813c..13fb3f3 100644 --- a/config/webform.webform.speaker_request_mauricio_dinarte.yml +++ b/config/webform.webform.speaker_request_mauricio_dinarte.yml @@ -94,6 +94,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.speaker_request_michele_metts.yml b/config/webform.webform.speaker_request_michele_metts.yml index a232de8..ff65e5f 100644 --- a/config/webform.webform.speaker_request_michele_metts.yml +++ b/config/webform.webform.speaker_request_michele_metts.yml @@ -94,6 +94,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.speaker_request_micky_metts.yml b/config/webform.webform.speaker_request_micky_metts.yml index 2fda8d6..3b7810c 100644 --- a/config/webform.webform.speaker_request_micky_metts.yml +++ b/config/webform.webform.speaker_request_micky_metts.yml @@ -94,6 +94,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.training.yml b/config/webform.webform.training.yml index f3ad1ae..7742c88 100644 --- a/config/webform.webform.training.yml +++ b/config/webform.webform.training.yml @@ -87,6 +87,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.training_discount.yml b/config/webform.webform.training_discount.yml index 5c70eda..a188f71 100644 --- a/config/webform.webform.training_discount.yml +++ b/config/webform.webform.training_discount.yml @@ -96,6 +96,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.training_notification_request.yml b/config/webform.webform.training_notification_request.yml index 56affc4..8057c73 100644 --- a/config/webform.webform.training_notification_request.yml +++ b/config/webform.webform.training_notification_request.yml @@ -82,6 +82,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.training_request_draft.yml b/config/webform.webform.training_request_draft.yml index 466961c..3e2c8d2 100644 --- a/config/webform.webform.training_request_draft.yml +++ b/config/webform.webform.training_request_draft.yml @@ -76,6 +76,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' diff --git a/config/webform.webform.workshops.yml b/config/webform.webform.workshops.yml index a873fb2..27a8913 100644 --- a/config/webform.webform.workshops.yml +++ b/config/webform.webform.workshops.yml @@ -58,6 +58,9 @@ settings: form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_method: '' + form_action: '' + form_attributes: { } share: false share_node: false share_theme_name: '' From ab6f5e4ea7307b5b7ab76a716af2692eb0c6616b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Fri, 4 Mar 2022 14:20:25 -0500 Subject: [PATCH 071/236] Trust merge plugin to write to files --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f8ba7b4..7945d5c 100644 --- a/composer.json +++ b/composer.json @@ -138,7 +138,8 @@ "cweagans/composer-patches": true, "drupal/core-composer-scaffold": true, "composer/installers": true, - "drupal/core-project-message": false + "drupal/core-project-message": false, + "wikimedia/composer-merge-plugin": true } }, "conflict": { From b9e293afae8ff8d2383137035fa3a12ceeb9c1d3 Mon Sep 17 00:00:00 2001 From: megakeegman Date: Fri, 4 Mar 2022 14:52:04 -0500 Subject: [PATCH 072/236] Add auth ssh to the setup instructions --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f148298..2b1090b 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ To be able to import the configuration, you need to get the initializing databas ``` ddev start +ddev auth ssh ddev composer install ddev . drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb ddev . drush -y rsync @live:%files @self:%files From 0b8eab63997321bcf57d942ccd2c478e48c7610b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sat, 5 Mar 2022 08:55:13 -0500 Subject: [PATCH 073/236] Drop honeypot from composer requirements; Drutopia has it and is requiring a newer version so this was causing conflicts --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index 7945d5c..5113ef8 100644 --- a/composer.json +++ b/composer.json @@ -67,7 +67,6 @@ "drupal/footnotes": "2.x-dev", "drupal/geolocation": "^3.2", "drupal/google_analytics": "^2.3", - "drupal/honeypot": "^1.29", "drupal/hotjar": "^1.5", "drupal/http_cache_control": "^1.0", "drupal/http_client_error_status": "^1.0", From 287baa7afb69dfe20ab1facc40807a1c0001dcaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sat, 5 Mar 2022 09:29:46 -0500 Subject: [PATCH 074/236] Drop dev pinning of Drutopia Site the official release has caught up --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index 5113ef8..c7d1dbc 100644 --- a/composer.json +++ b/composer.json @@ -56,7 +56,6 @@ "drupal/drutopia_collection": "dev-8.x-1.x as 1.x-dev", "drupal/drutopia_core": "dev-8.x-1.x as 1.x-dev", "drupal/drutopia_paragraph_title": "1.x-dev", - "drupal/drutopia_site": "dev-1.x", "drupal/editor_advanced_link": "^2.0", "drupal/empty_page": "^3", "drupal/entity_reference_override": "^2", From 88e740190887a1aeed53fb4140ac14535264ba38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sat, 5 Mar 2022 09:30:21 -0500 Subject: [PATCH 075/236] Drop Multiline Config module it is now a core feature! --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index c7d1dbc..34d03e8 100644 --- a/composer.json +++ b/composer.json @@ -87,7 +87,6 @@ "drupal/minimalhtml": "^1.1", "drupal/node_view_permissions": "^1.4", "drupal/noreferrer": "^1.7", - "drupal/multiline_config": "^1.0", "drupal/notfoundpassthrough": "1.x-dev", "drupal/octavia": "1.x-dev", "drupal/octavia_camouflage": "dev-8.x-1.x as 1.x-dev", From 4e81b6629f81126ceec40dcdfd03f5a070c99370 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 00:22:47 -0500 Subject: [PATCH 076/236] Even though it's being discontinued, Swiftmailer 2 is D9-compatible --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 34d03e8..3c1128e 100644 --- a/composer.json +++ b/composer.json @@ -104,7 +104,7 @@ "drupal/shield": "^1.4", "drupal/stripe_webform": "^1.1", "drupal/subpathauto": "^1.0@RC", - "drupal/swiftmailer": "^1.0@beta", + "drupal/swiftmailer": "^2", "drupal/taxonomy_manager": "^2", "drupal/textarea_widget_for_text": "^1.1", "drupal/trim": "^1.0", From fb18163d9deaf6ea5dc1df6147312c676cdaee71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 00:39:32 -0500 Subject: [PATCH 077/236] Update several modules to new 2.x branches supporting Drupal 9 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 3c1128e..ac35cfd 100644 --- a/composer.json +++ b/composer.json @@ -66,9 +66,9 @@ "drupal/footnotes": "2.x-dev", "drupal/geolocation": "^3.2", "drupal/google_analytics": "^2.3", - "drupal/hotjar": "^1.5", - "drupal/http_cache_control": "^1.0", - "drupal/http_client_error_status": "^1.0", + "drupal/hotjar": "^2", + "drupal/http_cache_control": "^2", + "drupal/http_client_error_status": "^2", "drupal/indieweb": "^1.12", "drupal/insert": "^1.0", "drupal/key": "^1.14", From bc2bfea77c5e9a49505b2ae6df982522bcb56131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 00:43:53 -0500 Subject: [PATCH 078/236] Remove module which has merged into admin toolbar (which is itself part of Drutopia core already) --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index ac35cfd..8ace5cd 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,6 @@ "require": { "composer/installers": "^1.9", "cweagans/composer-patches": "^1.7", - "drupal/admin_links_access_filter": "^1.0@alpha", "drupal/allowed_formats": "^1.1", "drupal/antibot": "^1.2", "drupal/backup_migrate": "^5", From f796e3b62a264b45ef1a46ecdec9e5b97eef4c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 10:05:31 -0500 Subject: [PATCH 079/236] Drop patch that has long since been committed Remove Drupal Core 'search' module dependency from search404 https://www.drupal.org/project/search404/issues/2978837 --- composer.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/composer.json b/composer.json index 8ace5cd..22befa4 100644 --- a/composer.json +++ b/composer.json @@ -167,9 +167,6 @@ }, "enable-patching": true, "patches": { - "drupal/search404": { - "Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch" - }, "drupal/coffee": { "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, From ff627fff138596ebedf35c285c56bfad0c5e084c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 10:05:55 -0500 Subject: [PATCH 080/236] Bump Search404 to currently recommended 2.x branch --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 22befa4..4d52b35 100644 --- a/composer.json +++ b/composer.json @@ -97,7 +97,7 @@ "drupal/role_delegation": "^1.0", "drupal/scheduler": "^1.0", "drupal/scn": "^1.1", - "drupal/search404": "^1.0", + "drupal/search404": "^2", "drupal/search_api_saved_searches": "^1.0@alpha", "drupal/seckit": "^2.0", "drupal/shield": "^1.4", From d4af6b2811cd24156d1f9b1ec43732963ae047c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 10:07:08 -0500 Subject: [PATCH 081/236] Commit updated composer lock file for Drupal 9 (previous commit claiming we were on Drupal 9 already was an accidental lie) --- composer.lock | 8535 +++++++++++++++++++++++++++++++++---------------- 1 file changed, 5721 insertions(+), 2814 deletions(-) diff --git a/composer.lock b/composer.lock index 7c4185e..4a3389c 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "c7e75902610019f3dccba66dd1b8a5f2", + "content-hash": "2722f747f07abe94c9f426dbe6be81e0", "packages": [ { "name": "albertofem/rsync-lib", @@ -58,21 +58,6 @@ }, "time": "2018-01-13T20:13:12+00:00" }, - { - "name": "algolia/places", - "version": "1.19.0", - "dist": { - "type": "tar", - "url": "https://registry.npmjs.org/places.js/-/places.js-1.19.0.tgz" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "algolia.places" - } - }, { "name": "asm89/stack-cors", "version": "1.3.0", @@ -129,6 +114,50 @@ }, "time": "2019-12-24T22:41:47+00:00" }, + { + "name": "barnabywalters/mf-cleaner", + "version": "v0.1.4", + "source": { + "type": "git", + "url": "https://github.com/barnabywalters/php-mf-cleaner.git", + "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/barnabywalters/php-mf-cleaner/zipball/ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4", + "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4", + "shasum": "" + }, + "require-dev": { + "php": ">=5.3", + "phpunit/phpunit": "*" + }, + "suggest": { + "mf2/mf2": "To parse microformats2 structures from (X)HTML" + }, + "type": "library", + "autoload": { + "files": [ + "src/BarnabyWalters/Mf2/Functions.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Barnaby Walters", + "email": "barnaby@waterpigs.co.uk" + } + ], + "description": "Cleans up microformats2 array structures", + "support": { + "issues": "https://github.com/barnabywalters/php-mf-cleaner/issues", + "source": "https://github.com/barnabywalters/php-mf-cleaner/tree/v0.1.4" + }, + "time": "2014-10-06T23:11:15+00:00" + }, { "name": "caxy/php-htmldiff", "version": "v0.1.14", @@ -306,96 +335,6 @@ }, "time": "2020-12-05T05:59:11+00:00" }, - { - "name": "choices/choices", - "version": "9.0.1", - "dist": { - "type": "zip", - "url": "https://github.com/jshjohnson/Choices/archive/v9.0.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "choices" - } - }, - { - "name": "ckeditor/autogrow", - "version": "4.16.1", - "dist": { - "type": "zip", - "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.16.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "ckeditor.autogrow" - } - }, - { - "name": "ckeditor/codemirror", - "version": "v1.17.12", - "dist": { - "type": "zip", - "url": "https://github.com/w8tcha/CKEditor-CodeMirror-Plugin/releases/download/v1.17.12/CKEditor-CodeMirror-Plugin.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "ckeditor.codemirror" - } - }, - { - "name": "ckeditor/fakeobjects", - "version": "4.16.1", - "dist": { - "type": "zip", - "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.16.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "ckeditor.fakeobjects" - } - }, - { - "name": "ckeditor/image", - "version": "4.16.1", - "dist": { - "type": "zip", - "url": "https://download.ckeditor.com/image/releases/image_4.16.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "ckeditor.image" - } - }, - { - "name": "ckeditor/link", - "version": "4.16.1", - "dist": { - "type": "zip", - "url": "https://download.ckeditor.com/link/releases/link_4.16.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "ckeditor.link" - } - }, { "name": "cocur/slugify", "version": "v3.2", @@ -465,21 +404,6 @@ }, "time": "2019-01-31T20:38:55+00:00" }, - { - "name": "codemirror/codemirror", - "version": "5.61.1", - "dist": { - "type": "zip", - "url": "https://github.com/components/codemirror/archive/5.61.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "codemirror" - } - }, { "name": "commerceguys/addressing", "version": "v1.2.2", @@ -696,28 +620,29 @@ }, { "name": "composer/semver", - "version": "1.5.1", + "version": "3.2.6", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" + "reference": "83e511e247de329283478496f7a1e114c9517506" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", - "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506", + "reference": "83e511e247de329283478496f7a1e114c9517506", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0" + "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^4.5 || ^5.0.5" + "phpstan/phpstan": "^0.12.54", + "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { @@ -756,96 +681,56 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/1.5.1" + "source": "https://github.com/composer/semver/tree/3.2.6" }, - "time": "2020-01-13T12:06:48+00:00" + "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": "2021-10-25T11:34:17+00:00" }, { "name": "consolidation/annotated-command", - "version": "2.12.2", + "version": "4.5.2", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "2472a23610cba1d86dcb783a81a21259473b059e" + "reference": "24c1529436b4f4beec3d19aab71fd127817f47ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/2472a23610cba1d86dcb783a81a21259473b059e", - "reference": "2472a23610cba1d86dcb783a81a21259473b059e", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/24c1529436b4f4beec3d19aab71fd127817f47ef", + "reference": "24c1529436b4f4beec3d19aab71fd127817f47ef", "shasum": "" }, "require": { - "consolidation/output-formatters": "^3.5.1", - "php": ">=5.4.5", - "psr/log": "^1", - "symfony/console": "^2.8|^3|^4", - "symfony/event-dispatcher": "^2.5|^3|^4", - "symfony/finder": "^2.5|^3|^4|^5" + "consolidation/output-formatters": "^4.1.1", + "php": ">=7.1.3", + "psr/log": "^1|^2", + "symfony/console": "^4.4.8|^5|^6", + "symfony/event-dispatcher": "^4.4.8|^5|^6", + "symfony/finder": "^4.4.8|^5|^6" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^2.7" + "composer-runtime-api": "^2.0", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "finder5": { - "require": { - "symfony/finder": "^5" - }, - "config": { - "platform": { - "php": "7.2.5" - } - } - }, - "symfony4": { - "require": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - }, - "scenario-options": { - "create-lockfile": "false" - } - }, - "phpunit4": { - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - } - }, "branch-alias": { - "dev-master": "2.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { @@ -866,9 +751,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/2.12.2" + "source": "https://github.com/consolidation/annotated-command/tree/4.5.2" }, - "time": "2022-01-03T00:23:44+00:00" + "time": "2022-02-20T16:36:18+00:00" }, { "name": "consolidation/config", @@ -1027,74 +912,32 @@ }, { "name": "consolidation/log", - "version": "1.1.1", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a" + "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a", - "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a", + "url": "https://api.github.com/repos/consolidation/log/zipball/3ad08dc57e8aff9400111bad36beb0ed387fe6a9", + "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9", "shasum": "" }, "require": { - "php": ">=5.4.5", - "psr/log": "^1.0", - "symfony/console": "^2.8|^3|^4" + "php": ">=7.1.3", + "psr/log": "^1 || ^2", + "symfony/console": "^4 || ^5 || ^6" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^2" + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "symfony4": { - "require": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - }, - "phpunit4": { - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - } - }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -1115,101 +958,45 @@ "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/master" + "source": "https://github.com/consolidation/log/tree/2.1.1" }, - "time": "2019-01-01T17:30:51+00:00" + "time": "2022-02-24T04:27:32+00:00" }, { "name": "consolidation/output-formatters", - "version": "3.5.1", + "version": "4.2.2", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "0d38f13051ef05c223a2bb8e962d668e24785196" + "reference": "d57992bf81ead908ee21cd94b46ed65afa2e785b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/0d38f13051ef05c223a2bb8e962d668e24785196", - "reference": "0d38f13051ef05c223a2bb8e962d668e24785196", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/d57992bf81ead908ee21cd94b46ed65afa2e785b", + "reference": "d57992bf81ead908ee21cd94b46ed65afa2e785b", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4.0", - "symfony/console": "^2.8|^3|^4", - "symfony/finder": "^2.5|^3|^4|^5" + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "php": ">=7.1.3", + "symfony/console": "^4|^5|^6", + "symfony/finder": "^4|^5|^6" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5.7.27", - "squizlabs/php_codesniffer": "^2.7", - "symfony/var-dumper": "^2.8|^3|^4", - "victorjonsson/markdowndocs": "^1.3" + "php-coveralls/php-coveralls": "^2.4.2", + "phpunit/phpunit": ">=7", + "squizlabs/php_codesniffer": "^3", + "symfony/var-dumper": "^4|^5|^6", + "symfony/yaml": "^4|^5|^6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { "symfony/var-dumper": "For using the var_dump formatter" }, "type": "library", "extra": { - "scenarios": { - "finder5": { - "require": { - "symfony/finder": "^5" - }, - "config": { - "platform": { - "php": "7.2.5" - } - } - }, - "symfony4": { - "require": { - "symfony/console": "^4.0" - }, - "require-dev": { - "phpunit/phpunit": "^6" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony3": { - "require": { - "symfony/console": "^3.4", - "symfony/finder": "^3.4", - "symfony/var-dumper": "^3.4" - }, - "config": { - "platform": { - "php": "5.6.32" - } - } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - }, - "scenario-options": { - "create-lockfile": "false" - } - } - }, "branch-alias": { - "dev-master": "3.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { @@ -1230,54 +1017,55 @@ "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/3.5.1" + "source": "https://github.com/consolidation/output-formatters/tree/4.2.2" }, - "time": "2020-10-11T04:15:32+00:00" + "time": "2022-02-13T15:28:30+00:00" }, { "name": "consolidation/robo", - "version": "1.5.0", + "version": "2.2.2", "source": { "type": "git", "url": "https://github.com/consolidation/Robo.git", - "reference": "12bf6b608057604a283e9e597edfed36ba071631" + "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/12bf6b608057604a283e9e597edfed36ba071631", - "reference": "12bf6b608057604a283e9e597edfed36ba071631", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c", + "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c", "shasum": "" }, "require": { - "consolidation/annotated-command": "^2.12.1 || ^4.1", - "consolidation/config": "^1.2.1", - "consolidation/log": "^1.1.1 || ^2", - "consolidation/output-formatters": "^3.5.1 || ^4.1", - "consolidation/self-update": "^1.1.5 || ^2", - "grasmash/yaml-expander": "^1.4", + "consolidation/annotated-command": "^4.2.1", + "consolidation/config": "^1.2.1|^2", + "consolidation/log": "^1.1.1|^2.0.1", + "consolidation/output-formatters": "^4.1.1", + "consolidation/self-update": "^1.2", "league/container": "^2.4.1", - "php": ">=5.5.0", - "symfony/console": "^2.8 || ^3 || ^4", - "symfony/event-dispatcher": "^2.5 || ^3 || ^4", - "symfony/filesystem": "^2.5 || ^3 || ^4", - "symfony/finder": "^2.5 || ^3 || ^4 || ^5", - "symfony/process": "^2.5 || ^3 || ^4" + "php": ">=7.1.3", + "symfony/console": "^4.4.11|^5", + "symfony/event-dispatcher": "^4.4.11|^5", + "symfony/filesystem": "^4.4.11|^5", + "symfony/finder": "^4.4.11|^5", + "symfony/process": "^4.4.11|^5", + "symfony/yaml": "^4.0 || ^5.0" }, - "replace": { - "codegyre/robo": "< 1.0" + "conflict": { + "codegyre/robo": "*" }, "require-dev": { "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5.7.27", + "php-coveralls/php-coveralls": "^2.2", + "phpdocumentor/reflection-docblock": "^4.3.2", + "phpunit/phpunit": "^6.5.14", "squizlabs/php_codesniffer": "^3" }, "suggest": { "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", - "natxet/CssMin": "For minifying CSS files in taskMinify", + "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." }, @@ -1287,48 +1075,29 @@ "type": "library", "extra": { "scenarios": { - "finder5": { - "require": { - "symfony/finder": "^5" - }, - "config": { - "platform": { - "php": "7.2.5" - } - } - }, "symfony4": { "require": { - "symfony/console": "^4" + "symfony/console": "^4.4.11", + "symfony/event-dispatcher": "^4.4.11", + "symfony/filesystem": "^4.4.11", + "symfony/finder": "^4.4.11", + "symfony/process": "^4.4.11", + "phpunit/phpunit": "^6", + "nikic/php-parser": "^2" }, + "remove": [ + "codeception/phpunit-wrapper" + ], "config": { "platform": { "php": "7.1.3" } } - }, - "symfony2": { - "require": { - "symfony/console": "^2.8" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.5.9" - } - }, - "scenario-options": { - "create-lockfile": "false" - } } }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev", + "dev-main": "2.x-dev" } }, "autoload": { @@ -1349,9 +1118,9 @@ "description": "Modern task runner", "support": { "issues": "https://github.com/consolidation/Robo/issues", - "source": "https://github.com/consolidation/Robo/tree/1.5.0" + "source": "https://github.com/consolidation/Robo/tree/2.2.2" }, - "time": "2021-10-08T03:51:31+00:00" + "time": "2020-12-18T22:09:18+00:00" }, { "name": "consolidation/self-update", @@ -1467,52 +1236,34 @@ }, { "name": "consolidation/site-process", - "version": "2.1.0", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "f3211fa4c60671c6f068184221f06f932556e443" + "reference": "9ef08d471573d6a56405b06ef6830dd70c883072" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443", - "reference": "f3211fa4c60671c6f068184221f06f932556e443", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/9ef08d471573d6a56405b06ef6830dd70c883072", + "reference": "9ef08d471573d6a56405b06ef6830dd70c883072", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1", + "consolidation/config": "^1.2.1|^2", "consolidation/site-alias": "^3", - "php": ">=5.6.0", - "symfony/process": "^3.4" + "php": ">=7.1.3", + "symfony/console": "^2.8.52|^3|^4.4|^5", + "symfony/process": "^4.3.4|^5" }, "require-dev": { - "consolidation/robo": "^1.3", - "g1a/composer-test-scenarios": "^3", - "knplabs/github-api": "^2.7", - "php-coveralls/php-coveralls": "^1", - "php-http/guzzle6-adapter": "^1.1", - "phpunit/phpunit": "^6", - "squizlabs/php_codesniffer": "^2.8" + "phpunit/phpunit": "^7.5.20|^8.5.14", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "phpunit5": { - "require-dev": { - "phpunit/phpunit": "^5.7.27" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.6.33" - } - } - } - }, "branch-alias": { - "dev-master": "0.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { @@ -1537,9 +1288,9 @@ "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", "support": { "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/2.1.0" + "source": "https://github.com/consolidation/site-process/tree/4.2.0" }, - "time": "2019-09-10T17:56:24+00:00" + "time": "2022-02-19T04:09:55+00:00" }, { "name": "container-interop/container-interop", @@ -1798,32 +1549,32 @@ }, { "name": "doctrine/annotations", - "version": "v1.4.0", + "version": "1.13.2", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + "reference": "5b668aef16090008790395c02c893b1ba13f7e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/5b668aef16090008790395c02c893b1ba13f7e08", + "reference": "5b668aef16090008790395c02c893b1ba13f7e08", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": "^5.6 || ^7.0" + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0", + "psr/cache": "^1 || ^2 || ^3" }, "require-dev": { - "doctrine/cache": "1.*", - "phpunit/phpunit": "^5.7" + "doctrine/cache": "^1.11 || ^2.0", + "doctrine/coding-standard": "^6.0 || ^8.1", + "phpstan/phpstan": "^0.12.20", + "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", + "symfony/cache": "^4.4 || ^5.2" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" @@ -1834,6 +1585,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -1842,10 +1597,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -1856,7 +1607,7 @@ } ], "description": "Docblock Annotations Parser", - "homepage": "http://www.doctrine-project.org", + "homepage": "https://www.doctrine-project.org/projects/annotations.html", "keywords": [ "annotations", "docblock", @@ -1864,114 +1615,37 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/v1.4.0" + "source": "https://github.com/doctrine/annotations/tree/1.13.2" }, - "time": "2017-02-24T16:22:25+00:00" - }, - { - "name": "doctrine/cache", - "version": "v1.6.2", - "source": { - "type": "git", - "url": "https://github.com/doctrine/cache.git", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", - "shasum": "" - }, - "require": { - "php": "~5.5|~7.0" - }, - "conflict": { - "doctrine/common": ">2.2,<2.4" - }, - "require-dev": { - "phpunit/phpunit": "~4.8|~5.0", - "predis/predis": "~1.0", - "satooshi/php-coveralls": "~0.6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.6.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" - } - }, - "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": "Caching library offering an object-oriented API for many cache backends", - "homepage": "http://www.doctrine-project.org", - "keywords": [ - "cache", - "caching" - ], - "support": { - "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/1.6.x" - }, - "time": "2017-07-22T12:49:21+00:00" + "time": "2021-08-05T19:00:23+00:00" }, { "name": "doctrine/collections", - "version": "v1.4.0", + "version": "1.6.8", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" + "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", + "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af", + "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1.3 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "~0.1@dev", - "phpunit/phpunit": "^5.7" + "doctrine/coding-standard": "^9.0", + "phpstan/phpstan": "^0.12", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", + "vimeo/psalm": "^4.2.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } - }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Collections\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "notification-url": "https://packagist.org/downloads/", @@ -1979,6 +1653,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -1987,10 +1665,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -2000,115 +1674,41 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Collections Abstraction library", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", "keywords": [ "array", "collections", - "iterator" + "iterators", + "php" ], "support": { "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/master" + "source": "https://github.com/doctrine/collections/tree/1.6.8" }, - "time": "2017-01-03T10:49:41+00:00" + "time": "2021-08-10T18:51:53+00:00" }, { - "name": "doctrine/common", - "version": "v2.7.3", + "name": "doctrine/lexer", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/doctrine/common.git", - "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" + "url": "https://github.com/doctrine/lexer.git", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", - "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", "shasum": "" }, "require": { - "doctrine/annotations": "1.*", - "doctrine/cache": "1.*", - "doctrine/collections": "1.*", - "doctrine/inflector": "1.*", - "doctrine/lexer": "1.*", - "php": "~5.6|~7.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^5.4.6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.7.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "Common Library for Doctrine projects", - "homepage": "http://www.doctrine-project.org", - "keywords": [ - "annotations", - "collections", - "eventmanager", - "persistence", - "spl" - ], - "support": { - "issues": "https://github.com/doctrine/common/issues", - "source": "https://github.com/doctrine/common/tree/v2.7.3" - }, - "time": "2017-07-22T08:35:12+00:00" - }, - { - "name": "doctrine/inflector", - "version": "v1.2.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/inflector.git", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", - "shasum": "" - }, - "require": { - "php": "^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.2" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" }, "type": "library", "extra": { @@ -2116,76 +1716,6 @@ "dev-master": "1.2.x-dev" } }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "Common String Manipulations with regard to casing and singular/plural rules.", - "homepage": "http://www.doctrine-project.org", - "keywords": [ - "inflection", - "pluralize", - "singularize", - "string" - ], - "support": { - "source": "https://github.com/doctrine/inflector/tree/master" - }, - "time": "2017-07-22T12:18:28+00:00" - }, - { - "name": "doctrine/lexer", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "shasum": "" - }, - "require": { - "php": ">=5.3.2" - }, - "require-dev": { - "phpunit/phpunit": "^4.5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" @@ -2196,14 +1726,14 @@ "MIT" ], "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -2220,27 +1750,125 @@ ], "support": { "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.0.2" + "source": "https://github.com/doctrine/lexer/tree/1.2.1" }, - "time": "2019-06-08T11:03:04+00:00" + "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": "2020-05-25T17:44:05+00:00" }, { - "name": "drupal/address", - "version": "1.9.0", + "name": "doctrine/reflection", + "version": "1.2.2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.9" + "url": "https://github.com/doctrine/reflection.git", + "reference": "fa587178be682efe90d005e3a322590d6ebb59a5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "c7e6406d88c6d6be9e8fe0091040d67012bdbf05" + "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5", + "reference": "fa587178be682efe90d005e3a322590d6ebb59a5", + "shasum": "" }, "require": { - "commerceguys/addressing": "^1.0.7", - "drupal/core": "^8.8 || ^9" + "doctrine/annotations": "^1.0", + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/common": "<2.9" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0 || ^8.2.0", + "doctrine/common": "^2.10", + "phpstan/phpstan": "^0.11.0 || ^0.12.20", + "phpstan/phpstan-phpunit": "^0.11.0 || ^0.12.16", + "phpunit/phpunit": "^7.5 || ^9.1.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", + "homepage": "https://www.doctrine-project.org/projects/reflection.html", + "keywords": [ + "reflection", + "static" + ], + "support": { + "issues": "https://github.com/doctrine/reflection/issues", + "source": "https://github.com/doctrine/reflection/tree/1.2.2" + }, + "abandoned": "roave/better-reflection", + "time": "2020-10-27T21:46:55+00:00" + }, + { + "name": "drupal/address", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/address.git", + "reference": "8.x-1.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "bbe61eb51da9d9b2a7ab247f90426836eb9b6f25" + }, + "require": { + "commerceguys/addressing": "^1.2.0", + "drupal/core": "^9.2 || ^10", + "php": "^7.3 || ^8.0" }, "require-dev": { "drupal/token": "^1.0" @@ -2248,8 +1876,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1604422821", + "version": "8.x-1.10", + "datestamp": "1643715177", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2296,75 +1924,28 @@ "source": "https://git.drupalcode.org/project/address" } }, - { - "name": "drupal/admin_links_access_filter", - "version": "1.0.0-alpha3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/admin_links_access_filter.git", - "reference": "8.x-1.0-alpha3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_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": { - "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": "https://git.drupalcode.org/project/admin_links_access_filter" - } - }, { "name": "drupal/admin_toolbar", - "version": "3.1.0", + "version": "2.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "3.1.0" + "reference": "8.x-2.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.1.0.zip", - "reference": "3.1.0", - "shasum": "7b596d7de04faca747ba3e5216c2e819aae71f40" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip", + "reference": "8.x-2.5", + "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb" }, "require": { - "drupal/core": "^8.8.0 || ^9.0 || ^10.0" - }, - "require-dev": { - "drupal/admin_toolbar_tools": "*" + "drupal/core": "^8.8.0 || ^9.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.0", - "datestamp": "1643742891", + "version": "8.x-2.5", + "datestamp": "1629907119", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2783,6 +2364,72 @@ "source": "https://git.drupalcode.org/project/autosave_form" } }, + { + "name": "drupal/backup_migrate", + "version": "5.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/backup_migrate.git", + "reference": "5.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.1.zip", + "reference": "5.0.1", + "shasum": "22b7adf43277d906233957bbad946a5ae3093cbf" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "suggest": { + "defuse/php-encryption": "Optional encryption of saved backups." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "5.0.1", + "datestamp": "1625856246", + "security-coverage": { + "status": "covered", + "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_normalizers", "version": "1.0.0-beta4", @@ -2845,30 +2492,30 @@ } }, { - "name": "drupal/block_theme_sync", - "version": "1.0.0-alpha2", + "name": "drupal/block_class", + "version": "1.3.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/block_theme_sync.git", - "reference": "8.x-1.0-alpha2" + "url": "https://git.drupalcode.org/project/block_class.git", + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_theme_sync-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "2cae7d62b1c3388dc3b4c43bd548bece52d74752" + "url": "https://ftp.drupal.org/files/projects/block_class-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "29cfdb646ef83210f0eced30b38243339158fe3f" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1483387143", + "version": "8.x-1.3", + "datestamp": "1615217722", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -2878,22 +2525,71 @@ ], "authors": [ { - "name": "gnuget", - "homepage": "https://www.drupal.org/user/992990" + "name": "Todd Nienkerk", + "homepage": "https://www.drupal.org/u/todd-nienkerk", + "role": "Maintainer" }, { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" + "name": "Renato Gonçalves (RenatoG)", + "homepage": "https://www.drupal.org/u/RenatoG", + "email": "renatog@ciandt.com", + "role": "Maintainer" }, { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" + "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": "Subscribe to block updates for source themes.", - "homepage": "https://www.drupal.org/project/block_theme_sync", + "description": "Allows assigning classes to Blocks.", + "homepage": "https://www.drupal.org/project/block_class", + "keywords": [ + "Drupal" + ], "support": { - "source": "https://git.drupalcode.org/project/block_theme_sync" + "source": "https://git.drupalcode.org/project/block_class", + "issues": "https://www.drupal.org/project/issues/block_class", + "irc": "irc://irc.freenode.org/drupal-contribute" } }, { @@ -3137,29 +2833,26 @@ }, { "name": "drupal/ckeditor_markdown", - "version": "1.2.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ckeditor_markdown.git", - "reference": "8.x-1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditor_markdown-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "73efabe8c4d86ab73b21bd0b8f5cece8688c1b48" + "reference": "d1260c19334b67a1bc34bce9865c75f38b01d04c" }, "require": { "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1580498736", + "version": "8.x-1.2+1-dev", + "datestamp": "1589983208", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -3231,6 +2924,58 @@ "source": "https://git.drupalcode.org/project/ckeditorheight" } }, + { + "name": "drupal/classitup", + "version": "1.0.0-beta4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/classitup.git", + "reference": "8.x-1.0-beta4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/classitup-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "8144f3c85cb084265c48ad265e71d254856a8cd2" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-beta4", + "datestamp": "1625407513", + "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": "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", @@ -3348,26 +3093,26 @@ }, { "name": "drupal/components", - "version": "1.1.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/components.git", - "reference": "8.x-1.1" + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/components-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "72af8ff1ca842556ee4b95335595c24703acdb75" + "url": "https://ftp.drupal.org/files/projects/components-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "9b083c2f845ff2e1a1632efcf24f88cecd7479cc" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1556870881", + "version": "8.x-2.4", + "datestamp": "1618861606", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3381,15 +3126,16 @@ "authors": [ { "name": "JohnAlbin", - "homepage": "https://www.drupal.org/user/32095" + "homepage": "https://www.drupal.org/user/32095", + "email": "virtually.johnalbin@gmail.com" }, { "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" } ], - "description": "Registers “component libraries” defined in modules and themes with the Twig system", - "homepage": "https://www.drupal.org/project/components", + "description": "Registers folders of components defined by your theme or module as Twig namespaces", + "homepage": "https://drupal.org/project/components", "support": { "source": "https://git.drupalcode.org/project/components" } @@ -4169,26 +3915,69 @@ } }, { - "name": "drupal/core", - "version": "8.9.20", + "name": "drupal/convert_bundles", + "version": "1.0.0-alpha7", "source": { "type": "git", - "url": "https://github.com/drupal/core.git", - "reference": "39e2e1c32498338921923af66a90cb4a23a5b389" + "url": "https://git.drupalcode.org/project/convert_bundles.git", + "reference": "8.x-1.0-alpha7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389", - "reference": "39e2e1c32498338921923af66a90cb4a23a5b389", + "url": "https://ftp.drupal.org/files/projects/convert_bundles-8.x-1.0-alpha7.zip", + "reference": "8.x-1.0-alpha7", + "shasum": "54687536c1ebbbc19b28d44ccee903cee497562c" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha7", + "datestamp": "1621952571", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "el1_1el", + "homepage": "https://www.drupal.org/user/1795292" + } + ], + "description": "Convert entity bundles from one value to another", + "homepage": "https://www.drupal.org/project/convert_bundles", + "support": { + "source": "https://git.drupalcode.org/project/convert_bundles" + } + }, + { + "name": "drupal/core", + "version": "9.3.7", + "source": { + "type": "git", + "url": "https://github.com/drupal/core.git", + "reference": "a768174b00fa088027d460a80a13550e624b9bf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core/zipball/a768174b00fa088027d460a80a13550e624b9bf8", + "reference": "a768174b00fa088027d460a80a13550e624b9bf8", "shasum": "" }, "require": { "asm89/stack-cors": "^1.1", - "composer/semver": "^1.0", - "doctrine/annotations": "^1.4", - "doctrine/common": "^2.7", - "easyrdf/easyrdf": "^0.9", - "egulias/email-validator": "^2.0", + "composer/semver": "^3.0", + "doctrine/annotations": "^1.12", + "doctrine/reflection": "^1.1", + "egulias/email-validator": "^2.1.22|^3.0", "ext-date": "*", "ext-dom": "*", "ext-filter": "*", @@ -4202,34 +3991,34 @@ "ext-spl": "*", "ext-tokenizer": "*", "ext-xml": "*", - "guzzlehttp/guzzle": "^6.3", - "laminas/laminas-diactoros": "^1.8", + "guzzlehttp/guzzle": "^6.5.2", + "laminas/laminas-diactoros": "^2.1", "laminas/laminas-feed": "^2.12", "masterminds/html5": "^2.1", "pear/archive_tar": "^1.4.14", - "php": "^7.0.8", + "php": ">=7.3.0", "psr/log": "^1.0", "stack/builder": "^1.0", - "symfony-cmf/routing": "^1.4", - "symfony/class-loader": "~3.4.0", - "symfony/console": "~3.4.0", - "symfony/dependency-injection": "~3.4.26", - "symfony/event-dispatcher": "~3.4.0", - "symfony/http-foundation": "~3.4.35", - "symfony/http-kernel": "~3.4.14", + "symfony-cmf/routing": "^2.1", + "symfony/console": "^4.4", + "symfony/dependency-injection": "^4.4", + "symfony/event-dispatcher": "^4.4", + "symfony/http-foundation": "^4.4.7", + "symfony/http-kernel": "^4.4", + "symfony/mime": "^5.4", "symfony/polyfill-iconv": "^1.0", - "symfony/process": "~3.4.0", - "symfony/psr-http-message-bridge": "^1.1.2", - "symfony/routing": "~3.4.0", - "symfony/serializer": "~3.4.0", - "symfony/translation": "~3.4.0", - "symfony/validator": "~3.4.0", - "symfony/yaml": "~3.4.5", - "twig/twig": "^1.38.2", + "symfony/polyfill-php80": "^1.16", + "symfony/process": "^4.4", + "symfony/psr-http-message-bridge": "^2.0", + "symfony/routing": "^4.4", + "symfony/serializer": "^4.4", + "symfony/translation": "^4.4", + "symfony/validator": "^4.4", + "symfony/yaml": "^4.4.19", + "twig/twig": "^2.12.0", "typo3/phar-stream-wrapper": "^3.1.3" }, "conflict": { - "drupal/pathauto": "<1.6", "drush/drush": "<8.1.10" }, "replace": { @@ -4242,10 +4031,10 @@ "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/ckeditor5": "self.version", "drupal/claro": "self.version", "drupal/classy": "self.version", "drupal/color": "self.version", @@ -4268,6 +4057,7 @@ "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", @@ -4314,6 +4104,7 @@ "drupal/migrate_drupal_ui": "self.version", "drupal/minimal": "self.version", "drupal/node": "self.version", + "drupal/olivero": "self.version", "drupal/options": "self.version", "drupal/page_cache": "self.version", "drupal/path": "self.version", @@ -4327,7 +4118,6 @@ "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", @@ -4360,7 +4150,7 @@ "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", "[web-root]/index.php": "assets/scaffold/files/index.php", "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", - "[web-root]/README.txt": "assets/scaffold/files/drupal.README.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", @@ -4377,6 +4167,10 @@ } }, "autoload": { + "files": [ + "includes/bootstrap.inc", + "includes/guzzle_php81_shim.php" + ], "psr-4": { "Drupal\\Core\\": "lib/Drupal/Core", "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver", @@ -4384,11 +4178,30 @@ }, "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/Driver/mysql/Connection.php", + "lib/Drupal/Core/Database/Driver/pgsql/Connection.php", + "lib/Drupal/Core/Database/Driver/sqlite/Connection.php", + "lib/Drupal/Core/Database/Statement.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/Http/InputBag.php", + "lib/Drupal/Core/Installer/InstallerRedirectTrait.php", "lib/Drupal/Core/Site/Settings.php" ] }, @@ -4398,27 +4211,27 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/8.9.20" + "source": "https://github.com/drupal/core/tree/9.3.7" }, - "time": "2021-11-17T21:24:28+00:00" + "time": "2022-03-03T09:23:53+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "8.9.20", + "version": "9.3.7", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d" + "reference": "a9dd9def8891e1c388719474720b57d3fe929a2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d", - "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/a9dd9def8891e1c388719474720b57d3fe929a2f", + "reference": "a9dd9def8891e1c388719474720b57d3fe929a2f", "shasum": "" }, "require": { "composer-plugin-api": "^1 || ^2", - "php": ">=7.0.8" + "php": ">=7.3.0" }, "conflict": { "drupal-composer/drupal-scaffold": "*" @@ -4448,80 +4261,81 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4" + "source": "https://github.com/drupal/core-composer-scaffold/tree/9.3.7" }, - "time": "2020-08-07T22:30:30+00:00" + "time": "2022-02-24T17:40:56+00:00" }, { "name": "drupal/core-recommended", - "version": "8.9.20", + "version": "9.3.7", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1" + "reference": "29f6f29672861a5719701a59aae26aafbb4c9495" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1", - "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/29f6f29672861a5719701a59aae26aafbb4c9495", + "reference": "29f6f29672861a5719701a59aae26aafbb4c9495", "shasum": "" }, "require": { "asm89/stack-cors": "1.3.0", - "composer/semver": "1.5.1", - "doctrine/annotations": "v1.4.0", - "doctrine/cache": "v1.6.2", - "doctrine/collections": "v1.4.0", - "doctrine/common": "v2.7.3", - "doctrine/inflector": "v1.2.0", - "doctrine/lexer": "1.0.2", - "drupal/core": "8.9.20", - "easyrdf/easyrdf": "0.9.1", - "egulias/email-validator": "2.1.17", - "guzzlehttp/guzzle": "6.5.4", - "guzzlehttp/promises": "v1.3.1", - "guzzlehttp/psr7": "1.6.1", - "laminas/laminas-diactoros": "1.8.7p2", - "laminas/laminas-escaper": "2.6.1", - "laminas/laminas-feed": "2.12.2", - "laminas/laminas-stdlib": "3.2.1", - "laminas/laminas-zendframework-bridge": "1.0.4", - "masterminds/html5": "2.3.0", - "paragonie/random_compat": "v9.99.99", + "composer/semver": "3.2.6", + "doctrine/annotations": "1.13.2", + "doctrine/lexer": "1.2.1", + "doctrine/reflection": "1.2.2", + "drupal/core": "9.3.7", + "egulias/email-validator": "3.1.2", + "guzzlehttp/guzzle": "6.5.5", + "guzzlehttp/promises": "1.5.1", + "guzzlehttp/psr7": "1.8.3", + "laminas/laminas-diactoros": "2.8.0", + "laminas/laminas-escaper": "2.9.0", + "laminas/laminas-feed": "2.15.0", + "laminas/laminas-stdlib": "3.6.1", + "masterminds/html5": "2.7.5", "pear/archive_tar": "1.4.14", "pear/console_getopt": "v1.4.3", - "pear/pear-core-minimal": "v1.10.10", - "pear/pear_exception": "v1.0.1", - "psr/container": "1.0.0", + "pear/pear-core-minimal": "v1.10.11", + "pear/pear_exception": "v1.0.2", + "psr/cache": "1.0.1", + "psr/container": "1.1.1", + "psr/http-factory": "1.0.1", "psr/http-message": "1.0.1", - "psr/log": "1.1.3", + "psr/log": "1.1.4", "ralouphie/getallheaders": "3.0.3", - "stack/builder": "v1.0.5", - "symfony-cmf/routing": "1.4.1", - "symfony/class-loader": "v3.4.41", - "symfony/console": "v3.4.41", - "symfony/debug": "v3.4.41", - "symfony/dependency-injection": "v3.4.41", - "symfony/event-dispatcher": "v3.4.41", - "symfony/http-foundation": "v3.4.41", - "symfony/http-kernel": "v3.4.44", - "symfony/polyfill-ctype": "v1.17.0", - "symfony/polyfill-iconv": "v1.17.0", - "symfony/polyfill-intl-idn": "v1.17.0", - "symfony/polyfill-mbstring": "v1.17.0", - "symfony/polyfill-php56": "v1.17.0", - "symfony/polyfill-php70": "v1.17.0", - "symfony/polyfill-php72": "v1.17.0", - "symfony/polyfill-util": "v1.17.0", - "symfony/process": "v3.4.41", - "symfony/psr-http-message-bridge": "v1.1.2", - "symfony/routing": "v3.4.41", - "symfony/serializer": "v3.4.41", - "symfony/translation": "v3.4.41", - "symfony/validator": "v3.4.41", - "symfony/yaml": "v3.4.41", - "twig/twig": "v1.42.5", - "typo3/phar-stream-wrapper": "v3.1.4" + "stack/builder": "v1.0.6", + "symfony-cmf/routing": "2.3.4", + "symfony/console": "v4.4.34", + "symfony/debug": "v4.4.31", + "symfony/dependency-injection": "v4.4.34", + "symfony/deprecation-contracts": "v2.5.0", + "symfony/error-handler": "v4.4.34", + "symfony/event-dispatcher": "v4.4.34", + "symfony/event-dispatcher-contracts": "v1.1.11", + "symfony/http-client-contracts": "v2.5.0", + "symfony/http-foundation": "v4.4.34", + "symfony/http-kernel": "v4.4.35", + "symfony/mime": "v5.4.0", + "symfony/polyfill-ctype": "v1.23.0", + "symfony/polyfill-iconv": "v1.23.0", + "symfony/polyfill-intl-idn": "v1.23.0", + "symfony/polyfill-intl-normalizer": "v1.23.0", + "symfony/polyfill-mbstring": "v1.23.1", + "symfony/polyfill-php80": "v1.23.1", + "symfony/process": "v4.4.35", + "symfony/psr-http-message-bridge": "v2.1.2", + "symfony/routing": "v4.4.34", + "symfony/serializer": "v4.4.35", + "symfony/service-contracts": "v2.5.0", + "symfony/translation": "v4.4.34", + "symfony/translation-contracts": "v2.5.0", + "symfony/validator": "v4.4.35", + "symfony/var-dumper": "v5.4.0", + "symfony/yaml": "v4.4.34", + "twig/twig": "v2.14.11", + "typo3/phar-stream-wrapper": "v3.1.7" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -4533,9 +4347,9 @@ ], "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/8.9.20" + "source": "https://github.com/drupal/core-recommended/tree/9.3.7" }, - "time": "2021-11-17T21:24:28+00:00" + "time": "2022-03-03T09:23:53+00:00" }, { "name": "drupal/crop", @@ -4594,6 +4408,60 @@ "issues": "https://www.drupal.org/project/issues/crop" } }, + { + "name": "drupal/csp", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/csp.git", + "reference": "8.x-1.16" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "0d6568ff2b176497ff97a440bfae6b7135ad2d6b" + }, + "require": { + "drupal/core": "^8.5 || ^9.0", + "ext-json": "*", + "php": ">=7.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.16", + "datestamp": "1641415148", + "security-coverage": { + "status": "covered", + "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" + }, + { + "name": "rfsbsb", + "homepage": "https://www.drupal.org/user/4382" + } + ], + "description": "Provide Content-Security-Policy headers", + "homepage": "https://www.drupal.org/project/csp", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/csp", + "issues": "https://www.drupal.org/project/issues/csp" + } + }, { "name": "drupal/ctools", "version": "3.7.0", @@ -5425,6 +5293,33 @@ "issues": "https://gitlab.com/drutopia/drutopia_campaign/issues" } }, + { + "name": "drupal/drutopia_collection", + "version": "dev-8.x-1.x", + "source": { + "type": "git", + "url": "git@gitlab.com:drutopia/drutopia_collection.git", + "reference": "8ec2859c26f123ff9e6fa67d14c53a78a8c21196" + }, + "require": { + "drupal/config_actions": "^1.0", + "drupal/ctools": "^3.0", + "drupal/drutopia_article": "^1.0-beta3", + "drupal/drutopia_blog": "^1.0-beta3", + "drupal/drutopia_people": "^1.0-beta3", + "drupal/drutopia_seo": "^1.0-beta2", + "drupal/ds": "^3.1", + "drupal/metatag": "^1.9" + }, + "default-branch": true, + "type": "drupal-module", + "license": [ + "GPL-2.0+" + ], + "description": "Drutopia Collection is a feature providing the ability to create collections to bring together ordered listings of Articles, Blog posts, or other content. This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people. an article content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_collection", + "time": "2020-08-05T19:23:08+00:00" + }, { "name": "drupal/drutopia_comment", "version": "1.1.0", @@ -5503,77 +5398,37 @@ }, { "name": "drupal/drutopia_core", - "version": "dev-1.x", + "version": "dev-8.x-1.x", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_core.git", + "url": "git@gitlab.com:drutopia/drutopia_core.git", "reference": "13299289df05de2aeb4ac6625cad45bbd53f343d" }, "require": { "drupal/config_actions": "^1.3", "drupal/config_perms": "^2.0", - "drupal/core": "^8.9 || ^9", "drupal/crop": "^2.1", "drupal/ds": "^3.12", - "drupal/entity_reference_revisions": "*", "drupal/facets": "^1.8", "drupal/faqfield": "^7.0", "drupal/focal_point": "^1.5", "drupal/metatag": "^1.16", "drupal/paragraphs": "^1.12", "drupal/search_api": "^1.19", - "drupal/search_api_db": "*", "drupal/video_embed_field": "^2.4" }, + "default-branch": true, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.2+0-dev", - "datestamp": "1622150366", - "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/entity_reference_revisions-normalizer-2913713-2.patch" } } }, - "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0+" ], - "authors": [ - { - "name": "cedewey", - "homepage": "https://www.drupal.org/user/38694" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" - }, - { - "name": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "rosemarymann", - "homepage": "https://www.drupal.org/user/837536" - } - ], "description": "Drutopia core is a base feature providing core components required by other features.", "homepage": "https://gitlab.com/drutopia/drutopia_core", "keywords": [ @@ -5582,9 +5437,10 @@ "drutopia" ], "support": { - "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x", - "issues": "https://gitlab.com/drutopia/drutopia_core/issues" - } + "issues": "https://gitlab.com/drutopia/drutopia_core/issues", + "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x" + }, + "time": "2021-05-25T23:15:33+00:00" }, { "name": "drupal/drutopia_event", @@ -5917,6 +5773,64 @@ "issues": "https://gitlab.com/drutopia/drutopia_page/issues" } }, + { + "name": "drupal/drutopia_paragraph_title", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_paragraph_title.git", + "reference": "95ea1c1c1e220926a6b08f280b41779feb52e09a" + }, + "require": { + "drupal/allowed_formats": "^1.3", + "drupal/core": "^8.8.3 || ^9", + "drupal/drutopia_core": "^1.0", + "drupal/entity_reference_revisions": "*", + "drupal/minimalhtml": "^1.0", + "drupal/minimalhtmltitle": "*", + "drupal/paragraphs": "^1.12", + "drupal/ui_patterns": "^1.2", + "drupal/ui_patterns_ds": "*", + "drupal/ui_patterns_layouts": "*", + "drupal/ui_patterns_library": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "1.x-dev", + "datestamp": "1593433947", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + } + ], + "description": "Provides a title paragraph that can replace regular page titles with a title, subtitle, and image.", + "homepage": "https://gitlab.com/drutopia/drutopia_paragraph_title", + "keywords": [ + "content", + "drutopia", + "paragraphs", + "titles" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_paragraph_title/tree/1.x", + "issues": "https://gitlab.com/drutopia/drutopia_paragraph_title/issues" + } + }, { "name": "drupal/drutopia_people", "version": "1.1.0", @@ -6324,14 +6238,20 @@ }, { "name": "drupal/drutopia_site", - "version": "dev-1.x", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "1c48960d62febc83b560aaa6f4ef05b7f7f5b7b0" + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_site-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "f0b5b4f3a80ce9fd5ad26256b8e7046698a300f6" }, "require": { - "drupal/admin_toolbar": "^3.0", + "drupal/admin_toolbar": "^2.2", "drupal/admin_toolbar_links_access_filter": "*", "drupal/admin_toolbar_tools": "*", "drupal/autosave_form": "^1.1", @@ -6348,15 +6268,12 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0+2-dev", - "datestamp": "1619128425", + "version": "8.x-1.1", + "datestamp": "1621288089", "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" } } }, @@ -6689,6 +6606,110 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/editor_advanced_link", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/editor_advanced_link.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.0.0.zip", + "reference": "2.0.0", + "shasum": "db9469ffc073ab0b350296c86069441882ba2147" + }, + "require": { + "drupal/core": "^9.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1624528083", + "security-coverage": { + "status": "covered", + "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": "Add title, target etc. attributes to Text Editor's link dialog if the text format allows them.", + "homepage": "https://www.drupal.org/project/editor_advanced_link", + "support": { + "source": "https://git.drupalcode.org/project/editor_advanced_link" + } + }, + { + "name": "drupal/empty_page", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/empty_page.git", + "reference": "8.x-3.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/empty_page-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "207a1ac3d66c5cfb4f8129e26670e30c66d4cd06" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.0", + "datestamp": "1592930944", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Nick Robillard", + "homepage": "https://www.drupal.org/user/176017" + }, + { + "name": "NormySan", + "homepage": "https://www.drupal.org/user/112352" + }, + { + "name": "bleen", + "homepage": "https://www.drupal.org/user/77375" + }, + { + "name": "merauluka", + "homepage": "https://www.drupal.org/user/780004" + }, + { + "name": "mukila", + "homepage": "https://www.drupal.org/user/3223526" + } + ], + "description": "A simple empty page solution. Assists in creating empty menu callbacks mostly used for pages that only consist of blocks.", + "homepage": "https://www.drupal.org/project/empty_page", + "support": { + "source": "https://git.drupalcode.org/project/empty_page" + } + }, { "name": "drupal/encrypt", "version": "3.0.0", @@ -6760,26 +6781,26 @@ }, { "name": "drupal/entity", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "7e7cb12ea65d9f986b59935eda316387cf511079" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8.2 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1606399149", + "version": "8.x-1.3", + "datestamp": "1646324539", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6821,9 +6842,74 @@ } ], "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.", - "homepage": "http://drupal.org/project/entity", + "homepage": "https://www.drupal.org/project/entity", "support": { - "source": "https://git.drupalcode.org/project/entity" + "source": "https://git.drupalcode.org/project/entity", + "issues": "https://www.drupal.org/project/issues/entity" + } + }, + { + "name": "drupal/entity_reference_override", + "version": "2.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_reference_override.git", + "reference": "2.0.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta1.zip", + "reference": "2.0.0-beta1", + "shasum": "0aa8a80f203148d02cf5dbe7bcfa4516b5236d42" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "require-dev": { + "drupal/entity_browser": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0-beta1", + "datestamp": "1631803154", + "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": "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" } }, { @@ -6885,6 +6971,58 @@ "source": "https://git.drupalcode.org/project/entity_reference_revisions" } }, + { + "name": "drupal/environment_indicator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/environment_indicator.git", + "reference": "4.0.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.4.zip", + "reference": "4.0.4", + "shasum": "37cb19ca432c29a2351947fb59fc1271ff98dce3" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.0.4", + "datestamp": "1644420669", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "e0ipso", + "homepage": "https://www.drupal.org/user/550110" + }, + { + "name": "mrfelton", + "homepage": "https://www.drupal.org/user/305669" + }, + { + "name": "pratik_kamble", + "homepage": "https://www.drupal.org/user/3204909" + } + ], + "description": "Adds a color indicator for the different environments.", + "homepage": "https://www.drupal.org/project/environment_indicator", + "support": { + "source": "https://git.drupalcode.org/project/environment_indicator" + } + }, { "name": "drupal/eu_cookie_compliance", "version": "1.19.0", @@ -7146,6 +7284,59 @@ "irc": "irc://irc.freenode.org/drupal-search-api" } }, + { + "name": "drupal/fakeobjects", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/fakeobjects.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/fakeobjects-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "0a7a3ead609d1efd62f4f4803a41317970d8292d" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1592829875", + "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.0.0", @@ -7351,6 +7542,148 @@ "issues": "https://www.drupal.org/project/issues/field_group" } }, + { + "name": "drupal/field_token_value", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/field_token_value.git", + "reference": "2.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/field_token_value-2.0.1.zip", + "reference": "2.0.1", + "shasum": "0a4644753ba7603f3d4fc033f7d83de116aaa804" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/token": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.1", + "datestamp": "1629160323", + "security-coverage": { + "status": "covered", + "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/fitvids", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/fitvids.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/fitvids-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "28e066336ebca9750eb72152303e7cb8a1a302c4" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1590685117", + "security-coverage": { + "status": "covered", + "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.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/fixed_block_content.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "567351ee7a1f40b43ff81ede9afc085f78752d20" + }, + "require": { + "drupal/core": "~8.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1585994766", + "security-coverage": { + "status": "covered", + "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/focal_point", "version": "1.5.0", @@ -7402,6 +7735,72 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/footnotes", + "version": "dev-2.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/footnotes.git", + "reference": "d0218117b3996558aefb726c7b29795d57b115ad" + }, + "require": { + "drupal/core": ">=8.6", + "drupal/fakeobjects": "^1.0" + }, + "require-dev": { + "drupal/fakeobjects": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.1+20-dev", + "datestamp": "1615724664", + "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": "Andrii Aleksandrov (id.aleks)", + "homepage": "https://www.drupal.org/u/idaleks", + "role": "Maintainer" + }, + { + "name": "Oleksandr Dekhteruk (pifagor)", + "homepage": "https://www.drupal.org/u/pifagor", + "role": "Maintainer" + }, + { + "name": "Fernando Conceição (yukare)", + "homepage": "https://www.drupal.org/u/yukare", + "role": "Maintainer" + }, + { + "name": "Henrik Ingo (hingo)", + "homepage": "https://www.drupal.org/u/hingo", + "role": "Maintainer" + }, + { + "name": "yukare", + "homepage": "https://www.drupal.org/user/889254" + } + ], + "description": "Add automatically numbered footnotes to your posts.", + "homepage": "https://drupal.org/project/footnotes", + "support": { + "source": "https://cgit.drupalcode.org/footnotes", + "issues": "https://drupal.org/project/issues/footnotes" + } + }, { "name": "drupal/gdpr", "version": "dev-2.x", @@ -7514,6 +7913,69 @@ "source": "https://git.drupalcode.org/project/gdpr" } }, + { + "name": "drupal/geolocation", + "version": "3.7.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/geolocation.git", + "reference": "8.x-3.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.7.zip", + "reference": "8.x-3.7", + "shasum": "796797ff4d3cc9d8b645bf2534d783d170ef77f5" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "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/search_api": "*", + "drupal/search_api_location": "*", + "drupal/search_api_location_views": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.7", + "datestamp": "1623052750", + "security-coverage": { + "status": "covered", + "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/gnode", "version": "1.4.0", @@ -7669,17 +8131,17 @@ }, { "name": "drupal/honeypot", - "version": "1.31.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "8.x-1.31" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.31.zip", - "reference": "8.x-1.31", - "shasum": "a0e7fd5cabdf8bbd4ceedc39d0a25f9d54ea3c41" + "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip", + "reference": "2.0.2", + "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62" }, "require": { "drupal/core": "^8.8.2 || ^9" @@ -7687,8 +8149,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.31", - "datestamp": "1637735546", + "version": "2.0.2", + "datestamp": "1638391833", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7735,26 +8197,27 @@ }, { "name": "drupal/hotjar", - "version": "1.5.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/hotjar.git", - "reference": "8.x-1.5" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/hotjar-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "ae4af1d169ccb5d99af04d01dff450805297ce08" + "url": "https://ftp.drupal.org/files/projects/hotjar-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "4caab9aa02a3bf8f0670280e501dcf40b0fa83d0" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8 || ^9", + "ext-json": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1551102784", + "version": "8.x-2.2", + "datestamp": "1625130592", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7763,7 +8226,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -7775,7 +8238,7 @@ "homepage": "https://www.drupal.org/user/337178" } ], - "description": "Allows your site to be tracked by Hotjar by adding a Javascript tracking code to every page.", + "description": "Allows your site to be tracked by Hotjar by adding a Javascript tracking code to every page", "homepage": "https://www.drupal.org/project/hotjar", "support": { "source": "https://git.drupalcode.org/project/hotjar" @@ -7783,26 +8246,26 @@ }, { "name": "drupal/http_cache_control", - "version": "1.0.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_cache_control.git", - "reference": "8.x-1.0" + "reference": "8.x-2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "91e160fd1f944f9058d8bf27b092e29b169b88e0" + "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "7c528eedf27be54943c84e61474b3d6ff855a767" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1536274980", + "version": "8.x-2.0", + "datestamp": "1591254259", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7819,7 +8282,7 @@ "homepage": "https://www.drupal.org/user/188162" } ], - "description": "Module for implementing s-max-age", + "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" @@ -7827,26 +8290,26 @@ }, { "name": "drupal/http_client_error_status", - "version": "1.4.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_client_error_status.git", - "reference": "8.x-1.4" + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "dd00ea86be7a5cc79841972b09838225c8cc4791" + "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "8046f7e3ea5673bec0ca89c6777c839567339b09" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1612527954", + "version": "8.x-2.3", + "datestamp": "1612527987", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7874,11 +8337,17 @@ }, { "name": "drupal/indieweb", - "version": "dev-1.x", + "version": "1.18.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "5fe250c12a5f03e4dc79a933c71801c0c18832ab" + "reference": "8.x-1.18" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.18.zip", + "reference": "8.x-1.18", + "shasum": "a12998360c75e524ae5fadbd70db18d1548b134f" }, "require": { "drupal/core": "^8.7|^9.0", @@ -7896,15 +8365,12 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.17+1-dev", - "datestamp": "1637437583", + "version": "8.x-1.18", + "datestamp": "1637438126", "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" } }, "drush": { @@ -7931,6 +8397,51 @@ "source": "https://git.drupalcode.org/project/indieweb" } }, + { + "name": "drupal/insert", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/insert.git", + "reference": "af6af9fe0619024456cdb3f902b2da0a0dc93b84" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0+3-dev", + "datestamp": "1621866532", + "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": "Snater", + "homepage": "https://www.drupal.org/user/3513717" + }, + { + "name": "quicksketch", + "homepage": "https://www.drupal.org/user/35821" + } + ], + "description": "Assists in inserting files, images, or other media into the body field or other text areas.", + "homepage": "https://www.drupal.org/project/insert", + "support": { + "source": "https://git.drupalcode.org/project/insert" + } + }, { "name": "drupal/jquery_ui", "version": "1.4.0", @@ -8181,6 +8692,104 @@ "issues": "https://www.drupal.org/project/issues/key_value_field" } }, + { + "name": "drupal/link_attributes", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/link_attributes.git", + "reference": "8.x-1.11" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "ca8c7e71c38350e3784dc3d1f779d700f55df818" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.11", + "datestamp": "1598323550", + "security-coverage": { + "status": "covered", + "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", + "support": { + "source": "https://git.drupalcode.org/project/link_attributes" + } + }, + { + "name": "drupal/linkit", + "version": "6.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/linkit.git", + "reference": "6.0.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip", + "reference": "6.0.0-beta3", + "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "require-dev": { + "drupal/imce": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "6.0.0-beta3", + "datestamp": "1632946984", + "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": "Emil Stjerneman", + "homepage": "https://stjerneman.com", + "email": "emil@stjerneman.com", + "role": "Maintainer" + }, + { + "name": "johnwebdev", + "homepage": "https://www.drupal.org/user/3331569" + } + ], + "description": "Linkit - Enriched linking experience", + "homepage": "http://drupal.org/project/linkit", + "support": { + "source": "http://cgit.drupalcode.org/linkit", + "issues": "http://drupal.org/project/linkit" + } + }, { "name": "drupal/mailchimp", "version": "2.0.2", @@ -8347,56 +8956,66 @@ }, { "name": "drupal/markdown", - "version": "1.3.0", + "version": "3.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/markdown.git", - "reference": "8.x-1.3" + "reference": "3.0.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/markdown-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "599f3f4dfe3c3d3f3b6d301f940a1125e437a2b0" + "url": "https://ftp.drupal.org/files/projects/markdown-3.0.0-rc2.zip", + "reference": "3.0.0-rc2", + "shasum": "ccbb84b03ce1f5d2fdb8511595dde0980653845f" }, "require": { - "drupal/core": "~8.0", - "league/commonmark": "^0.18.3", - "michelf/php-markdown": "^1.6" + "composer/semver": "^1.0 || ^2.0 || ^3.0", + "drupal/core": "^8 || ^9", + "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": "8.x-1.3", - "datestamp": "1568908385", + "version": "3.0.0-rc2", + "datestamp": "1639560570", "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 || ^10" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "frjo", - "homepage": "https://www.drupal.org/user/5546" + "name": "Mark Halliwell (markhalliwell)", + "homepage": "https://www.drupal.org/u/markhalliwell", + "role": "D8+ Maintainer" }, { - "name": "gisle", - "homepage": "https://www.drupal.org/user/409554" + "name": "Gisle Hannemyr (gisle)", + "homepage": "https://www.drupal.org/u/gisle", + "role": "D7 Maintainer" }, { "name": "joelpittet", "homepage": "https://www.drupal.org/user/160302" } ], - "description": "Allows content to be submitted using Markdown, a simple plain-text syntax that is transformed into valid HTML.", + "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://cgit.drupalcode.org/markdown", + "source": "https://git.drupalcode.org/project/markdown", "issues": "https://www.drupal.org/project/markdown" } }, @@ -8520,6 +9139,62 @@ "source": "https://git.drupalcode.org/project/menu_block" } }, + { + "name": "drupal/menu_link_config", + "version": "1.0.0-alpha3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/menu_link_config.git", + "reference": "8.x-1.0-alpha3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "d94d168a86202482bf5f3e550c04f1bbc34c06a0" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha3", + "datestamp": "1628872508", + "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": "Hydra", + "homepage": "https://www.drupal.org/user/647364" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "labboy0276", + "homepage": "https://www.drupal.org/user/2397942" + }, + { + "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": "1.3.0", @@ -8645,21 +9320,22 @@ }, { "name": "drupal/metatag", - "version": "1.16.0", + "version": "1.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.16" + "reference": "8.x-1.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.19.zip", + "reference": "8.x-1.19", + "shasum": "d70f59c034e971885ed4969a11bb392f6ab447ee" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/token": "^1.0" + "drupal/core": "^9", + "drupal/token": "^1.0", + "php": ">=7.0" }, "require-dev": { "drupal/devel": "^4.0", @@ -8667,13 +9343,14 @@ "drupal/metatag_open_graph": "*", "drupal/page_manager": "4.x-dev", "drupal/panelizer": "4.x-dev", - "drupal/redirect": "1.x-dev" + "drupal/redirect": "1.x-dev", + "mpyw/phpunit-patch-serializable-comparison": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.16", - "datestamp": "1615820867", + "version": "8.x-1.19", + "datestamp": "1641496014", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8708,41 +9385,32 @@ } }, { - "name": "drupal/migrate_plus", - "version": "4.2.0", + "name": "drupal/microformats", + "version": "2.0.0-beta2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "8.x-4.2" + "url": "https://git.drupalcode.org/project/microformats.git", + "reference": "2.0.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip", - "reference": "8.x-4.2", - "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3" + "url": "https://ftp.drupal.org/files/projects/microformats-2.0.0-beta2.zip", + "reference": "2.0.0-beta2", + "shasum": "a2fb4123375b511ded63ff004ed0f8e41a175ec9" }, "require": { - "drupal/core": "^8.3" - }, - "require-dev": { - "drupal/entity": "*", - "drupal/migrate_example_advanced_setup": "*", - "drupal/migrate_example_setup": "*", - "drupal/migrate_tools": "*", - "drupal/profile": "*" - }, - "suggest": { - "ext-soap": "*", - "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + "barnabywalters/mf-cleaner": "^0.1.4", + "drupal/core": "^8 || ^9", + "mf2/mf2": "~0.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-4.2", - "datestamp": "1555683487", + "version": "2.0.0-beta2", + "datestamp": "1633543637", "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." } } }, @@ -8750,6 +9418,76 @@ "license": [ "GPL-2.0+" ], + "authors": [ + { + "name": "HongPong", + "homepage": "https://www.drupal.org/user/60005" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + } + ], + "description": "Microformats to provide support for exchanging data objects", + "homepage": "https://www.drupal.org/project/microformats", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/microformats", + "issues": "http://drupal.org/project/issues/microformats" + } + }, + { + "name": "drupal/migrate_plus", + "version": "5.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-5.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.2.zip", + "reference": "8.x-5.2", + "shasum": "03ae34c362ccfacc4ae95b58469b25522e0ffb68" + }, + "require": { + "drupal/core": "^9.1" + }, + "require-dev": { + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*", + "drush/drush": "^10" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-5.2", + "datestamp": "1641478565", + "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": "Mike Ryan", @@ -8757,8 +9495,9 @@ "role": "Maintainer" }, { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" + "name": "Lucas Hedding", + "homepage": "https://www.drupal.org/u/heddn", + "role": "Maintainer" }, { "name": "mikeryan", @@ -8768,9 +9507,60 @@ "description": "Enhancements to core migration support.", "homepage": "https://www.drupal.org/project/migrate_plus", "support": { - "source": "https://cgit.drupalcode.org/migrate_plus", + "source": "https://git.drupalcode.org/project/migrate_plus", "issues": "https://www.drupal.org/project/issues/migrate_plus", - "irc": "irc://irc.freenode.org/drupal-migrate" + "slack": "#migrate" + } + }, + { + "name": "drupal/migrate_source_csv", + "version": "3.5.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_source_csv.git", + "reference": "8.x-3.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.5.zip", + "reference": "8.x-3.5", + "shasum": "ddddba22fa7b4a54f05a606db33986b23b1a69ea" + }, + "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.5", + "datestamp": "1645538421", + "security-coverage": { + "status": "covered", + "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" } }, { @@ -8838,6 +9628,70 @@ "irc": "irc://irc.freenode.org/drupal-migrate" } }, + { + "name": "drupal/migrate_upgrade", + "version": "3.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_upgrade.git", + "reference": "8.x-3.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "f7be28c9fa9e2c56db24fafaf4e9cd6815582aed" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/migrate_plus": "^4 || ^5", + "drush/drush": "^8 || ^9 || ^10", + "php": ">7.1" + }, + "require-dev": { + "drupal/migrate_plus": "^5", + "drush/drush": "^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.2", + "datestamp": "1588260599", + "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": "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/mimemail", "version": "1.0.0-alpha4", @@ -8951,27 +9805,61 @@ } }, { - "name": "drupal/multiline_config", - "version": "1.0.0", + "name": "drupal/minimalhtmltitle", + "version": "1.4.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/minimalhtml": "^1" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.4", + "datestamp": "1625523944", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + } + ], + "description": "A super-minimal WYSIWYG text format for titles, subtitles, and other text not meant to be wrapped in paragraph tags or have any block-level HTML elements.", + "homepage": "https://www.drupal.org/project/minimalhtml", + "support": { + "source": "https://git.drupalcode.org/project/minimalhtml" + } + }, + { + "name": "drupal/node_view_permissions", + "version": "1.5.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/multiline_config.git", - "reference": "8.x-1.0" + "url": "https://git.drupalcode.org/project/node_view_permissions.git", + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/multiline_config-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "0910c3b007c74cddd6823ad5e86ca40c14a91f20" + "url": "https://ftp.drupal.org/files/projects/node_view_permissions-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "e9f0bc9d1285e57233ab1b11833b55dda6d483f0" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1553258884", + "version": "8.x-1.5", + "datestamp": "1622716915", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8979,60 +9867,168 @@ } }, "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "adci_contributor", + "homepage": "https://www.drupal.org/user/1830536" + }, + { + "name": "adcillc", + "homepage": "https://www.drupal.org/user/366450" + }, + { + "name": "hoter", + "homepage": "https://www.drupal.org/user/1677790" + } + ], + "description": "Enables permissions \"View own content\" and \"View any content\" for each content type.", + "homepage": "https://www.drupal.org/project/node_view_permissions", + "support": { + "source": "https://git.drupalcode.org/project/node_view_permissions" + } + }, + { + "name": "drupal/noreferrer", + "version": "1.13.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/noreferrer.git", + "reference": "8.x-1.13" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/noreferrer-8.x-1.13.zip", + "reference": "8.x-1.13", + "shasum": "53ade8a44d6f0bc6c557b28a791e65caaed6da16" + }, + "require": { + "drupal/core": "^8.7.7 || ^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.13", + "datestamp": "1644054026", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mfb", + "homepage": "https://www.drupal.org/user/12302" + } + ], + "description": "Adds rel=\"noopener\" and/or rel=\"noreferrer\" to links.", + "homepage": "https://www.drupal.org/project/noreferrer", + "support": { + "source": "https://git.drupalcode.org/project/noreferrer" + } + }, + { + "name": "drupal/notfoundpassthrough", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/notfoundpassthrough.git", + "reference": "a2947040d5dba2b5ef71942e793a603956fa91fc" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "1.x-dev", + "datestamp": "1637670998", + "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": "Pedro Cambra", - "homepage": "https://www.drupal.org/u/pcambra" + "name": "Benjamin Melançon", + "homepage": "https://agaric.coop/mlncn", + "email": "mlncn@agaric.coop", + "role": "Maintainer" }, { - "name": "Manuel Egío", - "homepage": "https://www.drupal.org/u/facine" + "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" } ], - "description": "This module allows you export configuration strings as multiline.", - "homepage": "http://drupal.org/project/multiline_config", + "homepage": "https://www.drupal.org/project/notfoundpassthrough", "support": { - "source": "https://cgit.drupalcode.org/multiline_config", - "issues": "https://www.drupal.org/project/issues/multiline_config" + "source": "https://git.drupalcode.org/project/notfoundpassthrough", + "issues": "https://www.drupal.org/project/issues/notfoundpassthrough" } }, { "name": "drupal/octavia", - "version": "1.0.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/octavia.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/octavia-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "7204a6785666a4bb8d1964ec14cbb26cc6a6f389" + "reference": "02c4106025c88d336d1a69e670601d87af734b8a" }, "require": { - "drupal/bulma": "^1.0-beta4", - "drupal/core": "~8.0", - "drupal/skins": "^1.0-alpha4", - "drupal/twigsuggest": "^1.0-beta1" + "drupal/bulma": "^1.0-rc1", + "drupal/components": "^2.0-beta3", + "drupal/core": "^8 || ^9", + "drupal/skins": "^1.0-rc1", + "drupal/twigsuggest": "^1.0-beta2" }, "type": "drupal-theme", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0", - "datestamp": "1591215729", + "version": "8.x-1.2+1-dev", + "datestamp": "1627757384", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -9071,6 +10067,35 @@ "issues": "https://gitlab.com/drutopia/octavia/issues" } }, + { + "name": "drupal/octavia_camouflage", + "version": "dev-8.x-1.x", + "source": { + "type": "git", + "url": "git@gitlab.com:drutopia/octavia_camouflage.git", + "reference": "241889810e7c19ac12ac7e993e1aa9403b7b957c" + }, + "require": { + "drupal/octavia": "^1.0" + }, + "default-branch": true, + "type": "drupal-theme", + "license": [ + "GPL-2.0+" + ], + "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": { + "issues": "https://gitlab.com/drutopia/octavia_camouflage/issues", + "source": "https://gitlab.com/drutopia/octavia_camouflage/tree/8.x-1.x" + }, + "time": "2021-09-20T16:28:14+00:00" + }, { "name": "drupal/paragraphs", "version": "1.13.0", @@ -9154,30 +10179,31 @@ }, { "name": "drupal/paragraphs_features", - "version": "1.12.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "8.x-1.12" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "62b30c1f145929c2027b329eed300fcacbc2ae44" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "c744a87b5a097e75dc61518e1aa50151c58dc106" }, "require": { - "drupal/core": "^8.7.7 || ^9", - "drupal/paragraphs": "^1.12" + "drupal/core": "^9.2", + "drupal/paragraphs": "^1.13" }, "require-dev": { - "drupal/gin": "^3.0" + "drupal/gin": "^3.0", + "drupal/thunder_admin": "^4.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1625838473", + "version": "8.x-1.16", + "datestamp": "1646219273", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9276,6 +10302,72 @@ "source": "https://git.drupalcode.org/project/paranoia" } }, + { + "name": "drupal/password_policy", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/password_policy.git", + "reference": "8.x-3.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/password_policy-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "d5e79ce4949c74080b4a6f655aa7ae914c663019" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/ctools": "^3.1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.1", + "datestamp": "1639661368", + "security-coverage": { + "status": "covered", + "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": "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" + } + }, { "name": "drupal/pathauto", "version": "1.9.0", @@ -9508,10 +10600,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/regionincontent.git", - "reference": "4fd0de51df740df35be37c41f3fb069405030245" + "reference": "c21fc82411cd036b9b8f03243c21700736118b55" }, "require": { - "drupal/core": "~8.0" + "drupal/core": "^8.8.0 || ^9.0" }, "type": "drupal-module", "extra": { @@ -9606,26 +10698,26 @@ }, { "name": "drupal/role_delegation", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a63b548056cc729beacfd385625fafb983e0f73e" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1580498751", + "version": "8.x-1.2", + "datestamp": "1644486753", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9771,26 +10863,26 @@ }, { "name": "drupal/search404", - "version": "1.0.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search404.git", - "reference": "8.x-1.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search404-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "9265e2f5faee198c764fa281a3c9668de5ef76fe" + "url": "https://ftp.drupal.org/files/projects/search404-2.0.0.zip", + "reference": "2.0.0", + "shasum": "da7ee1a9b8a1d0f420e0dc8dfe9d02fd5b49b117" }, "require": { - "drupal/core": "^8" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1528785184", + "version": "2.0.0", + "datestamp": "1591165027", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9951,6 +11043,196 @@ "source": "https://git.drupalcode.org/project/search_api" } }, + { + "name": "drupal/search_api_saved_searches", + "version": "1.0.0-alpha3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/search_api_saved_searches.git", + "reference": "8.x-1.0-alpha3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "0e52214b4b79a6c27dc1233274cbff45203ba648" + }, + "require": { + "drupal/core": "^8.8 || ^9", + "drupal/search_api": "^1.8" + }, + "require-dev": { + "drupal/facets": "@dev", + "drupal/search_api_page": "@dev" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha3", + "datestamp": "1613930452", + "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": "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.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/seckit.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/seckit-2.0.0.zip", + "reference": "2.0.0", + "shasum": "d5356230b2de7d1e8a2e68eb81e70619a2e36c1e" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1598609351", + "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/shield", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/shield.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "b28bb5350f4a35172dc090cb603f2e62d71ae996" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "require-dev": { + "drupal/key": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.6", + "datestamp": "1644835181", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "badjava", + "homepage": "https://www.drupal.org/user/83372" + }, + { + "name": "chx", + "homepage": "https://www.drupal.org/user/9446" + }, + { + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "kalman.hosszu", + "homepage": "https://www.drupal.org/user/267481" + }, + { + "name": "pkiraly", + "homepage": "https://www.drupal.org/user/352587" + }, + { + "name": "vbouchet", + "homepage": "https://www.drupal.org/user/1671428" + } + ], + "description": "Creates a general shield for the site.", + "homepage": "https://www.drupal.org/project/shield", + "support": { + "source": "https://git.drupalcode.org/project/shield" + } + }, { "name": "drupal/similarterms", "version": "1.5.0", @@ -10241,6 +11523,54 @@ "source": "https://git.drupalcode.org/project/stripe_webform" } }, + { + "name": "drupal/subpathauto", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/subpathauto.git", + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "58d9107beffe5d4c43a4c6dd6cbb2e043d5b4d1e" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1637313101", + "security-coverage": { + "status": "covered", + "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" + } + ], + "description": "Provides support for extending sub-paths of URL aliases.", + "homepage": "https://www.drupal.org/project/subpathauto", + "support": { + "source": "https://git.drupalcode.org/project/subpathauto" + } + }, { "name": "drupal/subprofiles", "version": "1.0.0", @@ -10291,38 +11621,41 @@ }, { "name": "drupal/swiftmailer", - "version": "1.0.0-beta2", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/swiftmailer.git", - "reference": "8.x-1.0-beta2" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/swiftmailer-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "a63a91e7816a06bf8e52ac9b5e48a892a1e6b1d4" + "url": "https://ftp.drupal.org/files/projects/swiftmailer-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "54269f7ceb6364e4fb953cf67b52b555d748d09c" }, "require": { - "drupal/core": "~8.0", - "drupal/mailsystem": "*", - "html2text/html2text": "~4.0.1", - "swiftmailer/swiftmailer": "~5.4.5" + "drupal/core": "^8.9.11 || ^9.0.10", + "drupal/mailsystem": "^4.1.0", + "egulias/email-validator": "^2.0||^3", + "html2text/html2text": "^4.0.1", + "php": ">=7.0.0", + "swiftmailer/swiftmailer": "^6.1.3", + "tijsverkoyen/css-to-inline-styles": "^2.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1519655459", + "version": "8.x-2.2", + "datestamp": "1639141915", "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" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -10356,6 +11689,87 @@ "source": "https://git.drupalcode.org/project/swiftmailer" } }, + { + "name": "drupal/taxonomy_manager", + "version": "2.0.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/taxonomy_manager.git", + "reference": "2.0.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.6.zip", + "reference": "2.0.6", + "shasum": "be0c3ffddc39c6dfdab1195c40b3fb9cb7568db5" + }, + "require": { + "drupal/core": "^8.8 || ^9", + "drupal/jquery_ui": "^1.4" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.6", + "datestamp": "1632334059", + "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": "Andriy Khomych", + "homepage": "https://www.drupal.org/user/3287133" + }, + { + "name": "JacobSanford", + "homepage": "https://www.drupal.org/user/806538" + }, + { + "name": "VladimirAus", + "homepage": "https://www.drupal.org/user/673120" + }, + { + "name": "alesbencina", + "homepage": "https://www.drupal.org/user/3558110" + }, + { + "name": "dragan_bp", + "homepage": "https://www.drupal.org/user/3578037" + }, + { + "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" + } + ], + "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/textarea_widget_for_text", "version": "1.2.0", @@ -10478,27 +11892,78 @@ } }, { - "name": "drupal/twigsuggest", - "version": "dev-1.x", + "name": "drupal/trim", + "version": "1.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "25e0102076d52f2cead484abf1ff1e040f5bb868" + "url": "https://git.drupalcode.org/project/trim.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/trim-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "6eaffecc422d556903b2b5befb2dba9a595b1aa0" }, "require": { "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-beta3+2-dev", - "datestamp": "1621454264", + "version": "8.x-1.0", + "datestamp": "1598192128", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Stefan Freudenberg", + "homepage": "https://www.drupal.org/user/386087" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + } + ], + "description": "Strips whitespace from all input prior to validation or saving.", + "homepage": "https://www.drupal.org/project/trim", + "support": { + "source": "https://git.drupalcode.org/project/trim" + } + }, + { + "name": "drupal/twigsuggest", + "version": "1.0.0-beta4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/twigsuggest.git", + "reference": "8.x-1.0-beta4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/twigsuggest-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "9796038db4873bb4fcdd2185f567b6f0d873ddff" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-beta4", + "datestamp": "1621454375", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -10648,6 +12113,182 @@ "source": "https://git.drupalcode.org/project/ui_patterns" } }, + { + "name": "drupal/ui_patterns_ds", + "version": "1.2.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/ds": "*", + "drupal/ui_patterns": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1591882155", + "security-coverage": { + "status": "covered", + "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": "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.2.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/ui_patterns": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1591882155", + "security-coverage": { + "status": "covered", + "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": "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.2.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/ui_patterns": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1591882155", + "security-coverage": { + "status": "covered", + "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": "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/urllogin", + "version": "dev-2.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/urllogin.git", + "reference": "08c5e3861bcc92ae4b4c222499ca42e279cd8f40" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "2.x-dev", + "datestamp": "1632195881", + "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": "DarrellDuane", + "homepage": "https://www.drupal.org/user/142816" + }, + { + "name": "andrewfn", + "homepage": "https://www.drupal.org/user/60662" + }, + { + "name": "philltran", + "homepage": "https://www.drupal.org/user/295397" + } + ], + "description": "Allow login using link from URL", + "homepage": "https://www.drupal.org/project/urllogin", + "support": { + "source": "https://git.drupalcode.org/project/urllogin" + } + }, { "name": "drupal/variationcache", "version": "1.0.0", @@ -10755,6 +12396,63 @@ "source": "https://git.drupalcode.org/project/video_embed_field" } }, + { + "name": "drupal/view_unpublished", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/view_unpublished.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "74ebdf1b4f6963f7bb63192bc314014c0132d03c" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0", + "datestamp": "1597688978", + "security-coverage": { + "status": "covered", + "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/66428", + "email": "amaria@chisholmtech.com" + }, + { + "name": "beeradb", + "homepage": "https://www.drupal.org/user/120651" + }, + { + "name": "elevins", + "homepage": "https://www.drupal.org/user/781882" + }, + { + "name": "entendu", + "homepage": "https://www.drupal.org/user/173461" + } + ], + "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/viewsreference", "version": "1.7.0", @@ -11026,6 +12724,82 @@ "source": "https://git.drupalcode.org/project/webform_mailchimp" } }, + { + "name": "drupal/weight", + "version": "3.3.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/weight.git", + "reference": "8.x-3.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/weight-8.x-3.3.zip", + "reference": "8.x-3.3", + "shasum": "b225d54d4a8ce409ca1a899c6de41806eb1348e3" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.3", + "datestamp": "1615219112", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Harry Slaughter", + "homepage": "https://www.drupal.org/user/28233" + }, + { + "name": "NancyDru", + "homepage": "https://www.drupal.org/user/101412" + }, + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/user/3580850" + }, + { + "name": "Shreya Shetty", + "homepage": "https://www.drupal.org/user/2943029" + }, + { + "name": "davisben", + "homepage": "https://www.drupal.org/user/1204214" + }, + { + "name": "deviantintegral", + "homepage": "https://www.drupal.org/user/71291" + }, + { + "name": "jjeff", + "homepage": "https://www.drupal.org/user/17190" + }, + { + "name": "kevinquillen", + "homepage": "https://www.drupal.org/user/317279" + }, + { + "name": "ziomizar", + "homepage": "https://www.drupal.org/user/814348" + } + ], + "description": "Allows arbitrary ordering of entities.", + "homepage": "https://www.drupal.org/project/weight", + "support": { + "source": "https://git.drupalcode.org/project/weight" + } + }, { "name": "drupal/wysiwyg_linebreaks", "version": "1.11.0", @@ -11074,6 +12848,66 @@ "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks" } }, + { + "name": "drupal/yaml_content", + "version": "1.0.0-alpha7", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/yaml_content.git", + "reference": "8.x-1.0-alpha7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/yaml_content-8.x-1.0-alpha7.zip", + "reference": "8.x-1.0-alpha7", + "shasum": "9aaf271446a64c9bffc5639589d5c8e6dc40c06c" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "require-dev": { + "mikey179/vfsstream": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha7", + "datestamp": "1588173300", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "DamienMcKenna", + "homepage": "https://www.drupal.org/user/108450" + }, + { + "name": "shrop", + "homepage": "https://www.drupal.org/user/14767" + }, + { + "name": "slucero", + "homepage": "https://www.drupal.org/user/1612534" + } + ], + "description": "Demo content generator using yaml content templates.", + "homepage": "https://www.drupal.org/project/yaml_content", + "support": { + "source": "https://git.drupalcode.org/project/yaml_content" + } + }, { "name": "drush/drush", "version": "10.3.6", @@ -11216,72 +13050,73 @@ }, { "name": "drutopia/drutopia", - "version": "1.0-rc2", + "version": "dev-8.x-1.x", "source": { "type": "git", - "url": "https://github.com/drutopia/drutopia.git", - "reference": "01edcc46947db69c0095a0a11dd2d5f76e54a7b5" + "url": "https://gitlab.com/drutopia/drutopia.git", + "reference": "6d91487857d30682df51a2f79a9d4c3ab5f438af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drutopia/drutopia/zipball/01edcc46947db69c0095a0a11dd2d5f76e54a7b5", - "reference": "01edcc46947db69c0095a0a11dd2d5f76e54a7b5", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=6d91487857d30682df51a2f79a9d4c3ab5f438af", + "reference": "6d91487857d30682df51a2f79a9d4c3ab5f438af", "shasum": "" }, "require": { "cweagans/composer-patches": "^1.6", - "drupal/antibot": "^1.3", + "drupal/antibot": "^1.4", "drupal/better_normalizers": "^1.0-beta4", "drupal/block_visibility_groups": "^1.3", - "drupal/bulma": "^1.0-beta4", - "drupal/components": "^1.1", + "drupal/bulma": "^1.0-rc1", "drupal/config_actions_provider": "^1.0-rc1", "drupal/config_sync": "^2.0-beta5", "drupal/config_update": "^1.7", - "drupal/core": "^8.8", - "drupal/core-composer-scaffold": "^8.8", - "drupal/default_content": "^1.0-alpha8", - "drupal/drutopia_action": "^1.0-rc1", - "drupal/drutopia_article": "^1.0-rc1", - "drupal/drutopia_blog": "^1.0-rc1", - "drupal/drutopia_campaign": "^1.0-rc1", - "drupal/drutopia_comment": "^1.0-rc1", - "drupal/drutopia_core": "^1.0-rc2", - "drupal/drutopia_event": "^1.0-rc1", - "drupal/drutopia_group": "^1.0-rc1", - "drupal/drutopia_landing_page": "^1.0-rc1", - "drupal/drutopia_page": "^1.0-rc1", - "drupal/drutopia_people": "^1.0-rc1", - "drupal/drutopia_related_content": "^1.0-rc1", - "drupal/drutopia_resource": "^1.0-rc1", - "drupal/drutopia_search": "^1.0-rc1", - "drupal/drutopia_seo": "^1.0-rc1", - "drupal/drutopia_site": "^1.0-rc1", - "drupal/drutopia_social": "^1.0-rc1", - "drupal/drutopia_storyline": "^1.0-rc1", - "drupal/drutopia_user": "^1.0-rc1", - "drupal/eu_cookie_compliance": "^1.8", - "drupal/features": "^3.8", - "drupal/gdpr": "^2.0-alpha7", - "drupal/honeypot": "^1.30", - "drupal/menu_block": "^1.5", - "drupal/octavia": "^1.0-rc1", - "drupal/paranoia": "^1.0-alpha1", + "drupal/default_content": "^1.0-alpha9", + "drupal/drutopia_action": "^1.1", + "drupal/drutopia_article": "^1.1", + "drupal/drutopia_blog": "^1.1", + "drupal/drutopia_campaign": "^1.1", + "drupal/drutopia_comment": "^1.1", + "drupal/drutopia_core": "^1.1", + "drupal/drutopia_event": "^1.1", + "drupal/drutopia_group": "^1.1", + "drupal/drutopia_landing_page": "^1.1", + "drupal/drutopia_page": "^1.1", + "drupal/drutopia_people": "^1.1", + "drupal/drutopia_related_content": "^1.1", + "drupal/drutopia_resource": "^1.1", + "drupal/drutopia_search": "^1.1", + "drupal/drutopia_seo": "^1.1", + "drupal/drutopia_site": "^1.1", + "drupal/drutopia_social": "^1.1", + "drupal/drutopia_storyline": "^1.1", + "drupal/drutopia_user": "^1.1", + "drupal/eu_cookie_compliance": "^1.9", + "drupal/features": "^3.11", + "drupal/gdpr": "2.x-dev", + "drupal/honeypot": "^2.0", + "drupal/menu_block": "^1.6", + "drupal/octavia": "^1.1", + "drupal/paranoia": "^1.0-rc1", "drupal/riddler": "^1.1", - "drupal/subprofiles": "^1.0-alpha2" + "drupal/subprofiles": "^1.0", + "drupal/twigsuggest": "^1.0", + "drupal/yaml_content": "^1.0-alpha7", + "geeks4change/composer-pin": "*" }, "require-dev": { "behat/behat": "^3.0", "behat/mink": "~1.7", "behat/mink-goutte-driver": "~1.2", "drupal/devel": "^2.0", - "drush/drush": "^9.0", + "drush/drush": "^10.0", "jcalderonzumba/gastonjs": "~1.0.2", "mikey179/vfsstream": "~1.2", "se/selenium-server-standalone": "^2.53", "squizlabs/php_codesniffer": "2.*", "symfony/css-selector": "~2.8" }, + "default-branch": true, "type": "drupal-profile", "extra": { "drupal-scaffold": { @@ -11292,111 +13127,42 @@ "enable-patching": true, "patches": { "drupal/ds": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2020-04-30/2895316-10.patch" + "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" } } }, "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", "support": { - "source": "https://github.com/drutopia/drutopia/tree/8.x-1.0-rc2", - "issues": "https://github.com/drutopia/drutopia/issues" + "source": "https://gitlab.com/drutopia/drutopia/-/tree/8.x-1.x" }, - "time": "2020-05-06T22:41:46+00:00" - }, - { - "name": "easyrdf/easyrdf", - "version": "0.9.1", - "source": { - "type": "git", - "url": "https://github.com/easyrdf/easyrdf.git", - "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566", - "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "ext-pcre": "*", - "php": ">=5.2.8" - }, - "require-dev": { - "phpunit/phpunit": "~3.5", - "sami/sami": "~1.4", - "squizlabs/php_codesniffer": "~1.4.3" - }, - "suggest": { - "ml/json-ld": "~1.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "EasyRdf_": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Nicholas Humfrey", - "email": "njh@aelius.com", - "homepage": "http://www.aelius.com/njh/", - "role": "Developer" - }, - { - "name": "Alexey Zakhlestin", - "email": "indeyets@gmail.com", - "role": "Developer" - } - ], - "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.", - "homepage": "http://www.easyrdf.org/", - "keywords": [ - "Linked Data", - "RDF", - "Semantic Web", - "Turtle", - "rdfa", - "sparql" - ], - "support": { - "forum": "http://groups.google.com/group/easyrdf/", - "irc": "irc://chat.freenode.net/easyrdf", - "issues": "http://github.com/njh/easyrdf/issues", - "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1" - }, - "time": "2015-02-27T09:45:49+00:00" + "time": "2022-01-28T01:13:05+00:00" }, { "name": "egulias/email-validator", - "version": "2.1.17", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ade6887fd9bd74177769645ab5c474824f8a418a" + "reference": "ee0db30118f661fb166bcffbf5d82032df484697" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a", - "reference": "ade6887fd9bd74177769645ab5c474824f8a418a", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697", + "reference": "ee0db30118f661fb166bcffbf5d82032df484697", "shasum": "" }, "require": { - "doctrine/lexer": "^1.0.1", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.10" + "doctrine/lexer": "^1.2", + "php": ">=7.2", + "symfony/polyfill-intl-idn": "^1.15" }, "require-dev": { - "dominicsayers/isemail": "^3.0.7", - "phpunit/phpunit": "^4.8.36|^7.5.15", - "satooshi/php-coveralls": "^1.0.1" + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^8.5.8|^9.3.3", + "vimeo/psalm": "^4" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -11404,12 +13170,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "EmailValidator" + "Egulias\\EmailValidator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -11432,9 +13198,15 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/2.1.17" + "source": "https://github.com/egulias/EmailValidator/tree/3.1.2" }, - "time": "2020-02-13T22:36:52+00:00" + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2021-10-11T09:18:27+00:00" }, { "name": "ezyang/htmlpurifier", @@ -11487,6 +13259,109 @@ }, "time": "2021-12-25T01:21:49+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.0.4", + "source": { + "type": "git", + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "0690bde05318336c7221785f2a932467f98b64ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/0690bde05318336c7221785f2a932467f98b64ca", + "reference": "0690bde05318336c7221785f2a932467f98b64ca", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "phpoption/phpoption": "^1.8" + }, + "require-dev": { + "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.19 || ^9.5.8" + }, + "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.0.4" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" + } + ], + "time": "2021-11-21T21:41:47+00:00" + }, { "name": "grasmash/expander", "version": "1.0.0", @@ -11592,16 +13467,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "6.5.4", + "version": "6.5.5", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d" + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d", - "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", "shasum": "" }, "require": { @@ -11609,7 +13484,7 @@ "guzzlehttp/promises": "^1.0", "guzzlehttp/psr7": "^1.6.1", "php": ">=5.5", - "symfony/polyfill-intl-idn": "1.17.0" + "symfony/polyfill-intl-idn": "^1.17.0" }, "require-dev": { "ext-curl": "*", @@ -11659,32 +13534,32 @@ "issues": "https://github.com/guzzle/guzzle/issues", "source": "https://github.com/guzzle/guzzle/tree/6.5" }, - "time": "2020-05-25T19:35:05+00:00" + "time": "2020-06-16T21:01:06+00:00" }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.5.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da", + "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.5-dev" } }, "autoload": { @@ -11700,10 +13575,25 @@ "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", @@ -11712,22 +13602,36 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/master" + "source": "https://github.com/guzzle/promises/tree/1.5.1" }, - "time": "2016-12-20T10:07:11+00:00" + "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": "2021-10-22T20:56:57+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.8.3", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85", + "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85", "shasum": "" }, "require": { @@ -11740,15 +13644,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -11764,13 +13668,34 @@ "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" } ], @@ -11787,22 +13712,36 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.6.1" + "source": "https://github.com/guzzle/psr7/tree/1.8.3" }, - "time": "2019-07-01T23:21:34+00:00" + "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": "2021-10-05T13:56:00+00:00" }, { "name": "html2text/html2text", - "version": "4.0.1", + "version": "4.3.1", "source": { "type": "git", "url": "https://github.com/mtibben/html2text.git", - "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1" + "reference": "61ad68e934066a6f8df29a3d23a6460536d0855c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mtibben/html2text/zipball/f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", - "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", + "url": "https://api.github.com/repos/mtibben/html2text/zipball/61ad68e934066a6f8df29a3d23a6460536d0855c", + "reference": "61ad68e934066a6f8df29a3d23a6460536d0855c", "shasum": "" }, "require-dev": { @@ -11823,14 +13762,14 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPLv2" + "GPL-2.0-or-later" ], "description": "Converts HTML to formatted plain text", "support": { "issues": "https://github.com/mtibben/html2text/issues", - "source": "https://github.com/mtibben/html2text/tree/master" + "source": "https://github.com/mtibben/html2text/tree/4.3.1" }, - "time": "2016-03-16T23:24:34+00:00" + "time": "2020-04-16T23:44:31+00:00" }, { "name": "indieauth/client", @@ -12023,222 +13962,51 @@ }, "time": "2015-12-23T18:11:19+00:00" }, - { - "name": "jquery/chosen", - "version": "1.8.7", - "dist": { - "type": "zip", - "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.chosen" - } - }, - { - "name": "jquery/geocomplete", - "version": "1.7.0", - "dist": { - "type": "zip", - "url": "https://github.com/ubilabs/geocomplete/archive/1.7.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.geocomplete" - } - }, - { - "name": "jquery/hotkeys", - "version": "0.2.0", - "dist": { - "type": "zip", - "url": "https://github.com/jeresig/jquery.hotkeys/archive/0.2.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.hotkeys" - } - }, - { - "name": "jquery/icheck", - "version": "1.0.2 ", - "dist": { - "type": "zip", - "url": "https://github.com/fronteed/icheck/archive/1.0.2.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.icheck" - } - }, - { - "name": "jquery/image-picker", - "version": "0.3.1", - "dist": { - "type": "zip", - "url": "https://github.com/rvera/image-picker/archive/0.3.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.image-picker" - } - }, - { - "name": "jquery/inputmask", - "version": "5.0.6", - "dist": { - "type": "zip", - "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.6.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.inputmask" - } - }, - { - "name": "jquery/intl-tel-input", - "version": "16.1.0", - "dist": { - "type": "zip", - "url": "https://github.com/jackocnr/intl-tel-input/archive/v16.1.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.intl-tel-input" - } - }, - { - "name": "jquery/rateit", - "version": "1.1.3", - "dist": { - "type": "zip", - "url": "https://github.com/gjunge/rateit.js/archive/1.1.3.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.rateit" - } - }, - { - "name": "jquery/select2", - "version": "4.0.13", - "dist": { - "type": "zip", - "url": "https://github.com/select2/select2/archive/4.0.13.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.select2" - } - }, - { - "name": "jquery/textcounter", - "version": "0.9.0", - "dist": { - "type": "zip", - "url": "https://github.com/ractoon/jQuery-Text-Counter/archive/0.9.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.textcounter" - } - }, - { - "name": "jquery/timepicker", - "version": "1.13.18", - "dist": { - "type": "zip", - "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.18.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.timepicker" - } - }, - { - "name": "jquery/toggles", - "version": "4.0.0", - "dist": { - "type": "zip", - "url": "https://github.com/simontabor/jquery-toggles/archive/v4.0.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "jquery.toggles" - } - }, { "name": "laminas/laminas-diactoros", - "version": "1.8.7p2", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa" + "reference": "0c26ef1d95b6d7e6e3943a243ba3dc0797227199" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa", - "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/0c26ef1d95b6d7e6e3943a243ba3dc0797227199", + "reference": "0c26ef1d95b6d7e6e3943a243ba3dc0797227199", "shasum": "" }, "require": { - "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0", + "php": "^7.3 || ~8.0.0 || ~8.1.0", + "psr/http-factory": "^1.0", "psr/http-message": "^1.0" }, + "conflict": { + "phpspec/prophecy": "<1.9.0", + "zendframework/zend-diactoros": "*" + }, "provide": { + "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, - "replace": { - "zendframework/zend-diactoros": "~1.8.7.0" - }, "require-dev": { + "ext-curl": "*", "ext-dom": "*", + "ext-gd": "*", "ext-libxml": "*", - "laminas/laminas-coding-standard": "~1.0", - "php-http/psr7-integration-tests": "dev-master", - "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7" + "http-interop/http-factory-tests": "^0.8.0", + "laminas/laminas-coding-standard": "~1.0.0", + "php-http/psr7-integration-tests": "^1.1", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.1", + "psalm/plugin-phpunit": "^0.14.0", + "vimeo/psalm": "^4.3" }, "type": "library", "extra": { - "branch-alias": { - "dev-release-1.8": "1.8.x-dev" + "laminas": { + "config-provider": "Laminas\\Diactoros\\ConfigProvider", + "module": "Laminas\\Diactoros" } }, "autoload": { @@ -12274,6 +14042,7 @@ "http", "laminas", "psr", + "psr-17", "psr-7" ], "support": { @@ -12284,40 +14053,45 @@ "rss": "https://github.com/laminas/laminas-diactoros/releases.atom", "source": "https://github.com/laminas/laminas-diactoros" }, - "time": "2020-03-23T15:28:28+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-09-22T03:54:36+00:00" }, { "name": "laminas/laminas-escaper", - "version": "2.6.1", + "version": "2.9.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70" + "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70", - "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/891ad70986729e20ed2e86355fcf93c9dc238a5f", + "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f", "shasum": "" }, "require": { - "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ~8.0.0 || ~8.1.0" }, - "replace": { - "zendframework/zend-escaper": "self.version" + "conflict": { + "zendframework/zend-escaper": "*" }, "require-dev": { - "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "laminas/laminas-coding-standard": "~2.3.0", + "phpunit/phpunit": "^9.3", + "psalm/plugin-phpunit": "^0.12.2", + "vimeo/psalm": "^3.16" + }, + "suggest": { + "ext-iconv": "*", + "ext-mbstring": "*" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.6.x-dev", - "dev-develop": "2.7.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Escaper\\": "src/" @@ -12341,42 +14115,50 @@ "rss": "https://github.com/laminas/laminas-escaper/releases.atom", "source": "https://github.com/laminas/laminas-escaper" }, - "time": "2019-12-31T16:43:30+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-09-02T17:10:53+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.12.2", + "version": "2.15.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" + "reference": "3ef837a12833c74b438d2c3780023c4244e0abae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", - "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3ef837a12833c74b438d2c3780023c4244e0abae", + "reference": "3ef837a12833c74b438d2c3780023c4244e0abae", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", - "laminas/laminas-escaper": "^2.5.2", - "laminas/laminas-stdlib": "^3.2.1", - "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "laminas/laminas-escaper": "^2.9", + "laminas/laminas-stdlib": "^3.6", + "php": "^7.3 || ~8.0.0 || ~8.1.0" }, - "replace": { - "zendframework/zend-feed": "^2.12.0" + "conflict": { + "laminas/laminas-servicemanager": "<3.3", + "zendframework/zend-feed": "*" }, "require-dev": { "laminas/laminas-cache": "^2.7.2", - "laminas/laminas-coding-standard": "~1.0.0", - "laminas/laminas-db": "^2.8.2", - "laminas/laminas-http": "^2.7", - "laminas/laminas-servicemanager": "^2.7.8 || ^3.3", - "laminas/laminas-validator": "^2.10.1", - "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20", - "psr/http-message": "^1.0.1" + "laminas/laminas-coding-standard": "~2.2.1", + "laminas/laminas-db": "^2.13.3", + "laminas/laminas-http": "^2.15", + "laminas/laminas-servicemanager": "^3.7", + "laminas/laminas-validator": "^2.15", + "phpunit/phpunit": "^9.5.5", + "psalm/plugin-phpunit": "^0.13.0", + "psr/http-message": "^1.0.1", + "vimeo/psalm": "^4.1" }, "suggest": { "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", @@ -12387,12 +14169,6 @@ "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.12.x-dev", - "dev-develop": "2.13.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Feed\\": "src/" @@ -12416,41 +14192,42 @@ "rss": "https://github.com/laminas/laminas-feed/releases.atom", "source": "https://github.com/laminas/laminas-feed" }, - "time": "2020-03-29T12:36:29+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-09-20T18:11:11+00:00" }, { "name": "laminas/laminas-stdlib", - "version": "3.2.1", + "version": "3.6.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" + "reference": "db581851a092246ad99e12d4fddf105184924c71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", - "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/db581851a092246ad99e12d4fddf105184924c71", + "reference": "db581851a092246ad99e12d4fddf105184924c71", "shasum": "" }, "require": { - "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^5.6 || ^7.0" + "php": "^7.3 || ~8.0.0 || ~8.1.0" }, - "replace": { - "zendframework/zend-stdlib": "self.version" + "conflict": { + "zendframework/zend-stdlib": "*" }, "require-dev": { - "laminas/laminas-coding-standard": "~1.0.0", - "phpbench/phpbench": "^0.13", - "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" + "laminas/laminas-coding-standard": "~2.3.0", + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "~9.3.7", + "psalm/plugin-phpunit": "^0.16.0", + "vimeo/psalm": "^4.7" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2.x-dev", - "dev-develop": "3.3.x-dev" - } - }, "autoload": { "psr-4": { "Laminas\\Stdlib\\": "src/" @@ -12474,7 +14251,13 @@ "rss": "https://github.com/laminas/laminas-stdlib/releases.atom", "source": "https://github.com/laminas/laminas-stdlib" }, - "time": "2019-12-31T17:51:15+00:00" + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-11-10T11:33:52+00:00" }, { "name": "laminas/laminas-xml", @@ -12536,70 +14319,6 @@ ], "time": "2021-11-30T02:16:35+00:00" }, - { - "name": "laminas/laminas-zendframework-bridge", - "version": "1.0.4", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "fcd87520e4943d968557803919523772475e8ea3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", - "reference": "fcd87520e4943d968557803919523772475e8ea3", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", - "squizlabs/php_codesniffer": "^3.5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev", - "dev-develop": "1.1.x-dev" - }, - "laminas": { - "module": "Laminas\\ZendFrameworkBridge" - } - }, - "autoload": { - "files": [ - "src/autoload.php" - ], - "psr-4": { - "Laminas\\ZendFrameworkBridge\\": "src//" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Alias legacy ZF class names to Laminas Project equivalents.", - "keywords": [ - "ZendFramework", - "autoloading", - "laminas", - "zf" - ], - "support": { - "forum": "https://discourse.laminas.dev/", - "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", - "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", - "source": "https://github.com/laminas/laminas-zendframework-bridge" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2020-05-20T16:45:56+00:00" - }, { "name": "lcobucci/jwt", "version": "3.4.6", @@ -12677,81 +14396,6 @@ ], "time": "2021-09-28T19:18:28+00:00" }, - { - "name": "league/commonmark", - "version": "0.18.5", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/commonmark.git", - "reference": "f94e18d68260f43a7d846279cad88405854b1306" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/f94e18d68260f43a7d846279cad88405854b1306", - "reference": "f94e18d68260f43a7d846279cad88405854b1306", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": ">=5.6.5" - }, - "replace": { - "colinodell/commonmark-php": "*" - }, - "require-dev": { - "cebe/markdown": "~1.0", - "commonmark/commonmark.js": "0.28", - "erusev/parsedown": "~1.0", - "michelf/php-markdown": "~1.4", - "mikehaertl/php-shellcommand": "^1.2", - "phpunit/phpunit": "^5.7.27|^6.5.14", - "scrutinizer/ocular": "^1.1", - "symfony/finder": "^3.0|^4.0" - }, - "suggest": { - "league/commonmark-extras": "Library of useful extensions including smart punctuation" - }, - "bin": [ - "bin/commonmark" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.19-dev" - } - }, - "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": "PHP Markdown parser based on the CommonMark spec", - "homepage": "https://github.com/thephpleague/commonmark", - "keywords": [ - "commonmark", - "markdown", - "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" - }, - "time": "2019-03-28T13:52:31+00:00" - }, { "name": "league/container", "version": "2.5.0", @@ -12829,6 +14473,90 @@ ], "time": "2021-02-22T09:20:06+00:00" }, + { + "name": "league/csv", + "version": "9.7.4", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/csv.git", + "reference": "002f55f649e7511710dc7154ff44c7be32c8195c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/002f55f649e7511710dc7154ff44c7be32c8195c", + "reference": "002f55f649e7511710dc7154ff44c7be32c8195c", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.3 || ^8.0" + }, + "require-dev": { + "ext-curl": "*", + "ext-dom": "*", + "friendsofphp/php-cs-fixer": "^3.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "suggest": { + "ext-dom": "Required to use the XMLConverter and or 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": "http://csv.thephpleague.com", + "keywords": [ + "convert", + "csv", + "export", + "filter", + "import", + "read", + "transform", + "write" + ], + "support": { + "docs": "https://csv.thephpleague.com", + "issues": "https://github.com/thephpleague/csv/issues", + "rss": "https://github.com/thephpleague/csv/releases.atom", + "source": "https://github.com/thephpleague/csv" + }, + "funding": [ + { + "url": "https://github.com/sponsors/nyamsprod", + "type": "github" + } + ], + "time": "2021-11-30T07:09:34+00:00" + }, { "name": "league/oauth2-client", "version": "2.6.1", @@ -12901,31 +14629,31 @@ }, { "name": "masterminds/html5", - "version": "2.3.0", + "version": "2.7.5", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "2c37c6c520b995b761674de3be8455a381679067" + "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067", - "reference": "2c37c6c520b995b761674de3be8455a381679067", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f640ac1bdddff06ea333a920c95bbad8872429ab", + "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab", "shasum": "" }, "require": { + "ext-ctype": "*", + "ext-dom": "*", "ext-libxml": "*", "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "4.*", - "sami/sami": "~2.0", - "satooshi/php-coveralls": "1.0.*" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "2.7-dev" } }, "autoload": { @@ -12942,13 +14670,13 @@ "name": "Matt Butcher", "email": "technosophos@gmail.com" }, - { - "name": "Asmir Mustafic", - "email": "goetas@gmail.com" - }, { "name": "Matt Farina", "email": "matt@mattfarina.com" + }, + { + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" } ], "description": "An HTML5 parser and serializer.", @@ -12964,9 +14692,9 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.x" + "source": "https://github.com/Masterminds/html5-php/tree/2.7.5" }, - "time": "2017-09-04T12:26:28+00:00" + "time": "2021-07-01T14:25:37+00:00" }, { "name": "mf2/mf2", @@ -13028,59 +14756,6 @@ }, "time": "2018-08-24T14:47:04+00:00" }, - { - "name": "michelf/php-markdown", - "version": "1.9.1", - "source": { - "type": "git", - "url": "https://github.com/michelf/php-markdown.git", - "reference": "5024d623c1a057dcd2d076d25b7d270a1d0d55f3" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/michelf/php-markdown/zipball/5024d623c1a057dcd2d076d25b7d270a1d0d55f3", - "reference": "5024d623c1a057dcd2d076d25b7d270a1d0d55f3", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">=4.3 <5.8" - }, - "type": "library", - "autoload": { - "psr-4": { - "Michelf\\": "Michelf/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Michel Fortin", - "email": "michel.fortin@michelf.ca", - "homepage": "https://michelf.ca/", - "role": "Developer" - }, - { - "name": "John Gruber", - "homepage": "https://daringfireball.net/" - } - ], - "description": "PHP Markdown", - "homepage": "https://michelf.ca/projects/php-markdown/", - "keywords": [ - "markdown" - ], - "support": { - "issues": "https://github.com/michelf/php-markdown/issues", - "source": "https://github.com/michelf/php-markdown/tree/1.9.1" - }, - "time": "2021-11-24T02:52:38+00:00" - }, { "name": "mikehaertl/php-shellcommand", "version": "1.6.4", @@ -13578,20 +15253,20 @@ }, { "name": "paragonie/random_compat", - "version": "v9.99.99", + "version": "v9.99.100", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", "shasum": "" }, "require": { - "php": "^7" + "php": ">= 7" }, "require-dev": { "phpunit/phpunit": "4.*|5.*", @@ -13624,7 +15299,7 @@ "issues": "https://github.com/paragonie/random_compat/issues", "source": "https://github.com/paragonie/random_compat" }, - "time": "2018-07-02T15:55:56+00:00" + "time": "2020-10-15T08:29:30+00:00" }, { "name": "pear/archive_tar", @@ -13759,16 +15434,16 @@ }, { "name": "pear/pear-core-minimal", - "version": "v1.10.10", + "version": "v1.10.11", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "625a3c429d9b2c1546438679074cac1b089116a7" + "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7", - "reference": "625a3c429d9b2c1546438679074cac1b089116a7", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/68d0d32ada737153b7e93b8d3c710ebe70ac867d", + "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d", "shasum": "" }, "require": { @@ -13803,27 +15478,27 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", "source": "https://github.com/pear/pear-core-minimal" }, - "time": "2019-11-19T19:00:24+00:00" + "time": "2021-08-10T22:31:03+00:00" }, { "name": "pear/pear_exception", - "version": "v1.0.1", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/pear/PEAR_Exception.git", - "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7" + "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7", - "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", + "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", "shasum": "" }, "require": { - "php": ">=4.4.0" + "php": ">=5.2.0" }, "require-dev": { - "phpunit/phpunit": "*" + "phpunit/phpunit": "<9" }, "type": "class", "extra": { @@ -13862,7 +15537,7 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", "source": "https://github.com/pear/PEAR_Exception" }, - "time": "2019-12-10T10:24:42+00:00" + "time": "2021-03-21T15:43:46+00:00" }, { "name": "phpcollection/phpcollection", @@ -14186,32 +15861,17 @@ "time": "2021-10-20T20:12:14+00:00" }, { - "name": "progress-tracker/progress-tracker", - "version": "2.0.6", - "dist": { - "type": "zip", - "url": "https://github.com/NigelOToole/progress-tracker/archive/2.0.6.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "progress-tracker" - } - }, - { - "name": "psr/container", - "version": "1.0.0", + "name": "psr/cache", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" + "url": "https://github.com/php-fig/cache.git", + "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", - "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", + "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", "shasum": "" }, "require": { @@ -14225,7 +15885,7 @@ }, "autoload": { "psr-4": { - "Psr\\Container\\": "src/" + "Psr\\Cache\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -14238,6 +15898,50 @@ "homepage": "http://www.php-fig.org/" } ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/master" + }, + "time": "2016-08-06T20:24:11+00:00" + }, + { + "name": "psr/container", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/container.git", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Psr\\Container\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], "description": "Common Container Interface (PHP FIG PSR-11)", "homepage": "https://github.com/php-fig/container", "keywords": [ @@ -14249,9 +15953,64 @@ ], "support": { "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/master" + "source": "https://github.com/php-fig/container/tree/1.1.1" }, - "time": "2017-02-14T16:28:37+00:00" + "time": "2021-03-05T17:36:06+00:00" + }, + { + "name": "psr/http-factory", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-factory.git", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "shasum": "" + }, + "require": { + "php": ">=7.0.0", + "psr/http-message": "^1.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": "http://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/master" + }, + "time": "2019-04-30T12:38:16+00:00" }, { "name": "psr/http-message", @@ -14308,16 +16067,16 @@ }, { "name": "psr/log", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { @@ -14341,7 +16100,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -14352,9 +16111,9 @@ "psr-3" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.3" + "source": "https://github.com/php-fig/log/tree/1.1.4" }, - "time": "2020-03-23T09:12:05+00:00" + "time": "2021-05-03T11:20:27+00:00" }, { "name": "psy/psysh", @@ -14478,21 +16237,6 @@ }, "time": "2019-03-08T08:55:37+00:00" }, - { - "name": "signature_pad/signature_pad", - "version": "2.3.0", - "dist": { - "type": "zip", - "url": "https://github.com/szimek/signature_pad/archive/v2.3.0.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "signature_pad" - } - }, { "name": "squizlabs/php_codesniffer", "version": "3.6.2", @@ -14551,25 +16295,26 @@ }, { "name": "stack/builder", - "version": "v1.0.5", + "version": "v1.0.6", "source": { "type": "git", "url": "https://github.com/stackphp/builder.git", - "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a" + "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a", - "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a", + "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", + "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", "shasum": "" }, "require": { - "php": ">=5.3.0", - "symfony/http-foundation": "~2.1|~3.0|~4.0", - "symfony/http-kernel": "~2.1|~3.0|~4.0" + "php": ">=7.2.0", + "symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0", + "symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0" }, "require-dev": { - "silex/silex": "~1.0" + "phpunit/phpunit": "~8.0", + "symfony/routing": "^5.0" }, "type": "library", "extra": { @@ -14592,28 +16337,28 @@ "email": "igor@wiedler.ch" } ], - "description": "Builder for stack middlewares based on HttpKernelInterface.", + "description": "Builder for stack middleware based on HttpKernelInterface.", "keywords": [ "stack" ], "support": { "issues": "https://github.com/stackphp/builder/issues", - "source": "https://github.com/stackphp/builder/tree/master" + "source": "https://github.com/stackphp/builder/tree/v1.0.6" }, - "time": "2017-11-18T14:57:29+00:00" + "time": "2020-01-30T12:17:27+00:00" }, { "name": "stripe/stripe-php", - "version": "v7.115.0", + "version": "v7.116.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "a1c528a5076b80dc156601505994870d23313a73" + "reference": "7a39f594f213ed3f443a95adf769d1ecbc8393e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/a1c528a5076b80dc156601505994870d23313a73", - "reference": "a1c528a5076b80dc156601505994870d23313a73", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/7a39f594f213ed3f443a95adf769d1ecbc8393e7", + "reference": "7a39f594f213ed3f443a95adf769d1ecbc8393e7", "shasum": "" }, "require": { @@ -14658,50 +16403,42 @@ ], "support": { "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v7.115.0" + "source": "https://github.com/stripe/stripe-php/tree/v7.116.0" }, - "time": "2022-03-01T22:45:01+00:00" - }, - { - "name": "svg-pan-zoom/svg-pan-zoom", - "version": "3.6.1", - "dist": { - "type": "zip", - "url": "https://github.com/ariutta/svg-pan-zoom/archive/3.6.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "svg-pan-zoom" - } + "time": "2022-03-02T15:51:15+00:00" }, { "name": "swiftmailer/swiftmailer", - "version": "v5.4.12", + "version": "v6.3.0", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", - "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c", + "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c", "shasum": "" }, "require": { - "php": ">=5.3.3" + "egulias/email-validator": "^2.0|^3.1", + "php": ">=7.0.0", + "symfony/polyfill-iconv": "^1.0", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { - "mockery/mockery": "~0.9.1", - "symfony/phpunit-bridge": "~3.2" + "mockery/mockery": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.4" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.4-dev" + "dev-master": "6.2-dev" } }, "autoload": { @@ -14731,50 +16468,60 @@ ], "support": { "issues": "https://github.com/swiftmailer/swiftmailer/issues", - "source": "https://github.com/swiftmailer/swiftmailer/tree/v5.4.12" + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0" }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer", + "type": "tidelift" + } + ], "abandoned": "symfony/mailer", - "time": "2018-07-31T09:26:32+00:00" + "time": "2021-10-18T15:26:12+00:00" }, { "name": "symfony-cmf/routing", - "version": "1.4.1", + "version": "2.3.4", "source": { "type": "git", - "url": "https://github.com/symfony-cmf/routing.git", - "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac" + "url": "https://github.com/symfony-cmf/Routing.git", + "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", - "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", + "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b", + "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b", "shasum": "" }, "require": { - "php": "^5.3.9|^7.0", - "psr/log": "1.*", - "symfony/http-kernel": "^2.2|3.*", - "symfony/routing": "^2.2|3.*" + "php": "^7.2 || ^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "symfony/http-kernel": "^4.4 || ^5.0", + "symfony/routing": "^4.4 || ^5.0" }, "require-dev": { - "friendsofsymfony/jsrouting-bundle": "^1.1", - "symfony-cmf/testing": "^1.3", - "symfony/config": "^2.2|3.*", - "symfony/dependency-injection": "^2.0.5|3.*", - "symfony/event-dispatcher": "^2.1|3.*" + "symfony-cmf/testing": "^3@dev", + "symfony/config": "^4.4 || ^5.0", + "symfony/dependency-injection": "^4.4 || ^5.0", + "symfony/event-dispatcher": "^4.4 || ^5.0", + "symfony/phpunit-bridge": "^5.0" }, "suggest": { - "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)" + "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "Symfony\\Cmf\\Component\\Routing\\": "" + "Symfony\\Cmf\\Component\\Routing\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -14787,124 +16534,57 @@ "homepage": "https://github.com/symfony-cmf/Routing/contributors" } ], - "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers", + "description": "Extends the Symfony routing component for dynamic routes and chaining several routers", "homepage": "http://cmf.symfony.com", "keywords": [ "database", "routing" ], "support": { - "issues": "https://github.com/symfony-cmf/routing/issues", - "source": "https://github.com/symfony-cmf/routing/tree/1.4" + "issues": "https://github.com/symfony-cmf/Routing/issues", + "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4" }, - "time": "2017-05-09T08:10:41+00:00" - }, - { - "name": "symfony/class-loader", - "version": "v3.4.41", - "source": { - "type": "git", - "url": "https://github.com/symfony/class-loader.git", - "reference": "e4636a4f23f157278a19e5db160c63de0da297d8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8", - "reference": "e4636a4f23f157278a19e5db160c63de0da297d8", - "shasum": "" - }, - "require": { - "php": "^5.5.9|>=7.0.8" - }, - "require-dev": { - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/polyfill-apcu": "~1.1" - }, - "suggest": { - "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\ClassLoader\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony ClassLoader Component", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/class-loader/tree/3.4" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2020-03-15T09:38:08+00:00" + "time": "2021-11-08T16:33:10+00:00" }, { "name": "symfony/console", - "version": "v3.4.41", + "version": "v4.4.34", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13" + "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13", - "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13", + "url": "https://api.github.com/repos/symfony/console/zipball/329b3a75cc6b16d435ba1b1a41df54a53382a3f0", + "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/debug": "~2.8|~3.0|~4.0", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1|^2" }, "conflict": { + "psr/log": ">=3", "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3|>=5", + "symfony/lock": "<4.4", "symfony/process": "<3.3" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~3.3|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.3|~4.0" + "psr/log": "^1|^2", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/event-dispatcher": "^4.3", + "symfony/lock": "^4.4|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/var-dumper": "^4.3|^5.0" }, "suggest": { "psr/log": "For using the console logger", @@ -14913,11 +16593,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -14940,10 +16615,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Console Component", + "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/console/tree/v3.4.41" + "source": "https://github.com/symfony/console/tree/v4.4.34" }, "funding": [ { @@ -14959,38 +16634,99 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2021-11-04T12:23:33+00:00" }, { - "name": "symfony/debug", - "version": "v3.4.41", + "name": "symfony/css-selector", + "version": "v5.4.3", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d" + "url": "https://github.com/symfony/css-selector.git", + "reference": "b0a190285cd95cb019237851205b8140ef6e368e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d", - "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e", + "reference": "b0a190285cd95cb019237851205b8140ef6e368e", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0" - }, - "conflict": { - "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" - }, - "require-dev": { - "symfony/http-kernel": "~2.8|~3.0|~4.0" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.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": "2022-01-02T09:53:40+00:00" + }, + { + "name": "symfony/debug", + "version": "v4.4.31", + "source": { + "type": "git", + "url": "https://github.com/symfony/debug.git", + "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/debug/zipball/43ede438d4cb52cd589ae5dc070e9323866ba8e0", + "reference": "43ede438d4cb52cd589ae5dc070e9323866ba8e0", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "psr/log": "^1|^2|^3" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "symfony/http-kernel": "^3.4|^4.0|^5.0" + }, + "type": "library", "autoload": { "psr-4": { "Symfony\\Component\\Debug\\": "" @@ -15013,10 +16749,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Debug Component", + "description": "Provides tools to ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/debug/tree/3.4" + "source": "https://github.com/symfony/debug/tree/v4.4.31" }, "funding": [ { @@ -15032,39 +16768,42 @@ "type": "tidelift" } ], - "time": "2020-05-22T18:25:20+00:00" + "time": "2021-09-24T13:30:14+00:00" }, { "name": "symfony/dependency-injection", - "version": "v3.4.41", + "version": "v4.4.34", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac" + "reference": "117d7f132ed7efbd535ec947709d49bec1b9d24b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac", - "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/117d7f132ed7efbd535ec947709d49bec1b9d24b", + "reference": "117d7f132ed7efbd535ec947709d49bec1b9d24b", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/container": "^1.0" + "php": ">=7.1.3", + "psr/container": "^1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/service-contracts": "^1.1.6|^2" }, "conflict": { - "symfony/config": "<3.3.7", - "symfony/finder": "<3.3", + "symfony/config": "<4.3|>=5.0", + "symfony/finder": "<3.4", "symfony/proxy-manager-bridge": "<3.4", "symfony/yaml": "<3.4" }, "provide": { - "psr/container-implementation": "1.0" + "psr/container-implementation": "1.0", + "symfony/service-implementation": "1.0|2.0" }, "require-dev": { - "symfony/config": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/yaml": "~3.4|~4.0" + "symfony/config": "^4.3", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/yaml": "^4.4|^5.0" }, "suggest": { "symfony/config": "", @@ -15074,11 +16813,6 @@ "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" @@ -15101,10 +16835,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony DependencyInjection Component", + "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/3.4" + "source": "https://github.com/symfony/dependency-injection/tree/v4.4.34" }, "funding": [ { @@ -15120,7 +16854,7 @@ "type": "tidelift" } ], - "time": "2020-05-30T21:06:01+00:00" + "time": "2021-11-15T14:42:25+00:00" }, { "name": "symfony/deprecation-contracts", @@ -15190,42 +16924,114 @@ "time": "2021-07-12T14:48:14+00:00" }, { - "name": "symfony/event-dispatcher", - "version": "v3.4.41", + "name": "symfony/error-handler", + "version": "v4.4.34", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081" + "url": "https://github.com/symfony/error-handler.git", + "reference": "17785c374645def1e884d8ec49976c156c61db4d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081", - "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/17785c374645def1e884d8ec49976c156c61db4d", + "reference": "17785c374645def1e884d8ec49976c156c61db4d", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" - }, - "conflict": { - "symfony/dependency-injection": "<3.3" + "php": ">=7.1.3", + "psr/log": "^1|^2|^3", + "symfony/debug": "^4.4.5", + "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/stopwatch": "~2.8|~3.0|~4.0" + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" + }, + "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/v4.4.34" + }, + "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": "2021-11-12T14:57:39+00:00" + }, + { + "name": "symfony/event-dispatcher", + "version": "v4.4.34", + "source": { + "type": "git", + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8", + "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "~3.4|~4.4", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/stopwatch": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/dependency-injection": "", "symfony/http-kernel": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -15248,10 +17054,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony EventDispatcher Component", + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/3.4" + "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.34" }, "funding": [ { @@ -15267,20 +17073,99 @@ "type": "tidelift" } ], - "time": "2020-05-05T15:06:23+00:00" + "time": "2021-11-15T14:42:25+00:00" }, { - "name": "symfony/filesystem", - "version": "v4.4.37", + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.11", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/c59f37705c3e513ae55b2735f128f4ce363c82ec", - "reference": "c59f37705c3e513ae55b2735f128f4ce363c82ec", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/01e9a4efac0ee33a05dfdf93b346f62e7d0e998c", + "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c", + "shasum": "" + }, + "require": { + "php": ">=7.1.3" + }, + "suggest": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "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/v1.1.11" + }, + "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": "2021-03-23T15:25:38+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v4.4.39", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/72a5b35fecaa670b13954e6eaf414acbe2a67b35", + "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35", "shasum": "" }, "require": { @@ -15314,7 +17199,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.37" + "source": "https://github.com/symfony/filesystem/tree/v4.4.39" }, "funding": [ { @@ -15330,7 +17215,7 @@ "type": "tidelift" } ], - "time": "2022-01-02T09:41:36+00:00" + "time": "2022-02-25T10:38:15+00:00" }, { "name": "symfony/finder", @@ -15396,33 +17281,108 @@ "time": "2022-01-26T16:34:36+00:00" }, { - "name": "symfony/http-foundation", - "version": "v3.4.41", + "name": "symfony/http-client-contracts", + "version": "v2.5.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359" + "url": "https://github.com/symfony/http-client-contracts.git", + "reference": "ec82e57b5b714dbb69300d348bd840b345e24166" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359", - "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ec82e57b5b714dbb69300d348bd840b345e24166", + "reference": "ec82e57b5b714dbb69300d348bd840b345e24166", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php70": "~1.6" + "php": ">=7.2.5" }, - "require-dev": { - "symfony/expression-language": "~2.8|~3.0|~4.0" + "suggest": { + "symfony/http-client-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\HttpClient\\": "" + } + }, + "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 HTTP clients", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.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": "2021-11-03T09:24:47+00:00" + }, + { + "name": "symfony/http-foundation", + "version": "v4.4.34", + "source": { + "type": "git", + "url": "https://github.com/symfony/http-foundation.git", + "reference": "f4cbbb6fc428588ce8373802461e7fe84e6809ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f4cbbb6fc428588ce8373802461e7fe84e6809ab", + "reference": "f4cbbb6fc428588ce8373802461e7fe84e6809ab", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/mime": "^4.3|^5.0", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php80": "^1.16" + }, + "require-dev": { + "predis/predis": "~1.0", + "symfony/expression-language": "^3.4|^4.0|^5.0" + }, + "type": "library", "autoload": { "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" @@ -15445,10 +17405,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpFoundation Component", + "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/3.4" + "source": "https://github.com/symfony/http-foundation/tree/v4.4.34" }, "funding": [ { @@ -15464,72 +17424,69 @@ "type": "tidelift" } ], - "time": "2020-05-16T13:15:54+00:00" + "time": "2021-11-04T12:23:33+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.44", + "version": "v4.4.35", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326" + "reference": "fb793f1381c34b79a43596a532a6a49bd729c9db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", - "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/fb793f1381c34b79a43596a532a6a49bd729c9db", + "reference": "fb793f1381c34b79a43596a532a6a49bd729c9db", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "psr/log": "~1.0", - "symfony/debug": "^3.3.3|~4.0", - "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php56": "~1.8" + "php": ">=7.1.3", + "psr/log": "^1|^2", + "symfony/error-handler": "^4.4", + "symfony/event-dispatcher": "^4.4", + "symfony/http-client-contracts": "^1.1|^2", + "symfony/http-foundation": "^4.4.30|^5.3.7", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.16" }, "conflict": { - "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" + "symfony/browser-kit": "<4.3", + "symfony/config": "<3.4", + "symfony/console": ">=5", + "symfony/dependency-injection": "<4.3", + "symfony/translation": "<4.2", + "twig/twig": "<1.43|<2.13,>=2" }, "provide": { - "psr/log-implementation": "1.0" + "psr/log-implementation": "1.0|2.0" }, "require-dev": { - "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" + "psr/cache": "^1.0|^2.0|^3.0", + "symfony/browser-kit": "^4.3|^5.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/console": "^3.4|^4.0", + "symfony/css-selector": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^4.3|^5.0", + "symfony/dom-crawler": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/finder": "^3.4|^4.0|^5.0", + "symfony/process": "^3.4|^4.0|^5.0", + "symfony/routing": "^3.4|^4.0|^5.0", + "symfony/stopwatch": "^3.4|^4.0|^5.0", + "symfony/templating": "^3.4|^4.0|^5.0", + "symfony/translation": "^4.2|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "twig/twig": "^1.43|^2.13|^3.0.4" }, "suggest": { "symfony/browser-kit": "", "symfony/config": "", "symfony/console": "", - "symfony/dependency-injection": "", - "symfony/finder": "", - "symfony/var-dumper": "" + "symfony/dependency-injection": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\HttpKernel\\": "" @@ -15552,10 +17509,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony HttpKernel Component", + "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v3.4.44" + "source": "https://github.com/symfony/http-kernel/tree/v4.4.35" }, "funding": [ { @@ -15571,24 +17528,107 @@ "type": "tidelift" } ], - "time": "2020-08-31T05:53:42+00:00" + "time": "2021-11-24T08:40:10+00:00" }, { - "name": "symfony/polyfill-ctype", - "version": "v1.17.0", + "name": "symfony/mime", + "version": "v5.4.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9" + "url": "https://github.com/symfony/mime.git", + "reference": "d4365000217b67c01acff407573906ff91bcfb34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9", - "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9", + "url": "https://api.github.com/repos/symfony/mime/zipball/d4365000217b67c01acff407573906ff91bcfb34", + "reference": "d4365000217b67c01acff407573906ff91bcfb34", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "egulias/email-validator": "~3.0.0", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", + "symfony/mailer": "<4.4" + }, + "require-dev": { + "egulias/email-validator": "^2.1.10|^3.1", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/property-access": "^4.4|^5.1|^6.0", + "symfony/property-info": "^4.4|^5.1|^6.0", + "symfony/serializer": "^5.2|^6.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/v5.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": "2021-11-23T10:19:22+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.23.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "shasum": "" + }, + "require": { + "php": ">=7.1" }, "suggest": { "ext-ctype": "For best performance" @@ -15596,7 +17636,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -15630,7 +17674,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" }, "funding": [ { @@ -15646,24 +17690,24 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:14:59+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.17.0", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424" + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424", - "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-iconv": "For best performance" @@ -15671,7 +17715,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -15706,7 +17754,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0" }, "funding": [ { @@ -15722,25 +17770,25 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:47:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.17.0", + "version": "v1.23.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a" + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a", - "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-mbstring": "^1.3", + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", "symfony/polyfill-php72": "^1.10" }, "suggest": { @@ -15749,7 +17797,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -15769,6 +17821,10 @@ "name": "Laurent Bassin", "email": "laurent@bassin.info" }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" @@ -15785,7 +17841,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/master" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0" }, "funding": [ { @@ -15801,24 +17857,108 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:47:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.17.0", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fa79b11539418b02fc5e1897267673ba2c19419c" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c", - "reference": "fa79b11539418b02fc5e1897267673ba2c19419c", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-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.23.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": "2021-02-19T12:13:01+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", + "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", + "shasum": "" + }, + "require": { + "php": ">=7.1" }, "suggest": { "ext-mbstring": "For best performance" @@ -15826,7 +17966,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -15861,7 +18005,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" }, "funding": [ { @@ -15877,178 +18021,33 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:47:27+00:00" - }, - { - "name": "symfony/polyfill-php56", - "version": "v1.17.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "e3c8c138280cdfe4b81488441555583aa1984e23" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23", - "reference": "e3c8c138280cdfe4b81488441555583aa1984e23", - "shasum": "" - }, - "require": { - "php": ">=5.3.3", - "symfony/polyfill-util": "~1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.17-dev" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php56\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.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": "2020-05-12T16:47:27+00:00" - }, - { - "name": "symfony/polyfill-php70", - "version": "v1.17.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "82225c2d7d23d7e70515496d249c0152679b468e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e", - "reference": "82225c2d7d23d7e70515496d249c0152679b468e", - "shasum": "" - }, - "require": { - "paragonie/random_compat": "~1.0|~2.0|~9.99", - "php": ">=5.3.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.17-dev" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php70\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php70/tree/master" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2020-05-12T16:47:27+00:00" + "time": "2021-05-27T12:26:48+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.17.0", + "version": "v1.25.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "f048e612a3905f34931127360bdd2def19a5e582" + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582", - "reference": "f048e612a3905f34931127360bdd2def19a5e582", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976", + "reference": "9a142215a36a3888e30d0a9eeea9766764e96976", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -16082,7 +18081,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/master" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.25.0" }, "funding": [ { @@ -16098,20 +18097,99 @@ "type": "tidelift" } ], - "time": "2020-05-12T16:47:27+00:00" + "time": "2021-05-27T09:17:38+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.24.0", + "name": "symfony/polyfill-php73", + "version": "v1.25.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9" + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9", - "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5", + "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.25.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": "2021-06-05T21:20:04+00:00" + }, + { + "name": "symfony/polyfill-php80", + "version": "v1.23.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", + "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", "shasum": "" }, "require": { @@ -16165,7 +18243,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" }, "funding": [ { @@ -16181,100 +18259,27 @@ "type": "tidelift" } ], - "time": "2021-09-13T13:58:33+00:00" - }, - { - "name": "symfony/polyfill-util", - "version": "v1.17.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-util.git", - "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7", - "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.17-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Util\\": "" - } - }, - "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 utilities for portability of PHP codes", - "homepage": "https://symfony.com", - "keywords": [ - "compat", - "compatibility", - "polyfill", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-util/tree/master" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2020-05-12T16:14:59+00:00" + "time": "2021-07-28T13:41:28+00:00" }, { "name": "symfony/process", - "version": "v3.4.41", + "version": "v4.4.35", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21" + "reference": "c2098705326addae6e6742151dfade47ac71da1b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21", - "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21", + "url": "https://api.github.com/repos/symfony/process/zipball/c2098705326addae6e6742151dfade47ac71da1b", + "reference": "c2098705326addae6e6742151dfade47ac71da1b", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.1.3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Process\\": "" @@ -16297,10 +18302,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Process Component", + "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v3.4.41" + "source": "https://github.com/symfony/process/tree/v4.4.35" }, "funding": [ { @@ -16316,29 +18321,36 @@ "type": "tidelift" } ], - "time": "2020-05-23T17:05:51+00:00" + "time": "2021-11-22T22:36:24+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v1.1.2", + "version": "v2.1.2", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "a33352af16f78a5ff4f9d90811536abf210df12b" + "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b", - "reference": "a33352af16f78a5ff4f9d90811536abf210df12b", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", + "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0", + "php": ">=7.1", "psr/http-message": "^1.0", - "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0" + "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0" }, "require-dev": { - "symfony/phpunit-bridge": "^3.4 || ^4.0" + "nyholm/psr7": "^1.1", + "psr/log": "^1.1 || ^2 || ^3", + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0", + "symfony/config": "^4.4 || ^5.0 || ^6.0", + "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0", + "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0", + "symfony/phpunit-bridge": "^5.4@dev || ^6.0" }, "suggest": { "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" @@ -16346,7 +18358,7 @@ "type": "symfony-bridge", "extra": { "branch-alias": { - "dev-master": "1.1-dev" + "dev-main": "2.1-dev" } }, "autoload": { @@ -16362,13 +18374,13 @@ "MIT" ], "authors": [ - { - "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" - }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" } ], "description": "PSR HTTP message bridge", @@ -16381,40 +18393,55 @@ ], "support": { "issues": "https://github.com/symfony/psr-http-message-bridge/issues", - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.2" }, - "time": "2019-04-03T17:09:40+00:00" + "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": "2021-11-05T13:13:39+00:00" }, { "name": "symfony/routing", - "version": "v3.4.41", + "version": "v4.4.34", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f" + "reference": "fc9dda0c8496f8ef0a89805c2eabfc43b8cef366" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f", - "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f", + "url": "https://api.github.com/repos/symfony/routing/zipball/fc9dda0c8496f8ef0a89805c2eabfc43b8cef366", + "reference": "fc9dda0c8496f8ef0a89805c2eabfc43b8cef366", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.1.3", + "symfony/polyfill-php80": "^1.16" }, "conflict": { - "symfony/config": "<3.3.1", - "symfony/dependency-injection": "<3.3", + "symfony/config": "<4.2", + "symfony/dependency-injection": "<3.4", "symfony/yaml": "<3.4" }, "require-dev": { - "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" + "doctrine/annotations": "^1.10.4", + "psr/log": "^1|^2|^3", + "symfony/config": "^4.2|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/yaml": "^3.4|^4.0|^5.0" }, "suggest": { "doctrine/annotations": "For using the annotation loader", @@ -16424,11 +18451,6 @@ "symfony/yaml": "For using the YAML loader" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Routing\\": "" @@ -16451,7 +18473,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Routing Component", + "description": "Maps an HTTP request to a set of configuration variables", "homepage": "https://symfony.com", "keywords": [ "router", @@ -16460,7 +18482,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/3.4" + "source": "https://github.com/symfony/routing/tree/v4.4.34" }, "funding": [ { @@ -16476,48 +18498,51 @@ "type": "tidelift" } ], - "time": "2020-05-30T19:50:06+00:00" + "time": "2021-11-04T12:23:33+00:00" }, { "name": "symfony/serializer", - "version": "v3.4.41", + "version": "v4.4.35", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f" + "reference": "1b2ae02cb1b923987947e013688c51954a80b751" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f", - "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f", + "url": "https://api.github.com/repos/symfony/serializer/zipball/1b2ae02cb1b923987947e013688c51954a80b751", + "reference": "1b2ae02cb1b923987947e013688c51954a80b751", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-ctype": "~1.8" + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php80": "^1.16" }, "conflict": { - "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", + "phpdocumentor/reflection-docblock": "<3.0|>=3.2.0,<3.2.2", + "phpdocumentor/type-resolver": "<0.3.0|1.3.*", + "symfony/dependency-injection": "<3.4", + "symfony/property-access": "<3.4", + "symfony/property-info": "<3.4", "symfony/yaml": "<3.4" }, "require-dev": { - "doctrine/annotations": "~1.0", - "doctrine/cache": "~1.0", - "phpdocumentor/reflection-docblock": "^3.0|^4.0", - "symfony/cache": "~3.1|~4.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.2|~4.0", - "symfony/http-foundation": "~2.8|~3.0|~4.0", - "symfony/property-access": "~2.8|~3.0|~4.0", - "symfony/property-info": "^3.4.13|~4.0", - "symfony/yaml": "~3.4|~4.0" + "doctrine/annotations": "^1.10.4", + "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", + "symfony/cache": "^3.4|^4.0|^5.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/error-handler": "^4.4|^5.0", + "symfony/http-foundation": "^3.4|^4.0|^5.0", + "symfony/mime": "^4.4|^5.0", + "symfony/property-access": "^3.4.41|^4.4.9|^5.0.9", + "symfony/property-info": "^3.4.13|~4.0|^5.0", + "symfony/validator": "^3.4|^4.0|^5.0", + "symfony/yaml": "^3.4|^4.0|^5.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.", + "doctrine/annotations": "For using the annotation mapping.", "psr/cache-implementation": "For using the metadata cache.", "symfony/config": "For using the XML mapping loader.", "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", @@ -16526,11 +18551,6 @@ "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\\": "" @@ -16553,10 +18573,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Serializer Component", + "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v3.4.41" + "source": "https://github.com/symfony/serializer/tree/v4.4.35" }, "funding": [ { @@ -16572,40 +18592,130 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2021-11-24T08:12:42+00:00" }, { - "name": "symfony/translation", - "version": "v3.4.41", + "name": "symfony/service-contracts", + "version": "v2.5.0", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f" + "url": "https://github.com/symfony/service-contracts.git", + "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f", - "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", + "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=7.2.5", + "psr/container": "^1.1", + "symfony/deprecation-contracts": "^2.1" }, "conflict": { - "symfony/config": "<2.8", + "ext-psr": "<1.1|>=2" + }, + "suggest": { + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "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/v2.5.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": "2021-11-04T16:48:04+00:00" + }, + { + "name": "symfony/translation", + "version": "v4.4.34", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "26d330720627b234803595ecfc0191eeabc65190" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/26d330720627b234803595ecfc0191eeabc65190", + "reference": "26d330720627b234803595ecfc0191eeabc65190", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.16", + "symfony/translation-contracts": "^1.1.6|^2" + }, + "conflict": { + "symfony/config": "<3.4", "symfony/dependency-injection": "<3.4", + "symfony/http-kernel": "<4.4", "symfony/yaml": "<3.4" }, + "provide": { + "symfony/translation-implementation": "1.0|2.0" + }, "require-dev": { - "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/http-kernel": "~3.4|~4.0", - "symfony/intl": "^2.8.18|^3.2.5|~4.0", - "symfony/var-dumper": "~3.4|~4.0", - "symfony/yaml": "~3.4|~4.0" + "psr/log": "^1|^2|^3", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/console": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/finder": "~2.8|~3.0|~4.0|^5.0", + "symfony/http-kernel": "^4.4", + "symfony/intl": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1.2|^2", + "symfony/yaml": "^3.4|^4.0|^5.0" }, "suggest": { "psr/log-implementation": "To use logging capability in translator", @@ -16613,11 +18723,6 @@ "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Translation\\": "" @@ -16640,10 +18745,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Translation Component", + "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/3.4" + "source": "https://github.com/symfony/translation/tree/v4.4.34" }, "funding": [ { @@ -16659,68 +18764,149 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:58:05+00:00" + "time": "2021-11-04T12:23:33+00:00" }, { - "name": "symfony/validator", - "version": "v3.4.41", + "name": "symfony/translation-contracts", + "version": "v2.5.0", "source": { "type": "git", - "url": "https://github.com/symfony/validator.git", - "reference": "5fb88120a11a75e17b602103a893dd8b27804529" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529", - "reference": "5fb88120a11a75e17b602103a893dd8b27804529", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e", + "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": ">=7.2.5" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } + }, + "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/v2.5.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": "2021-08-17T14:20:01+00:00" + }, + { + "name": "symfony/validator", + "version": "v4.4.35", + "source": { + "type": "git", + "url": "https://github.com/symfony/validator.git", + "reference": "629f420d8350634fd8ed686d4472c1f10044b265" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/validator/zipball/629f420d8350634fd8ed686d4472c1f10044b265", + "reference": "629f420d8350634fd8ed686d4472c1f10044b265", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0", - "symfony/translation": "~2.8|~3.0|~4.0" + "symfony/polyfill-php80": "^1.16", + "symfony/translation-contracts": "^1.1|^2" }, "conflict": { "doctrine/lexer": "<1.0.2", "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/dependency-injection": "<3.3", - "symfony/http-kernel": "<3.3.5", + "symfony/dependency-injection": "<3.4", + "symfony/http-kernel": "<4.4", + "symfony/intl": "<4.3", + "symfony/translation": ">=5.0", "symfony/yaml": "<3.4" }, "require-dev": { - "doctrine/annotations": "~1.7", - "doctrine/cache": "~1.0", - "egulias/email-validator": "^2.1.10", - "symfony/cache": "~3.1|~4.0", - "symfony/config": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.3|~4.0", - "symfony/expression-language": "~2.8|~3.0|~4.0", - "symfony/http-foundation": "~2.8|~3.0|~4.0", - "symfony/http-kernel": "^3.3.5|~4.0", - "symfony/intl": "^2.8.18|^3.2.5|~4.0", - "symfony/property-access": "~2.8|~3.0|~4.0", - "symfony/var-dumper": "~3.3|~4.0", - "symfony/yaml": "~3.4|~4.0" + "doctrine/annotations": "^1.10.4", + "doctrine/cache": "^1.0|^2.0", + "egulias/email-validator": "^2.1.10|^3", + "symfony/cache": "^3.4|^4.0|^5.0", + "symfony/config": "^3.4|^4.0|^5.0", + "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/http-client": "^4.3|^5.0", + "symfony/http-foundation": "^4.1|^5.0", + "symfony/http-kernel": "^4.4", + "symfony/intl": "^4.3|^5.0", + "symfony/mime": "^4.4|^5.0", + "symfony/property-access": "^3.4|^4.0|^5.0", + "symfony/property-info": "^3.4|^4.0|^5.0", + "symfony/translation": "^4.2", + "symfony/yaml": "^3.4|^4.0|^5.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.", + "doctrine/cache": "For using the default cached annotation reader.", "egulias/email-validator": "Strict (RFC compliant) email validation", - "psr/cache-implementation": "For using the metadata cache.", + "psr/cache-implementation": "For using the mapping 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/property-info": "To automatically add NotNull and Type constraints", + "symfony/translation": "For translating validation errors.", "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Validator\\": "" @@ -16743,10 +18929,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Validator Component", + "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/3.4" + "source": "https://github.com/symfony/validator/tree/v4.4.35" }, "funding": [ { @@ -16762,37 +18948,37 @@ "type": "tidelift" } ], - "time": "2020-05-30T18:43:38+00:00" + "time": "2021-11-22T21:43:32+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.4.38", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "20030f729d5539e2672181930fd6d5a3525f118e" + "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/20030f729d5539e2672181930fd6d5a3525f118e", - "reference": "20030f729d5539e2672181930fd6d5a3525f118e", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89ab66eaef230c9cd1992de2e9a1b26652b127b9", + "reference": "89ab66eaef230c9cd1992de2e9a1b26652b127b9", "shasum": "" }, "require": { - "php": ">=7.1.3", + "php": ">=7.2.5", "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php72": "~1.5", "symfony/polyfill-php80": "^1.16" }, "conflict": { - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/console": "<3.4" + "phpunit/phpunit": "<5.4.3", + "symfony/console": "<4.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^3.4|^4.0|^5.0", - "symfony/process": "^4.4|^5.0", - "twig/twig": "^1.43|^2.13|^3.0.4" + "symfony/console": "^4.4|^5.0|^6.0", + "symfony/process": "^4.4|^5.0|^6.0", + "symfony/uid": "^5.1|^6.0", + "twig/twig": "^2.13|^3.0.4" }, "suggest": { "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", @@ -16835,7 +19021,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v4.4.38" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.0" }, "funding": [ { @@ -16851,41 +19037,36 @@ "type": "tidelift" } ], - "time": "2022-02-21T14:44:47+00:00" + "time": "2021-11-29T15:30:56+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.41", + "version": "v4.4.34", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb" + "reference": "2c309e258adeb9970229042be39b360d34986fad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb", - "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb", + "url": "https://api.github.com/repos/symfony/yaml/zipball/2c309e258adeb9970229042be39b360d34986fad", + "reference": "2c309e258adeb9970229042be39b360d34986fad", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "conflict": { "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "~3.4|~4.0" + "symfony/console": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -16908,10 +19089,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony Yaml Component", + "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v3.4.41" + "source": "https://github.com/symfony/yaml/tree/v4.4.34" }, "funding": [ { @@ -16927,22 +19108,7 @@ "type": "tidelift" } ], - "time": "2020-05-11T07:51:54+00:00" - }, - { - "name": "tabby/tabby", - "version": "12.0.3", - "dist": { - "type": "zip", - "url": "https://github.com/cferdinandi/tabby/archive/v12.0.3.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "tabby" - } + "time": "2021-11-18T18:49:23+00:00" }, { "name": "thinkshout/mailchimp-api-php", @@ -16989,61 +19155,86 @@ "time": "2021-12-29T19:57:45+00:00" }, { - "name": "tippyjs/5.x", - "version": "5.2.1", - "dist": { - "type": "file", - "url": "https://unpkg.com/tippy.js@5.2.1/dist/tippy-bundle.iife.min.js" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "tippyjs/5.x" - } - }, - { - "name": "tippyjs/6.x", - "version": "6.2.6", - "dist": { - "type": "file", - "url": "https://unpkg.com/tippy.js@6.2.6/dist/tippy-bundle.umd.min.js" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "drupal-library", - "extra": { - "installer-name": "tippyjs/6.x" - } - }, - { - "name": "twig/twig", - "version": "v1.42.5", + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.4", "source": { "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e" + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e", - "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c", + "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c", "shasum": "" }, "require": { - "php": ">=5.5.0", - "symfony/polyfill-ctype": "^1.8" + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0" }, "require-dev": { - "psr/container": "^1.0", - "symfony/phpunit-bridge": "^4.4|^5.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.42-dev" + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" + } + ], + "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", + "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4" + }, + "time": "2021-12-08T09:12:39+00:00" + }, + { + "name": "twig/twig", + "version": "v2.14.11", + "source": { + "type": "git", + "url": "https://github.com/twigphp/Twig.git", + "reference": "66baa66f29ee30e487e05f1679903e36eb01d727" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/66baa66f29ee30e487e05f1679903e36eb01d727", + "reference": "66baa66f29ee30e487e05f1679903e36eb01d727", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php72": "^1.8" + }, + "require-dev": { + "psr/container": "^1.0", + "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.14-dev" } }, "autoload": { @@ -17082,31 +19273,42 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/1.x" + "source": "https://github.com/twigphp/Twig/tree/v2.14.11" }, - "time": "2020-02-11T05:59:23+00:00" + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" + } + ], + "time": "2022-02-04T06:57:25+00:00" }, { "name": "typo3/phar-stream-wrapper", - "version": "v3.1.4", + "version": "v3.1.7", "source": { "type": "git", "url": "https://github.com/TYPO3/phar-stream-wrapper.git", - "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04" + "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04", - "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04", + "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c", + "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c", "shasum": "" }, "require": { "ext-json": "*", - "php": "^7.0" + "php": "^7.0 || ^8.0" }, "require-dev": { "ext-xdebug": "*", - "phpunit/phpunit": "^6.5" + "phpspec/prophecy": "^1.10", + "symfony/phpunit-bridge": "^5.1" }, "suggest": { "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" @@ -17136,9 +19338,89 @@ ], "support": { "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues", - "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master" + "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7" }, - "time": "2019-12-10T11:53:27+00:00" + "time": "2021-09-20T19:19:13+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v5.4.1", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f", + "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f", + "shasum": "" + }, + "require": { + "ext-pcre": "*", + "graham-campbell/result-type": "^1.0.2", + "php": "^7.1.3 || ^8.0", + "phpoption/phpoption": "^1.8", + "symfony/polyfill-ctype": "^1.23", + "symfony/polyfill-mbstring": "^1.23.1", + "symfony/polyfill-php80": "^1.23.1" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-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.4.1" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2021-12-12T23:22:04+00:00" }, { "name": "webflo/drupal-finder", @@ -17292,94 +19574,42 @@ }, "abandoned": "symfony/filesystem", "time": "2015-12-17T08:42:14+00:00" - }, - { - "name": "wikimedia/composer-merge-plugin", - "version": "v2.0.1", - "source": { - "type": "git", - "url": "https://github.com/wikimedia/composer-merge-plugin.git", - "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912", - "reference": "8ca2ed8ab97c8ebce6b39d9943e9909bb4f18912", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1||^2.0", - "php": ">=7.2.0" - }, - "require-dev": { - "composer/composer": "^1.1||^2.0", - "php-parallel-lint/php-parallel-lint": "~1.1.0", - "phpunit/phpunit": "^8.5||^9.0", - "squizlabs/php_codesniffer": "~3.5.4" - }, - "type": "composer-plugin", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - }, - "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin" - }, - "autoload": { - "psr-4": { - "Wikimedia\\Composer\\Merge\\V2\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Bryan Davis", - "email": "bd808@wikimedia.org" - } - ], - "description": "Composer plugin to merge multiple composer.json files", - "support": { - "issues": "https://github.com/wikimedia/composer-merge-plugin/issues", - "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.0.1" - }, - "time": "2021-02-24T05:28:06+00:00" } ], "packages-dev": [ { "name": "behat/behat", - "version": "v3.7.0", + "version": "v3.10.0", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "08052f739619a9e9f62f457a67302f0715e6dd13" + "reference": "a55661154079cf881ef643b303bfaf67bae3a09f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/08052f739619a9e9f62f457a67302f0715e6dd13", - "reference": "08052f739619a9e9f62f457a67302f0715e6dd13", + "url": "https://api.github.com/repos/Behat/Behat/zipball/a55661154079cf881ef643b303bfaf67bae3a09f", + "reference": "a55661154079cf881ef643b303bfaf67bae3a09f", "shasum": "" }, "require": { - "behat/gherkin": "^4.6.0", + "behat/gherkin": "^4.9.0", "behat/transliterator": "^1.2", "ext-mbstring": "*", - "php": ">=5.3.3", + "php": "^7.2 || ^8.0", "psr/container": "^1.0", - "symfony/config": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", - "symfony/console": "^2.7.51 || ^2.8.33 || ^3.3.15 || ^3.4.3 || ^4.0.3 || ^5.0", - "symfony/dependency-injection": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", - "symfony/event-dispatcher": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", - "symfony/translation": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", - "symfony/yaml": "^2.7.51 || ^3.0 || ^4.0 || ^5.0" + "symfony/config": "^4.4 || ^5.0 || ^6.0", + "symfony/console": "^4.4 || ^5.0 || ^6.0", + "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0", + "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0", + "symfony/translation": "^4.4 || ^5.0 || ^6.0", + "symfony/yaml": "^4.4 || ^5.0 || ^6.0" }, "require-dev": { "container-interop/container-interop": "^1.2", "herrera-io/box": "~1.6.1", - "phpunit/phpunit": "^4.8.36 || ^6.5.14 || ^7.5.20", - "symfony/process": "~2.5 || ^3.0 || ^4.0 || ^5.0" + "phpunit/phpunit": "^8.5 || ^9.0", + "symfony/process": "^4.4 || ^5.0 || ^6.0", + "vimeo/psalm": "^4.8" }, "suggest": { "ext-dom": "Needed to output test results in JUnit format." @@ -17390,11 +19620,13 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.6.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { "psr-4": { + "Behat\\Hook\\": "src/Behat/Hook/", + "Behat\\Step\\": "src/Behat/Step/", "Behat\\Behat\\": "src/Behat/Behat/", "Behat\\Testwork\\": "src/Behat/Testwork/" } @@ -17410,7 +19642,7 @@ "homepage": "http://everzet.com" } ], - "description": "Scenario-oriented BDD framework for PHP 5.3", + "description": "Scenario-oriented BDD framework for PHP", "homepage": "http://behat.org/", "keywords": [ "Agile", @@ -17428,9 +19660,9 @@ ], "support": { "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.7.0" + "source": "https://github.com/Behat/Behat/tree/v3.10.0" }, - "time": "2020-06-03T13:08:44+00:00" + "time": "2021-11-02T20:09:40+00:00" }, { "name": "behat/gherkin", @@ -17732,33 +19964,108 @@ "time": "2020-01-14T16:39:13+00:00" }, { - "name": "fabpot/goutte", - "version": "v3.2.3", + "name": "drupal/upgrade_status", + "version": "3.14.0", "source": { "type": "git", - "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" + "url": "https://git.drupalcode.org/project/upgrade_status.git", + "reference": "8.x-3.14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.14.zip", + "reference": "8.x-3.14", + "shasum": "facb4a7bf148f87fc0f4fd34f58bbaa0659073d9" + }, + "require": { + "drupal/core": "^8 || ^9", + "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", + "webflo/drupal-finder": "^1.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.14", + "datestamp": "1646132501", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Gábor Hojtsy", + "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "colan", + "homepage": "https://www.drupal.org/user/58704" + }, + { + "name": "herczogzoltan", + "homepage": "https://www.drupal.org/user/3528391" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" + } + ], + "description": "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": "fabpot/goutte", + "version": "v3.3.1", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfPHP/Goutte.git", + "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/80a23b64f44d54dd571d114c473d9d7e9ed84ca5", + "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5", "shasum": "" }, "require": { "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" + "php": ">=7.1.3", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0" }, "require-dev": { - "symfony/phpunit-bridge": "^3.3 || ^4" + "symfony/phpunit-bridge": "^5.0" }, "type": "application", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -17786,9 +20093,639 @@ ], "support": { "issues": "https://github.com/FriendsOfPHP/Goutte/issues", - "source": "https://github.com/FriendsOfPHP/Goutte/tree/master" + "source": "https://github.com/FriendsOfPHP/Goutte/tree/v3.3.1" }, - "time": "2018-06-29T15:13:57+00:00" + "time": "2020-11-01T09:30:18+00:00" + }, + { + "name": "laminas/laminas-servicemanager", + "version": "3.7.0", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-servicemanager.git", + "reference": "2b0aee477fdbd3191af7c302b93dbc5fda0626f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/2b0aee477fdbd3191af7c302b93dbc5fda0626f4", + "reference": "2b0aee477fdbd3191af7c302b93dbc5fda0626f4", + "shasum": "" + }, + "require": { + "container-interop/container-interop": "^1.2", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.3 || ~8.0.0", + "psr/container": "^1.0" + }, + "conflict": { + "laminas/laminas-code": "<3.3.1", + "zendframework/zend-code": "<3.3.1" + }, + "provide": { + "container-interop/container-interop-implementation": "^1.2", + "psr/container-implementation": "^1.0" + }, + "replace": { + "zendframework/zend-servicemanager": "^3.4.0" + }, + "require-dev": { + "composer/package-versions-deprecated": "^1.0", + "laminas/laminas-coding-standard": "~2.2.0", + "laminas/laminas-container-config-test": "^0.3", + "laminas/laminas-dependency-plugin": "^2.1.2", + "mikey179/vfsstream": "^1.6.8", + "ocramius/proxy-manager": "^2.2.3", + "phpbench/phpbench": "^1.0.4", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.4", + "psalm/plugin-phpunit": "^0.16.1", + "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": { + "psr-4": { + "Laminas\\ServiceManager\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Factory-Driven Dependency Injection Container", + "homepage": "https://laminas.dev", + "keywords": [ + "PSR-11", + "dependency-injection", + "di", + "dic", + "laminas", + "service-manager", + "servicemanager" + ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-servicemanager/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-servicemanager/issues", + "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom", + "source": "https://github.com/laminas/laminas-servicemanager" + }, + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-07-24T19:33:07+00:00" + }, + { + "name": "laminas/laminas-text", + "version": "2.9.0", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-text.git", + "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-text/zipball/8879e75d03e09b0d6787e6680cfa255afd4645a7", + "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7", + "shasum": "" + }, + "require": { + "laminas/laminas-servicemanager": "^3.4", + "laminas/laminas-stdlib": "^3.6", + "php": "^7.3 || ~8.0.0 || ~8.1.0" + }, + "conflict": { + "zendframework/zend-text": "*" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Laminas\\Text\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Create FIGlets and text-based tables", + "homepage": "https://laminas.dev", + "keywords": [ + "laminas", + "text" + ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-text/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-text/issues", + "rss": "https://github.com/laminas/laminas-text/releases.atom", + "source": "https://github.com/laminas/laminas-text" + }, + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-09-02T16:50:53+00:00" + }, + { + "name": "laminas/laminas-zendframework-bridge", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-zendframework-bridge.git", + "reference": "88bf037259869891afce6504cacc4f8a07b24d0f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/88bf037259869891afce6504cacc4f8a07b24d0f", + "reference": "88bf037259869891afce6504cacc4f8a07b24d0f", + "shasum": "" + }, + "require": { + "php": "^7.3 || ~8.0.0 || ~8.1.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3", + "psalm/plugin-phpunit": "^0.15.1", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.6" + }, + "type": "library", + "extra": { + "laminas": { + "module": "Laminas\\ZendFrameworkBridge" + } + }, + "autoload": { + "files": [ + "src/autoload.php" + ], + "psr-4": { + "Laminas\\ZendFrameworkBridge\\": "src//" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Alias legacy ZF class names to Laminas Project equivalents.", + "keywords": [ + "ZendFramework", + "autoloading", + "laminas", + "zf" + ], + "support": { + "forum": "https://discourse.laminas.dev/", + "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", + "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", + "source": "https://github.com/laminas/laminas-zendframework-bridge" + }, + "funding": [ + { + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" + } + ], + "time": "2021-12-21T14:34:37+00:00" + }, + { + "name": "mathieuviossat/arraytotexttable", + "version": "v1.0.8", + "source": { + "type": "git", + "url": "https://github.com/viossat/arraytotexttable.git", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4", + "shasum": "" + }, + "require": { + "laminas/laminas-text": "^2.7", + "php": ">=5.3.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "MathieuViossat\\Util\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mathieu Viossat", + "email": "mathieu@viossat.fr", + "homepage": "https://viossat.fr" + } + ], + "description": "Display arrays in terminal", + "homepage": "https://github.com/viossat/arraytotexttable", + "keywords": [ + "array", + "ascii", + "table", + "terminal", + "text", + "unicode" + ], + "support": { + "issues": "https://github.com/viossat/arraytotexttable/issues", + "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8" + }, + "time": "2020-06-23T17:14:22+00:00" + }, + { + "name": "mglaman/phpstan-drupal", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://github.com/mglaman/phpstan-drupal.git", + "reference": "f51ff1ad597480944a7d2f255484a4255daa6e13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/f51ff1ad597480944a7d2f255484a4255daa6e13", + "reference": "f51ff1ad597480944a7d2f255484a4255daa6e13", + "shasum": "" + }, + "require": { + "nette/finder": "^2.5", + "php": "^7.1 || ^8.0", + "phpstan/phpstan": "^1.0", + "symfony/yaml": "~3.4.5|^4.2", + "webflo/drupal-finder": "^1.2" + }, + "require-dev": { + "composer/installers": "^1.9", + "drupal/core-dev": "^8.8@alpha || ^9.0", + "drupal/core-recommended": "^8.8@alpha || ^9.0", + "drush/drush": "^9.6 | ^10.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", + "squizlabs/php_codesniffer": "^3.3" + }, + "suggest": { + "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", + "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-main": "1.0-dev" + }, + "installer-paths": { + "tests/fixtures/drupal/core": [ + "type:drupal-core" + ], + "tests/fixtures/drupal/libraries/{$name}": [ + "type:drupal-library" + ], + "tests/fixtures/drupal/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "tests/fixtures/drupal/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "files": [ + "drupal-phpunit-hack.php" + ], + "psr-4": { + "mglaman\\PHPStanDrupal\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "Drupal extension and rules for PHPStan", + "support": { + "issues": "https://github.com/mglaman/phpstan-drupal/issues", + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.4" + }, + "funding": [ + { + "url": "https://github.com/mglaman", + "type": "github" + }, + { + "url": "https://opencollective.com/phpstan-drupal", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "type": "tidelift" + } + ], + "time": "2021-12-29T22:28:39+00:00" + }, + { + "name": "nette/finder", + "version": "v2.5.3", + "source": { + "type": "git", + "url": "https://github.com/nette/finder.git", + "reference": "64dc25b7929b731e72a1bc84a9e57727f5d5d3e8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/finder/zipball/64dc25b7929b731e72a1bc84a9e57727f5d5d3e8", + "reference": "64dc25b7929b731e72a1bc84a9e57727f5d5d3e8", + "shasum": "" + }, + "require": { + "nette/utils": "^2.4 || ^3.0", + "php": ">=7.1" + }, + "conflict": { + "nette/nette": "<2.2" + }, + "require-dev": { + "nette/tester": "^2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🔍 Nette Finder: find files and directories with an intuitive API.", + "homepage": "https://nette.org", + "keywords": [ + "filesystem", + "glob", + "iterator", + "nette" + ], + "support": { + "issues": "https://github.com/nette/finder/issues", + "source": "https://github.com/nette/finder/tree/v2.5.3" + }, + "time": "2021-12-12T17:43:24+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.7", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99", + "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.2" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.7" + }, + "time": "2022-01-24T11:29:14+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.4.8", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "2a6d6704b17c4db6190cc3104056c0aad740cb15" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/2a6d6704b17c4db6190cc3104056c0aad740cb15", + "reference": "2a6d6704b17c4db6190cc3104056c0aad740cb15", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4-dev" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "support": { + "issues": "https://github.com/phpstan/phpstan/issues", + "source": "https://github.com/phpstan/phpstan/tree/1.4.8" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpstan", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", + "type": "tidelift" + } + ], + "time": "2022-03-04T13:03:56+00:00" + }, + { + "name": "phpstan/phpstan-deprecation-rules", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682", + "reference": "e5ccafb0dd8d835dd65d8d7a1a0d2b1b75414682", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "phpstan/phpstan": "^1.0" + }, + "require-dev": { + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + }, + "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.0.0" + }, + "time": "2021-09-23T11:02:21+00:00" }, { "name": "symfony/browser-kit", @@ -17864,35 +20801,34 @@ }, { "name": "symfony/config", - "version": "v5.4.3", + "version": "v4.4.37", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f" + "reference": "e8c2d2c951ddedecb6d28954d336cb7d2e852d0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/d65e1bd990c740e31feb07d2b0927b8d4df9956f", - "reference": "d65e1bd990c740e31feb07d2b0927b8d4df9956f", + "url": "https://api.github.com/repos/symfony/config/zipball/e8c2d2c951ddedecb6d28954d336cb7d2e852d0e", + "reference": "e8c2d2c951ddedecb6d28954d336cb7d2e852d0e", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/filesystem": "^4.4|^5.0|^6.0", + "php": ">=7.1.3", + "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-php80": "^1.16", "symfony/polyfill-php81": "^1.22" }, "conflict": { - "symfony/finder": "<4.4" + "symfony/finder": "<3.4" }, "require-dev": { - "symfony/event-dispatcher": "^4.4|^5.0|^6.0", - "symfony/finder": "^4.4|^5.0|^6.0", - "symfony/messenger": "^4.4|^5.0|^6.0", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/yaml": "^4.4|^5.0|^6.0" + "symfony/event-dispatcher": "^3.4|^4.0|^5.0", + "symfony/finder": "^3.4|^4.0|^5.0", + "symfony/messenger": "^4.1|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/yaml": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/yaml": "To use the yaml reference dumper" @@ -17923,7 +20859,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v5.4.3" + "source": "https://github.com/symfony/config/tree/v4.4.37" }, "funding": [ { @@ -17939,105 +20875,39 @@ "type": "tidelift" } ], - "time": "2022-01-03T09:50:52+00:00" + "time": "2022-01-03T09:46:22+00:00" }, { - "name": "symfony/css-selector", - "version": "v4.4.37", + "name": "symfony/dom-crawler", + "version": "v4.4.39", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436" + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "4e9215a8b533802ba84a3cc5bd3c43103e7a6dc3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/0628e6c6d7c92f1a7bae543959bdc17347be2436", - "reference": "0628e6c6d7c92f1a7bae543959bdc17347be2436", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4e9215a8b533802ba84a3cc5bd3c43103e7a6dc3", + "reference": "4e9215a8b533802ba84a3cc5bd3c43103e7a6dc3", "shasum": "" }, "require": { "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-php80": "^1.16" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Converts CSS selectors to XPath expressions", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/css-selector/tree/v4.4.37" - }, - "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": "2022-01-02T09:41:36+00:00" - }, - { - "name": "symfony/dom-crawler", - "version": "v4.2.12", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "ba1da8fb10291714b8db153fcf7ac515e1a217bb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ba1da8fb10291714b8db153fcf7ac515e1a217bb", - "reference": "ba1da8fb10291714b8db153fcf7ac515e1a217bb", - "shasum": "" - }, - "require": { - "php": "^7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" + "conflict": { + "masterminds/html5": "<2.6" }, "require-dev": { - "symfony/css-selector": "~3.4|~4.0" + "masterminds/html5": "^2.6", + "symfony/css-selector": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/css-selector": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.2-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\DomCrawler\\": "" @@ -18060,16 +20930,30 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony DomCrawler Component", + "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/4.2" + "source": "https://github.com/symfony/dom-crawler/tree/v4.4.39" }, - "time": "2019-06-13T10:57:15+00:00" + "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": "2022-02-25T10:38:15+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.24.0", + "version": "v1.25.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", @@ -18128,7 +21012,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.24.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.25.0" }, "funding": [ { @@ -18147,23 +21031,46 @@ "time": "2021-09-13T13:58:11+00:00" } ], - "aliases": [], + "aliases": [ + { + "package": "drupal/drutopia_collection", + "version": "dev-8.x-1.x", + "alias": "1.x-dev", + "alias_normalized": "1.9999999.9999999.9999999-dev" + }, + { + "package": "drupal/drutopia_core", + "version": "dev-8.x-1.x", + "alias": "1.x-dev", + "alias_normalized": "1.9999999.9999999.9999999-dev" + }, + { + "package": "drupal/octavia_camouflage", + "version": "dev-8.x-1.x", + "alias": "1.x-dev", + "alias_normalized": "1.9999999.9999999.9999999-dev" + } + ], "minimum-stability": "dev", "stability-flags": { - "drupal/admin_links_access_filter": 15, - "drupal/block_theme_sync": 15, + "drupal/convert_bundles": 15, "drupal/coffee": 20, "drupal/comment_notify": 20, "drupal/customerror": 20, - "drupal/diff": 5, + "drupal/drutopia_collection": 20, "drupal/drutopia_core": 20, - "drupal/drutopia_site": 20, - "drupal/indieweb": 20, + "drupal/drutopia_paragraph_title": 20, + "drupal/footnotes": 20, + "drupal/menu_link_config": 15, "drupal/mimemail": 15, + "drupal/notfoundpassthrough": 20, + "drupal/octavia": 20, + "drupal/octavia_camouflage": 20, "drupal/regionincontent": 20, - "drupal/swiftmailer": 10, - "drupal/twigsuggest": 20, - "drupal/ui_patterns": 5 + "drupal/search_api_saved_searches": 15, + "drupal/subpathauto": 5, + "drupal/ui_patterns": 5, + "drutopia/drutopia": 20 }, "prefer-stable": true, "prefer-lowest": false, From c28e3103102cbbc765228e2e1cfbd728ef087fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 10:17:35 -0500 Subject: [PATCH 082/236] Update DDEV configuration to Elizabeth-like conditions --- .ddev/config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 945f342..7c0d5a7 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,14 +1,14 @@ name: agaric-coop type: drupal9 docroot: web -php_version: "7.3" -webserver_type: nginx-fpm +php_version: "7.4" +webserver_type: apache-fpm router_http_port: "80" router_https_port: "443" xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] -mariadb_version: "10.2" +mariadb_version: "10.5" mysql_version: "" nfs_mount_enabled: false mutagen_enabled: false From 7a9cd25e917d8ccf0de4690640f94524729e97e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 10:24:49 -0500 Subject: [PATCH 083/236] Declare custom modules compatible with Drupal 9 by fiat --- web/modules/custom/agaric_migration/agaric_migration.info.yml | 2 +- .../custom/drutopia_case_study/drutopia_case_study.info.yml | 3 +-- .../drutopia_creative_license.info.yml | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/web/modules/custom/agaric_migration/agaric_migration.info.yml b/web/modules/custom/agaric_migration/agaric_migration.info.yml index 9799ebe..df45326 100644 --- a/web/modules/custom/agaric_migration/agaric_migration.info.yml +++ b/web/modules/custom/agaric_migration/agaric_migration.info.yml @@ -2,7 +2,7 @@ name: Agaric Migration description: Migrate the content from the D7 version of the site. package: Custom type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - drupal:migrate - drupal:migrate_drupal diff --git a/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml b/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml index e264ea3..ab148a8 100644 --- a/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml +++ b/web/modules/custom/drutopia_case_study/drutopia_case_study.info.yml @@ -1,7 +1,7 @@ name: 'Drutopia Case Study' description: 'A Case Study highlights work done on a project.' type: module -core: 8.x +core_version_requirement: ^8 || ^9 dependencies: - config_snapshot - drutopia_case_study @@ -27,5 +27,4 @@ dependencies: - text - user - views -version: 8.x-1.0-alpha1 package: Drutopia diff --git a/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml b/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml index bb4db06..2210862 100644 --- a/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml +++ b/web/modules/custom/drutopia_creative_license/drutopia_creative_license.info.yml @@ -1,6 +1,6 @@ name: 'Creative License' type: module -core: 8.x +core_version_requirement: ^8 || ^9 package: Drutopia dependencies: - config_actions @@ -15,4 +15,3 @@ dependencies: - path - taxonomy - text -version: 8.x-1.0-alpha1 From 9ddf17b1fff704019e31d2c49fb3e4b5a587881f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 11:01:06 -0500 Subject: [PATCH 084/236] Declare custom theme compatible with Drupal 9 by fiat --- web/themes/custom/agarica/agarica.info.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/themes/custom/agarica/agarica.info.yml b/web/themes/custom/agarica/agarica.info.yml index d1047de..037d651 100644 --- a/web/themes/custom/agarica/agarica.info.yml +++ b/web/themes/custom/agarica/agarica.info.yml @@ -3,7 +3,7 @@ description: An Octavia-based subtheme. type: theme base theme: octavia package: Custom -core: 8.x +core_version_requirement: ^8 || ^9 regions: header: 'Header' From 3e968b34978b9ba065a348f4481747d47e2c3253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 16:45:15 -0500 Subject: [PATCH 085/236] Commit updated pattern library --- web/themes/custom/agarica/patternlibrary | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/themes/custom/agarica/patternlibrary b/web/themes/custom/agarica/patternlibrary index 9cf4362..f0294c3 160000 --- a/web/themes/custom/agarica/patternlibrary +++ b/web/themes/custom/agarica/patternlibrary @@ -1 +1 @@ -Subproject commit 9cf4362e0780aee1f1a167685b0c9c7634b05e00 +Subproject commit f0294c3a073365b960f5e4ce666e58b7067070ec From cc77ec000a69950ac01c40b32ea387c4683767fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 16:50:44 -0500 Subject: [PATCH 086/236] Update documentation around pattern library and how to commit changes to it --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b1090b..5e6f61a 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,9 @@ ddev . drush cim -y ## Theming -See `web/themes/custom/agarica/README.md` and `web/themes/custom/agarica/patternlibrary/README.md` +See `web/themes/custom/agarica/patternlibrary/README.md` for how to make changes, especially involving Sass to CSS compilation for styles. + +After making changes withing the Pattern Library within the custom Agaric theme, commit these changes *first* to the pattern library itself, and second commit the pattern library as a whole to the main project (it will be a single change, "Subproject commit" and the current hash value of the subproject repository. ## Deployment From a9193da0a1393899e2c2641ab7bedde84c7274f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 18:03:40 -0500 Subject: [PATCH 087/236] Commit updated composer lock file, minor dependency updates --- composer.lock | 290 +++++++------------------------------------------- 1 file changed, 37 insertions(+), 253 deletions(-) diff --git a/composer.lock b/composer.lock index 4a3389c..b11bee3 100644 --- a/composer.lock +++ b/composer.lock @@ -14475,31 +14475,31 @@ }, { "name": "league/csv", - "version": "9.7.4", + "version": "9.8.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "002f55f649e7511710dc7154ff44c7be32c8195c" + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/002f55f649e7511710dc7154ff44c7be32c8195c", - "reference": "002f55f649e7511710dc7154ff44c7be32c8195c", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/9d2e0265c5d90f5dd601bc65ff717e05cec19b47", + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "php": "^7.3 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "ext-curl": "*", "ext-dom": "*", - "friendsofphp/php-cs-fixer": "^3.0", - "phpstan/phpstan": "^1.0", + "friendsofphp/php-cs-fixer": "^v3.4.0", + "phpstan/phpstan": "^1.3.0", "phpstan/phpstan-phpunit": "^1.0.0", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5" + "phpstan/phpstan-strict-rules": "^1.1.0", + "phpunit/phpunit": "^9.5.11" }, "suggest": { "ext-dom": "Required to use the XMLConverter and or the HTMLConverter classes", @@ -14532,7 +14532,7 @@ } ], "description": "CSV data manipulation made easy in PHP", - "homepage": "http://csv.thephpleague.com", + "homepage": "https://csv.thephpleague.com", "keywords": [ "convert", "csv", @@ -14555,7 +14555,7 @@ "type": "github" } ], - "time": "2021-11-30T07:09:34+00:00" + "time": "2022-01-04T00:13:07+00:00" }, { "name": "league/oauth2-client", @@ -20099,46 +20099,43 @@ }, { "name": "laminas/laminas-servicemanager", - "version": "3.7.0", + "version": "3.10.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-servicemanager.git", - "reference": "2b0aee477fdbd3191af7c302b93dbc5fda0626f4" + "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/2b0aee477fdbd3191af7c302b93dbc5fda0626f4", - "reference": "2b0aee477fdbd3191af7c302b93dbc5fda0626f4", + "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/e52b985909e0940bf22d34f322eb3f48bbef6bd1", + "reference": "e52b985909e0940bf22d34f322eb3f48bbef6bd1", "shasum": "" }, "require": { "container-interop/container-interop": "^1.2", "laminas/laminas-stdlib": "^3.2.1", - "laminas/laminas-zendframework-bridge": "^1.0", - "php": "^7.3 || ~8.0.0", + "php": "~7.4.0 || ~8.0.0 || ~8.1.0", "psr/container": "^1.0" }, "conflict": { "laminas/laminas-code": "<3.3.1", - "zendframework/zend-code": "<3.3.1" + "zendframework/zend-code": "<3.3.1", + "zendframework/zend-servicemanager": "*" }, "provide": { "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, - "replace": { - "zendframework/zend-servicemanager": "^3.4.0" - }, "require-dev": { "composer/package-versions-deprecated": "^1.0", - "laminas/laminas-coding-standard": "~2.2.0", + "laminas/laminas-coding-standard": "~2.2.1", "laminas/laminas-container-config-test": "^0.3", "laminas/laminas-dependency-plugin": "^2.1.2", - "mikey179/vfsstream": "^1.6.8", - "ocramius/proxy-manager": "^2.2.3", - "phpbench/phpbench": "^1.0.4", + "mikey179/vfsstream": "^1.6.10@alpha", + "ocramius/proxy-manager": "^2.11", + "phpbench/phpbench": "^1.1", "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.4", + "phpunit/phpunit": "^9.5.5", "psalm/plugin-phpunit": "^0.16.1", "vimeo/psalm": "^4.8" }, @@ -20184,7 +20181,7 @@ "type": "community_bridge" } ], - "time": "2021-07-24T19:33:07+00:00" + "time": "2021-09-18T20:19:36+00:00" }, { "name": "laminas/laminas-text", @@ -20244,68 +20241,6 @@ ], "time": "2021-09-02T16:50:53+00:00" }, - { - "name": "laminas/laminas-zendframework-bridge", - "version": "1.4.1", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-zendframework-bridge.git", - "reference": "88bf037259869891afce6504cacc4f8a07b24d0f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/88bf037259869891afce6504cacc4f8a07b24d0f", - "reference": "88bf037259869891afce6504cacc4f8a07b24d0f", - "shasum": "" - }, - "require": { - "php": "^7.3 || ~8.0.0 || ~8.1.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.3", - "psalm/plugin-phpunit": "^0.15.1", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.6" - }, - "type": "library", - "extra": { - "laminas": { - "module": "Laminas\\ZendFrameworkBridge" - } - }, - "autoload": { - "files": [ - "src/autoload.php" - ], - "psr-4": { - "Laminas\\ZendFrameworkBridge\\": "src//" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Alias legacy ZF class names to Laminas Project equivalents.", - "keywords": [ - "ZendFramework", - "autoloading", - "laminas", - "zf" - ], - "support": { - "forum": "https://discourse.laminas.dev/", - "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues", - "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom", - "source": "https://github.com/laminas/laminas-zendframework-bridge" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2021-12-21T14:34:37+00:00" - }, { "name": "mathieuviossat/arraytotexttable", "version": "v1.0.8", @@ -20359,35 +20294,36 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.1.4", + "version": "1.1.12", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "f51ff1ad597480944a7d2f255484a4255daa6e13" + "reference": "ef7e62da2114736f69c49af3d02bb6b774093ba0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/f51ff1ad597480944a7d2f255484a4255daa6e13", - "reference": "f51ff1ad597480944a7d2f255484a4255daa6e13", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/ef7e62da2114736f69c49af3d02bb6b774093ba0", + "reference": "ef7e62da2114736f69c49af3d02bb6b774093ba0", "shasum": "" }, "require": { - "nette/finder": "^2.5", - "php": "^7.1 || ^8.0", + "php": "^7.4 || ^8.0", "phpstan/phpstan": "^1.0", - "symfony/yaml": "~3.4.5|^4.2", + "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", + "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", "webflo/drupal-finder": "^1.2" }, "require-dev": { + "behat/mink": "^1.8", "composer/installers": "^1.9", - "drupal/core-dev": "^8.8@alpha || ^9.0", "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 | ^10.0", + "drush/drush": "^9.6 || ^10.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0", "phpstan/phpstan-strict-rules": "^1.0", "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", - "squizlabs/php_codesniffer": "^3.3" + "squizlabs/php_codesniffer": "^3.3", + "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" }, "suggest": { "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", @@ -20443,7 +20379,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.4" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.12" }, "funding": [ { @@ -20459,159 +20395,7 @@ "type": "tidelift" } ], - "time": "2021-12-29T22:28:39+00:00" - }, - { - "name": "nette/finder", - "version": "v2.5.3", - "source": { - "type": "git", - "url": "https://github.com/nette/finder.git", - "reference": "64dc25b7929b731e72a1bc84a9e57727f5d5d3e8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/finder/zipball/64dc25b7929b731e72a1bc84a9e57727f5d5d3e8", - "reference": "64dc25b7929b731e72a1bc84a9e57727f5d5d3e8", - "shasum": "" - }, - "require": { - "nette/utils": "^2.4 || ^3.0", - "php": ">=7.1" - }, - "conflict": { - "nette/nette": "<2.2" - }, - "require-dev": { - "nette/tester": "^2.0", - "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.5-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🔍 Nette Finder: find files and directories with an intuitive API.", - "homepage": "https://nette.org", - "keywords": [ - "filesystem", - "glob", - "iterator", - "nette" - ], - "support": { - "issues": "https://github.com/nette/finder/issues", - "source": "https://github.com/nette/finder/tree/v2.5.3" - }, - "time": "2021-12-12T17:43:24+00:00" - }, - { - "name": "nette/utils", - "version": "v3.2.7", - "source": { - "type": "git", - "url": "https://github.com/nette/utils.git", - "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99", - "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99", - "shasum": "" - }, - "require": { - "php": ">=7.2 <8.2" - }, - "conflict": { - "nette/di": "<3.0.6" - }, - "require-dev": { - "nette/tester": "~2.0", - "phpstan/phpstan": "^1.0", - "tracy/tracy": "^2.3" - }, - "suggest": { - "ext-gd": "to use Image", - "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", - "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", - "ext-json": "to use Nette\\Utils\\Json", - "ext-mbstring": "to use Strings::lower() etc...", - "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", - "ext-xml": "to use Strings::length() etc. when mbstring is not available" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", - "homepage": "https://nette.org", - "keywords": [ - "array", - "core", - "datetime", - "images", - "json", - "nette", - "paginator", - "password", - "slugify", - "string", - "unicode", - "utf-8", - "utility", - "validation" - ], - "support": { - "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.7" - }, - "time": "2022-01-24T11:29:14+00:00" + "time": "2022-02-23T22:14:13+00:00" }, { "name": "phpstan/phpstan", From 37422c70d058cf6004d9dc471ee834481eac26b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 19:56:58 -0500 Subject: [PATCH 088/236] Add new settings from Drupal 9 --- config/system.advisories.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 config/system.advisories.yml diff --git a/config/system.advisories.yml b/config/system.advisories.yml new file mode 100644 index 0000000..bfdac86 --- /dev/null +++ b/config/system.advisories.yml @@ -0,0 +1,2 @@ +enabled: true +interval_hours: 6 From 18078d18a4c02b895742a983a859aebf3b42974a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:14:00 -0500 Subject: [PATCH 089/236] Commit self-updates to config from D9 upgrade that are just reorg --- config/antibot.settings.yml | 4 +- config/automated_cron.settings.yml | 2 +- config/autosave_form.messages.yml | 2 +- config/autosave_form.settings.yml | 6 +- ...ysofmigrationsinterviewontalkingdrupal.yml | 4 +- config/block.block.agarica_account_menu.yml | 2 +- config/block.block.agarica_branding.yml | 2 +- config/block.block.agarica_content.yml | 2 +- config/block.block.agarica_footer_menu.yml | 2 +- .../block.block.agarica_group_operations.yml | 8 +- config/block.block.agarica_help.yml | 2 +- ...block.block.agarica_home_page_custom_1.yml | 4 +- ...block.block.agarica_home_page_custom_2.yml | 4 +- ...block.block.agarica_home_page_custom_3.yml | 4 +- config/block.block.agarica_local_actions.yml | 2 +- config/block.block.agarica_local_tasks.yml | 2 +- config/block.block.agarica_main_menu.yml | 4 +- config/block.block.agarica_messages.yml | 2 +- config/block.block.agarica_page_title.yml | 2 +- ...lock.block.agarica_powered_by_drutopia.yml | 2 +- .../block.block.agarica_socialmedialinks.yml | 2 +- ..._related_content_block_related_content.yml | 10 +- config/block.block.agaricnewsletter.yml | 4 +- config/block.block.article_topics_facet.yml | 4 +- config/block.block.article_type_facet.yml | 4 +- config/block.block.blog_topics_facet.yml | 4 +- config/block.block.bulma_account_menu.yml | 2 +- config/block.block.bulma_branding.yml | 2 +- config/block.block.bulma_content.yml | 2 +- config/block.block.bulma_help.yml | 2 +- config/block.block.bulma_local_tasks.yml | 2 +- config/block.block.bulma_main_menu.yml | 2 +- config/block.block.bulma_messages.yml | 2 +- config/block.block.bulma_page_title.yml | 2 +- config/block.block.bulma_powered.yml | 2 +- config/block.block.bulma_tools.yml | 2 +- ...block.block.content_search_form_global.yml | 4 +- ...block.block.content_search_form_search.yml | 4 +- config/block.block.event_topics_facet.yml | 4 +- config/block.block.event_type_facet.yml | 4 +- .../block.block.exposedformsearchpage_1.yml | 4 +- .../block.block.exposedformsearchpage_1_2.yml | 8 +- config/block.block.footer_about_us.yml | 8 +- config/block.block.footer_get_involved.yml | 8 +- config/block.block.footer_our_work.yml | 8 +- config/block.block.group_operations.yml | 8 +- config/block.block.hireagaric.yml | 15 +- config/block.block.home_page_custom_1.yml | 4 +- config/block.block.home_page_custom_2.yml | 4 +- config/block.block.home_page_custom_3.yml | 4 +- config/block.block.home_page_feature.yml | 10 +- config/block.block.languageswitcher.yml | 4 +- config/block.block.mainnavigation.yml | 4 +- config/block.block.octavia_account_menu.yml | 2 +- config/block.block.octavia_branding.yml | 2 +- config/block.block.octavia_content.yml | 2 +- config/block.block.octavia_footer_menu.yml | 2 +- config/block.block.octavia_help.yml | 2 +- config/block.block.octavia_local_actions.yml | 2 +- config/block.block.octavia_local_tasks.yml | 2 +- config/block.block.octavia_main_menu.yml | 2 +- config/block.block.octavia_messages.yml | 2 +- config/block.block.octavia_page_title.yml | 2 +- ...lock.block.octavia_powered_by_drutopia.yml | 2 +- config/block.block.resource_topics_facet.yml | 4 +- config/block.block.resource_type_facet.yml | 4 +- config/block.block.seven_breadcrumbs.yml | 2 +- config/block.block.seven_content.yml | 2 +- config/block.block.seven_help.yml | 2 +- config/block.block.seven_local_actions.yml | 2 +- config/block.block.seven_login.yml | 2 +- config/block.block.seven_messages.yml | 2 +- config/block.block.seven_page_title.yml | 2 +- .../block.block.seven_primary_local_tasks.yml | 2 +- ...lock.block.seven_secondary_local_tasks.yml | 2 +- config/block.block.socialmedialinks.yml | 2 +- ...lock.block.upcomingtrainingsfromagaric.yml | 4 +- config/block.block.userlogin.yml | 8 +- ..._related_content_block_related_content.yml | 6 +- ...block_visibility_group.article_listing.yml | 4 +- ...ps.block_visibility_group.blog_listing.yml | 4 +- ...s.block_visibility_group.event_listing.yml | 4 +- ...roups.block_visibility_group.home_page.yml | 4 +- ...lock_visibility_group.resource_listing.yml | 4 +- ...y_groups.block_visibility_group.search.yml | 4 +- config/bulma.settings.yml | 4 +- config/coffee.configuration.yml | 4 +- config/comment_notify.settings.yml | 34 +- config/contact.settings.yml | 4 +- ...re.base_field_override.node.action.uid.yml | 2 +- ...e.base_field_override.node.article.uid.yml | 2 +- ...core.base_field_override.node.blog.uid.yml | 2 +- ....base_field_override.node.campaign.uid.yml | 2 +- ...ase_field_override.node.case_study.uid.yml | 2 +- ...ore.base_field_override.node.event.uid.yml | 2 +- ...e_field_override.node.landing_page.uid.yml | 2 +- ...core.base_field_override.node.page.uid.yml | 2 +- ...re.base_field_override.node.people.uid.yml | 2 +- ....base_field_override.node.resource.uid.yml | 2 +- ...rm_display.block_content.basic.default.yml | 6 +- ...lock_content.content_reference.default.yml | 4 +- ...rm_display.block_content.slide.default.yml | 4 +- ...y_form_display.comment.comment.default.yml | 6 +- ...splay.contact_message.personal.default.yml | 2 +- ...ntity_form_display.group.group.default.yml | 40 +- ...content.group-group_membership.default.yml | 6 +- ...ntity_form_display.node.action.default.yml | 62 +- ...tity_form_display.node.article.default.yml | 54 +- ....entity_form_display.node.blog.default.yml | 62 +- ...ity_form_display.node.campaign.default.yml | 44 +- ...y_form_display.node.case_study.default.yml | 80 +- ...entity_form_display.node.event.default.yml | 58 +- ...form_display.node.landing_page.default.yml | 24 +- ....entity_form_display.node.page.default.yml | 32 +- ...ntity_form_display.node.people.default.yml | 64 +- ...ity_form_display.node.resource.default.yml | 62 +- ...ay.paragraph.content_reference.default.yml | 6 +- ...lay.paragraph.embedded_content.default.yml | 4 +- ...ity_form_display.paragraph.faq.default.yml | 6 +- ...ty_form_display.paragraph.file.default.yml | 6 +- ...y_form_display.paragraph.image.default.yml | 6 +- ...paragraph.quotation_with_image.default.yml | 20 +- ...y_form_display.paragraph.slide.default.yml | 14 +- ...lay.paragraph.storyline_header.default.yml | 6 +- ...splay.paragraph.storyline_item.default.yml | 10 +- ...ty_form_display.paragraph.text.default.yml | 20 +- ...y_form_display.paragraph.title.default.yml | 28 +- ..._form_display.paragraph.update.default.yml | 10 +- ...y_form_display.paragraph.video.default.yml | 6 +- ...ty_form_display.paragraph.view.default.yml | 16 +- ...form_display.paragraph.webform.default.yml | 6 +- ....entity_form_display.user.user.default.yml | 8 +- ...e.entity_form_mode.media.media_library.yml | 4 +- ...ew_display.block_content.basic.default.yml | 4 +- ...lock_content.content_reference.default.yml | 4 +- ...w_display.block_content.slide.columnar.yml | 2 +- ...ew_display.block_content.slide.default.yml | 2 +- ...y_view_display.comment.comment.default.yml | 4 +- ...ntity_view_display.group.group.default.yml | 36 +- ...e.entity_view_display.group.group.full.yml | 34 +- ...entity_view_display.group.group.teaser.yml | 12 +- ...content.group-group_membership.default.yml | 4 +- ...re.entity_view_display.node.action.box.yml | 8 +- ...e.entity_view_display.node.action.card.yml | 22 +- ...e.entity_view_display.node.action.full.yml | 24 +- ..._view_display.node.action.search_index.yml | 38 +- ...y_view_display.node.action.simple_card.yml | 14 +- ...entity_view_display.node.action.teaser.yml | 12 +- ...e.entity_view_display.node.action.tile.yml | 4 +- ...e.entity_view_display.node.article.box.yml | 4 +- ....entity_view_display.node.article.card.yml | 22 +- ....entity_view_display.node.article.full.yml | 44 +- ...entity_view_display.node.article.media.yml | 26 +- ...e.entity_view_display.node.article.rss.yml | 18 +- ...view_display.node.article.search_index.yml | 4 +- ..._view_display.node.article.simple_card.yml | 14 +- ...ntity_view_display.node.article.teaser.yml | 24 +- ...ore.entity_view_display.node.blog.card.yml | 18 +- ....entity_view_display.node.blog.default.yml | 4 +- ...ore.entity_view_display.node.blog.full.yml | 28 +- ...re.entity_view_display.node.blog.media.yml | 28 +- ...core.entity_view_display.node.blog.rss.yml | 8 +- ...tity_view_display.node.blog.rss_teaser.yml | 8 +- ...ty_view_display.node.blog.search_index.yml | 24 +- ...ity_view_display.node.blog.simple_card.yml | 14 +- ...e.entity_view_display.node.blog.teaser.yml | 18 +- ...entity_view_display.node.campaign.card.yml | 18 +- ...entity_view_display.node.campaign.full.yml | 20 +- ...iew_display.node.campaign.search_index.yml | 24 +- ...view_display.node.campaign.simple_card.yml | 14 +- ...tity_view_display.node.campaign.teaser.yml | 6 +- ...tity_view_display.node.case_study.card.yml | 14 +- ...y_view_display.node.case_study.default.yml | 4 +- ...tity_view_display.node.case_study.full.yml | 34 +- ...iew_display.node.case_study.small_card.yml | 44 +- ...ty_view_display.node.case_study.teaser.yml | 18 +- ...tity_view_display.node.case_study.tile.yml | 4 +- ...entity_view_display.node.event.default.yml | 4 +- ...re.entity_view_display.node.event.full.yml | 34 +- ...e.entity_view_display.node.event.micro.yml | 10 +- ...y_view_display.node.event.search_index.yml | 36 +- ...ty_view_display.node.event.simple_card.yml | 14 +- ....entity_view_display.node.event.teaser.yml | 24 +- ...ty_view_display.node.landing_page.full.yml | 4 +- ..._display.node.landing_page.simple_card.yml | 16 +- ....entity_view_display.node.page.default.yml | 10 +- ...entity_view_display.node.page.embedded.yml | 22 +- ...ore.entity_view_display.node.page.full.yml | 20 +- ...e.entity_view_display.node.page.teaser.yml | 2 +- ...ntity_view_display.node.people.default.yml | 4 +- ...e.entity_view_display.node.people.full.yml | 36 +- ..._view_display.node.people.search_index.yml | 20 +- ...ty_view_display.node.people.small_card.yml | 8 +- ...entity_view_display.node.people.teaser.yml | 6 +- ...entity_view_display.node.resource.card.yml | 34 +- ...ity_view_display.node.resource.default.yml | 4 +- ...entity_view_display.node.resource.full.yml | 42 +- ...iew_display.node.resource.search_index.yml | 44 +- ...view_display.node.resource.simple_card.yml | 18 +- ...tity_view_display.node.resource.teaser.yml | 38 +- ...ay.paragraph.content_reference.default.yml | 4 +- ...lay.paragraph.embedded_content.default.yml | 4 +- ...ity_view_display.paragraph.faq.default.yml | 6 +- ...ty_view_display.paragraph.file.default.yml | 4 +- ...y_view_display.paragraph.image.default.yml | 6 +- ...paragraph.quotation_with_image.default.yml | 10 +- ..._view_display.paragraph.slide.columnar.yml | 12 +- ...y_view_display.paragraph.slide.default.yml | 14 +- ...lay.paragraph.storyline_header.default.yml | 4 +- ...splay.paragraph.storyline_item.default.yml | 14 +- ...ty_view_display.paragraph.text.default.yml | 4 +- ..._view_display.paragraph.title.columnar.yml | 16 +- ...y_view_display.paragraph.title.default.yml | 28 +- ..._view_display.paragraph.update.default.yml | 12 +- ...y_view_display.paragraph.video.default.yml | 6 +- ...ty_view_display.paragraph.view.default.yml | 4 +- ...view_display.paragraph.webform.default.yml | 4 +- ..._display.taxonomy_term.license.default.yml | 6 +- ....entity_view_display.user.user.compact.yml | 10 +- ....entity_view_display.user.user.default.yml | 10 +- ...e.entity_view_mode.media.media_library.yml | 4 +- config/core.entity_view_mode.node.diff.yml | 4 +- config/core.extension.yml | 5 +- .../core.menu.static_menu_link_overrides.yml | 4 +- config/crop.settings.yml | 2 +- config/dblog.settings.yml | 2 +- config/diff.settings.yml | 4 +- config/dropdown_language.setting.yml | 4 +- config/ds.settings.yml | 4 +- config/exclude_node_title.settings.yml | 6 +- config/facets.facet.article_topics.yml | 24 +- config/facets.facet.article_type.yml | 24 +- config/facets.facet.blog_topics.yml | 24 +- config/facets.facet.event_topics.yml | 24 +- config/facets.facet.event_type.yml | 24 +- config/facets.facet.resource_topics.yml | 24 +- config/facets.facet.resource_type.yml | 24 +- ....field.block_content.slide.field_slide.yml | 2 +- ....field.group.group.field_group_address.yml | 4 +- ...ld.group.group.field_group_description.yml | 8 +- ...ld.field.group.group.field_group_image.yml | 4 +- ....field.group.group.field_group_website.yml | 2 +- ...ld.field.node.action.field_action_link.yml | 2 +- ...field.node.action.field_body_paragraph.yml | 4 +- .../field.field.node.action.field_image.yml | 4 +- ...ield.node.article.field_body_paragraph.yml | 28 +- .../field.field.node.article.field_image.yml | 6 +- ...d.field.node.blog.field_body_paragraph.yml | 20 +- config/field.field.node.blog.field_image.yml | 4 +- ...eld.node.campaign.field_body_paragraph.yml | 42 +- ...d.node.campaign.field_campaign_demands.yml | 6 +- ...d.node.campaign.field_campaign_updates.yml | 8 +- .../field.field.node.campaign.field_image.yml | 4 +- ...d.node.case_study.field_body_paragraph.yml | 70 +- ...ield.field.node.case_study.field_image.yml | 4 +- ....field.node.event.field_body_paragraph.yml | 14 +- config/field.field.node.event.field_image.yml | 4 +- ...node.landing_page.field_body_paragraph.yml | 32 +- ...ld.field.node.landing_page.field_image.yml | 4 +- ...d.field.node.page.field_body_paragraph.yml | 32 +- .../field.field.node.page.field_storyline.yml | 14 +- ...field.node.people.field_body_paragraph.yml | 48 +- .../field.field.node.people.field_image.yml | 4 +- ...ode.people.field_people_public_gpg_key.yml | 4 +- ....node.people.field_people_social_media.yml | 2 +- ...eld.node.resource.field_body_paragraph.yml | 34 +- .../field.field.node.resource.field_image.yml | 4 +- ...ield.node.resource.field_resource_file.yml | 4 +- ...ield.node.resource.field_resource_link.yml | 2 +- .../field.field.paragraph.file.field_file.yml | 4 +- ...ield.field.paragraph.image.field_image.yml | 4 +- ...graph.quotation_with_image.field_image.yml | 4 +- ...ield.field.paragraph.slide.field_image.yml | 4 +- ...field.field.paragraph.slide.field_link.yml | 2 +- ...ield.field.paragraph.title.field_image.yml | 4 +- config/field.field.user.user.user_picture.yml | 4 +- config/field.settings.yml | 2 +- .../field.storage.group.field_group_image.yml | 6 +- ...d.storage.node.field_case_study_status.yml | 2 +- ...storage.node.field_case_study_subtitle.yml | 2 +- config/field.storage.node.field_image.yml | 6 +- ...eld.storage.node.field_people_position.yml | 2 +- ...orage.node.field_people_public_gpg_key.yml | 2 +- ...field.storage.node.field_resource_file.yml | 2 +- config/field.storage.paragraph.field_file.yml | 2 +- .../field.storage.paragraph.field_image.yml | 6 +- ...orage.paragraph.field_storyline_header.yml | 2 +- ...rage.paragraph.field_storyline_heading.yml | 2 +- config/field.storage.user.user_picture.yml | 6 +- config/field_ui.settings.yml | 2 +- config/file.settings.yml | 4 +- config/filter.settings.yml | 4 +- config/focal_point.settings.yml | 4 +- config/google_analytics.settings.yml | 4 +- config/group.settings.yml | 2 +- config/group.type.group.yml | 2 +- config/hal.settings.yml | 3 +- config/honeypot.settings.yml | 6 +- config/image.settings.yml | 4 +- config/indieweb_context.settings.yml | 2 +- config/indieweb_microformat.settings.yml | 12 +- config/indieweb_webmention.comment.yml | 4 +- config/indieweb_webmention.settings.yml | 16 +- config/language.mappings.yml | 4 +- config/language.negotiation.yml | 4 +- config/language.types.yml | 4 +- .../language/es/webform.webform.contact.yml | 4 +- config/locale.settings.yml | 4 +- config/mailchimp.settings.yml | 6 +- config/markdown.settings.yml | 2 +- config/media.settings.yml | 4 +- config/media_library.settings.yml | 2 +- config/menu_ui.settings.yml | 2 +- config/migrate_drupal.settings.yml | 4 +- config/node.settings.yml | 2 +- config/octavia.settings.yml | 22 +- config/paragraphs.settings.yml | 2 +- config/paragraphs_features.settings.yml | 2 +- config/pathauto.pattern.article_type.yml | 6 +- config/pathauto.pattern.case_study.yml | 6 +- config/pathauto.pattern.event_type.yml | 6 +- config/pathauto.pattern.group.yml | 6 +- config/pathauto.pattern.group_membership.yml | 6 +- config/pathauto.pattern.group_type.yml | 6 +- config/pathauto.pattern.node_action.yml | 6 +- config/pathauto.pattern.node_article.yml | 6 +- config/pathauto.pattern.node_blog.yml | 6 +- config/pathauto.pattern.node_campaign.yml | 6 +- config/pathauto.pattern.node_event.yml | 6 +- config/pathauto.pattern.node_landing_page.yml | 6 +- config/pathauto.pattern.node_page.yml | 6 +- config/pathauto.pattern.node_resource.yml | 6 +- config/pathauto.pattern.people_node.yml | 6 +- config/pathauto.pattern.people_type.yml | 6 +- config/pathauto.pattern.vocabulary_terms.yml | 8 +- config/pathauto.settings.yml | 4 +- config/redirect.settings.yml | 4 +- config/redirect_404.settings.yml | 4 +- config/responsive_image.styles.narrow.yml | 4 +- config/responsive_image.styles.wide.yml | 4 +- config/search_api.index.action.yml | 40 +- config/search_api.index.article.yml | 40 +- config/search_api.index.blog.yml | 42 +- config/search_api.index.campaign.yml | 40 +- config/search_api.index.case_study.yml | 40 +- config/search_api.index.content.yml | 50 +- config/search_api.index.event.yml | 40 +- config/search_api.index.people.yml | 40 +- config/search_api.index.resource.yml | 40 +- config/search_api.server.database.yml | 6 +- config/search_api.settings.yml | 4 +- config/search_api_db.settings.yml | 2 +- config/statistics.settings.yml | 4 +- config/syslog.settings.yml | 4 +- .../system.action.redirect_delete_action.yml | 4 +- config/system.cron.yml | 4 +- config/system.date.yml | 8 +- config/system.diff.yml | 4 +- config/system.file.yml | 4 +- config/system.image.gd.yml | 2 +- config/system.image.yml | 2 +- config/system.logging.yml | 2 +- config/system.mail.yml | 4 +- config/system.maintenance.yml | 4 +- config/system.performance.yml | 4 +- config/system.site.yml | 6 +- config/system.theme.global.yml | 4 +- config/system.theme.yml | 4 +- config/taxonomy.settings.yml | 4 +- config/text.settings.yml | 2 +- config/update.settings.yml | 4 +- config/user.flood.yml | 4 +- config/user.mail.yml | 228 +-- config/user.settings.yml | 6 +- config/views.settings.yml | 6 +- config/views.view.action.yml | 172 +- config/views.view.archive.yml | 133 +- config/views.view.article.yml | 166 +- config/views.view.block_content.yml | 300 +-- config/views.view.blog.yml | 258 +-- config/views.view.campaign.yml | 174 +- config/views.view.case_study.yml | 188 +- config/views.view.comment.yml | 833 ++++---- config/views.view.comments_recent.yml | 217 +-- config/views.view.content.yml | 352 ++-- config/views.view.content_recent.yml | 195 +- config/views.view.event.yml | 227 +-- config/views.view.files.yml | 1342 ++++++------- config/views.view.frontpage.yml | 354 ++-- config/views.view.glossary.yml | 412 ++-- config/views.view.group.yml | 203 +- config/views.view.group_content.yml | 253 +-- config/views.view.group_members.yml | 356 ++-- config/views.view.group_nodes.yml | 1550 +++++++-------- config/views.view.media.yml | 403 ++-- config/views.view.media_library.yml | 951 ++++----- config/views.view.people.yml | 146 +- config/views.view.redirect.yml | 342 ++-- config/views.view.redirect_404.yml | 266 +-- config/views.view.related_content.yml | 215 +-- config/views.view.resource.yml | 178 +- config/views.view.search.yml | 179 +- config/views.view.taxonomy_term.yml | 246 +-- config/views.view.user_admin_people.yml | 427 +++-- config/views.view.watchdog.yml | 351 ++-- config/views.view.webform_submissions.yml | 1284 ++++++------- config/views.view.webmentions.yml | 1707 +++++++++-------- config/views.view.who_s_new.yml | 177 +- config/views.view.who_s_online.yml | 235 +-- config/webform.settings.yml | 144 +- ...bform.attend_the_tech_and_rev_workshop.yml | 32 +- config/webform.webform.blog_posts.yml | 32 +- config/webform.webform.capacitacion.yml | 32 +- config/webform.webform.contact.yml | 56 +- config/webform.webform.contact_confirm.yml | 32 +- ....webform.drupal_8_9_content_migrations.yml | 50 +- config/webform.webform.drutopia_intake.yml | 32 +- ...bform.webform.drutopia_platform_intake.yml | 48 +- config/webform.webform.find_it_platform.yml | 32 +- config/webform.webform.general_services.yml | 32 +- ....webform.getting_started_with_drupal_9.yml | 50 +- ....webform.getting_started_with_react_js.yml | 50 +- config/webform.webform.join_the_movement.yml | 34 +- ...form.webform.join_the_movement_confirm.yml | 32 +- config/webform.webform.june_2020_webinars.yml | 48 +- config/webform.webform.lms.yml | 48 +- config/webform.webform.migrations.yml | 50 +- ...rm.webform.migrations_training_confirm.yml | 32 +- config/webform.webform.newsletter.yml | 32 +- ....webform.purchase_training_migrate_api.yml | 50 +- config/webform.webform.request.yml | 48 +- config/webform.webform.showandtell.yml | 32 +- ...webform.webform.speaker_request_agaric.yml | 50 +- ....webform.speaker_request_clayton_dewey.yml | 48 +- ...bform.speaker_request_mauricio_dinarte.yml | 48 +- ....webform.speaker_request_michele_metts.yml | 48 +- ...rm.webform.speaker_request_micky_metts.yml | 48 +- config/webform.webform.training.yml | 48 +- config/webform.webform.training_discount.yml | 50 +- ....webform.training_notification_request.yml | 32 +- ...webform.webform.training_request_draft.yml | 48 +- config/webform.webform.workshops.yml | 32 +- config/webform_scheduled_email.settings.yml | 2 +- 443 files changed, 10241 insertions(+), 10212 deletions(-) diff --git a/config/antibot.settings.yml b/config/antibot.settings.yml index 13513a7..cfb1893 100644 --- a/config/antibot.settings.yml +++ b/config/antibot.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: 7QwhifH5gAzkdFMMDFV6XQRrcx4PAvtROZO8rs19nTo form_ids: - 'comment_*' - user_login_form @@ -6,5 +8,3 @@ form_ids: - 'contact_*' - 'webform_*' show_form_ids: false -_core: - default_config_hash: 7QwhifH5gAzkdFMMDFV6XQRrcx4PAvtROZO8rs19nTo diff --git a/config/automated_cron.settings.yml b/config/automated_cron.settings.yml index 2418a00..3fc5821 100644 --- a/config/automated_cron.settings.yml +++ b/config/automated_cron.settings.yml @@ -1,3 +1,3 @@ -interval: 10800 _core: default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs +interval: 10800 diff --git a/config/autosave_form.messages.yml b/config/autosave_form.messages.yml index e2546d3..4b81262 100644 --- a/config/autosave_form.messages.yml +++ b/config/autosave_form.messages.yml @@ -1,3 +1,3 @@ -entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.' _core: default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg +entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.' diff --git a/config/autosave_form.settings.yml b/config/autosave_form.settings.yml index 70b39c0..0a34f9e 100644 --- a/config/autosave_form.settings.yml +++ b/config/autosave_form.settings.yml @@ -1,4 +1,7 @@ +_core: + default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0 interval: 60000 +only_on_form_change: false active_on: content_entity_forms: true config_entity_forms: false @@ -7,6 +10,3 @@ notification: message: 'Saving draft...' delay: 1000 allowed_content_entity_types: { } -_core: - default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0 -only_on_form_change: false diff --git a/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml b/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml index 6f4fc75..8045b46 100644 --- a/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml +++ b/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml @@ -18,8 +18,8 @@ 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' - provider: block_content label_display: '0' + provider: block_content status: true info: '' view_mode: columnar @@ -27,5 +27,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.agarica_account_menu.yml b/config/block.block.agarica_account_menu.yml index d67fccb..99fcace 100644 --- a/config/block.block.agarica_account_menu.yml +++ b/config/block.block.agarica_account_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - provider: system label_display: '0' + provider: system level: 1 depth: 1 expand_all_items: false diff --git a/config/block.block.agarica_branding.yml b/config/block.block.agarica_branding.yml index 91ea85d..1a09689 100644 --- a/config/block.block.agarica_branding.yml +++ b/config/block.block.agarica_branding.yml @@ -17,8 +17,8 @@ plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - provider: system label_display: '0' + provider: system use_site_logo: true use_site_name: true use_site_slogan: true diff --git a/config/block.block.agarica_content.yml b/config/block.block.agarica_content.yml index 176723b..65869ae 100644 --- a/config/block.block.agarica_content.yml +++ b/config/block.block.agarica_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.agarica_footer_menu.yml b/config/block.block.agarica_footer_menu.yml index d976349..439affa 100644 --- a/config/block.block.agarica_footer_menu.yml +++ b/config/block.block.agarica_footer_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:footer' settings: id: 'system_menu_block:footer' label: 'Footer menu' - provider: system label_display: '0' + provider: system level: 1 depth: 0 expand_all_items: false diff --git a/config/block.block.agarica_group_operations.yml b/config/block.block.agarica_group_operations.yml index 277c3f1..83280d2 100644 --- a/config/block.block.agarica_group_operations.yml +++ b/config/block.block.agarica_group_operations.yml @@ -19,20 +19,20 @@ plugin: group_operations settings: id: group_operations label: 'Group operations' - provider: group label_display: visible + provider: group context_mapping: group: '@group.group_route_context:group' visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' 'entity_bundle:group': id: 'entity_bundle:group' - bundles: - group: group negate: false context_mapping: group: '@group.group_route_context:group' + bundles: + group: group diff --git a/config/block.block.agarica_help.yml b/config/block.block.agarica_help.yml index 75eff29..723a927 100644 --- a/config/block.block.agarica_help.yml +++ b/config/block.block.agarica_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - provider: help label_display: '0' + provider: help visibility: { } diff --git a/config/block.block.agarica_home_page_custom_1.yml b/config/block.block.agarica_home_page_custom_1.yml index 177f1a6..9f66713 100644 --- a/config/block.block.agarica_home_page_custom_1.yml +++ b/config/block.block.agarica_home_page_custom_1.yml @@ -20,8 +20,8 @@ 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' + provider: block_content status: true info: '' view_mode: columnar @@ -29,5 +29,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' 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 index 6c7fcb6..d81358c 100644 --- a/config/block.block.agarica_home_page_custom_2.yml +++ b/config/block.block.agarica_home_page_custom_2.yml @@ -20,8 +20,8 @@ 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' + provider: block_content status: true info: '' view_mode: columnar @@ -29,5 +29,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' 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 index de8ec82..aacd0b7 100644 --- a/config/block.block.agarica_home_page_custom_3.yml +++ b/config/block.block.agarica_home_page_custom_3.yml @@ -22,8 +22,8 @@ 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' + provider: block_content status: true info: '' view_mode: columnar @@ -31,5 +31,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page context_mapping: { } + block_visibility_group: home_page diff --git a/config/block.block.agarica_local_actions.yml b/config/block.block.agarica_local_actions.yml index c7b5369..cc6ec15 100644 --- a/config/block.block.agarica_local_actions.yml +++ b/config/block.block.agarica_local_actions.yml @@ -15,6 +15,6 @@ plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.agarica_local_tasks.yml b/config/block.block.agarica_local_tasks.yml index 5903f15..8451818 100644 --- a/config/block.block.agarica_local_tasks.yml +++ b/config/block.block.agarica_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: Tabs - provider: core label_display: '0' + provider: core primary: true secondary: true visibility: { } diff --git a/config/block.block.agarica_main_menu.yml b/config/block.block.agarica_main_menu.yml index 98a1e1f..4a08674 100644 --- a/config/block.block.agarica_main_menu.yml +++ b/config/block.block.agarica_main_menu.yml @@ -20,8 +20,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - provider: system label_display: '0' + provider: system level: 1 depth: 1 expand_all_items: false @@ -29,5 +29,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.agarica_messages.yml b/config/block.block.agarica_messages.yml index f11c439..8f88d95 100644 --- a/config/block.block.agarica_messages.yml +++ b/config/block.block.agarica_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.agarica_page_title.yml b/config/block.block.agarica_page_title.yml index f188cff..836cb8e 100644 --- a/config/block.block.agarica_page_title.yml +++ b/config/block.block.agarica_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.agarica_powered_by_drutopia.yml b/config/block.block.agarica_powered_by_drutopia.yml index 699950b..b8e86ae 100644 --- a/config/block.block.agarica_powered_by_drutopia.yml +++ b/config/block.block.agarica_powered_by_drutopia.yml @@ -17,6 +17,6 @@ plugin: drutopia_powered_by_block settings: id: drutopia_powered_by_block label: 'Powered by Drutopia' - provider: drutopia label_display: '0' + provider: drutopia visibility: { } diff --git a/config/block.block.agarica_socialmedialinks.yml b/config/block.block.agarica_socialmedialinks.yml index d34e4b1..8f70d66 100644 --- a/config/block.block.agarica_socialmedialinks.yml +++ b/config/block.block.agarica_socialmedialinks.yml @@ -17,8 +17,8 @@ plugin: social_media_links_block settings: id: social_media_links_block label: 'Social Media Links' - provider: social_media_links label_display: '0' + provider: social_media_links platforms: behance: value: '' diff --git a/config/block.block.agarica_views_block__related_content_block_related_content.yml b/config/block.block.agarica_views_block__related_content_block_related_content.yml index 44e9177..8554db5 100644 --- a/config/block.block.agarica_views_block__related_content_block_related_content.yml +++ b/config/block.block.agarica_views_block__related_content_block_related_content.yml @@ -21,21 +21,21 @@ plugin: 'views_block:related_content-block_related_content' settings: id: 'views_block:related_content-block_related_content' label: '' - provider: views label_display: visible + provider: views + context_mapping: { } views_label: '' items_per_page: none - context_mapping: { } visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' 'entity_bundle:node': id: 'entity_bundle:node' - bundles: - people: people negate: true context_mapping: node: '@node.node_route_context:node' + bundles: + people: people diff --git a/config/block.block.agaricnewsletter.yml b/config/block.block.agaricnewsletter.yml index c6e80da..f6864de 100644 --- a/config/block.block.agaricnewsletter.yml +++ b/config/block.block.agaricnewsletter.yml @@ -18,8 +18,8 @@ plugin: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345' settings: id: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345' label: 'Agaric Newsletter' - provider: block_content label_display: visible + provider: block_content status: true info: '' view_mode: default @@ -27,5 +27,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.article_topics_facet.yml b/config/block.block.article_topics_facet.yml index 5cb682d..212453d 100644 --- a/config/block.block.article_topics_facet.yml +++ b/config/block.block.article_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:article_topics' settings: id: 'facet_block:article_topics' label: Topics - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: article_listing context_mapping: { } + block_visibility_group: article_listing diff --git a/config/block.block.article_type_facet.yml b/config/block.block.article_type_facet.yml index 280615e..3d83d36 100644 --- a/config/block.block.article_type_facet.yml +++ b/config/block.block.article_type_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:article_type' settings: id: 'facet_block:article_type' label: Type - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: article_listing context_mapping: { } + block_visibility_group: article_listing diff --git a/config/block.block.blog_topics_facet.yml b/config/block.block.blog_topics_facet.yml index db7c253..49e1bf9 100644 --- a/config/block.block.blog_topics_facet.yml +++ b/config/block.block.blog_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:blog_topics' settings: id: 'facet_block:blog_topics' label: Topics - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: blog_listing context_mapping: { } + block_visibility_group: blog_listing diff --git a/config/block.block.bulma_account_menu.yml b/config/block.block.bulma_account_menu.yml index c6eaa6c..9b65df1 100644 --- a/config/block.block.bulma_account_menu.yml +++ b/config/block.block.bulma_account_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - provider: system label_display: '1' + provider: system level: 1 depth: 1 expand_all_items: false diff --git a/config/block.block.bulma_branding.yml b/config/block.block.bulma_branding.yml index c4b4e3d..778e876 100644 --- a/config/block.block.bulma_branding.yml +++ b/config/block.block.bulma_branding.yml @@ -17,8 +17,8 @@ plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - provider: system label_display: '0' + provider: system use_site_logo: true use_site_name: true use_site_slogan: true diff --git a/config/block.block.bulma_content.yml b/config/block.block.bulma_content.yml index 43bb3ff..37081f7 100644 --- a/config/block.block.bulma_content.yml +++ b/config/block.block.bulma_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.bulma_help.yml b/config/block.block.bulma_help.yml index 8fef326..f45c086 100644 --- a/config/block.block.bulma_help.yml +++ b/config/block.block.bulma_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - provider: help label_display: '0' + provider: help visibility: { } diff --git a/config/block.block.bulma_local_tasks.yml b/config/block.block.bulma_local_tasks.yml index 17d5c15..c4ea790 100644 --- a/config/block.block.bulma_local_tasks.yml +++ b/config/block.block.bulma_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: Tabs - provider: core label_display: '0' + provider: core primary: true secondary: true visibility: { } diff --git a/config/block.block.bulma_main_menu.yml b/config/block.block.bulma_main_menu.yml index 9438f55..df7760a 100644 --- a/config/block.block.bulma_main_menu.yml +++ b/config/block.block.bulma_main_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - provider: system label_display: '0' + provider: system level: 1 depth: 1 expand_all_items: false diff --git a/config/block.block.bulma_messages.yml b/config/block.block.bulma_messages.yml index 1632952..b6dd75c 100644 --- a/config/block.block.bulma_messages.yml +++ b/config/block.block.bulma_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.bulma_page_title.yml b/config/block.block.bulma_page_title.yml index 2ec527f..42c8405 100644 --- a/config/block.block.bulma_page_title.yml +++ b/config/block.block.bulma_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.bulma_powered.yml b/config/block.block.bulma_powered.yml index bc694c4..99408df 100644 --- a/config/block.block.bulma_powered.yml +++ b/config/block.block.bulma_powered.yml @@ -17,6 +17,6 @@ plugin: system_powered_by_block settings: id: system_powered_by_block label: 'Powered by Drupal' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.bulma_tools.yml b/config/block.block.bulma_tools.yml index 1ebdaa3..3fde28d 100644 --- a/config/block.block.bulma_tools.yml +++ b/config/block.block.bulma_tools.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:tools' settings: id: 'system_menu_block:tools' label: Tools - provider: system label_display: visible + provider: system level: 1 depth: 0 expand_all_items: false diff --git a/config/block.block.content_search_form_global.yml b/config/block.block.content_search_form_global.yml index 706ee7b..ad51282 100644 --- a/config/block.block.content_search_form_global.yml +++ b/config/block.block.content_search_form_global.yml @@ -20,12 +20,12 @@ plugin: 'views_exposed_filter_block:search-page_1' settings: id: 'views_exposed_filter_block:search-page_1' label: '' - provider: views label_display: '0' + provider: views views_label: '' visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.content_search_form_search.yml b/config/block.block.content_search_form_search.yml index 1ea95c7..a1ce5a4 100644 --- a/config/block.block.content_search_form_search.yml +++ b/config/block.block.content_search_form_search.yml @@ -21,12 +21,12 @@ plugin: 'views_exposed_filter_block:search-page_1' settings: id: 'views_exposed_filter_block:search-page_1' label: '' - provider: views label_display: '0' + provider: views views_label: '' visibility: condition_group: id: condition_group negate: false - block_visibility_group: search context_mapping: { } + block_visibility_group: search diff --git a/config/block.block.event_topics_facet.yml b/config/block.block.event_topics_facet.yml index bcfc522..459ec58 100644 --- a/config/block.block.event_topics_facet.yml +++ b/config/block.block.event_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:event_topics' settings: id: 'facet_block:event_topics' label: Topics - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: event_listing context_mapping: { } + block_visibility_group: event_listing diff --git a/config/block.block.event_type_facet.yml b/config/block.block.event_type_facet.yml index b755fcb..9929393 100644 --- a/config/block.block.event_type_facet.yml +++ b/config/block.block.event_type_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:event_type' settings: id: 'facet_block:event_type' label: Type - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: event_listing context_mapping: { } + block_visibility_group: event_listing diff --git a/config/block.block.exposedformsearchpage_1.yml b/config/block.block.exposedformsearchpage_1.yml index 4de3601..456e45e 100644 --- a/config/block.block.exposedformsearchpage_1.yml +++ b/config/block.block.exposedformsearchpage_1.yml @@ -18,12 +18,12 @@ plugin: 'views_exposed_filter_block:search-page_1' settings: id: 'views_exposed_filter_block:search-page_1' label: '' - provider: views label_display: '0' + provider: views views_label: '' visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.exposedformsearchpage_1_2.yml b/config/block.block.exposedformsearchpage_1_2.yml index 0c876d5..12ba201 100644 --- a/config/block.block.exposedformsearchpage_1_2.yml +++ b/config/block.block.exposedformsearchpage_1_2.yml @@ -19,19 +19,19 @@ plugin: 'views_exposed_filter_block:search-page_1' settings: id: 'views_exposed_filter_block:search-page_1' label: '' - provider: views label_display: visible + provider: views views_label: '' visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' request_path: id: request_path + negate: false + context_mapping: { } pages: | /search /search/* - negate: false - context_mapping: { } diff --git a/config/block.block.footer_about_us.yml b/config/block.block.footer_about_us.yml index 36bf514..43fd62f 100644 --- a/config/block.block.footer_about_us.yml +++ b/config/block.block.footer_about_us.yml @@ -20,20 +20,20 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'About Us' - provider: menu_block 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 - label_type: block - label_link: false visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.footer_get_involved.yml b/config/block.block.footer_get_involved.yml index ef65519..52c12ae 100644 --- a/config/block.block.footer_get_involved.yml +++ b/config/block.block.footer_get_involved.yml @@ -20,20 +20,20 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'Get Involved' - provider: menu_block 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 - label_type: block - label_link: false visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.footer_our_work.yml b/config/block.block.footer_our_work.yml index 2c980e0..f075147 100644 --- a/config/block.block.footer_our_work.yml +++ b/config/block.block.footer_our_work.yml @@ -20,20 +20,20 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'Our Work' - provider: menu_block 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 - label_type: block - label_link: false visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.group_operations.yml b/config/block.block.group_operations.yml index 29c224a..6e6169b 100644 --- a/config/block.block.group_operations.yml +++ b/config/block.block.group_operations.yml @@ -19,20 +19,20 @@ plugin: group_operations settings: id: group_operations label: 'Group operations' - provider: group label_display: visible + provider: group context_mapping: group: '@group.group_route_context:group' visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' 'entity_bundle:group': id: 'entity_bundle:group' - bundles: - group: group negate: false context_mapping: group: '@group.group_route_context:group' + bundles: + group: group diff --git a/config/block.block.hireagaric.yml b/config/block.block.hireagaric.yml index ec24f71..e5529eb 100644 --- a/config/block.block.hireagaric.yml +++ b/config/block.block.hireagaric.yml @@ -20,8 +20,8 @@ plugin: 'block_content:134165a3-b38a-41c1-92aa-984e3e6d3435' settings: id: 'block_content:134165a3-b38a-41c1-92aa-984e3e6d3435' label: 'Hire Agaric' - provider: block_content label_display: '0' + provider: block_content status: true info: '' view_mode: full @@ -29,19 +29,12 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } - node_type: - id: node_type - bundles: - blog: blog - negate: false - context_mapping: - node: '@node.node_route_context:node' + block_visibility_group: '' 'entity_bundle:node': id: 'entity_bundle:node' - bundles: - blog: blog negate: false context_mapping: node: '@node.node_route_context:node' + bundles: + blog: blog diff --git a/config/block.block.home_page_custom_1.yml b/config/block.block.home_page_custom_1.yml index a43fe8a..d673aa3 100644 --- a/config/block.block.home_page_custom_1.yml +++ b/config/block.block.home_page_custom_1.yml @@ -19,8 +19,8 @@ plugin: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' settings: id: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' label: 'Home page custom 1' - provider: block_content label_display: '0' + provider: block_content status: true info: '' view_mode: columnar @@ -28,5 +28,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page context_mapping: { } + block_visibility_group: home_page diff --git a/config/block.block.home_page_custom_2.yml b/config/block.block.home_page_custom_2.yml index 6d8c6f2..238fa81 100644 --- a/config/block.block.home_page_custom_2.yml +++ b/config/block.block.home_page_custom_2.yml @@ -19,8 +19,8 @@ plugin: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' settings: id: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' label: 'Home page custom 2' - provider: block_content label_display: '0' + provider: block_content status: true info: '' view_mode: columnar @@ -28,5 +28,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page 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 index f9fe56a..443e406 100644 --- a/config/block.block.home_page_custom_3.yml +++ b/config/block.block.home_page_custom_3.yml @@ -19,8 +19,8 @@ plugin: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' settings: id: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' label: 'Home page custom 3' - provider: block_content label_display: '0' + provider: block_content status: true info: '' view_mode: columnar @@ -28,5 +28,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page context_mapping: { } + block_visibility_group: home_page diff --git a/config/block.block.home_page_feature.yml b/config/block.block.home_page_feature.yml index f84ba8b..b5e605a 100644 --- a/config/block.block.home_page_feature.yml +++ b/config/block.block.home_page_feature.yml @@ -4,13 +4,13 @@ status: true dependencies: config: - block_visibility_groups.block_visibility_group.home_page - enforced: - module: - - block_content module: - block_visibility_groups theme: - octavia + enforced: + module: + - block_content _core: default_config_hash: UM0JrnLICjDPy7RItwhppXAo_6rI5emb5-m1PX-ClIM id: home_page_feature @@ -22,8 +22,8 @@ plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933' settings: id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933' label: 'Home page feature' - provider: block_content label_display: '0' + provider: block_content status: true info: '' view_mode: full @@ -31,5 +31,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: home_page context_mapping: { } + block_visibility_group: home_page diff --git a/config/block.block.languageswitcher.yml b/config/block.block.languageswitcher.yml index 0826509..e6c70a0 100644 --- a/config/block.block.languageswitcher.yml +++ b/config/block.block.languageswitcher.yml @@ -16,12 +16,12 @@ plugin: 'dropdown_language:language_interface' settings: id: 'dropdown_language:language_interface' label: 'Language:' - provider: dropdown_language label_display: visible + provider: dropdown_language labels: null visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.mainnavigation.yml b/config/block.block.mainnavigation.yml index 57359a2..161a376 100644 --- a/config/block.block.mainnavigation.yml +++ b/config/block.block.mainnavigation.yml @@ -18,8 +18,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Second-level main navigation' - provider: system label_display: '0' + provider: system level: 2 depth: 1 expand_all_items: false @@ -27,5 +27,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.octavia_account_menu.yml b/config/block.block.octavia_account_menu.yml index 675d625..20a7b46 100644 --- a/config/block.block.octavia_account_menu.yml +++ b/config/block.block.octavia_account_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - provider: system label_display: '0' + provider: system level: 1 depth: 1 expand_all_items: false diff --git a/config/block.block.octavia_branding.yml b/config/block.block.octavia_branding.yml index c7eabb9..1982007 100644 --- a/config/block.block.octavia_branding.yml +++ b/config/block.block.octavia_branding.yml @@ -17,8 +17,8 @@ plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - provider: system label_display: '0' + provider: system use_site_logo: true use_site_name: true use_site_slogan: true diff --git a/config/block.block.octavia_content.yml b/config/block.block.octavia_content.yml index 6fbb8a9..626d3c4 100644 --- a/config/block.block.octavia_content.yml +++ b/config/block.block.octavia_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.octavia_footer_menu.yml b/config/block.block.octavia_footer_menu.yml index 8b5b5ab..5c68cd3 100644 --- a/config/block.block.octavia_footer_menu.yml +++ b/config/block.block.octavia_footer_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:footer' settings: id: 'system_menu_block:footer' label: 'Footer menu' - provider: system label_display: '0' + provider: system level: 1 depth: 0 expand_all_items: false diff --git a/config/block.block.octavia_help.yml b/config/block.block.octavia_help.yml index 676eb1d..2eb558e 100644 --- a/config/block.block.octavia_help.yml +++ b/config/block.block.octavia_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - provider: help label_display: '0' + provider: help visibility: { } diff --git a/config/block.block.octavia_local_actions.yml b/config/block.block.octavia_local_actions.yml index 307f4b9..cad882e 100644 --- a/config/block.block.octavia_local_actions.yml +++ b/config/block.block.octavia_local_actions.yml @@ -15,6 +15,6 @@ plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.octavia_local_tasks.yml b/config/block.block.octavia_local_tasks.yml index 86f9eb1..7c93501 100644 --- a/config/block.block.octavia_local_tasks.yml +++ b/config/block.block.octavia_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: Tabs - provider: core label_display: '0' + provider: core primary: true secondary: true visibility: { } diff --git a/config/block.block.octavia_main_menu.yml b/config/block.block.octavia_main_menu.yml index 10dc9c7..f9a8f63 100644 --- a/config/block.block.octavia_main_menu.yml +++ b/config/block.block.octavia_main_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - provider: system label_display: '0' + provider: system level: 1 depth: 2 expand_all_items: false diff --git a/config/block.block.octavia_messages.yml b/config/block.block.octavia_messages.yml index ed78abf..51d7940 100644 --- a/config/block.block.octavia_messages.yml +++ b/config/block.block.octavia_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.octavia_page_title.yml b/config/block.block.octavia_page_title.yml index 58e880e..fa75a1e 100644 --- a/config/block.block.octavia_page_title.yml +++ b/config/block.block.octavia_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.octavia_powered_by_drutopia.yml b/config/block.block.octavia_powered_by_drutopia.yml index fdfbb9c..dd90e40 100644 --- a/config/block.block.octavia_powered_by_drutopia.yml +++ b/config/block.block.octavia_powered_by_drutopia.yml @@ -17,6 +17,6 @@ plugin: drutopia_powered_by_block settings: id: drutopia_powered_by_block label: 'Powered by Drutopia' - provider: drutopia label_display: '0' + provider: drutopia visibility: { } diff --git a/config/block.block.resource_topics_facet.yml b/config/block.block.resource_topics_facet.yml index 32f2d1c..478b3db 100644 --- a/config/block.block.resource_topics_facet.yml +++ b/config/block.block.resource_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:resource_topics' settings: id: 'facet_block:resource_topics' label: Topics - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: resource_listing context_mapping: { } + block_visibility_group: resource_listing diff --git a/config/block.block.resource_type_facet.yml b/config/block.block.resource_type_facet.yml index 7a0cc17..b370e1b 100644 --- a/config/block.block.resource_type_facet.yml +++ b/config/block.block.resource_type_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:resource_type' settings: id: 'facet_block:resource_type' label: Type - provider: facets label_display: visible + provider: facets visibility: condition_group: id: condition_group negate: false - block_visibility_group: resource_listing context_mapping: { } + block_visibility_group: resource_listing diff --git a/config/block.block.seven_breadcrumbs.yml b/config/block.block.seven_breadcrumbs.yml index 0989c14..9786fc4 100644 --- a/config/block.block.seven_breadcrumbs.yml +++ b/config/block.block.seven_breadcrumbs.yml @@ -17,6 +17,6 @@ plugin: system_breadcrumb_block settings: id: system_breadcrumb_block label: Breadcrumbs - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.seven_content.yml b/config/block.block.seven_content.yml index a927187..44bebc4 100644 --- a/config/block.block.seven_content.yml +++ b/config/block.block.seven_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.seven_help.yml b/config/block.block.seven_help.yml index cb934cb..a2b9697 100644 --- a/config/block.block.seven_help.yml +++ b/config/block.block.seven_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - provider: help label_display: '0' + provider: help visibility: { } diff --git a/config/block.block.seven_local_actions.yml b/config/block.block.seven_local_actions.yml index 0dcd212..7bd1aa9 100644 --- a/config/block.block.seven_local_actions.yml +++ b/config/block.block.seven_local_actions.yml @@ -15,6 +15,6 @@ plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.seven_login.yml b/config/block.block.seven_login.yml index 6c6b864..2916fb5 100644 --- a/config/block.block.seven_login.yml +++ b/config/block.block.seven_login.yml @@ -17,6 +17,6 @@ plugin: user_login_block settings: id: user_login_block label: 'User login' - provider: user label_display: visible + provider: user visibility: { } diff --git a/config/block.block.seven_messages.yml b/config/block.block.seven_messages.yml index 6d58952..3af450d 100644 --- a/config/block.block.seven_messages.yml +++ b/config/block.block.seven_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - provider: system label_display: '0' + provider: system visibility: { } diff --git a/config/block.block.seven_page_title.yml b/config/block.block.seven_page_title.yml index f836a10..c47c870 100644 --- a/config/block.block.seven_page_title.yml +++ b/config/block.block.seven_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - provider: core label_display: '0' + provider: core visibility: { } diff --git a/config/block.block.seven_primary_local_tasks.yml b/config/block.block.seven_primary_local_tasks.yml index 5be5444..6d46cfc 100644 --- a/config/block.block.seven_primary_local_tasks.yml +++ b/config/block.block.seven_primary_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: 'Primary tabs' - provider: core label_display: '0' + provider: core primary: true secondary: false visibility: { } diff --git a/config/block.block.seven_secondary_local_tasks.yml b/config/block.block.seven_secondary_local_tasks.yml index 8be1678..99d269b 100644 --- a/config/block.block.seven_secondary_local_tasks.yml +++ b/config/block.block.seven_secondary_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: 'Secondary tabs' - provider: core label_display: '0' + provider: core primary: false secondary: true visibility: { } diff --git a/config/block.block.socialmedialinks.yml b/config/block.block.socialmedialinks.yml index c049dbf..60583e6 100644 --- a/config/block.block.socialmedialinks.yml +++ b/config/block.block.socialmedialinks.yml @@ -17,8 +17,8 @@ plugin: social_media_links_block settings: id: social_media_links_block label: 'Social Media Links' - provider: social_media_links label_display: '0' + provider: social_media_links platforms: behance: value: '' diff --git a/config/block.block.upcomingtrainingsfromagaric.yml b/config/block.block.upcomingtrainingsfromagaric.yml index 8b0b88f..954c815 100644 --- a/config/block.block.upcomingtrainingsfromagaric.yml +++ b/config/block.block.upcomingtrainingsfromagaric.yml @@ -18,8 +18,8 @@ plugin: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4' settings: id: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4' label: 'Upcoming Trainings from Agaric' - provider: block_content label_display: visible + provider: block_content status: true info: '' view_mode: full @@ -27,5 +27,5 @@ visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block.block.userlogin.yml b/config/block.block.userlogin.yml index 080b615..a195559 100644 --- a/config/block.block.userlogin.yml +++ b/config/block.block.userlogin.yml @@ -17,18 +17,18 @@ plugin: user_login_block settings: id: user_login_block label: 'User login' - provider: user label_display: visible + provider: user visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' 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 - negate: false - context_mapping: { } diff --git a/config/block.block.views_block__related_content_block_related_content.yml b/config/block.block.views_block__related_content_block_related_content.yml index 10927c3..b470ee5 100644 --- a/config/block.block.views_block__related_content_block_related_content.yml +++ b/config/block.block.views_block__related_content_block_related_content.yml @@ -20,14 +20,14 @@ plugin: 'views_block:related_content-block_related_content' settings: id: 'views_block:related_content-block_related_content' label: '' - provider: views label_display: visible + provider: views + context_mapping: { } views_label: '' items_per_page: none - context_mapping: { } visibility: condition_group: id: condition_group negate: false - block_visibility_group: '' context_mapping: { } + block_visibility_group: '' diff --git a/config/block_visibility_groups.block_visibility_group.article_listing.yml b/config/block_visibility_groups.block_visibility_group.article_listing.yml index 2cd0699..190117f 100644 --- a/config/block_visibility_groups.block_visibility_group.article_listing.yml +++ b/config/block_visibility_groups.block_visibility_group.article_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: 7ff8110c-3b7e-4b97-8def-4081a2590558: id: request_path - pages: /articles negate: false - context_mapping: { } uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558 + context_mapping: { } + pages: /articles allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.blog_listing.yml b/config/block_visibility_groups.block_visibility_group.blog_listing.yml index ddb7ad2..f14e0d3 100644 --- a/config/block_visibility_groups.block_visibility_group.blog_listing.yml +++ b/config/block_visibility_groups.block_visibility_group.blog_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: b3c1bb42-5349-4f54-abe9-590277c82bcc: id: request_path - pages: /blog negate: false - context_mapping: { } uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc + context_mapping: { } + pages: /blog allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.event_listing.yml b/config/block_visibility_groups.block_visibility_group.event_listing.yml index fef6f37..e3ddc0c 100644 --- a/config/block_visibility_groups.block_visibility_group.event_listing.yml +++ b/config/block_visibility_groups.block_visibility_group.event_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: 1e04f2af-09a5-4978-83f4-0c5b0cefbfc4: id: request_path - pages: /events negate: false - context_mapping: { } uuid: 1e04f2af-09a5-4978-83f4-0c5b0cefbfc4 + context_mapping: { } + pages: /events allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.home_page.yml b/config/block_visibility_groups.block_visibility_group.home_page.yml index c1b44f1..98e0a0c 100644 --- a/config/block_visibility_groups.block_visibility_group.home_page.yml +++ b/config/block_visibility_groups.block_visibility_group.home_page.yml @@ -12,8 +12,8 @@ logic: and conditions: c14822f9-38fa-4397-a5b6-ba9a6f94138e: id: request_path - pages: '' negate: false - context_mapping: { } uuid: c14822f9-38fa-4397-a5b6-ba9a6f94138e + context_mapping: { } + pages: '' allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.resource_listing.yml b/config/block_visibility_groups.block_visibility_group.resource_listing.yml index f33e125..556ea9c 100644 --- a/config/block_visibility_groups.block_visibility_group.resource_listing.yml +++ b/config/block_visibility_groups.block_visibility_group.resource_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: a8640e54-e935-4421-ade8-277a3e8cf3e2: id: request_path - pages: /resources negate: false - context_mapping: { } uuid: a8640e54-e935-4421-ade8-277a3e8cf3e2 + context_mapping: { } + pages: /resources allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.search.yml b/config/block_visibility_groups.block_visibility_group.search.yml index 43b4a17..d6ec7a7 100644 --- a/config/block_visibility_groups.block_visibility_group.search.yml +++ b/config/block_visibility_groups.block_visibility_group.search.yml @@ -12,8 +12,8 @@ logic: and conditions: f502a545-a711-401c-8e94-6e727993abb4: id: request_path - pages: /search negate: false - context_mapping: { } uuid: f502a545-a711-401c-8e94-6e727993abb4 + context_mapping: { } + pages: /search allow_other_conditions: false diff --git a/config/bulma.settings.yml b/config/bulma.settings.yml index 8cc6e0a..8609d89 100644 --- a/config/bulma.settings.yml +++ b/config/bulma.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI general: block: 1 icon: 1 @@ -29,5 +31,3 @@ cdn: bulmaswatch: version: 0.5.1 theme: default -_core: - default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI diff --git a/config/coffee.configuration.yml b/config/coffee.configuration.yml index 6058a0b..545da1d 100644 --- a/config/coffee.configuration.yml +++ b/config/coffee.configuration.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: cOqVnz_7pbb_0R31nQwih4Gh8XkmIbyFagFp6uUPaOc coffee_menus: admin: admin footer: footer @@ -5,8 +7,6 @@ coffee_menus: tools: tools account: account max_results: 12 -_core: - default_config_hash: cOqVnz_7pbb_0R31nQwih4Gh8XkmIbyFagFp6uUPaOc keycodes: - 206 - 75 diff --git a/config/comment_notify.settings.yml b/config/comment_notify.settings.yml index f55526f..bca1d3b 100644 --- a/config/comment_notify.settings.yml +++ b/config/comment_notify.settings.yml @@ -1,5 +1,7 @@ -node_types: - - blog +_core: + default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik +bundle_types: + - node--blog--comment available_alerts: 1: true 2: false @@ -12,23 +14,23 @@ mail_templates: subject: '[site:name] :: new comment on [node:title]' body: | Hi [comment-subscribed:author], - + [comment:author] has commented on: "[node:title]" - + ---- [comment:title] [comment:body] ---- - + You can view the comment at the following url [comment:url] - + You can stop receiving emails when someone replies to this post, by going to [comment-subscribed:unsubscribe-url] - + You can set up auto-following feature for all future posts by creating your own user with a few clicks here [site:login-url] - + -- [site:name] team [site:url] entity_author: @@ -36,24 +38,22 @@ mail_templates: subject: '[site:name] :: new comment for your post' body: | Hi [node:author], - + You have received a comment on: "[node:title]" - + ---- [comment:title] [comment:body] ---- - + You can view the comment at the following url [comment:url] - + You will receive emails like this for all replies to your posts. You can disable this by logging in and changing the settings on your user account at [node:author:edit-url]. - + -- [site:name] team [site:url] -_core: - default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik -bundle_types: - - node--blog--comment +node_types: + - blog diff --git a/config/contact.settings.yml b/config/contact.settings.yml index a2903f5..1c949a6 100644 --- a/config/contact.settings.yml +++ b/config/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.uid.yml b/config/core.base_field_override.node.action.uid.yml index 2ec6405..bc9a810 100644 --- a/config/core.base_field_override.node.action.uid.yml +++ b/config/core.base_field_override.node.action.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.article.uid.yml b/config/core.base_field_override.node.article.uid.yml index bf1ef8a..349d745 100644 --- a/config/core.base_field_override.node.article.uid.yml +++ b/config/core.base_field_override.node.article.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.blog.uid.yml b/config/core.base_field_override.node.blog.uid.yml index 1eceff0..b8ceb0e 100644 --- a/config/core.base_field_override.node.blog.uid.yml +++ b/config/core.base_field_override.node.blog.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: true default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.campaign.uid.yml b/config/core.base_field_override.node.campaign.uid.yml index f1fa3e3..cf31210 100644 --- a/config/core.base_field_override.node.campaign.uid.yml +++ b/config/core.base_field_override.node.campaign.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.case_study.uid.yml b/config/core.base_field_override.node.case_study.uid.yml index 7db00dd..cbe00ec 100644 --- a/config/core.base_field_override.node.case_study.uid.yml +++ b/config/core.base_field_override.node.case_study.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.event.uid.yml b/config/core.base_field_override.node.event.uid.yml index db8c2f6..84a7ee4 100644 --- a/config/core.base_field_override.node.event.uid.yml +++ b/config/core.base_field_override.node.event.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.landing_page.uid.yml b/config/core.base_field_override.node.landing_page.uid.yml index 172e636..4c953d4 100644 --- a/config/core.base_field_override.node.landing_page.uid.yml +++ b/config/core.base_field_override.node.landing_page.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.page.uid.yml b/config/core.base_field_override.node.page.uid.yml index 8ac1c81..f6c1bed 100644 --- a/config/core.base_field_override.node.page.uid.yml +++ b/config/core.base_field_override.node.page.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.people.uid.yml b/config/core.base_field_override.node.people.uid.yml index d598329..ac44cbf 100644 --- a/config/core.base_field_override.node.people.uid.yml +++ b/config/core.base_field_override.node.people.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.base_field_override.node.resource.uid.yml b/config/core.base_field_override.node.resource.uid.yml index 3a70f8f..17dcbf6 100644 --- a/config/core.base_field_override.node.resource.uid.yml +++ b/config/core.base_field_override.node.resource.uid.yml @@ -13,7 +13,7 @@ description: 'The username of the content author.' required: false translatable: false default_value: { } -default_value_callback: 'Drupal\node\Entity\Node::getCurrentUserId' +default_value_callback: 'Drupal\node\Entity\Node::getDefaultEntityOwner' settings: handler: default handler_settings: { } diff --git a/config/core.entity_form_display.block_content.basic.default.yml b/config/core.entity_form_display.block_content.basic.default.yml index 43600ba..d637c3b 100644 --- a/config/core.entity_form_display.block_content.basic.default.yml +++ b/config/core.entity_form_display.block_content.basic.default.yml @@ -17,21 +17,21 @@ 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: { } - region: content langcode: type: language_select weight: 2 @@ -41,7 +41,7 @@ content: third_party_settings: { } translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: { } 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 index db91e9f..5001275 100644 --- a/config/core.entity_form_display.block_content.content_reference.default.yml +++ b/config/core.entity_form_display.block_content.content_reference.default.yml @@ -11,15 +11,15 @@ 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: { } - type: entity_reference_autocomplete - region: content info: type: string_textfield weight: -5 diff --git a/config/core.entity_form_display.block_content.slide.default.yml b/config/core.entity_form_display.block_content.slide.default.yml index f712054..f51be79 100644 --- a/config/core.entity_form_display.block_content.slide.default.yml +++ b/config/core.entity_form_display.block_content.slide.default.yml @@ -17,6 +17,7 @@ content: field_slide: type: entity_reference_paragraphs weight: 26 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -25,7 +26,6 @@ content: form_display_mode: default default_paragraph_type: '' third_party_settings: { } - region: content info: type: string_textfield weight: -5 @@ -43,7 +43,7 @@ content: third_party_settings: { } translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: { } diff --git a/config/core.entity_form_display.comment.comment.default.yml b/config/core.entity_form_display.comment.comment.default.yml index 7d2847c..9aa3378 100644 --- a/config/core.entity_form_display.comment.comment.default.yml +++ b/config/core.entity_form_display.comment.comment.default.yml @@ -23,6 +23,7 @@ content: comment_body: type: text_textarea weight: 1 + region: content settings: rows: 5 placeholder: '' @@ -30,12 +31,11 @@ content: allowed_formats: hide_help: '1' hide_guidelines: '0' - region: content comment_notify_settings: weight: 1 + region: content settings: { } third_party_settings: { } - region: content langcode: type: language_select weight: 2 @@ -45,8 +45,8 @@ content: third_party_settings: { } translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: subject: true diff --git a/config/core.entity_form_display.contact_message.personal.default.yml b/config/core.entity_form_display.contact_message.personal.default.yml index 4973c8e..fea7d4c 100644 --- a/config/core.entity_form_display.contact_message.personal.default.yml +++ b/config/core.entity_form_display.contact_message.personal.default.yml @@ -29,10 +29,10 @@ content: message: type: string_textarea weight: 5 + region: content settings: rows: 12 placeholder: '' - region: content third_party_settings: { } name: weight: 1 diff --git a/config/core.entity_form_display.group.group.default.yml b/config/core.entity_form_display.group.group.default.yml index 95489a2..342e155 100644 --- a/config/core.entity_form_display.group.group.default.yml +++ b/config/core.entity_form_display.group.group.default.yml @@ -29,15 +29,16 @@ bundle: group mode: default content: field_group_address: + type: address_default weight: 10 + region: content settings: default_country: null third_party_settings: { } - type: address_default - region: content field_group_description: type: entity_reference_paragraphs weight: 4 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -46,60 +47,59 @@ content: 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 + weight: 8 region: content + settings: + placeholder: '' + size: 60 + third_party_settings: { } field_group_image: + type: image_image weight: 2 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_group_phone: + type: telephone_default weight: 7 + region: content settings: placeholder: '' third_party_settings: { } - type: telephone_default - region: content field_group_summary: + type: text_textarea weight: 3 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content field_group_type: + type: options_select weight: 1 + region: content settings: { } third_party_settings: { } - type: options_select - region: content field_group_website: + type: link_default weight: 9 + region: content settings: placeholder_url: '' placeholder_title: '' third_party_settings: { } - type: link_default - region: content label: type: string_textfield weight: 0 + region: content settings: size: 60 placeholder: '' third_party_settings: { } - region: content langcode: type: language_select weight: 2 @@ -110,8 +110,8 @@ content: path: type: path weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: uid: true diff --git a/config/core.entity_form_display.group_content.group-group_membership.default.yml b/config/core.entity_form_display.group_content.group-group_membership.default.yml index 9a79b5a..289d2ed 100644 --- a/config/core.entity_form_display.group_content.group-group_membership.default.yml +++ b/config/core.entity_form_display.group_content.group-group_membership.default.yml @@ -17,19 +17,19 @@ content: entity_id: type: entity_reference_autocomplete weight: 5 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - region: content group_roles: type: options_buttons weight: 6 + region: content settings: { } third_party_settings: { } - region: content langcode: type: language_select weight: 2 diff --git a/config/core.entity_form_display.node.action.default.yml b/config/core.entity_form_display.node.action.default.yml index abe75c3..55d000f 100644 --- a/config/core.entity_form_display.node.action.default.yml +++ b/config/core.entity_form_display.node.action.default.yml @@ -33,31 +33,33 @@ 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: { } - type: datetime_default - region: content field_action_link: + type: link_default weight: 5 + region: content settings: placeholder_url: '' placeholder_title: '' third_party_settings: { } - type: link_default - region: content field_action_type: + type: options_select weight: 4 + region: content settings: { } third_party_settings: { } - type: options_select - region: content field_body_paragraph: + type: entity_reference_paragraphs weight: 2 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -66,46 +68,44 @@ content: form_display_mode: default default_paragraph_type: text third_party_settings: { } - type: entity_reference_paragraphs - region: content field_image: + type: image_image weight: 7 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 26 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_summary: + type: text_textarea weight: 1 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content field_tags: + type: entity_reference_autocomplete_tags weight: 6 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete_tags - region: content field_topics: + type: options_select weight: 121 + region: content settings: { } third_party_settings: { } - type: options_select - region: content langcode: type: language_select weight: 2 @@ -116,52 +116,52 @@ content: 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 - settings: - display_label: true weight: 120 region: content + settings: + display_label: true 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: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true diff --git a/config/core.entity_form_display.node.article.default.yml b/config/core.entity_form_display.node.article.default.yml index 5d245f9..6f96ee5 100644 --- a/config/core.entity_form_display.node.article.default.yml +++ b/config/core.entity_form_display.node.article.default.yml @@ -32,33 +32,35 @@ 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: '' - match_limit: 10 third_party_settings: { } field_body_paragraph: + type: entity_reference_paragraphs weight: 5 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -67,46 +69,44 @@ 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: { } - region: content field_meta_tags: + type: metatag_firehose weight: 14 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_summary: + type: text_textarea weight: 4 + region: content 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: '' - match_limit: 10 third_party_settings: { } - region: content field_topics: + type: options_select weight: 6 + region: content settings: { } third_party_settings: { } - type: options_select - region: content langcode: type: language_select weight: 2 @@ -117,52 +117,52 @@ content: path: type: path weight: 13 + region: content settings: { } third_party_settings: { } - region: content promote: type: boolean_checkbox + weight: 10 + region: content settings: display_label: true - weight: 10 third_party_settings: { } - region: content status: type: boolean_checkbox - settings: - display_label: true weight: 15 region: content + settings: + display_label: true 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: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true diff --git a/config/core.entity_form_display.node.blog.default.yml b/config/core.entity_form_display.node.blog.default.yml index 98b1b9c..1aa01f1 100644 --- a/config/core.entity_form_display.node.blog.default.yml +++ b/config/core.entity_form_display.node.blog.default.yml @@ -29,29 +29,31 @@ 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: { } - region: content field_authors: + type: entity_reference_autocomplete weight: 1 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete - region: content field_body_paragraph: + type: entity_reference_paragraphs weight: 4 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -60,46 +62,44 @@ content: form_display_mode: default default_paragraph_type: text third_party_settings: { } - type: entity_reference_paragraphs - region: content field_image: + type: image_image weight: 2 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 13 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_summary: + type: text_textarea weight: 3 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content field_tags: + type: entity_reference_autocomplete_tags weight: 6 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete_tags - region: content field_topics: + type: options_select weight: 5 + region: content settings: { } third_party_settings: { } - type: options_select - region: content langcode: type: language_select weight: 2 @@ -110,57 +110,57 @@ content: path: type: path weight: 11 + region: content settings: { } third_party_settings: { } - region: content promote: type: boolean_checkbox + weight: 9 + region: content settings: display_label: true - weight: 9 third_party_settings: { } - region: content status: type: boolean_checkbox - settings: - display_label: true weight: 14 region: content + settings: + display_label: true third_party_settings: { } sticky: type: boolean_checkbox + weight: 10 + region: content settings: display_label: true - weight: 10 third_party_settings: { } - region: content title: type: string_textfield weight: 0 + region: content settings: size: 60 placeholder: '' third_party_settings: { } - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content uid: type: entity_reference_autocomplete weight: 7 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true diff --git a/config/core.entity_form_display.node.campaign.default.yml b/config/core.entity_form_display.node.campaign.default.yml index 1237ca7..e461390 100644 --- a/config/core.entity_form_display.node.campaign.default.yml +++ b/config/core.entity_form_display.node.campaign.default.yml @@ -28,11 +28,13 @@ content: created: type: datetime_timestamp weight: 7 + region: content settings: { } third_party_settings: { } - region: content field_body_paragraph: + type: entity_reference_paragraphs weight: 3 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -41,11 +43,10 @@ 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 @@ -54,10 +55,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 @@ -66,29 +67,28 @@ content: form_display_mode: default default_paragraph_type: text third_party_settings: { } - region: content field_image: + type: image_image weight: 1 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 26 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_summary: + type: text_textarea weight: 2 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content langcode: type: language_select weight: 2 @@ -99,52 +99,52 @@ content: 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 - settings: - display_label: true weight: 120 region: content + settings: + display_label: true 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: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true diff --git a/config/core.entity_form_display.node.case_study.default.yml b/config/core.entity_form_display.node.case_study.default.yml index e57de1d..1cbabde 100644 --- a/config/core.entity_form_display.node.case_study.default.yml +++ b/config/core.entity_form_display.node.case_study.default.yml @@ -39,7 +39,9 @@ content: settings: { } third_party_settings: { } field_body_paragraph: + type: entity_reference_paragraphs weight: 4 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -48,101 +50,99 @@ content: form_display_mode: default default_paragraph_type: '' third_party_settings: { } - type: entity_reference_paragraphs - region: content field_case_study_client: + type: text_textfield weight: 5 + region: content 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 + 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: { } - type: string_textfield - region: content field_case_study_subtitle: + type: string_textfield weight: 1 + region: content settings: size: 60 placeholder: '' third_party_settings: { } - type: string_textfield - region: content field_case_study_team: + type: entity_reference_autocomplete weight: 10 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete - region: content field_case_study_year: + type: number weight: 6 + region: content settings: placeholder: '' third_party_settings: { } - type: number - region: content field_image: + type: image_image weight: 2 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_license: + type: entity_reference_autocomplete weight: 18 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete - region: content field_meta_tags: - weight: 17 - settings: { } - third_party_settings: { } type: metatag_firehose + weight: 17 region: content - field_services: - weight: 8 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: { } - type: text_textarea - region: content field_technologies: + type: options_buttons weight: 9 + region: content settings: { } third_party_settings: { } - type: options_buttons - region: content langcode: type: language_select weight: 2 @@ -158,24 +158,24 @@ content: third_party_settings: { } promote: type: boolean_checkbox - settings: - display_label: true weight: 13 region: content + settings: + display_label: true third_party_settings: { } status: type: boolean_checkbox - settings: - display_label: true weight: 16 region: content + settings: + display_label: true third_party_settings: { } sticky: type: boolean_checkbox - settings: - display_label: true weight: 14 region: content + settings: + display_label: true third_party_settings: { } title: type: string_textfield @@ -187,14 +187,14 @@ content: third_party_settings: { } translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true uid: true diff --git a/config/core.entity_form_display.node.event.default.yml b/config/core.entity_form_display.node.event.default.yml index 1e23ab5..dd66914 100644 --- a/config/core.entity_form_display.node.event.default.yml +++ b/config/core.entity_form_display.node.event.default.yml @@ -31,12 +31,13 @@ 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 @@ -45,57 +46,56 @@ content: form_display_mode: default default_paragraph_type: text third_party_settings: { } - region: content field_event_date: - weight: 1 - settings: { } - third_party_settings: { } type: daterange_default + weight: 1 region: content - field_event_type: - weight: 2 settings: { } third_party_settings: { } + field_event_type: type: options_select + weight: 2 region: content + settings: { } + third_party_settings: { } field_image: + type: image_image weight: 5 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 13 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_summary: + type: text_textarea weight: 6 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content field_tags: + type: entity_reference_autocomplete_tags weight: 4 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete_tags - region: content field_topics: + type: options_select weight: 3 + region: content settings: { } third_party_settings: { } - type: options_select - region: content langcode: type: language_select weight: 2 @@ -106,52 +106,52 @@ content: 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 - settings: - display_label: true weight: 14 region: content + settings: + display_label: true 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: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true diff --git a/config/core.entity_form_display.node.landing_page.default.yml b/config/core.entity_form_display.node.landing_page.default.yml index e375e0f..2786954 100644 --- a/config/core.entity_form_display.node.landing_page.default.yml +++ b/config/core.entity_form_display.node.landing_page.default.yml @@ -27,7 +27,9 @@ content: settings: { } third_party_settings: { } field_body_paragraph: + type: entity_reference_paragraphs weight: 1 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -36,22 +38,20 @@ content: form_display_mode: default default_paragraph_type: _none third_party_settings: { } - type: entity_reference_paragraphs - region: content field_image: + type: image_image weight: 51 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 5 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content langcode: type: language_select weight: 2 @@ -67,10 +67,10 @@ content: third_party_settings: { } status: type: boolean_checkbox - settings: - display_label: true weight: 6 region: content + settings: + display_label: true third_party_settings: { } title: type: string_textfield @@ -82,24 +82,24 @@ content: third_party_settings: { } translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content uid: type: entity_reference_autocomplete weight: 2 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 - region: content third_party_settings: { } url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: promote: true sticky: true diff --git a/config/core.entity_form_display.node.page.default.yml b/config/core.entity_form_display.node.page.default.yml index 6b4b8d7..60774a5 100644 --- a/config/core.entity_form_display.node.page.default.yml +++ b/config/core.entity_form_display.node.page.default.yml @@ -24,11 +24,13 @@ content: created: type: datetime_timestamp weight: 4 + region: content settings: { } third_party_settings: { } - region: content field_body_paragraph: + type: entity_reference_paragraphs weight: 2 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -37,17 +39,16 @@ content: form_display_mode: default default_paragraph_type: text third_party_settings: { } - type: entity_reference_paragraphs - region: content field_meta_tags: + type: metatag_firehose weight: 6 + region: content 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 @@ -56,15 +57,14 @@ content: form_display_mode: default default_paragraph_type: storyline_header third_party_settings: { } - region: content field_summary: + type: text_textarea weight: 1 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content langcode: type: language_select weight: 2 @@ -75,44 +75,44 @@ content: path: type: path weight: 5 + region: content settings: { } third_party_settings: { } - region: content status: type: boolean_checkbox - settings: - display_label: true weight: 7 region: content + settings: + display_label: true third_party_settings: { } title: type: string_textfield weight: 0 + region: content settings: size: 60 placeholder: '' third_party_settings: { } - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content uid: type: entity_reference_autocomplete weight: 3 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: true promote: true diff --git a/config/core.entity_form_display.node.people.default.yml b/config/core.entity_form_display.node.people.default.yml index 9cbcf13..3a11804 100644 --- a/config/core.entity_form_display.node.people.default.yml +++ b/config/core.entity_form_display.node.people.default.yml @@ -33,11 +33,13 @@ content: created: type: datetime_timestamp weight: 10 + region: content settings: { } third_party_settings: { } - region: content field_body_paragraph: + type: entity_reference_paragraphs weight: 5 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -46,61 +48,61 @@ 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: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 14 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_people_email: - weight: 6 - settings: - size: 60 - placeholder: '' - third_party_settings: { } 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: { } - type: string_textfield - region: content field_people_public_gpg_key: + type: file_generic weight: 8 + region: content settings: progress_indicator: throbber third_party_settings: { } - type: file_generic - region: content field_people_social_media: + type: link_default weight: 7 + region: content settings: placeholder_url: '' placeholder_title: '' third_party_settings: { } - type: link_default - region: content 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 placeholder: '' @@ -108,8 +110,6 @@ content: allowed_formats: hide_help: '1' hide_guidelines: '1' - type: text_textarea - region: content langcode: type: language_select weight: 2 @@ -120,48 +120,48 @@ content: path: type: path weight: 13 + region: content settings: { } third_party_settings: { } - region: content promote: type: boolean_checkbox + weight: 11 + region: content settings: display_label: true - weight: 11 third_party_settings: { } - region: content status: type: boolean_checkbox - settings: - display_label: true weight: 16 region: content + settings: + display_label: true third_party_settings: { } sticky: type: boolean_checkbox + weight: 12 + region: content settings: display_label: true - weight: 12 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 settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - region: content url_redirects: weight: 15 region: content diff --git a/config/core.entity_form_display.node.resource.default.yml b/config/core.entity_form_display.node.resource.default.yml index da45ac5..742bf2b 100644 --- a/config/core.entity_form_display.node.resource.default.yml +++ b/config/core.entity_form_display.node.resource.default.yml @@ -39,7 +39,9 @@ content: settings: { } third_party_settings: { } field_body_paragraph: + type: entity_reference_paragraphs weight: 4 + region: content settings: title: Paragraph title_plural: Paragraphs @@ -48,73 +50,71 @@ content: form_display_mode: default default_paragraph_type: text third_party_settings: { } - type: entity_reference_paragraphs - region: content field_image: + type: image_image weight: 2 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - type: image_image - region: content field_meta_tags: + type: metatag_firehose weight: 16 + region: content settings: { } third_party_settings: { } - type: metatag_firehose - region: content field_resource_file: + type: file_generic weight: 6 + region: content settings: progress_indicator: throbber third_party_settings: { } - type: file_generic - region: content field_resource_link: + type: link_default weight: 5 + region: content settings: placeholder_url: '' placeholder_title: '' third_party_settings: { } - type: link_default - region: content field_resource_type: - weight: 1 - settings: { } - third_party_settings: { } type: options_select + weight: 1 region: content - field_resource_video: - weight: 7 settings: { } third_party_settings: { } + field_resource_video: type: video_embed_field_textfield + weight: 7 region: content + settings: { } + third_party_settings: { } field_summary: + type: text_textarea weight: 3 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content field_tags: + type: entity_reference_autocomplete_tags weight: 9 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete_tags - region: content field_topics: + type: options_select weight: 8 + region: content settings: { } third_party_settings: { } - type: options_select - region: content langcode: type: language_select weight: 2 @@ -130,24 +130,24 @@ content: third_party_settings: { } promote: type: boolean_checkbox - settings: - display_label: true weight: 12 region: content + settings: + display_label: true third_party_settings: { } status: type: boolean_checkbox - settings: - display_label: true weight: 15 region: content + settings: + display_label: true third_party_settings: { } sticky: type: boolean_checkbox - settings: - display_label: true weight: 13 region: content + settings: + display_label: true third_party_settings: { } title: type: string_textfield @@ -160,17 +160,17 @@ content: uid: type: entity_reference_autocomplete weight: 10 + region: content settings: match_operator: CONTAINS + match_limit: 10 size: 60 placeholder: '' - match_limit: 10 - region: content third_party_settings: { } url_redirects: weight: 50 + region: content settings: { } third_party_settings: { } - region: content hidden: body: 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 index 273f6e3..32ee210 100644 --- a/config/core.entity_form_display.paragraph.content_reference.default.yml +++ b/config/core.entity_form_display.paragraph.content_reference.default.yml @@ -11,15 +11,15 @@ 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: '' - match_limit: 10 third_party_settings: { } - type: entity_reference_autocomplete - region: content 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 index 321f984..c00ff14 100644 --- a/config/core.entity_form_display.paragraph.embedded_content.default.yml +++ b/config/core.entity_form_display.paragraph.embedded_content.default.yml @@ -11,15 +11,15 @@ 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: { } - type: entity_reference_autocomplete - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.faq.default.yml b/config/core.entity_form_display.paragraph.faq.default.yml index 17bb4dd..b40b1e0 100644 --- a/config/core.entity_form_display.paragraph.faq.default.yml +++ b/config/core.entity_form_display.paragraph.faq.default.yml @@ -15,7 +15,9 @@ bundle: faq mode: default content: field_faq: + type: faqfield_default weight: 0 + region: content settings: answer_widget: text_format question_title: Question @@ -26,13 +28,11 @@ content: question_rows: 0 answer_rows: 3 third_party_settings: { } - type: faqfield_default - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.file.default.yml b/config/core.entity_form_display.paragraph.file.default.yml index 322152b..6968e33 100644 --- a/config/core.entity_form_display.paragraph.file.default.yml +++ b/config/core.entity_form_display.paragraph.file.default.yml @@ -15,17 +15,17 @@ bundle: file mode: default content: field_file: + type: file_generic weight: 0 + region: content settings: progress_indicator: throbber third_party_settings: { } - type: file_generic - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.image.default.yml b/config/core.entity_form_display.paragraph.image.default.yml index c302183..bd91989 100644 --- a/config/core.entity_form_display.paragraph.image.default.yml +++ b/config/core.entity_form_display.paragraph.image.default.yml @@ -16,18 +16,18 @@ 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: { } - type: image_image - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content 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 index a8b425e..cc83695 100644 --- a/config/core.entity_form_display.paragraph.quotation_with_image.default.yml +++ b/config/core.entity_form_display.paragraph.quotation_with_image.default.yml @@ -18,31 +18,33 @@ third_party_settings: group_style: children: - field_style_escape_flow + label: Style + region: content parent_name: '' weight: 3 format_type: details format_settings: - id: '' classes: '' + id: '' open: false required_fields: true - label: Style - region: content 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: { } - type: image_image - region: content field_quotation: + type: text_textarea weight: 0 + region: content settings: rows: 3 placeholder: '' @@ -50,20 +52,18 @@ content: allowed_formats: hide_help: '0' hide_guidelines: '0' - type: text_textarea - region: content field_style_escape_flow: + type: boolean_checkbox weight: 2 + region: content settings: display_label: false third_party_settings: { } - type: boolean_checkbox - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.slide.default.yml b/config/core.entity_form_display.paragraph.slide.default.yml index f395f9a..cd7e1b4 100644 --- a/config/core.entity_form_display.paragraph.slide.default.yml +++ b/config/core.entity_form_display.paragraph.slide.default.yml @@ -20,34 +20,34 @@ 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: { } - type: image_image - region: content field_link: + type: link_default weight: 4 + region: content settings: placeholder_url: '' placeholder_title: '' third_party_settings: { } - type: link_default - region: content field_text: + type: text_textarea weight: 6 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.storyline_header.default.yml b/config/core.entity_form_display.paragraph.storyline_header.default.yml index 32df234..7616802 100644 --- a/config/core.entity_form_display.paragraph.storyline_header.default.yml +++ b/config/core.entity_form_display.paragraph.storyline_header.default.yml @@ -13,18 +13,18 @@ bundle: storyline_header mode: default content: field_storyline_header: + type: string_textfield weight: 0 + region: content settings: size: 60 placeholder: '' third_party_settings: { } - type: string_textfield - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.storyline_item.default.yml b/config/core.entity_form_display.paragraph.storyline_item.default.yml index 3118e1e..6829981 100644 --- a/config/core.entity_form_display.paragraph.storyline_item.default.yml +++ b/config/core.entity_form_display.paragraph.storyline_item.default.yml @@ -16,26 +16,26 @@ bundle: storyline_item mode: default content: field_storyline_heading: + type: string_textfield weight: 0 + region: content settings: size: 60 placeholder: '' third_party_settings: { } - type: string_textfield - region: content field_text: + type: text_textarea weight: 1 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.text.default.yml b/config/core.entity_form_display.paragraph.text.default.yml index 6b8c4b2..37bf562 100644 --- a/config/core.entity_form_display.paragraph.text.default.yml +++ b/config/core.entity_form_display.paragraph.text.default.yml @@ -16,17 +16,17 @@ third_party_settings: children: - field_style_classes - field_style_escape_flow + label: Style + region: content parent_name: '' weight: 1 format_type: tab format_settings: - id: '' classes: '' + id: '' formatter: closed description: '' required_fields: true - label: Style - region: content _core: default_config_hash: HcHUk34p8VqAF8IVnIOT1SpvhP1C7UmNlFz8jHIDwE0 id: paragraph.text.default @@ -35,31 +35,31 @@ bundle: text mode: default content: field_style_classes: + type: options_select weight: 2 + region: content settings: { } third_party_settings: { } - type: options_select - region: content field_style_escape_flow: + type: boolean_checkbox weight: 3 + region: content settings: display_label: false third_party_settings: { } - type: boolean_checkbox - region: content field_text: + type: text_textarea weight: 0 + region: content settings: rows: 5 placeholder: '' third_party_settings: { } - type: text_textarea - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.title.default.yml b/config/core.entity_form_display.paragraph.title.default.yml index fac49c7..040f593 100644 --- a/config/core.entity_form_display.paragraph.title.default.yml +++ b/config/core.entity_form_display.paragraph.title.default.yml @@ -21,34 +21,36 @@ 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: { } - type: image_image - region: content field_style_classes: - weight: 5 - settings: { } - third_party_settings: { } type: options_buttons + weight: 5 region: content - field_style_color: - weight: 3 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: { } - type: boolean_checkbox - region: content field_subtitle: + type: text_textfield weight: 1 + region: content settings: size: 60 placeholder: '' @@ -56,10 +58,10 @@ content: allowed_formats: hide_help: '1' hide_guidelines: '1' - type: text_textfield - region: content field_title: + type: text_textfield weight: 0 + region: content settings: size: 60 placeholder: '' @@ -67,13 +69,11 @@ content: allowed_formats: hide_help: '1' hide_guidelines: '1' - type: text_textfield - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.update.default.yml b/config/core.entity_form_display.paragraph.update.default.yml index beef189..f9769fb 100644 --- a/config/core.entity_form_display.paragraph.update.default.yml +++ b/config/core.entity_form_display.paragraph.update.default.yml @@ -17,24 +17,24 @@ 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: { } - type: datetime_default - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.video.default.yml b/config/core.entity_form_display.paragraph.video.default.yml index d0202f9..7102c84 100644 --- a/config/core.entity_form_display.paragraph.video.default.yml +++ b/config/core.entity_form_display.paragraph.video.default.yml @@ -15,16 +15,16 @@ bundle: video mode: default content: field_video_embed: + type: video_embed_field_textfield weight: 0 + region: content settings: { } third_party_settings: { } - type: video_embed_field_textfield - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.view.default.yml b/config/core.entity_form_display.paragraph.view.default.yml index 4d4ae35..d7bd052 100644 --- a/config/core.entity_form_display.paragraph.view.default.yml +++ b/config/core.entity_form_display.paragraph.view.default.yml @@ -14,43 +14,43 @@ third_party_settings: group_style: children: - field_style_escape_flow + label: Style + region: content parent_name: '' weight: 1 format_type: details format_settings: - id: '' classes: '' + id: '' open: true required_fields: true - label: Style - region: content 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: { } - type: boolean_checkbox - region: content field_view_reference: + type: viewsreference_autocomplete weight: 0 + region: content settings: match_operator: CONTAINS size: '60' placeholder: '' match_limit: 10 third_party_settings: { } - type: viewsreference_autocomplete - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.paragraph.webform.default.yml b/config/core.entity_form_display.paragraph.webform.default.yml index 5d9ccb8..d65c8b1 100644 --- a/config/core.entity_form_display.paragraph.webform.default.yml +++ b/config/core.entity_form_display.paragraph.webform.default.yml @@ -13,17 +13,17 @@ bundle: webform mode: default content: field_webform: + type: webform_entity_reference_select weight: 0 + region: content settings: default_data: true third_party_settings: { } - type: webform_entity_reference_select - region: content translation: weight: 10 + region: content settings: { } third_party_settings: { } - region: content hidden: created: true status: true diff --git a/config/core.entity_form_display.user.user.default.yml b/config/core.entity_form_display.user.user.default.yml index c58f832..a43ce52 100644 --- a/config/core.entity_form_display.user.user.default.yml +++ b/config/core.entity_form_display.user.user.default.yml @@ -23,9 +23,9 @@ content: third_party_settings: { } comment_notify_settings: weight: 4 + region: content settings: { } third_party_settings: { } - region: content contact: weight: 5 region: content @@ -33,9 +33,9 @@ content: third_party_settings: { } google_analytics: weight: 3 + region: content settings: { } third_party_settings: { } - region: content language: weight: 0 region: content @@ -54,11 +54,11 @@ content: third_party_settings: { } user_picture: type: image_image + weight: -1 + region: content settings: progress_indicator: throbber preview_image_style: thumbnail third_party_settings: { } - weight: -1 - region: content hidden: langcode: true diff --git a/config/core.entity_form_mode.media.media_library.yml b/config/core.entity_form_mode.media.media_library.yml index dc499b1..996f5fc 100644 --- a/config/core.entity_form_mode.media.media_library.yml +++ b/config/core.entity_form_mode.media.media_library.yml @@ -2,11 +2,11 @@ uuid: ce58b4ab-1355-4710-bbc4-88f51fa2386b langcode: en status: true dependencies: + module: + - media enforced: module: - media_library - module: - - media _core: default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 id: media.media_library diff --git a/config/core.entity_view_display.block_content.basic.default.yml b/config/core.entity_view_display.block_content.basic.default.yml index 69a9120..ed66669 100644 --- a/config/core.entity_view_display.block_content.basic.default.yml +++ b/config/core.entity_view_display.block_content.basic.default.yml @@ -15,11 +15,11 @@ bundle: basic mode: default content: body: - label: hidden type: text_default - weight: 0 + label: hidden settings: { } third_party_settings: { } + weight: 0 region: content hidden: langcode: 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 index 7cb7849..5a0345f 100644 --- a/config/core.entity_view_display.block_content.content_reference.default.yml +++ b/config/core.entity_view_display.block_content.content_reference.default.yml @@ -13,7 +13,7 @@ bundle: content_reference mode: default content: field_content_reference: - weight: 0 + type: entity_reference_entity_view label: hidden settings: view_mode: simple_card @@ -21,7 +21,7 @@ content: third_party_settings: ds: ds_limit: '' - type: entity_reference_entity_view + weight: 0 region: content hidden: langcode: true diff --git a/config/core.entity_view_display.block_content.slide.columnar.yml b/config/core.entity_view_display.block_content.slide.columnar.yml index 3d796f6..fc41a21 100644 --- a/config/core.entity_view_display.block_content.slide.columnar.yml +++ b/config/core.entity_view_display.block_content.slide.columnar.yml @@ -18,7 +18,6 @@ mode: columnar content: field_slide: type: entity_reference_revisions_entity_view - weight: 0 label: visually_hidden settings: view_mode: columnar @@ -26,6 +25,7 @@ content: third_party_settings: ds: ds_limit: '' + weight: 0 region: content hidden: langcode: true diff --git a/config/core.entity_view_display.block_content.slide.default.yml b/config/core.entity_view_display.block_content.slide.default.yml index 81fce1f..907fd43 100644 --- a/config/core.entity_view_display.block_content.slide.default.yml +++ b/config/core.entity_view_display.block_content.slide.default.yml @@ -16,12 +16,12 @@ 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 diff --git a/config/core.entity_view_display.comment.comment.default.yml b/config/core.entity_view_display.comment.comment.default.yml index c713c83..8595199 100644 --- a/config/core.entity_view_display.comment.comment.default.yml +++ b/config/core.entity_view_display.comment.comment.default.yml @@ -15,11 +15,11 @@ bundle: comment mode: default content: comment_body: - label: hidden type: text_default - weight: 0 + label: hidden settings: { } third_party_settings: { } + weight: 0 region: content links: weight: 100 diff --git a/config/core.entity_view_display.group.group.default.yml b/config/core.entity_view_display.group.group.default.yml index d7869c7..fb124d6 100644 --- a/config/core.entity_view_display.group.group.default.yml +++ b/config/core.entity_view_display.group.group.default.yml @@ -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_group_image @@ -53,55 +53,55 @@ bundle: group mode: default content: field_group_address: - weight: 6 + type: address_default label: above settings: { } third_party_settings: { } - type: address_default + weight: 6 region: ds_content field_group_description: type: entity_reference_revisions_entity_view - weight: 2 label: hidden settings: view_mode: default link: '' third_party_settings: { } + weight: 2 region: ds_content field_group_email: - weight: 3 + type: email_mailto label: inline settings: { } third_party_settings: { } - type: email_mailto + weight: 3 region: ds_content field_group_image: - weight: 0 + type: image label: visually_hidden settings: - image_style: large image_link: '' + image_style: large third_party_settings: { } - type: image + weight: 0 region: ds_content field_group_phone: - weight: 4 + type: string label: inline settings: link_to_entity: false third_party_settings: { } - type: string + weight: 4 region: ds_content field_group_type: - weight: 7 + type: entity_reference_label label: inline settings: link: true third_party_settings: { } - type: entity_reference_label + weight: 7 region: ds_content field_group_website: - weight: 5 + type: link label: inline settings: trim_length: 80 @@ -110,15 +110,15 @@ content: rel: '' target: '' third_party_settings: { } - type: link + weight: 5 region: ds_content label: - label: hidden type: string - weight: 1 + label: hidden settings: link_to_entity: true third_party_settings: { } + weight: 1 region: ds_content hidden: changed: true diff --git a/config/core.entity_view_display.group.group.full.yml b/config/core.entity_view_display.group.group.full.yml index cfc8f87..f13f6d9 100644 --- a/config/core.entity_view_display.group.group.full.yml +++ b/config/core.entity_view_display.group.group.full.yml @@ -29,6 +29,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: header: div left: div @@ -39,8 +41,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: header: - field_group_image @@ -61,55 +61,55 @@ bundle: group mode: full content: field_group_address: - weight: 4 + type: address_default label: above settings: { } third_party_settings: { } - type: address_default + weight: 4 region: left field_group_description: type: entity_reference_revisions_entity_view - weight: 6 label: visually_hidden settings: view_mode: default link: '' third_party_settings: { } + weight: 6 region: middle field_group_email: - weight: 1 + type: email_mailto label: inline settings: { } third_party_settings: { } - type: email_mailto + weight: 1 region: left field_group_image: - weight: 0 + type: responsive_image label: visually_hidden settings: responsive_image_style: wide image_link: '' third_party_settings: { } - type: responsive_image + weight: 0 region: header field_group_phone: - weight: 2 + type: telephone_link label: inline settings: title: '' third_party_settings: { } - type: telephone_link + weight: 2 region: left field_group_type: type: entity_reference_label - weight: 7 - region: middle label: visually_hidden settings: link: true third_party_settings: { } + weight: 7 + region: middle field_group_website: - weight: 3 + type: link_separate label: inline settings: trim_length: 80 @@ -118,15 +118,15 @@ content: rel: '' target: '' third_party_settings: { } - type: link_separate + weight: 3 region: left label: - label: visually_hidden type: string - weight: 5 + label: visually_hidden settings: link_to_entity: true third_party_settings: { } + weight: 5 region: middle hidden: changed: true diff --git a/config/core.entity_view_display.group.group.teaser.yml b/config/core.entity_view_display.group.group.teaser.yml index cf7cd93..9fec6a5 100644 --- a/config/core.entity_view_display.group.group.teaser.yml +++ b/config/core.entity_view_display.group.group.teaser.yml @@ -26,6 +26,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -33,8 +35,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - field_group_image @@ -50,27 +50,27 @@ 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: { } + weight: 0 region: left field_group_summary: type: text_default - weight: 2 label: visually_hidden settings: { } third_party_settings: { } + weight: 2 region: right label: - label: visually_hidden type: string - weight: 1 + label: visually_hidden settings: link_to_entity: true third_party_settings: { } + weight: 1 region: right hidden: changed: true diff --git a/config/core.entity_view_display.group_content.group-group_membership.default.yml b/config/core.entity_view_display.group_content.group-group_membership.default.yml index e3f5978..19e4ec9 100644 --- a/config/core.entity_view_display.group_content.group-group_membership.default.yml +++ b/config/core.entity_view_display.group_content.group-group_membership.default.yml @@ -13,12 +13,12 @@ bundle: group-group_membership mode: default content: group_roles: - label: above type: entity_reference_label + label: above settings: link: false - weight: -4 third_party_settings: { } + weight: -4 region: content hidden: entity_id: true diff --git a/config/core.entity_view_display.node.action.box.yml b/config/core.entity_view_display.node.action.box.yml index c263f98..716c480 100644 --- a/config/core.entity_view_display.node.action.box.yml +++ b/config/core.entity_view_display.node.action.box.yml @@ -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 @@ -58,8 +58,6 @@ mode: box content: field_action_link: type: link - weight: 1 - region: ds_content label: visually_hidden settings: trim_length: 18 @@ -68,6 +66,8 @@ content: rel: '0' target: '0' third_party_settings: { } + weight: 1 + region: ds_content hidden: body: true field_action_end_date: true diff --git a/config/core.entity_view_display.node.action.card.yml b/config/core.entity_view_display.node.action.card.yml index 1422323..f33c3ba 100644 --- a/config/core.entity_view_display.node.action.card.yml +++ b/config/core.entity_view_display.node.action.card.yml @@ -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: - id: '' classes: '' + id: '' 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,8 +84,6 @@ mode: card content: field_action_link: type: link - weight: 11 - region: ds_content label: visually_hidden settings: trim_length: 18 @@ -94,23 +92,25 @@ 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 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 diff --git a/config/core.entity_view_display.node.action.full.yml b/config/core.entity_view_display.node.action.full.yml index 811b3fa..fe5670f 100644 --- a/config/core.entity_view_display.node.action.full.yml +++ b/config/core.entity_view_display.node.action.full.yml @@ -31,6 +31,8 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: header: div left: div @@ -41,8 +43,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: header: - field_image @@ -64,16 +64,15 @@ 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 @@ -82,49 +81,50 @@ 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: '' 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 diff --git a/config/core.entity_view_display.node.action.search_index.yml b/config/core.entity_view_display.node.action.search_index.yml index 2e4dca6..fce3e0e 100644 --- a/config/core.entity_view_display.node.action.search_index.yml +++ b/config/core.entity_view_display.node.action.search_index.yml @@ -30,17 +30,15 @@ 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 @@ -49,48 +47,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: '' + 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 - 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: { } + weight: 5 + region: content hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.action.simple_card.yml b/config/core.entity_view_display.node.action.simple_card.yml index f551dcd..67f2783 100644 --- a/config/core.entity_view_display.node.action.simple_card.yml +++ b/config/core.entity_view_display.node.action.simple_card.yml @@ -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: - id: '' classes: '' + id: '' 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 @@ -87,13 +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 third_party_settings: { } + weight: 0 + region: ds_content hidden: body: true field_action_end_date: true diff --git a/config/core.entity_view_display.node.action.teaser.yml b/config/core.entity_view_display.node.action.teaser.yml index e33ae4f..24dd5cb 100644 --- a/config/core.entity_view_display.node.action.teaser.yml +++ b/config/core.entity_view_display.node.action.teaser.yml @@ -29,6 +29,8 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -36,8 +38,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - field_image @@ -64,28 +64,28 @@ mode: teaser content: field_image: type: responsive_image - weight: 0 label: visually_hidden settings: responsive_image_style: narrow image_link: content 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 diff --git a/config/core.entity_view_display.node.action.tile.yml b/config/core.entity_view_display.node.action.tile.yml index 7cac9e5..315029e 100644 --- a/config/core.entity_view_display.node.action.tile.yml +++ b/config/core.entity_view_display.node.action.tile.yml @@ -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: { } _core: default_config_hash: 80HOEYSKl4yWYmtQgvRUFrgW7IbLp_WhY700sqiVA7A diff --git a/config/core.entity_view_display.node.article.box.yml b/config/core.entity_view_display.node.article.box.yml index 8ccb626..a2a4179 100644 --- a/config/core.entity_view_display.node.article.box.yml +++ b/config/core.entity_view_display.node.article.box.yml @@ -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 diff --git a/config/core.entity_view_display.node.article.card.yml b/config/core.entity_view_display.node.article.card.yml index 63f867c..a63ff78 100644 --- a/config/core.entity_view_display.node.article.card.yml +++ b/config/core.entity_view_display.node.article.card.yml @@ -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: - id: '' classes: '' + id: '' 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,31 +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 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 diff --git a/config/core.entity_view_display.node.article.full.yml b/config/core.entity_view_display.node.article.full.yml index fe594bc..3429d8d 100644 --- a/config/core.entity_view_display.node.article.full.yml +++ b/config/core.entity_view_display.node.article.full.yml @@ -31,7 +31,8 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' + classes: + layout_class: { } wrappers: header: div left: div @@ -42,8 +43,7 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } + label: '' regions: header: - field_image @@ -75,86 +75,86 @@ bundle: article mode: full content: comment: - label: above type: comment_default - weight: 7 + label: above settings: - pager_id: 0 view_mode: default + pager_id: 0 third_party_settings: { } + weight: 7 region: middle field_article_type: - weight: 4 + type: entity_reference_label label: visually_hidden settings: link: true third_party_settings: { } - type: entity_reference_label + weight: 4 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: - weight: 3 + type: entity_reference_revisions_entity_view label: visually_hidden settings: view_mode: default link: '' third_party_settings: { } - type: entity_reference_revisions_entity_view + weight: 3 region: middle field_image: type: responsive_image - weight: 0 + label: visually_hidden settings: responsive_image_style: wide image_link: '' third_party_settings: { } - label: visually_hidden + weight: 0 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: { } - indieweb_bridgypublishtwitter: weight: 10 region: footer + indieweb_syndication: settings: { } third_party_settings: { } - indieweb_syndication: weight: 9 region: footer + links: settings: { } third_party_settings: { } - links: weight: 8 region: middle - settings: { } - third_party_settings: { } hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.article.media.yml b/config/core.entity_view_display.node.article.media.yml index 64af43a..61ba7ee 100644 --- a/config/core.entity_view_display.node.article.media.yml +++ b/config/core.entity_view_display.node.article.media.yml @@ -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: - id: '' classes: '' + id: '' 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: - id: '' classes: '' + id: '' 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,21 +99,21 @@ mode: media content: field_image: type: image - weight: 0 - region: ds_content label: visually_hidden settings: - image_style: square_thumbnail image_link: content + image_style: square_thumbnail third_party_settings: { } + weight: 0 + region: ds_content 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 diff --git a/config/core.entity_view_display.node.article.rss.yml b/config/core.entity_view_display.node.article.rss.yml index 468cfc4..e32e0ed 100644 --- a/config/core.entity_view_display.node.article.rss.yml +++ b/config/core.entity_view_display.node.article.rss.yml @@ -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,32 +64,32 @@ mode: rss content: field_image: type: image - weight: 0 label: hidden settings: - image_style: small_square image_link: '' + image_style: small_square 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: { } - links: - weight: 4 + weight: 3 region: ds_content + links: settings: { } third_party_settings: { } + weight: 4 + region: ds_content hidden: body: true comment: true diff --git a/config/core.entity_view_display.node.article.search_index.yml b/config/core.entity_view_display.node.article.search_index.yml index 8ae902f..aa2e9fe 100644 --- a/config/core.entity_view_display.node.article.search_index.yml +++ b/config/core.entity_view_display.node.article.search_index.yml @@ -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: { } _core: default_config_hash: 8-HxvvBWiVYkvNtPMVDWOwjON2LI08t4U-Gouf6MOA4 diff --git a/config/core.entity_view_display.node.article.simple_card.yml b/config/core.entity_view_display.node.article.simple_card.yml index 28e8969..9592003 100644 --- a/config/core.entity_view_display.node.article.simple_card.yml +++ b/config/core.entity_view_display.node.article.simple_card.yml @@ -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,20 +64,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: - id: '' classes: '' + id: '' 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 id: node.article.simple_card @@ -87,13 +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 third_party_settings: { } + weight: 0 + region: ds_content hidden: body: true comment: true diff --git a/config/core.entity_view_display.node.article.teaser.yml b/config/core.entity_view_display.node.article.teaser.yml index 4db69b9..9df5dfb 100644 --- a/config/core.entity_view_display.node.article.teaser.yml +++ b/config/core.entity_view_display.node.article.teaser.yml @@ -28,6 +28,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -35,8 +37,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - field_image @@ -70,36 +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 - weight: 0 - settings: - image_link: content - responsive_image_style: '' - third_party_settings: { } label: visually_hidden + settings: + responsive_image_style: '' + image_link: content + third_party_settings: { } + weight: 0 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 diff --git a/config/core.entity_view_display.node.blog.card.yml b/config/core.entity_view_display.node.blog.card.yml index a0c1a77..0279154 100644 --- a/config/core.entity_view_display.node.blog.card.yml +++ b/config/core.entity_view_display.node.blog.card.yml @@ -25,20 +25,20 @@ third_party_settings: field_group: group_card_content: children: { } + label: 'Card content' parent_name: '' + region: hidden weight: 10 format_type: html_element format_settings: - id: '' classes: '' + id: '' 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,31 +48,31 @@ mode: card content: field_authors: type: entity_reference_label - weight: 0 - region: content label: hidden settings: link: false third_party_settings: ds: ds_limit: '' + weight: 0 + region: content field_image: type: responsive_image - weight: 1 - region: content label: hidden settings: responsive_image_style: wide image_link: '' third_party_settings: { } + weight: 1 + region: content field_summary: type: text_trimmed - weight: 2 - region: content label: hidden settings: trim_length: 600 third_party_settings: { } + weight: 2 + region: content hidden: body: true comment: true diff --git a/config/core.entity_view_display.node.blog.default.yml b/config/core.entity_view_display.node.blog.default.yml index 5053bd5..85dae85 100644 --- a/config/core.entity_view_display.node.blog.default.yml +++ b/config/core.entity_view_display.node.blog.default.yml @@ -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: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM diff --git a/config/core.entity_view_display.node.blog.full.yml b/config/core.entity_view_display.node.blog.full.yml index 3fe01d6..930dcec 100644 --- a/config/core.entity_view_display.node.blog.full.yml +++ b/config/core.entity_view_display.node.blog.full.yml @@ -29,61 +29,61 @@ bundle: blog mode: full content: comment: - weight: 4 + type: comment_default label: above settings: - pager_id: 0 view_mode: default + pager_id: 0 third_party_settings: { } - type: comment_default + weight: 4 region: content field_authors: type: entity_reference_label_microformat - weight: 0 - region: content label: hidden settings: microformat_class: 'p-author h-card' third_party_settings: ds: ds_limit: '' + weight: 0 + region: content field_body_paragraph: - weight: 1 + type: entity_reference_revisions_entity_view label: hidden settings: view_mode: default link: '' third_party_settings: { } - type: entity_reference_revisions_entity_view + weight: 1 region: content field_tags: - weight: 3 + type: entity_reference_label_microformat label: hidden settings: microformat_class: p-category third_party_settings: { } - type: entity_reference_label_microformat + weight: 3 region: content field_topics: type: entity_reference_label_microformat - weight: 2 - region: content label: visually_hidden settings: microformat_class: p-category third_party_settings: ds: ds_limit: '' + weight: 2 + region: content indieweb_bridgypublishtwitter: + settings: { } + third_party_settings: { } weight: 5 region: content + indieweb_syndication: settings: { } third_party_settings: { } - indieweb_syndication: weight: 6 region: content - settings: { } - third_party_settings: { } hidden: body: true field_image: true diff --git a/config/core.entity_view_display.node.blog.media.yml b/config/core.entity_view_display.node.blog.media.yml index 2e17aa8..001f430 100644 --- a/config/core.entity_view_display.node.blog.media.yml +++ b/config/core.entity_view_display.node.blog.media.yml @@ -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: - id: '' classes: '' + id: '' 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,21 +99,21 @@ mode: media content: field_image: type: image - weight: 2 - region: ds_content label: visually_hidden settings: - image_style: square_thumbnail image_link: content + image_style: square_thumbnail third_party_settings: { } + weight: 2 + region: ds_content 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 diff --git a/config/core.entity_view_display.node.blog.rss.yml b/config/core.entity_view_display.node.blog.rss.yml index d7189fa..c833055 100644 --- a/config/core.entity_view_display.node.blog.rss.yml +++ b/config/core.entity_view_display.node.blog.rss.yml @@ -58,21 +58,21 @@ mode: rss content: field_authors: type: entity_reference_label - weight: 2 - region: content label: hidden settings: link: false third_party_settings: ds: ds_limit: '' + weight: 2 + region: content field_body_paragraph: type: paragraph_summary - weight: 3 - region: content label: hidden settings: { } third_party_settings: { } + weight: 3 + region: content hidden: body: true comment: 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 index be22897..f11f130 100644 --- a/config/core.entity_view_display.node.blog.rss_teaser.yml +++ b/config/core.entity_view_display.node.blog.rss_teaser.yml @@ -27,18 +27,16 @@ mode: rss_teaser content: field_authors: type: entity_reference_label - weight: 0 - region: content label: hidden settings: link: false third_party_settings: ds: ds_limit: '' + weight: 0 + region: content field_body_paragraph: type: entity_reference_revisions_entity_view - weight: 1 - region: content label: hidden settings: view_mode: preview @@ -46,6 +44,8 @@ content: third_party_settings: ds: ds_limit: '' + weight: 1 + region: content hidden: body: true comment: true diff --git a/config/core.entity_view_display.node.blog.search_index.yml b/config/core.entity_view_display.node.blog.search_index.yml index 915457a..f7589a2 100644 --- a/config/core.entity_view_display.node.blog.search_index.yml +++ b/config/core.entity_view_display.node.blog.search_index.yml @@ -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,50 +58,50 @@ 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: '' 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 diff --git a/config/core.entity_view_display.node.blog.simple_card.yml b/config/core.entity_view_display.node.blog.simple_card.yml index ed1e0dc..12387a4 100644 --- a/config/core.entity_view_display.node.blog.simple_card.yml +++ b/config/core.entity_view_display.node.blog.simple_card.yml @@ -28,6 +28,8 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -35,8 +37,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - node_post_date @@ -64,12 +64,14 @@ third_party_settings: group_date: children: - node_post_date + label: Date parent_name: '' + region: hidden weight: 1 format_type: html_element format_settings: - id: '' classes: subtitle + id: '' element: p show_label: false label_element: h3 @@ -77,8 +79,6 @@ third_party_settings: attributes: '' effect: none speed: fast - label: Date - region: hidden _core: default_config_hash: wUTdzmd_uDUyf43YNRpJ7ic0Yg9me0T6jp-MTE2t874 id: node.blog.simple_card @@ -88,13 +88,13 @@ mode: simple_card content: field_image: type: responsive_image - weight: 3 - region: right label: visually_hidden settings: responsive_image_style: narrow image_link: content third_party_settings: { } + weight: 3 + region: right hidden: body: true comment: true diff --git a/config/core.entity_view_display.node.blog.teaser.yml b/config/core.entity_view_display.node.blog.teaser.yml index f1814c8..fc89f9b 100644 --- a/config/core.entity_view_display.node.blog.teaser.yml +++ b/config/core.entity_view_display.node.blog.teaser.yml @@ -25,20 +25,20 @@ third_party_settings: field_group: group_card_content: children: { } + label: 'Card content' parent_name: '' + region: hidden weight: 10 format_type: html_element format_settings: - id: '' classes: '' + id: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast - label: 'Card content' - region: hidden _core: default_config_hash: bIW-s9Bo_W7omXxAG4XHIq96IyNJEbhcATZv9TBQqNU id: node.blog.teaser @@ -48,31 +48,31 @@ mode: teaser content: field_authors: type: entity_reference_label - weight: 0 - region: content label: hidden settings: link: false third_party_settings: ds: ds_limit: '' + weight: 0 + region: content field_image: type: responsive_image - weight: 1 - region: content label: hidden settings: responsive_image_style: wide image_link: '' third_party_settings: { } + weight: 1 + region: content field_summary: type: text_trimmed - weight: 2 - region: content label: hidden settings: trim_length: 600 third_party_settings: { } + weight: 2 + region: content hidden: body: true comment: true diff --git a/config/core.entity_view_display.node.campaign.card.yml b/config/core.entity_view_display.node.campaign.card.yml index 0568f71..087b2c3 100644 --- a/config/core.entity_view_display.node.campaign.card.yml +++ b/config/core.entity_view_display.node.campaign.card.yml @@ -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,20 @@ third_party_settings: children: - node_title - field_summary + label: 'Card content' parent_name: '' + region: content weight: 1 format_type: html_element format_settings: - id: '' classes: '' + id: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast - label: 'Card content' - region: content _core: default_config_hash: 2zR5T3bcB1XVeDU_TuI9dS8JpOHxzQcYcF-IxQXcOcM id: node.campaign.card @@ -79,21 +79,21 @@ mode: 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: { } + 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 diff --git a/config/core.entity_view_display.node.campaign.full.yml b/config/core.entity_view_display.node.campaign.full.yml index 182c892..1c04644 100644 --- a/config/core.entity_view_display.node.campaign.full.yml +++ b/config/core.entity_view_display.node.campaign.full.yml @@ -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,26 +49,25 @@ bundle: campaign mode: full content: field_body_paragraph: - weight: 1 + type: entity_reference_revisions_entity_view label: visually_hidden settings: view_mode: default link: '' third_party_settings: { } - type: entity_reference_revisions_entity_view + weight: 1 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 @@ -76,21 +75,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: '' third_party_settings: { } - links: - weight: 4 + weight: 0 region: ds_content + links: settings: { } third_party_settings: { } + weight: 4 + region: ds_content hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.campaign.search_index.yml b/config/core.entity_view_display.node.campaign.search_index.yml index a1e6981..d48b643 100644 --- a/config/core.entity_view_display.node.campaign.search_index.yml +++ b/config/core.entity_view_display.node.campaign.search_index.yml @@ -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,34 +48,34 @@ 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 - label: hidden - settings: { } - third_party_settings: { } field_campaign_updates: type: paragraph_summary - weight: 3 - region: ds_content label: hidden settings: { } 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: '' third_party_settings: { } + weight: 0 + region: ds_content hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.campaign.simple_card.yml b/config/core.entity_view_display.node.campaign.simple_card.yml index 86361c7..ba18f0e 100644 --- a/config/core.entity_view_display.node.campaign.simple_card.yml +++ b/config/core.entity_view_display.node.campaign.simple_card.yml @@ -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: - id: '' classes: '' + id: '' 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,13 +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 third_party_settings: { } + weight: 0 + region: ds_content hidden: body: true field_body_paragraph: true diff --git a/config/core.entity_view_display.node.campaign.teaser.yml b/config/core.entity_view_display.node.campaign.teaser.yml index aae2bf5..526c1b1 100644 --- a/config/core.entity_view_display.node.campaign.teaser.yml +++ b/config/core.entity_view_display.node.campaign.teaser.yml @@ -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 diff --git a/config/core.entity_view_display.node.case_study.card.yml b/config/core.entity_view_display.node.case_study.card.yml index cd9bbc6..148f160 100644 --- a/config/core.entity_view_display.node.case_study.card.yml +++ b/config/core.entity_view_display.node.case_study.card.yml @@ -55,20 +55,20 @@ third_party_settings: children: - node_title - field_case_study_subtitle + label: 'Card Content' parent_name: '' + region: content weight: 1 format_type: html_element format_settings: - id: '' classes: '' + id: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast - label: 'Card Content' - region: content _core: default_config_hash: ajlgTMuDr6Ca9wpU9W7h0XFSEQlzgaCVveEKB-FY60o id: node.case_study.card @@ -78,21 +78,21 @@ mode: card content: field_case_study_subtitle: type: string - weight: 3 - region: content label: hidden settings: link_to_entity: false third_party_settings: { } + weight: 3 + region: content field_image: type: responsive_image - weight: 0 - region: content label: hidden settings: responsive_image_style: wide image_link: content third_party_settings: { } + weight: 0 + region: content hidden: body: true field_body_paragraph: 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 index ccf23a1..14fb95b 100644 --- a/config/core.entity_view_display.node.case_study.default.yml +++ b/config/core.entity_view_display.node.case_study.default.yml @@ -42,13 +42,13 @@ mode: default content: field_body_paragraph: type: paragraph_summary - weight: 0 - region: paragraphs label: hidden settings: { } third_party_settings: ds: ds_limit: '1' + weight: 0 + region: paragraphs hidden: body: true field_case_study_client: 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 index 7a9c2d4..8cc787f 100644 --- a/config/core.entity_view_display.node.case_study.full.yml +++ b/config/core.entity_view_display.node.case_study.full.yml @@ -33,8 +33,6 @@ mode: full content: field_body_paragraph: type: entity_reference_revisions_entity_view - weight: 0 - region: content label: visually_hidden settings: view_mode: default @@ -42,24 +40,24 @@ content: 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 - label: inline - settings: { } - third_party_settings: { } field_case_study_partners: type: text_default - weight: 7 - region: content label: inline settings: { } third_party_settings: { } + weight: 7 + region: content field_case_study_status: type: string - weight: 3 - region: content label: inline settings: link_to_entity: false @@ -71,43 +69,45 @@ content: lb: '' lb-col: false classes: { } + weight: 3 + region: content field_case_study_team: type: entity_reference_label - weight: 6 - region: content label: inline settings: link: true third_party_settings: ds: ds_limit: '' + weight: 6 + region: content field_case_study_year: type: number_integer - weight: 2 - region: content label: inline settings: thousand_separator: '' prefix_suffix: true third_party_settings: { } + weight: 2 + region: content field_services: type: entity_reference_label - weight: 4 - region: content label: inline settings: link: true third_party_settings: ds: ds_limit: '' + weight: 4 + region: content field_technologies: type: entity_reference_label - weight: 5 - region: content label: inline settings: link: true third_party_settings: { } + weight: 5 + region: content hidden: body: true field_case_study_subtitle: 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 index 503ecd7..5f1c813 100644 --- a/config/core.entity_view_display.node.case_study.small_card.yml +++ b/config/core.entity_view_display.node.case_study.small_card.yml @@ -57,91 +57,91 @@ mode: small_card content: body: type: text_default - weight: 0 - region: content label: above settings: { } third_party_settings: { } + weight: 0 + region: content field_body_paragraph: type: paragraph_summary - weight: 0 - region: content label: above settings: { } third_party_settings: { } + weight: 0 + region: content field_case_study_client: type: text_default - weight: 0 - region: content label: above settings: { } third_party_settings: { } + weight: 0 + region: content field_case_study_partners: type: text_default - weight: 0 - region: content label: above settings: { } third_party_settings: { } + weight: 0 + region: content field_case_study_status: type: string - weight: 0 - region: content label: above settings: link_to_entity: false third_party_settings: { } + weight: 0 + region: content 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 + field_case_study_team: + type: entity_reference_entity_view label: above settings: view_mode: default link: false third_party_settings: { } - field_case_study_year: - type: number_integer weight: 0 region: content + field_case_study_year: + type: number_integer label: above settings: thousand_separator: '' prefix_suffix: true third_party_settings: { } - field_image: - type: responsive_image weight: 0 region: content + field_image: + type: responsive_image label: above settings: responsive_image_style: '' image_link: '' third_party_settings: { } - field_meta_tags: - type: metatag_empty_formatter weight: 0 region: content + field_meta_tags: + type: metatag_empty_formatter label: above settings: { } third_party_settings: { } - field_services: - type: entity_reference_entity_view 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 diff --git a/config/core.entity_view_display.node.case_study.teaser.yml b/config/core.entity_view_display.node.case_study.teaser.yml index a1947fe..5397a69 100644 --- a/config/core.entity_view_display.node.case_study.teaser.yml +++ b/config/core.entity_view_display.node.case_study.teaser.yml @@ -35,8 +35,6 @@ mode: teaser content: field_body_paragraph: type: entity_reference_revisions_entity_view - weight: 0 - region: content label: hidden settings: view_mode: preview @@ -44,30 +42,32 @@ content: third_party_settings: ds: ds_limit: '' + weight: 0 + region: content field_case_study_subtitle: type: string - weight: 2 - region: content label: hidden settings: link_to_entity: false third_party_settings: { } + weight: 2 + region: content field_image: type: image - weight: 1 - region: content label: hidden settings: - image_style: landscape image_link: '' + image_style: landscape third_party_settings: { } + weight: 1 + region: content field_summary: type: text_default - weight: 3 - region: content label: hidden settings: { } third_party_settings: { } + weight: 3 + region: content hidden: body: true field_case_study_client: 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 index 9bc9156..92888c0 100644 --- a/config/core.entity_view_display.node.case_study.tile.yml +++ b/config/core.entity_view_display.node.case_study.tile.yml @@ -45,8 +45,6 @@ mode: tile content: field_body_paragraph: type: entity_reference_revisions_entity_view - weight: 0 - region: paragraphs label: hidden settings: view_mode: columnar @@ -54,6 +52,8 @@ content: third_party_settings: ds: ds_limit: '1' + weight: 0 + region: paragraphs hidden: body: true field_case_study_client: true diff --git a/config/core.entity_view_display.node.event.default.yml b/config/core.entity_view_display.node.event.default.yml index 4c069ee..f01e6f9 100644 --- a/config/core.entity_view_display.node.event.default.yml +++ b/config/core.entity_view_display.node.event.default.yml @@ -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 diff --git a/config/core.entity_view_display.node.event.full.yml b/config/core.entity_view_display.node.event.full.yml index c4152ee..8d600d5 100644 --- a/config/core.entity_view_display.node.event.full.yml +++ b/config/core.entity_view_display.node.event.full.yml @@ -29,6 +29,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: header: div left: div @@ -39,8 +41,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: header: - field_image @@ -61,61 +61,61 @@ 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: - weight: 4 + type: entity_reference_label label: visually_hidden settings: link: true third_party_settings: { } - type: entity_reference_label + weight: 4 region: middle field_image: - weight: 0 + type: responsive_image label: hidden settings: responsive_image_style: wide image_link: '' third_party_settings: { } - type: responsive_image + weight: 0 region: header field_tags: type: entity_reference_label + label: visually_hidden + settings: + link: true + third_party_settings: { } weight: 5 region: middle - label: visually_hidden - settings: - link: true - third_party_settings: { } field_topics: type: entity_reference_label - weight: 2 - region: left label: visually_hidden settings: link: true third_party_settings: { } + weight: 2 + region: left links: - weight: 6 - region: middle settings: { } third_party_settings: { } + weight: 6 + region: middle hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.event.micro.yml b/config/core.entity_view_display.node.event.micro.yml index 1161b90..6b1135c 100644 --- a/config/core.entity_view_display.node.event.micro.yml +++ b/config/core.entity_view_display.node.event.micro.yml @@ -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 - weight: 1 - region: ds_content label: visually_hidden settings: - separator: '-' timezone_override: '' format_type: medium + separator: '-' third_party_settings: { } + weight: 1 + region: ds_content hidden: body: true field_body_paragraph: true diff --git a/config/core.entity_view_display.node.event.search_index.yml b/config/core.entity_view_display.node.event.search_index.yml index 3ee3fb8..fdbc460 100644 --- a/config/core.entity_view_display.node.event.search_index.yml +++ b/config/core.entity_view_display.node.event.search_index.yml @@ -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,56 +53,56 @@ 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 - weight: 1 - region: ds_content label: hidden settings: - separator: '-' - date_format: 'Y-m-d\TH:i:s' timezone_override: '' + date_format: 'Y-m-d\TH:i:s' + separator: '-' third_party_settings: { } + weight: 1 + region: ds_content 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: '' 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 - 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: { } + weight: 4 + region: ds_content hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.event.simple_card.yml b/config/core.entity_view_display.node.event.simple_card.yml index ad19bde..aa41593 100644 --- a/config/core.entity_view_display.node.event.simple_card.yml +++ b/config/core.entity_view_display.node.event.simple_card.yml @@ -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: - id: '' classes: '' + id: '' 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,13 +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 third_party_settings: { } + weight: 0 + region: ds_content hidden: body: true field_body_paragraph: true diff --git a/config/core.entity_view_display.node.event.teaser.yml b/config/core.entity_view_display.node.event.teaser.yml index b189766..496df0a 100644 --- a/config/core.entity_view_display.node.event.teaser.yml +++ b/config/core.entity_view_display.node.event.teaser.yml @@ -28,6 +28,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -35,8 +37,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - field_image @@ -65,46 +65,46 @@ mode: teaser content: field_event_date: type: daterange_default - weight: 2 - region: right label: visually_hidden settings: - separator: '-' timezone_override: '' format_type: medium + separator: '-' third_party_settings: { } + weight: 2 + region: right 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: - image_link: content responsive_image_style: '' + image_link: content 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 diff --git a/config/core.entity_view_display.node.landing_page.full.yml b/config/core.entity_view_display.node.landing_page.full.yml index 0445bc5..a3ff05e 100644 --- a/config/core.entity_view_display.node.landing_page.full.yml +++ b/config/core.entity_view_display.node.landing_page.full.yml @@ -20,7 +20,7 @@ bundle: landing_page mode: full content: field_body_paragraph: - weight: 0 + type: entity_reference_revisions_entity_view label: hidden settings: view_mode: default @@ -28,7 +28,7 @@ content: third_party_settings: ds: ds_limit: '' - type: entity_reference_revisions_entity_view + weight: 0 region: content hidden: field_image: 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 index 0e727a9..5ef5e47 100644 --- a/config/core.entity_view_display.node.landing_page.simple_card.yml +++ b/config/core.entity_view_display.node.landing_page.simple_card.yml @@ -22,7 +22,8 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' + classes: + layout_class: { } wrappers: left: div right: div @@ -30,8 +31,7 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } + label: '' regions: left: - node_title @@ -52,13 +52,14 @@ third_party_settings: group_date: children: - node_post_date + label: Date parent_name: '' + region: hidden weight: 2 format_type: html_element - region: hidden format_settings: - id: '' classes: subtitle + id: '' element: p show_label: false label_element: h3 @@ -66,7 +67,6 @@ third_party_settings: attributes: '' effect: none speed: fast - label: Date _core: default_config_hash: v2M7V8tN6TiqnoWONGAwAfzJywu0vB04hvs-LQx-bIQ id: node.landing_page.simple_card @@ -76,13 +76,13 @@ mode: simple_card content: field_image: type: responsive_image - weight: 1 - region: right label: hidden settings: responsive_image_style: narrow image_link: content third_party_settings: { } + weight: 1 + region: right hidden: field_body_paragraph: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.page.default.yml b/config/core.entity_view_display.node.page.default.yml index 4aa9e6b..c3b21a8 100644 --- a/config/core.entity_view_display.node.page.default.yml +++ b/config/core.entity_view_display.node.page.default.yml @@ -20,15 +20,15 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' + classes: + layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } + label: '' regions: ds_content: - langcode @@ -41,13 +41,13 @@ mode: default content: langcode: type: language - weight: 0 - region: ds_content label: inline settings: link_to_entity: false native_language: false third_party_settings: { } + weight: 0 + region: ds_content hidden: body: true field_body_paragraph: true diff --git a/config/core.entity_view_display.node.page.embedded.yml b/config/core.entity_view_display.node.page.embedded.yml index f5435b1..534be3f 100644 --- a/config/core.entity_view_display.node.page.embedded.yml +++ b/config/core.entity_view_display.node.page.embedded.yml @@ -22,15 +22,15 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' + classes: + layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } + label: '' regions: ds_content: - node_title @@ -43,10 +43,10 @@ third_party_settings: label: hidden formatter: default settings: + link: false wrapper: h3 class: '' exclude_node_title: '1' - link: false _core: default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg id: node.page.embedded @@ -56,22 +56,22 @@ mode: embedded content: field_body_paragraph: type: entity_reference_revisions_entity_view + label: hidden + settings: + view_mode: default + link: '' + third_party_settings: { } weight: 1 region: ds_content - label: hidden - settings: - view_mode: default - link: '' - third_party_settings: { } field_storyline: 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 hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.page.full.yml b/config/core.entity_view_display.node.page.full.yml index 6d9ccac..9b23307 100644 --- a/config/core.entity_view_display.node.page.full.yml +++ b/config/core.entity_view_display.node.page.full.yml @@ -24,42 +24,42 @@ mode: full content: body: type: text_summary_or_trimmed - weight: 0 - region: content label: above settings: trim_length: 600 third_party_settings: { } + weight: 0 + region: content field_body_paragraph: - weight: 2 + type: entity_reference_revisions_entity_view label: hidden settings: view_mode: default link: '' third_party_settings: { } - type: entity_reference_revisions_entity_view + weight: 2 region: content field_meta_tags: type: metatag_empty_formatter - weight: 1 - region: content label: above settings: { } third_party_settings: { } + weight: 1 + region: content field_storyline: type: entity_reference_revisions_entity_view - weight: 3 - region: content label: hidden settings: view_mode: default link: '' third_party_settings: { } - links: - weight: 4 + weight: 3 region: content + links: settings: { } third_party_settings: { } + weight: 4 + region: content hidden: field_summary: true indieweb_bridgypublishtwitter: true diff --git a/config/core.entity_view_display.node.page.teaser.yml b/config/core.entity_view_display.node.page.teaser.yml index 3a9d9e7..ecab507 100644 --- a/config/core.entity_view_display.node.page.teaser.yml +++ b/config/core.entity_view_display.node.page.teaser.yml @@ -22,11 +22,11 @@ mode: teaser content: field_summary: type: text_trimmed - weight: 0 label: hidden settings: trim_length: 600 third_party_settings: { } + weight: 0 region: content hidden: body: true diff --git a/config/core.entity_view_display.node.people.default.yml b/config/core.entity_view_display.node.people.default.yml index 28002a9..198d1c4 100644 --- a/config/core.entity_view_display.node.people.default.yml +++ b/config/core.entity_view_display.node.people.default.yml @@ -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: PcM71wVDAKyWoQ4OFb7991GgWRB9kh4ZBoyqhQ5aHeU diff --git a/config/core.entity_view_display.node.people.full.yml b/config/core.entity_view_display.node.people.full.yml index 6d619a0..0f1b46f 100644 --- a/config/core.entity_view_display.node.people.full.yml +++ b/config/core.entity_view_display.node.people.full.yml @@ -30,50 +30,48 @@ bundle: people mode: full content: field_body_paragraph: - weight: 7 + type: entity_reference_revisions_entity_view label: hidden settings: view_mode: default link: '' third_party_settings: { } - type: entity_reference_revisions_entity_view + weight: 7 region: content field_image: - weight: 0 + type: image label: hidden settings: - image_style: landscape image_link: '' + image_style: landscape third_party_settings: { } - type: image + weight: 0 region: content field_people_email: type: basic_string - weight: 4 - region: content label: hidden settings: { } third_party_settings: { } + weight: 4 + region: content field_people_position: type: string - weight: 2 label: hidden settings: link_to_entity: false third_party_settings: { } + weight: 2 region: content field_people_public_gpg_key: type: file_default - weight: 5 - region: content label: hidden settings: use_description_as_link_text: true third_party_settings: { } + weight: 5 + region: content field_people_social_media: type: link - weight: 6 - region: content label: visually_hidden settings: trim_length: 80 @@ -82,26 +80,28 @@ content: rel: '' target: '' third_party_settings: { } + weight: 6 + region: content field_people_type: - weight: 1 + type: entity_reference_label label: hidden settings: link: false third_party_settings: { } - type: entity_reference_label + weight: 1 region: content field_summary: type: text_default - weight: 3 - region: content label: hidden settings: { } third_party_settings: { } - links: - weight: 8 + weight: 3 region: content + links: settings: { } third_party_settings: { } + weight: 8 + region: content hidden: field_meta_tags: true indieweb_bridgypublishtwitter: true diff --git a/config/core.entity_view_display.node.people.search_index.yml b/config/core.entity_view_display.node.people.search_index.yml index af0513b..45c60e3 100644 --- a/config/core.entity_view_display.node.people.search_index.yml +++ b/config/core.entity_view_display.node.people.search_index.yml @@ -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 @@ -50,38 +50,38 @@ 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: '' 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: field_meta_tags: true field_people_email: 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 index 20b1c65..0064bc1 100644 --- a/config/core.entity_view_display.node.people.small_card.yml +++ b/config/core.entity_view_display.node.people.small_card.yml @@ -28,20 +28,20 @@ mode: small_card content: field_image: type: image_url - weight: 0 - region: content label: hidden settings: image_style: landscape third_party_settings: { } + weight: 0 + region: content field_summary: type: text_trimmed - weight: 2 - region: content label: hidden settings: trim_length: 600 third_party_settings: { } + weight: 2 + region: content hidden: field_body_paragraph: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.people.teaser.yml b/config/core.entity_view_display.node.people.teaser.yml index faf939c..85aa4de 100644 --- a/config/core.entity_view_display.node.people.teaser.yml +++ b/config/core.entity_view_display.node.people.teaser.yml @@ -28,20 +28,20 @@ mode: teaser content: field_image: type: image - weight: 0 label: hidden settings: - image_style: landscape image_link: '' + image_style: landscape third_party_settings: { } + weight: 0 region: content field_summary: type: text_trimmed - weight: 1 label: hidden settings: trim_length: 600 third_party_settings: { } + weight: 1 region: content hidden: field_body_paragraph: true diff --git a/config/core.entity_view_display.node.resource.card.yml b/config/core.entity_view_display.node.resource.card.yml index d04e4ee..e12827b 100644 --- a/config/core.entity_view_display.node.resource.card.yml +++ b/config/core.entity_view_display.node.resource.card.yml @@ -35,14 +35,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 @@ -72,20 +72,20 @@ third_party_settings: - field_topics - field_resource_link - field_resource_file + label: 'Card content' parent_name: '' + region: hidden weight: 2 format_type: html_element format_settings: - id: '' classes: '' + id: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast - label: 'Card content' - region: hidden _core: default_config_hash: BWkEiubMnutaqiKxIBEgUfV4G63iPECWRppEkfAyeiw id: node.resource.card @@ -95,25 +95,23 @@ mode: 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: { } + 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,10 +120,10 @@ content: rel: '' target: '' third_party_settings: { } + weight: 5 + region: ds_content field_resource_video: type: video_embed_field_thumbnail - weight: 1 - region: ds_content label: visually_hidden settings: image_style: max_325x325 @@ -133,21 +131,23 @@ 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 diff --git a/config/core.entity_view_display.node.resource.default.yml b/config/core.entity_view_display.node.resource.default.yml index 8bbb5b2..d10734f 100644 --- a/config/core.entity_view_display.node.resource.default.yml +++ b/config/core.entity_view_display.node.resource.default.yml @@ -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: { } _core: default_config_hash: H9QyLUku-PR3bQ9StDDUqXEJ-2WpgOWxW9PMxoeXLYY diff --git a/config/core.entity_view_display.node.resource.full.yml b/config/core.entity_view_display.node.resource.full.yml index a52605b..9e5562f 100644 --- a/config/core.entity_view_display.node.resource.full.yml +++ b/config/core.entity_view_display.node.resource.full.yml @@ -33,6 +33,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -40,8 +42,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - field_image @@ -62,36 +62,34 @@ mode: full content: field_body_paragraph: type: entity_reference_revisions_entity_view - weight: 2 - 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: '' third_party_settings: { } + weight: 0 + region: left field_resource_file: type: file_default - weight: 6 - region: right label: visually_hidden settings: use_description_as_link_text: true third_party_settings: ds: ds_limit: '' + weight: 6 + region: right field_resource_link: type: link - weight: 7 - region: right label: visually_hidden settings: trim_length: 80 @@ -100,43 +98,45 @@ content: rel: '0' target: '0' third_party_settings: { } + weight: 7 + region: right field_resource_type: type: entity_reference_label - weight: 3 - region: right label: visually_hidden settings: link: true third_party_settings: { } + weight: 3 + region: right field_resource_video: type: video_embed_field_video - weight: 1 - region: left label: visually_hidden settings: + autoplay: false responsive: true width: 854 height: 480 - autoplay: false 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 - label: visually_hidden - settings: - link: true - third_party_settings: { } field_topics: type: entity_reference_label - weight: 4 - region: right label: visually_hidden settings: link: true third_party_settings: { } + weight: 4 + region: right hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.resource.search_index.yml b/config/core.entity_view_display.node.resource.search_index.yml index 5af7e3c..37568f6 100644 --- a/config/core.entity_view_display.node.resource.search_index.yml +++ b/config/core.entity_view_display.node.resource.search_index.yml @@ -31,14 +31,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,64 +57,64 @@ 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: '' 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 - rel: '' - target: '' url_only: false url_plain: false + rel: '' + target: '' 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 - 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: { } + weight: 5 + region: ds_content hidden: body: true field_meta_tags: true diff --git a/config/core.entity_view_display.node.resource.simple_card.yml b/config/core.entity_view_display.node.resource.simple_card.yml index ad0cc9e..66bf580 100644 --- a/config/core.entity_view_display.node.resource.simple_card.yml +++ b/config/core.entity_view_display.node.resource.simple_card.yml @@ -32,14 +32,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: children: - 'bundle_field:node' - node_title + label: 'Card content' parent_name: '' + region: hidden weight: 2 format_type: html_element format_settings: - id: '' classes: '' + id: '' 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 id: node.resource.simple_card @@ -91,17 +91,15 @@ 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 third_party_settings: { } + weight: 0 + region: ds_content field_resource_video: type: video_embed_field_thumbnail - weight: 1 - region: ds_content label: visually_hidden settings: image_style: max_325x325 @@ -109,6 +107,8 @@ content: third_party_settings: ds: ds_limit: '' + weight: 1 + region: ds_content hidden: body: true field_body_paragraph: true diff --git a/config/core.entity_view_display.node.resource.teaser.yml b/config/core.entity_view_display.node.resource.teaser.yml index 8ec2779..6238f3a 100644 --- a/config/core.entity_view_display.node.resource.teaser.yml +++ b/config/core.entity_view_display.node.resource.teaser.yml @@ -33,6 +33,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -40,8 +42,6 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' - classes: - layout_class: { } regions: left: - field_image @@ -73,69 +73,69 @@ mode: teaser content: field_image: type: responsive_image - weight: 0 - region: left label: visually_hidden settings: responsive_image_style: narrow image_link: content third_party_settings: { } + weight: 0 + region: left field_resource_file: type: file_default - weight: 5 - 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: 4 - region: right label: visually_hidden settings: trim_length: 80 - rel: '' - target: '' url_only: false url_plain: false + rel: '' + target: '' third_party_settings: { } + weight: 4 + region: right field_resource_type: type: entity_reference_label - weight: 6 - region: right label: visually_hidden settings: link: true third_party_settings: { } + weight: 6 + region: right field_resource_video: type: video_embed_field_video - weight: 1 - region: left label: visually_hidden settings: + autoplay: false responsive: true width: 854 height: 480 - autoplay: false third_party_settings: ds: ds_limit: '' + weight: 1 + region: left field_summary: type: text_default - weight: 3 - region: right label: visually_hidden settings: { } third_party_settings: { } + weight: 3 + region: right field_topics: type: entity_reference_label - weight: 7 - region: right label: visually_hidden settings: link: true third_party_settings: { } + weight: 7 + region: right hidden: body: true field_body_paragraph: 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 index 80157d8..7b51bea 100644 --- a/config/core.entity_view_display.paragraph.content_reference.default.yml +++ b/config/core.entity_view_display.paragraph.content_reference.default.yml @@ -13,7 +13,7 @@ bundle: content_reference mode: default content: field_content_reference: - weight: 0 + type: entity_reference_entity_view label: hidden settings: view_mode: simple_card @@ -21,7 +21,7 @@ content: third_party_settings: ds: ds_limit: '' - type: entity_reference_entity_view + 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 index bd23202..a5e6a0e 100644 --- a/config/core.entity_view_display.paragraph.embedded_content.default.yml +++ b/config/core.entity_view_display.paragraph.embedded_content.default.yml @@ -13,7 +13,7 @@ bundle: embedded_content mode: default content: field_content_reference: - weight: 0 + type: entity_reference_entity_view label: hidden settings: view_mode: embedded @@ -21,7 +21,7 @@ content: third_party_settings: ds: ds_limit: '' - type: entity_reference_entity_view + weight: 0 region: content hidden: search_api_excerpt: true diff --git a/config/core.entity_view_display.paragraph.faq.default.yml b/config/core.entity_view_display.paragraph.faq.default.yml index d045975..496596f 100644 --- a/config/core.entity_view_display.paragraph.faq.default.yml +++ b/config/core.entity_view_display.paragraph.faq.default.yml @@ -16,7 +16,7 @@ bundle: faq mode: default content: field_faq: - weight: 0 + type: faqfield_accordion label: visually_hidden settings: active: null @@ -24,11 +24,11 @@ content: collapsible: true event: click animate: - duration: 200 easing: linear + duration: 200 third_party_settings: ds: ds_limit: '' - type: faqfield_accordion + weight: 0 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.file.default.yml b/config/core.entity_view_display.paragraph.file.default.yml index 80ec862..4b483e0 100644 --- a/config/core.entity_view_display.paragraph.file.default.yml +++ b/config/core.entity_view_display.paragraph.file.default.yml @@ -15,10 +15,10 @@ bundle: file mode: default content: field_file: - weight: 0 + type: file_default label: hidden settings: { } third_party_settings: { } - type: file_default + weight: 0 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.image.default.yml b/config/core.entity_view_display.paragraph.image.default.yml index f034b83..ca9ef07 100644 --- a/config/core.entity_view_display.paragraph.image.default.yml +++ b/config/core.entity_view_display.paragraph.image.default.yml @@ -16,12 +16,12 @@ bundle: image mode: default content: field_image: - weight: 0 + type: image label: hidden settings: - image_style: large image_link: '' + image_style: large third_party_settings: { } - type: image + weight: 0 region: content hidden: { } 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 index 3fe3a5e..fd1670f 100644 --- a/config/core.entity_view_display.paragraph.quotation_with_image.default.yml +++ b/config/core.entity_view_display.paragraph.quotation_with_image.default.yml @@ -17,20 +17,20 @@ bundle: quotation_with_image mode: default content: field_image: - weight: 1 + type: image label: hidden settings: - image_style: max_650x650 image_link: '' + image_style: max_650x650 third_party_settings: { } - type: image + weight: 1 region: content field_quotation: - weight: 0 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 0 region: content hidden: field_style_escape_flow: true diff --git a/config/core.entity_view_display.paragraph.slide.columnar.yml b/config/core.entity_view_display.paragraph.slide.columnar.yml index 882b7a2..f0e5aba 100644 --- a/config/core.entity_view_display.paragraph.slide.columnar.yml +++ b/config/core.entity_view_display.paragraph.slide.columnar.yml @@ -21,16 +21,16 @@ bundle: slide mode: columnar content: field_image: - weight: 0 + type: responsive_image label: hidden settings: responsive_image_style: narrow image_link: '' third_party_settings: { } - type: responsive_image + weight: 0 region: content field_link: - weight: 1 + type: link_separate label: hidden settings: trim_length: null @@ -39,13 +39,13 @@ content: rel: '0' target: '0' third_party_settings: { } - type: link_separate + weight: 1 region: content field_text: - weight: 2 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 2 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.slide.default.yml b/config/core.entity_view_display.paragraph.slide.default.yml index 5734c30..f35522f 100644 --- a/config/core.entity_view_display.paragraph.slide.default.yml +++ b/config/core.entity_view_display.paragraph.slide.default.yml @@ -20,16 +20,16 @@ bundle: slide mode: default content: field_image: - weight: 0 + type: image label: hidden settings: - image_style: max_2600x2600 image_link: '' + image_style: max_2600x2600 third_party_settings: { } - type: image + weight: 0 region: content field_link: - weight: 2 + type: link_separate label: hidden settings: trim_length: null @@ -38,13 +38,13 @@ content: rel: '0' target: '0' third_party_settings: { } - type: link_separate + weight: 2 region: content field_text: - weight: 1 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 1 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.storyline_header.default.yml b/config/core.entity_view_display.paragraph.storyline_header.default.yml index 0c72492..2ad76bc 100644 --- a/config/core.entity_view_display.paragraph.storyline_header.default.yml +++ b/config/core.entity_view_display.paragraph.storyline_header.default.yml @@ -13,11 +13,11 @@ bundle: storyline_header mode: default content: field_storyline_header: - weight: 0 + type: string label: visually_hidden settings: link_to_entity: false third_party_settings: { } - type: string + weight: 0 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.storyline_item.default.yml b/config/core.entity_view_display.paragraph.storyline_item.default.yml index df684de..6225277 100644 --- a/config/core.entity_view_display.paragraph.storyline_item.default.yml +++ b/config/core.entity_view_display.paragraph.storyline_item.default.yml @@ -15,20 +15,20 @@ third_party_settings: children: - field_storyline_heading - field_text + label: 'storyline content' parent_name: '' + region: content weight: 0 format_type: html_element format_settings: - id: '' classes: '' + id: '' 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 id: paragraph.storyline_item.default @@ -37,18 +37,18 @@ bundle: storyline_item mode: default content: field_storyline_heading: - weight: 1 + type: string label: visually_hidden settings: link_to_entity: false third_party_settings: { } - type: string + weight: 1 region: content field_text: - weight: 2 + type: text_default label: visually_hidden settings: { } third_party_settings: { } - type: text_default + weight: 2 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.text.default.yml b/config/core.entity_view_display.paragraph.text.default.yml index 0545cc4..e7d5d71 100644 --- a/config/core.entity_view_display.paragraph.text.default.yml +++ b/config/core.entity_view_display.paragraph.text.default.yml @@ -17,11 +17,11 @@ bundle: text mode: default content: field_text: - weight: 0 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 0 region: content hidden: field_style_classes: true diff --git a/config/core.entity_view_display.paragraph.title.columnar.yml b/config/core.entity_view_display.paragraph.title.columnar.yml index 11d9c4a..59bfac4 100644 --- a/config/core.entity_view_display.paragraph.title.columnar.yml +++ b/config/core.entity_view_display.paragraph.title.columnar.yml @@ -22,33 +22,33 @@ bundle: title mode: columnar content: field_image: - weight: 2 + type: image_url label: hidden settings: image_style: max_325x325 third_party_settings: { } - type: image_url + weight: 2 region: content field_style_color: - weight: 3 + type: list_key label: hidden settings: { } third_party_settings: { } - type: list_key + weight: 3 region: content field_subtitle: - weight: 1 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 1 region: content field_title: - weight: 0 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 0 region: content hidden: field_style_classes: true diff --git a/config/core.entity_view_display.paragraph.title.default.yml b/config/core.entity_view_display.paragraph.title.default.yml index d8e80b7..0504c00 100644 --- a/config/core.entity_view_display.paragraph.title.default.yml +++ b/config/core.entity_view_display.paragraph.title.default.yml @@ -21,50 +21,50 @@ bundle: title mode: default content: field_image: - weight: 2 + type: image label: hidden settings: - image_style: max_650x650 image_link: '' + image_style: max_650x650 third_party_settings: { } - type: image + weight: 2 region: content field_style_classes: - weight: 5 + type: list_key label: hidden settings: { } third_party_settings: { } - type: list_key + weight: 5 region: content field_style_color: - weight: 3 + type: list_key label: hidden settings: { } third_party_settings: { } - type: list_key + weight: 3 region: content field_style_titlebar: - weight: 4 + type: boolean label: hidden settings: format: true-false - format_custom_true: '' format_custom_false: '' + format_custom_true: '' third_party_settings: { } - type: boolean + weight: 4 region: content field_subtitle: - weight: 1 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 1 region: content field_title: - weight: 0 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 0 region: content hidden: { } diff --git a/config/core.entity_view_display.paragraph.update.default.yml b/config/core.entity_view_display.paragraph.update.default.yml index eacf6b8..07263e4 100644 --- a/config/core.entity_view_display.paragraph.update.default.yml +++ b/config/core.entity_view_display.paragraph.update.default.yml @@ -18,6 +18,8 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: + classes: + layout_class: { } wrappers: left: div right: div @@ -25,8 +27,6 @@ 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: - weight: 1 + type: text_default label: hidden settings: { } third_party_settings: { } - type: text_default + weight: 1 region: right field_update_date: - weight: 0 + type: datetime_default label: hidden settings: timezone_override: '' format_type: month_day_year third_party_settings: { } - type: datetime_default + weight: 0 region: left hidden: { } diff --git a/config/core.entity_view_display.paragraph.video.default.yml b/config/core.entity_view_display.paragraph.video.default.yml index c05ae51..7255892 100644 --- a/config/core.entity_view_display.paragraph.video.default.yml +++ b/config/core.entity_view_display.paragraph.video.default.yml @@ -15,14 +15,14 @@ bundle: video mode: default content: field_video_embed: - weight: 0 + type: video_embed_field_video label: visually_hidden settings: + autoplay: false responsive: true width: 854 height: 480 - autoplay: false third_party_settings: { } - type: video_embed_field_video + 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 index 811f3a5..cddbe63 100644 --- a/config/core.entity_view_display.paragraph.view.default.yml +++ b/config/core.entity_view_display.paragraph.view.default.yml @@ -14,7 +14,7 @@ bundle: view mode: default content: field_view_reference: - weight: 0 + type: viewsreference_formatter label: hidden settings: plugin_types: @@ -24,7 +24,7 @@ content: feed: 0 embed: 0 third_party_settings: { } - type: viewsreference_formatter + 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 index 98dc800..1cbd36d 100644 --- a/config/core.entity_view_display.paragraph.webform.default.yml +++ b/config/core.entity_view_display.paragraph.webform.default.yml @@ -13,11 +13,11 @@ bundle: webform mode: default content: field_webform: - weight: 0 + type: webform_entity_reference_entity_view label: hidden settings: source_entity: true third_party_settings: { } - type: webform_entity_reference_entity_view + 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 index b3db8ee..b689522 100644 --- a/config/core.entity_view_display.taxonomy_term.license.default.yml +++ b/config/core.entity_view_display.taxonomy_term.license.default.yml @@ -26,11 +26,11 @@ bundle: license mode: default content: description: - label: hidden type: text_default - weight: 0 - region: content + label: hidden settings: { } third_party_settings: { } + weight: 0 + region: content hidden: langcode: true diff --git a/config/core.entity_view_display.user.user.compact.yml b/config/core.entity_view_display.user.user.compact.yml index 276816e..2fcc767 100644 --- a/config/core.entity_view_display.user.user.compact.yml +++ b/config/core.entity_view_display.user.user.compact.yml @@ -18,12 +18,12 @@ mode: compact content: user_picture: type: image - weight: 0 - settings: - image_style: thumbnail - image_link: content - third_party_settings: { } label: hidden + settings: + image_link: content + image_style: thumbnail + third_party_settings: { } + weight: 0 region: content hidden: langcode: true diff --git a/config/core.entity_view_display.user.user.default.yml b/config/core.entity_view_display.user.user.default.yml index 78d2f8b..2fbcf7d 100644 --- a/config/core.entity_view_display.user.user.default.yml +++ b/config/core.entity_view_display.user.user.default.yml @@ -17,12 +17,12 @@ mode: default content: user_picture: type: image - weight: 0 - settings: - image_style: thumbnail - image_link: content - third_party_settings: { } label: hidden + settings: + image_link: content + image_style: thumbnail + third_party_settings: { } + weight: 0 region: content hidden: langcode: true diff --git a/config/core.entity_view_mode.media.media_library.yml b/config/core.entity_view_mode.media.media_library.yml index b67b34a..dcb35d0 100644 --- a/config/core.entity_view_mode.media.media_library.yml +++ b/config/core.entity_view_mode.media.media_library.yml @@ -2,11 +2,11 @@ uuid: d1c3c179-3064-4b7e-a89c-7fa7045b4dca langcode: en status: true dependencies: + module: + - media enforced: module: - media_library - module: - - media _core: default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 id: media.media_library diff --git a/config/core.entity_view_mode.node.diff.yml b/config/core.entity_view_mode.node.diff.yml index 05e99b0..46046e4 100644 --- a/config/core.entity_view_mode.node.diff.yml +++ b/config/core.entity_view_mode.node.diff.yml @@ -2,12 +2,12 @@ uuid: 316215b0-93fc-49d9-a1f0-e0ea02dcb966 langcode: en status: false dependencies: + module: + - node enforced: module: - node - diff - module: - - node _core: default_config_hash: pqZNtad5J9THcdbYjwPD4qINqvrTxnOd8KCWn6tUBRs id: node.diff diff --git a/config/core.extension.yml b/config/core.extension.yml index 4beb783..6f3ec6c 100644 --- a/config/core.extension.yml +++ b/config/core.extension.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc module: address: 0 admin_toolbar: 0 @@ -179,11 +181,8 @@ module: drutopia: 1000 theme: stable: 0 - classy: 0 seven: 0 bulma: 0 octavia: 0 agarica: 0 profile: drutopia -_core: - default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc diff --git a/config/core.menu.static_menu_link_overrides.yml b/config/core.menu.static_menu_link_overrides.yml index a152773..891b232 100644 --- a/config/core.menu.static_menu_link_overrides.yml +++ b/config/core.menu.static_menu_link_overrides.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM definitions: contact__site_page: menu_name: footer @@ -5,5 +7,3 @@ definitions: weight: 0 expanded: false enabled: false -_core: - default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM diff --git a/config/crop.settings.yml b/config/crop.settings.yml index 2fd1693..2fd805c 100644 --- a/config/crop.settings.yml +++ b/config/crop.settings.yml @@ -1,3 +1,3 @@ -flush_derivative_images: true _core: default_config_hash: 7eGOTSG7bRv_AAqu-Ls8CSnob7zPF1ez-lD2OLZgBHs +flush_derivative_images: true diff --git a/config/dblog.settings.yml b/config/dblog.settings.yml index cf06e3f..fbd17ea 100644 --- a/config/dblog.settings.yml +++ b/config/dblog.settings.yml @@ -1,3 +1,3 @@ -row_limit: 1000 _core: default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58 +row_limit: 1000 diff --git a/config/diff.settings.yml b/config/diff.settings.yml index 5762e78..699bbbb 100644 --- a/config/diff.settings.yml +++ b/config/diff.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: oXwX3NzLv9QK_LbNEvpQ9OPwH9tqtMSJzq5y8t63Q8w general_settings: radio_behavior: simple context_lines_leading: 1 @@ -14,5 +16,3 @@ general_settings: enabled: true weight: 2 visual_inline_theme: default -_core: - default_config_hash: oXwX3NzLv9QK_LbNEvpQ9OPwH9tqtMSJzq5y8t63Q8w diff --git a/config/dropdown_language.setting.yml b/config/dropdown_language.setting.yml index dcc8658..fa1d20e 100644 --- a/config/dropdown_language.setting.yml +++ b/config/dropdown_language.setting.yml @@ -1,6 +1,6 @@ +_core: + default_config_hash: xbqiqGnFfv7G00sewxA46T8PO-uo8uvWhDSIFyR1Fhk wrapper: false display_language_id: 2 filter_untranslated: 0 always_show_block: 0 -_core: - default_config_hash: xbqiqGnFfv7G00sewxA46T8PO-uo8uvWhDSIFyR1Fhk diff --git a/config/ds.settings.yml b/config/ds.settings.yml index d1e4b0b..0684699 100644 --- a/config/ds.settings.yml +++ b/config/ds.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY disabled: false field_template: false ft-default: default @@ -6,5 +8,3 @@ classes: region: { } field: { } use_field_names: true -_core: - default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY diff --git a/config/exclude_node_title.settings.yml b/config/exclude_node_title.settings.yml index 40c33e6..0c6d662 100644 --- a/config/exclude_node_title.settings.yml +++ b/config/exclude_node_title.settings.yml @@ -1,12 +1,12 @@ +_core: + default_config_hash: tFcyNjovmdPA1ZVm7j2Iymt809j-r2F5uSDJAOI_QV8 nid_list: 1: 280 translation_sync: true search: false -_core: - default_config_hash: tFcyNjovmdPA1ZVm7j2Iymt809j-r2F5uSDJAOI_QV8 +type: remove content_types: landing_page: user content_type_modes: landing_page: - full -type: remove diff --git a/config/facets.facet.article_topics.yml b/config/facets.facet.article_topics.yml index d2501e7..c9a0ae7 100644 --- a/config/facets.facet.article_topics.yml +++ b/config/facets.facet.article_topics.yml @@ -11,12 +11,17 @@ _core: default_config_hash: dTU5sKNgp-tIPvV40sH74giQMQUzlrDLl7dYn91JmVc id: article_topics name: 'Article Topics' -url_alias: article_topics weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_topics +url_alias: article_topics facet_source_id: 'search_api:views_page__article__page_listing' +field_identifier: field_topics +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -50,6 +53,3 @@ 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/facets.facet.article_type.yml index 8df2cd4..cc7f164 100644 --- a/config/facets.facet.article_type.yml +++ b/config/facets.facet.article_type.yml @@ -11,12 +11,17 @@ _core: default_config_hash: sO7FteotwDBR81JcEyIL4pVftUp0-K2mK3_X0A6csS8 id: article_type name: 'Article Type' -url_alias: article_type weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_article_type +url_alias: article_type facet_source_id: 'search_api:views_page__article__page_listing' +field_identifier: field_article_type +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -50,6 +53,3 @@ 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/facets.facet.blog_topics.yml index 400599e..2cec4c3 100644 --- a/config/facets.facet.blog_topics.yml +++ b/config/facets.facet.blog_topics.yml @@ -11,12 +11,17 @@ _core: default_config_hash: LF3dKWzK-V3XRA53prLyLAWwNxKkERhljA_HCNedonI id: blog_topics name: 'Blog Topics' -url_alias: blog_topics weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_topics +url_alias: blog_topics facet_source_id: 'search_api:views_page__blog__page_listing' +field_identifier: field_topics +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -56,6 +59,3 @@ 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/facets.facet.event_topics.yml index 4de172d..92e6f01 100644 --- a/config/facets.facet.event_topics.yml +++ b/config/facets.facet.event_topics.yml @@ -11,12 +11,17 @@ _core: default_config_hash: XQzUxYcX_ECM94u5v-OTXsgFtwEjbyRmzY-D_PxsGqM id: event_topics name: 'Event Topics' -url_alias: event_topics weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_topics +url_alias: event_topics facet_source_id: 'search_api:views_page__event__page_listing' +field_identifier: field_topics +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -56,6 +59,3 @@ 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/facets.facet.event_type.yml index e3cbbd3..b1148a3 100644 --- a/config/facets.facet.event_type.yml +++ b/config/facets.facet.event_type.yml @@ -11,12 +11,17 @@ _core: default_config_hash: kE25UNBZHvRyjg351sVKYFkq7OOQKn3qNYzBiWaeiz8 id: event_type name: 'Event type' -url_alias: event_type weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_event_type +url_alias: event_type facet_source_id: 'search_api:views_page__event__page_listing' +field_identifier: field_event_type +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -56,6 +59,3 @@ 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/facets.facet.resource_topics.yml index 21dfb31..1a5629c 100644 --- a/config/facets.facet.resource_topics.yml +++ b/config/facets.facet.resource_topics.yml @@ -11,12 +11,17 @@ _core: default_config_hash: IvtNPikEqWqteA2ShK97SiLcQmpwbNCV1y5JX5PBnCg id: resource_topics name: 'Resource Topics' -url_alias: resource_topics weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_topics +url_alias: resource_topics facet_source_id: 'search_api:views_page__resource__page_listing' +field_identifier: field_topics +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -50,6 +53,3 @@ 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/facets.facet.resource_type.yml index 959180d..1182c9e 100644 --- a/config/facets.facet.resource_type.yml +++ b/config/facets.facet.resource_type.yml @@ -11,12 +11,17 @@ _core: default_config_hash: M4w4qruChjiuXlZnQm9tlawCcs72T3LUt3N5iEXAPSI id: resource_type name: 'Resource type' -url_alias: resource_type weight: 0 min_count: 1 -show_only_one_result: false -field_identifier: field_resource_type +url_alias: resource_type facet_source_id: 'search_api:views_page__resource__page_listing' +field_identifier: field_resource_type +query_operator: or +hard_limit: 0 +exclude: false +use_hierarchy: false +expand_hierarchy: false +enable_parent_when_child_gets_disabled: true widget: type: checkbox config: @@ -25,13 +30,11 @@ widget: soft_limit_settings: show_less_label: 'Show fewer' show_more_label: 'Show more' -query_operator: or -use_hierarchy: false -expand_hierarchy: false -enable_parent_when_child_gets_disabled: true -hard_limit: 0 -exclude: false +empty_behavior: + behavior: none 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 @@ -50,6 +53,3 @@ processor_configs: pre_query: -10 build: -10 settings: { } -empty_behavior: - behavior: none -show_title: null diff --git a/config/field.field.block_content.slide.field_slide.yml b/config/field.field.block_content.slide.field_slide.yml index 4ddf610..763680f 100644 --- a/config/field.field.block_content.slide.field_slide.yml +++ b/config/field.field.block_content.slide.field_slide.yml @@ -33,8 +33,8 @@ settings: weight: 7 enabled: false slide: - enabled: true weight: 8 + enabled: true text: weight: 9 enabled: false diff --git a/config/field.field.group.group.field_group_address.yml b/config/field.field.group.group.field_group_address.yml index d5d1aba..c6ef102 100644 --- a/config/field.field.group.group.field_group_address.yml +++ b/config/field.field.group.group.field_group_address.yml @@ -21,6 +21,8 @@ default_value: { } default_value_callback: '' settings: available_countries: { } + langcode_override: '' + field_overrides: { } fields: administrativeArea: administrativeArea locality: locality @@ -33,6 +35,4 @@ settings: givenName: '0' additionalName: '0' familyName: '0' - langcode_override: '' - field_overrides: { } field_type: address diff --git a/config/field.field.group.group.field_group_description.yml b/config/field.field.group.group.field_group_description.yml index 326b469..6466503 100644 --- a/config/field.field.group.group.field_group_description.yml +++ b/config/field.field.group.group.field_group_description.yml @@ -24,13 +24,13 @@ settings: handler_settings: target_bundles: null target_bundles_drag_drop: - text: - weight: -7 + file: + weight: -5 enabled: false image: weight: -6 enabled: false - file: - weight: -5 + text: + weight: -7 enabled: false field_type: entity_reference_revisions diff --git a/config/field.field.group.group.field_group_image.yml b/config/field.field.group.group.field_group_image.yml index bdc3599..6106199 100644 --- a/config/field.field.group.group.field_group_image.yml +++ b/config/field.field.group.group.field_group_image.yml @@ -20,6 +20,8 @@ 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.group.group.field_group_website.yml b/config/field.field.group.group.field_group_website.yml index e36a0e2..44de2ac 100644 --- a/config/field.field.group.group.field_group_website.yml +++ b/config/field.field.group.group.field_group_website.yml @@ -20,6 +20,6 @@ translatable: false default_value: { } default_value_callback: '' settings: - link_type: 17 title: 1 + link_type: 17 field_type: link diff --git a/config/field.field.node.action.field_action_link.yml b/config/field.field.node.action.field_action_link.yml index 2c26699..eca5eac 100644 --- a/config/field.field.node.action.field_action_link.yml +++ b/config/field.field.node.action.field_action_link.yml @@ -20,6 +20,6 @@ translatable: false default_value: { } default_value_callback: '' settings: - link_type: 17 title: 1 + link_type: 17 field_type: link diff --git a/config/field.field.node.action.field_body_paragraph.yml b/config/field.field.node.action.field_body_paragraph.yml index 05fefd1..7687c3f 100644 --- a/config/field.field.node.action.field_body_paragraph.yml +++ b/config/field.field.node.action.field_body_paragraph.yml @@ -24,13 +24,13 @@ settings: handler_settings: target_bundles: null target_bundles_drag_drop: - text: + file: weight: -7 enabled: false image: weight: -7 enabled: false - file: + text: weight: -7 enabled: false field_type: entity_reference_revisions diff --git a/config/field.field.node.action.field_image.yml b/config/field.field.node.action.field_image.yml index e4942ba..b1d39d1 100644 --- a/config/field.field.node.action.field_image.yml +++ b/config/field.field.node.action.field_image.yml @@ -20,6 +20,8 @@ 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.article.field_body_paragraph.yml b/config/field.field.node.article.field_body_paragraph.yml index ac4e462..012a193 100644 --- a/config/field.field.node.article.field_body_paragraph.yml +++ b/config/field.field.node.article.field_body_paragraph.yml @@ -27,33 +27,33 @@ 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: - text: - enabled: true - weight: -15 - image: - enabled: true - weight: -14 - file: - enabled: true - weight: -13 - video: - enabled: true - weight: -12 faq: - enabled: true 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: -9 enabled: false + video: + weight: -12 + enabled: true field_type: entity_reference_revisions diff --git a/config/field.field.node.article.field_image.yml b/config/field.field.node.article.field_image.yml index 92ae2ec..63a9fdc 100644 --- a/config/field.field.node.article.field_image.yml +++ b/config/field.field.node.article.field_image.yml @@ -20,14 +20,16 @@ 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: '' max_resolution: '' min_resolution: '' alt_field: true - title_field: false alt_field_required: true + title_field: false title_field_required: false default_image: uuid: null @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.blog.field_body_paragraph.yml b/config/field.field.node.blog.field_body_paragraph.yml index 4d43429..7f13429 100644 --- a/config/field.field.node.blog.field_body_paragraph.yml +++ b/config/field.field.node.blog.field_body_paragraph.yml @@ -22,24 +22,21 @@ default_value_callback: '' settings: handler: 'default:paragraph' handler_settings: - negate: 0 target_bundles: null + negate: 0 target_bundles_drag_drop: - file: - weight: -7 - enabled: false - image: - weight: -7 - enabled: false - text: - weight: -7 - enabled: false content_reference: weight: 15 enabled: false faq: weight: 16 enabled: false + file: + weight: -7 + enabled: false + image: + weight: -7 + enabled: false quotation_with_image: weight: 19 enabled: false @@ -52,6 +49,9 @@ settings: storyline_item: weight: 22 enabled: false + text: + weight: -7 + enabled: false title: weight: 24 enabled: false diff --git a/config/field.field.node.blog.field_image.yml b/config/field.field.node.blog.field_image.yml index 2906e3b..1586beb 100644 --- a/config/field.field.node.blog.field_image.yml +++ b/config/field.field.node.blog.field_image.yml @@ -27,6 +27,8 @@ 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: '' @@ -42,6 +44,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.campaign.field_body_paragraph.yml b/config/field.field.node.campaign.field_body_paragraph.yml index 1746e44..a4fc284 100644 --- a/config/field.field.node.campaign.field_body_paragraph.yml +++ b/config/field.field.node.campaign.field_body_paragraph.yml @@ -34,7 +34,6 @@ default_value_callback: '' settings: handler: 'default:paragraph' handler_settings: - negate: 0 target_bundles: file: file image: image @@ -48,41 +47,42 @@ settings: title: title video: video view: view + negate: 0 target_bundles_drag_drop: - file: - enabled: true - weight: -7 - image: - enabled: true - weight: -7 - text: - enabled: true - weight: -7 - update: - enabled: true - weight: 8 faq: - enabled: true weight: 13 + enabled: true + file: + weight: -7 + enabled: true + image: + weight: -7 + enabled: true quotation_with_image: - enabled: true weight: 16 + enabled: true slide: - enabled: true weight: 17 + enabled: true storyline_header: - enabled: true weight: 18 + enabled: true storyline_item: - enabled: true weight: 19 + enabled: true + text: + weight: -7 + enabled: true title: - enabled: true weight: 21 + enabled: true + update: + weight: 8 + enabled: true video: - enabled: true weight: 23 - view: enabled: true + view: weight: 24 + enabled: true field_type: entity_reference_revisions diff --git a/config/field.field.node.campaign.field_campaign_demands.yml b/config/field.field.node.campaign.field_campaign_demands.yml index a71ca41..ee4b171 100644 --- a/config/field.field.node.campaign.field_campaign_demands.yml +++ b/config/field.field.node.campaign.field_campaign_demands.yml @@ -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/field.field.node.campaign.field_campaign_updates.yml index 7277cdb..1cca044 100644 --- a/config/field.field.node.campaign.field_campaign_updates.yml +++ b/config/field.field.node.campaign.field_campaign_updates.yml @@ -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: - enabled: true weight: 8 + enabled: true field_type: entity_reference_revisions diff --git a/config/field.field.node.campaign.field_image.yml b/config/field.field.node.campaign.field_image.yml index a0f97c6..959ca4d 100644 --- a/config/field.field.node.campaign.field_image.yml +++ b/config/field.field.node.campaign.field_image.yml @@ -20,6 +20,8 @@ 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.case_study.field_body_paragraph.yml b/config/field.field.node.case_study.field_body_paragraph.yml index d52dc15..e222fc0 100644 --- a/config/field.field.node.case_study.field_body_paragraph.yml +++ b/config/field.field.node.case_study.field_body_paragraph.yml @@ -36,7 +36,6 @@ default_value_callback: '' settings: handler: 'default:paragraph' handler_settings: - negate: 0 target_bundles: title: title text: text @@ -52,47 +51,48 @@ settings: quotation_with_image: quotation_with_image view: view webform: webform + negate: 0 target_bundles_drag_drop: - title: - enabled: true - weight: -21 - text: - enabled: true - weight: -20 - image: - enabled: true - weight: -19 - slide: - enabled: true - weight: -18 - file: - enabled: true - weight: -17 - storyline_header: - enabled: true - weight: -16 - storyline_item: - enabled: true - weight: -15 - update: - enabled: true - weight: -14 - faq: - enabled: true - weight: -13 - video: - enabled: true - weight: -12 content_reference: - enabled: true weight: 15 + enabled: true + faq: + weight: -13 + enabled: true + file: + weight: -17 + enabled: true + image: + weight: -19 + enabled: true quotation_with_image: - enabled: true 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: - enabled: true weight: 25 - webform: enabled: true + webform: weight: 26 + enabled: true field_type: entity_reference_revisions diff --git a/config/field.field.node.case_study.field_image.yml b/config/field.field.node.case_study.field_image.yml index f2203aa..80b3a9f 100644 --- a/config/field.field.node.case_study.field_image.yml +++ b/config/field.field.node.case_study.field_image.yml @@ -27,6 +27,8 @@ 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: '' @@ -42,6 +44,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.event.field_body_paragraph.yml b/config/field.field.node.event.field_body_paragraph.yml index 720084c..8346420 100644 --- a/config/field.field.node.event.field_body_paragraph.yml +++ b/config/field.field.node.event.field_body_paragraph.yml @@ -30,18 +30,18 @@ settings: image: image file: file target_bundles_drag_drop: - text: - enabled: true - weight: -11 - image: - enabled: true - weight: -10 file: - enabled: true weight: -9 + enabled: true + image: + weight: -10 + enabled: true slide: weight: -8 enabled: false + text: + weight: -11 + enabled: true update: weight: -7 enabled: false diff --git a/config/field.field.node.event.field_image.yml b/config/field.field.node.event.field_image.yml index a35fa34..08c4a7b 100644 --- a/config/field.field.node.event.field_image.yml +++ b/config/field.field.node.event.field_image.yml @@ -20,6 +20,8 @@ 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.landing_page.field_body_paragraph.yml b/config/field.field.node.landing_page.field_body_paragraph.yml index 112b32e..420238e 100644 --- a/config/field.field.node.landing_page.field_body_paragraph.yml +++ b/config/field.field.node.landing_page.field_body_paragraph.yml @@ -37,7 +37,6 @@ default_value_callback: '' settings: handler: 'default:paragraph' handler_settings: - negate: 0 target_bundles: text: text image: image @@ -54,50 +53,51 @@ settings: embedded_content: embedded_content quotation_with_image: quotation_with_image webform: webform + negate: 0 target_bundles_drag_drop: content_reference: - enabled: true weight: 15 + enabled: true embedded_content: - enabled: true weight: 17 + enabled: true faq: - enabled: true weight: -14 + enabled: true file: - enabled: true weight: -18 + enabled: true image: - enabled: true weight: -20 + enabled: true quotation_with_image: - enabled: true weight: 17 + enabled: true slide: - enabled: true weight: -17 + enabled: true storyline_header: - enabled: true weight: -16 + enabled: true storyline_item: - enabled: true weight: -15 + enabled: true text: - enabled: true weight: -21 + enabled: true title: - enabled: true weight: -12 + enabled: true update: - enabled: true weight: -13 + enabled: true video: - enabled: true weight: -19 + enabled: true view: - enabled: true weight: 12 - webform: 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 index 79a9322..1751b05 100644 --- a/config/field.field.node.landing_page.field_image.yml +++ b/config/field.field.node.landing_page.field_image.yml @@ -25,6 +25,8 @@ 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: '' @@ -40,6 +42,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } 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 index 0a743d8..e80aad0 100644 --- a/config/field.field.node.page.field_body_paragraph.yml +++ b/config/field.field.node.page.field_body_paragraph.yml @@ -37,7 +37,6 @@ default_value_callback: '' settings: handler: 'default:paragraph' handler_settings: - negate: 0 target_bundles: text: text image: image @@ -54,50 +53,51 @@ settings: storyline_item: storyline_item title: title view: view + negate: 0 target_bundles_drag_drop: content_reference: - enabled: true weight: 15 + enabled: true embedded_content: - enabled: true weight: 17 + enabled: true faq: - enabled: true weight: -9 + enabled: true file: - enabled: true weight: -13 + enabled: true image: - enabled: true weight: -14 + enabled: true quotation_with_image: - enabled: true weight: 18 + enabled: true slide: - enabled: true weight: -11 + enabled: true storyline_header: - enabled: true weight: 20 + enabled: true storyline_item: - enabled: true weight: 21 + enabled: true text: - enabled: true weight: -15 + enabled: true title: - enabled: true weight: 23 + enabled: true update: - enabled: true weight: -10 + enabled: true video: - enabled: true weight: -12 + enabled: true view: - enabled: true weight: 26 - webform: enabled: true + webform: weight: 14 + enabled: true field_type: entity_reference_revisions diff --git a/config/field.field.node.page.field_storyline.yml b/config/field.field.node.page.field_storyline.yml index 5872fa3..0a36591 100644 --- a/config/field.field.node.page.field_storyline.yml +++ b/config/field.field.node.page.field_storyline.yml @@ -24,10 +24,10 @@ 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.people.field_body_paragraph.yml b/config/field.field.node.people.field_body_paragraph.yml index 2f8e856..bbcb9a6 100644 --- a/config/field.field.node.people.field_body_paragraph.yml +++ b/config/field.field.node.people.field_body_paragraph.yml @@ -35,7 +35,6 @@ default_value_callback: '' settings: handler: 'default:paragraph' handler_settings: - negate: 0 target_bundles: file: file image: image @@ -50,44 +49,45 @@ settings: video: video view: view webform: webform + negate: 0 target_bundles_drag_drop: - file: - enabled: true - weight: -7 - image: - enabled: true - weight: -7 - text: - enabled: true - weight: -7 - slide: - enabled: true - weight: 8 - update: - enabled: true - weight: 10 faq: - enabled: true weight: 14 + enabled: true + file: + weight: -7 + enabled: true + image: + weight: -7 + enabled: true quotation_with_image: - enabled: true weight: 17 + enabled: true + slide: + weight: 8 + enabled: true storyline_header: - enabled: true weight: 19 + enabled: true storyline_item: - enabled: true weight: 20 + enabled: true + text: + weight: -7 + enabled: true title: - enabled: true weight: 22 + enabled: true + update: + weight: 10 + enabled: true video: - enabled: true weight: 24 + enabled: true view: - enabled: true weight: 25 - webform: enabled: true + webform: weight: 26 + enabled: true field_type: entity_reference_revisions diff --git a/config/field.field.node.people.field_image.yml b/config/field.field.node.people.field_image.yml index 2a550b2..1a275fc 100644 --- a/config/field.field.node.people.field_image.yml +++ b/config/field.field.node.people.field_image.yml @@ -20,6 +20,8 @@ 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.people.field_people_public_gpg_key.yml b/config/field.field.node.people.field_people_public_gpg_key.yml index 29f3c4f..84af0d6 100644 --- a/config/field.field.node.people.field_people_public_gpg_key.yml +++ b/config/field.field.node.people.field_people_public_gpg_key.yml @@ -18,10 +18,10 @@ translatable: false default_value: { } default_value_callback: '' settings: + handler: 'default:file' + handler_settings: { } file_directory: '[date:custom:Y]-[date:custom:m]' file_extensions: asc max_filesize: '' description_field: true - handler: 'default:file' - handler_settings: { } field_type: file diff --git a/config/field.field.node.people.field_people_social_media.yml b/config/field.field.node.people.field_people_social_media.yml index 7f8840e..f7c4b9a 100644 --- a/config/field.field.node.people.field_people_social_media.yml +++ b/config/field.field.node.people.field_people_social_media.yml @@ -18,6 +18,6 @@ translatable: false default_value: { } default_value_callback: '' settings: - link_type: 16 title: 1 + link_type: 16 field_type: link diff --git a/config/field.field.node.resource.field_body_paragraph.yml b/config/field.field.node.resource.field_body_paragraph.yml index bb04ab3..b3c34e6 100644 --- a/config/field.field.node.resource.field_body_paragraph.yml +++ b/config/field.field.node.resource.field_body_paragraph.yml @@ -26,38 +26,38 @@ 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: - text: - enabled: true - weight: -11 - image: - enabled: true - weight: -10 - file: - enabled: true - weight: -9 - slide: - weight: -8 - enabled: false - update: - weight: -7 - enabled: false faq: weight: 10 enabled: false + file: + weight: -9 + enabled: true + image: + weight: -10 + enabled: true + slide: + weight: -8 + enabled: false storyline_header: weight: 14 enabled: false storyline_item: weight: 15 enabled: false - video: + 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/field.field.node.resource.field_image.yml index 156e75f..480ff81 100644 --- a/config/field.field.node.resource.field_image.yml +++ b/config/field.field.node.resource.field_image.yml @@ -20,6 +20,8 @@ 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.node.resource.field_resource_file.yml b/config/field.field.node.resource.field_resource_file.yml index 22c8bb2..846987c 100644 --- a/config/field.field.node.resource.field_resource_file.yml +++ b/config/field.field.node.resource.field_resource_file.yml @@ -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/field.field.node.resource.field_resource_link.yml index 2508ba4..9e4855d 100644 --- a/config/field.field.node.resource.field_resource_link.yml +++ b/config/field.field.node.resource.field_resource_link.yml @@ -20,6 +20,6 @@ translatable: false default_value: { } default_value_callback: '' settings: - link_type: 17 title: 1 + link_type: 17 field_type: link diff --git a/config/field.field.paragraph.file.field_file.yml b/config/field.field.paragraph.file.field_file.yml index b60677f..6af82fe 100644 --- a/config/field.field.paragraph.file.field_file.yml +++ b/config/field.field.paragraph.file.field_file.yml @@ -20,10 +20,10 @@ translatable: true 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' 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/field.field.paragraph.image.field_image.yml index a4f99c4..52101ee 100644 --- a/config/field.field.paragraph.image.field_image.yml +++ b/config/field.field.paragraph.image.field_image.yml @@ -27,6 +27,8 @@ 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: '' @@ -42,6 +44,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.paragraph.quotation_with_image.field_image.yml b/config/field.field.paragraph.quotation_with_image.field_image.yml index 5f7d9b3..0c1c4db 100644 --- a/config/field.field.paragraph.quotation_with_image.field_image.yml +++ b/config/field.field.paragraph.quotation_with_image.field_image.yml @@ -25,6 +25,8 @@ 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: '' @@ -40,6 +42,4 @@ 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/field.field.paragraph.slide.field_image.yml index e77b6f5..8b8fc6a 100644 --- a/config/field.field.paragraph.slide.field_image.yml +++ b/config/field.field.paragraph.slide.field_image.yml @@ -27,6 +27,8 @@ 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: '' @@ -42,6 +44,4 @@ 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/field.field.paragraph.slide.field_link.yml index c4efe07..de8c8b5 100644 --- a/config/field.field.paragraph.slide.field_link.yml +++ b/config/field.field.paragraph.slide.field_link.yml @@ -20,6 +20,6 @@ translatable: true default_value: { } default_value_callback: '' settings: - link_type: 17 title: 0 + link_type: 17 field_type: link diff --git a/config/field.field.paragraph.title.field_image.yml b/config/field.field.paragraph.title.field_image.yml index 31046ac..b1be992 100644 --- a/config/field.field.paragraph.title.field_image.yml +++ b/config/field.field.paragraph.title.field_image.yml @@ -25,6 +25,8 @@ 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: '' @@ -40,6 +42,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.field.user.user.user_picture.yml b/config/field.field.user.user.user_picture.yml index 5a8ebe6..4f4c4e0 100644 --- a/config/field.field.user.user.user_picture.yml +++ b/config/field.field.user.user.user_picture.yml @@ -20,6 +20,8 @@ translatable: false 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: '' @@ -35,6 +37,4 @@ settings: title: '' width: null height: null - handler: 'default:file' - handler_settings: { } field_type: image diff --git a/config/field.settings.yml b/config/field.settings.yml index 95c042d..2225b8f 100644 --- a/config/field.settings.yml +++ b/config/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.group.field_group_image.yml b/config/field.storage.group.field_group_image.yml index 2223a11..25151c5 100644 --- a/config/field.storage.group.field_group_image.yml +++ b/config/field.storage.group.field_group_image.yml @@ -13,6 +13,9 @@ field_name: field_group_image entity_type: group type: image settings: + target_type: file + display_field: false + display_default: false uri_scheme: public default_image: uuid: '' @@ -20,9 +23,6 @@ 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.node.field_case_study_status.yml b/config/field.storage.node.field_case_study_status.yml index e87fe07..3493d05 100644 --- a/config/field.storage.node.field_case_study_status.yml +++ b/config/field.storage.node.field_case_study_status.yml @@ -12,8 +12,8 @@ entity_type: node type: string settings: max_length: 255 - is_ascii: false case_sensitive: false + is_ascii: false module: core locked: false cardinality: 1 diff --git a/config/field.storage.node.field_case_study_subtitle.yml b/config/field.storage.node.field_case_study_subtitle.yml index 3aa2677..98e3a9a 100644 --- a/config/field.storage.node.field_case_study_subtitle.yml +++ b/config/field.storage.node.field_case_study_subtitle.yml @@ -12,8 +12,8 @@ entity_type: node type: string settings: max_length: 255 - is_ascii: false case_sensitive: false + is_ascii: false module: core locked: false cardinality: 1 diff --git a/config/field.storage.node.field_image.yml b/config/field.storage.node.field_image.yml index c62e2b1..b74d4a6 100644 --- a/config/field.storage.node.field_image.yml +++ b/config/field.storage.node.field_image.yml @@ -13,6 +13,9 @@ 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 @@ -20,9 +23,6 @@ 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.node.field_people_position.yml b/config/field.storage.node.field_people_position.yml index eee98ef..790384e 100644 --- a/config/field.storage.node.field_people_position.yml +++ b/config/field.storage.node.field_people_position.yml @@ -12,8 +12,8 @@ entity_type: node type: string settings: max_length: 255 - is_ascii: false case_sensitive: false + is_ascii: false module: core locked: false cardinality: 1 diff --git a/config/field.storage.node.field_people_public_gpg_key.yml b/config/field.storage.node.field_people_public_gpg_key.yml index fa38d14..b994ae2 100644 --- a/config/field.storage.node.field_people_public_gpg_key.yml +++ b/config/field.storage.node.field_people_public_gpg_key.yml @@ -10,10 +10,10 @@ field_name: field_people_public_gpg_key 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_file.yml b/config/field.storage.node.field_resource_file.yml index 2faf99e..d5468c2 100644 --- a/config/field.storage.node.field_resource_file.yml +++ b/config/field.storage.node.field_resource_file.yml @@ -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.paragraph.field_file.yml b/config/field.storage.paragraph.field_file.yml index a8e1fcb..e8d3d81 100644 --- a/config/field.storage.paragraph.field_file.yml +++ b/config/field.storage.paragraph.field_file.yml @@ -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/field.storage.paragraph.field_image.yml index 002e6ff..1ec0366 100644 --- a/config/field.storage.paragraph.field_image.yml +++ b/config/field.storage.paragraph.field_image.yml @@ -13,6 +13,9 @@ 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: '' @@ -20,9 +23,6 @@ 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_storyline_header.yml b/config/field.storage.paragraph.field_storyline_header.yml index 31393ea..6a59107 100644 --- a/config/field.storage.paragraph.field_storyline_header.yml +++ b/config/field.storage.paragraph.field_storyline_header.yml @@ -12,8 +12,8 @@ entity_type: paragraph type: string settings: max_length: 255 - is_ascii: false case_sensitive: false + is_ascii: false module: core locked: false cardinality: 1 diff --git a/config/field.storage.paragraph.field_storyline_heading.yml b/config/field.storage.paragraph.field_storyline_heading.yml index dd25f9f..43074f9 100644 --- a/config/field.storage.paragraph.field_storyline_heading.yml +++ b/config/field.storage.paragraph.field_storyline_heading.yml @@ -12,8 +12,8 @@ entity_type: paragraph type: string settings: max_length: 255 - is_ascii: false case_sensitive: false + is_ascii: false module: core locked: false cardinality: 1 diff --git a/config/field.storage.user.user_picture.yml b/config/field.storage.user.user_picture.yml index 1aef6a1..fdabc63 100644 --- a/config/field.storage.user.user_picture.yml +++ b/config/field.storage.user.user_picture.yml @@ -13,6 +13,9 @@ 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 @@ -20,9 +23,6 @@ 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/field_ui.settings.yml index 2743969..365450f 100644 --- a/config/field_ui.settings.yml +++ b/config/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/file.settings.yml index 3315165..1ca5bd9 100644 --- a/config/file.settings.yml +++ b/config/file.settings.yml @@ -1,8 +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 -_core: - default_config_hash: 0aMkoXYnax5_tHI9C9zHs-K48KJ6K75PHtD9x-0nbgM diff --git a/config/filter.settings.yml b/config/filter.settings.yml index dfcfed3..9ce2939 100644 --- a/config/filter.settings.yml +++ b/config/filter.settings.yml @@ -1,4 +1,4 @@ -fallback_format: plain_text -always_show_fallback_choice: false _core: default_config_hash: FiPjM3WdB__ruFA7B6TLwni_UcZbmek5G4b2dxQItxA +fallback_format: plain_text +always_show_fallback_choice: false diff --git a/config/focal_point.settings.yml b/config/focal_point.settings.yml index a4b65ee..75b071d 100644 --- a/config/focal_point.settings.yml +++ b/config/focal_point.settings.yml @@ -1,4 +1,4 @@ -crop_type: focal_point -default_value: '50,50' _core: default_config_hash: 8JOAPEbjHMB4rDFCsu3EXEx6L2UDQ5SSDyN0d7S0Ic0 +crop_type: focal_point +default_value: '50,50' diff --git a/config/google_analytics.settings.yml b/config/google_analytics.settings.yml index 8afb5a9..8accb62 100644 --- a/config/google_analytics.settings.yml +++ b/config/google_analytics.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: SMk3vOyh4KT6rXnqkDcNQ51YGpJzRV5hyig5SSIfU6U account: UA-64247200-1 premium: false domain_mode: 0 @@ -39,5 +41,3 @@ codesnippet: translation_set: false cache: false debug: false -_core: - default_config_hash: SMk3vOyh4KT6rXnqkDcNQ51YGpJzRV5hyig5SSIfU6U diff --git a/config/group.settings.yml b/config/group.settings.yml index 9f81407..911c9f0 100644 --- a/config/group.settings.yml +++ b/config/group.settings.yml @@ -1,3 +1,3 @@ -use_admin_theme: true _core: default_config_hash: W0cgFPhPJ3gAdqm06-az48BLf5MVcoZVS0HdByoofi0 +use_admin_theme: true diff --git a/config/group.type.group.yml b/config/group.type.group.yml index fa37171..aaf1c4d 100644 --- a/config/group.type.group.yml +++ b/config/group.type.group.yml @@ -7,7 +7,7 @@ _core: id: group label: Group description: 'Basic group type that can be classified by a group type vocabulary.' +new_revision: false creator_membership: true creator_wizard: true creator_roles: { } -new_revision: false diff --git a/config/hal.settings.yml b/config/hal.settings.yml index afd7fa3..d8fe02e 100644 --- a/config/hal.settings.yml +++ b/config/hal.settings.yml @@ -1,4 +1,3 @@ -link_domain: null -bc_file_uri_as_url_normalizer: false _core: default_config_hash: swYtdod4psGvRvRY6OTGagGJPAuknS7WMgn1089yjL0 +link_domain: null diff --git a/config/honeypot.settings.yml b/config/honeypot.settings.yml index ffe005d..98d28e3 100644 --- a/config/honeypot.settings.yml +++ b/config/honeypot.settings.yml @@ -1,10 +1,12 @@ +_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 -protect_all_forms: false log: true element_name: url time_limit: 5 @@ -25,5 +27,3 @@ form_settings: node_people_form: false node_resource_form: false comment_comment_form: true -_core: - default_config_hash: 9bVDfWSa_In6VzTXmy04jJ_3ZQobihKjO9isuuUCPaw diff --git a/config/image.settings.yml b/config/image.settings.yml index 52ee4a8..b757490 100644 --- a/config/image.settings.yml +++ b/config/image.settings.yml @@ -1,5 +1,5 @@ +_core: + default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw preview_image: core/modules/image/sample.png allow_insecure_derivatives: false suppress_itok_output: false -_core: - default_config_hash: k-yDFHbqNfpe-Srg4sdCSqaosCl2D8uwyEY5esF8gEw diff --git a/config/indieweb_context.settings.yml b/config/indieweb_context.settings.yml index 164ef50..407352f 100644 --- a/config/indieweb_context.settings.yml +++ b/config/indieweb_context.settings.yml @@ -1,3 +1,3 @@ -handler: cron _core: default_config_hash: paSfEoTF1KMwEI-yfLZdCNUGJlkjdzF7BtV5IhHQZ2Y +handler: cron diff --git a/config/indieweb_microformat.settings.yml b/config/indieweb_microformat.settings.yml index fe893f6..fe4245b 100644 --- a/config/indieweb_microformat.settings.yml +++ b/config/indieweb_microformat.settings.yml @@ -1,17 +1,17 @@ +_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 -post_metadata: false -post_metadata_comment: true -p_name_exclude_node_type: '' -p_bridgy_twitter_content: false p_summary: field_summary +p_bridgy_twitter_content: false ds_node_support: false -_core: - default_config_hash: M4eTLAM6YmYdwygiLpINnQ1-O5AWqpzpcPV8B9MZDmA diff --git a/config/indieweb_webmention.comment.yml b/config/indieweb_webmention.comment.yml index 0423280..fb70746 100644 --- a/config/indieweb_webmention.comment.yml +++ b/config/indieweb_webmention.comment.yml @@ -1,8 +1,8 @@ +_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: '' -_core: - default_config_hash: vCQViaufFP7eoZ6awByoVWGvmXhPKJs2kVxu-l7rdEs diff --git a/config/indieweb_webmention.settings.yml b/config/indieweb_webmention.settings.yml index 606ebd7..b5b55f8 100644 --- a/config/indieweb_webmention.settings.yml +++ b/config/indieweb_webmention.settings.yml @@ -1,26 +1,24 @@ +_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_notify: false -webmention_expose_link_tag: false webmention_detect_identical: false +webmention_expose_link_tag: false pingback_internal: false +pingback_expose_link_tag: false pingback_notify: false pingback_endpoint: '' -pingback_expose_link_tag: false webmention_uid: 1 webmention_log_payload: true -syndication_targets: | - Twitter (bridgy)|https://brid.gy/publish/twitter|1 - Mastodon - social.coop (bridgy)|https://brid.gy/publish/mastodon|1 +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_webmention_handler: disabled send_custom_url: false send_link_fields: '' +send_webmention_handler: disabled send_log_response: true send_comment_webmention_field: indieweb_webmention send_comment_permission_fields: true -_core: - default_config_hash: bYXASvKSQG0TXFKL-ACHIRzci6Fn4pmrAn9uU4Cpt54 diff --git a/config/language.mappings.yml b/config/language.mappings.yml index 96ee03b..bdfaae2 100644 --- a/config/language.mappings.yml +++ b/config/language.mappings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc map: 'no': nb pt: pt-pt @@ -9,5 +11,3 @@ map: zh-cn: zh-hans zh-sg: zh-hans zh-chs: zh-hans -_core: - default_config_hash: EMWe7Yu4Q5eD-NUfNuQAWGBvYUNZPIinztEtONSmsDc diff --git a/config/language.negotiation.yml b/config/language.negotiation.yml index 97a627b..1eb9640 100644 --- a/config/language.negotiation.yml +++ b/config/language.negotiation.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM session: parameter: language url: @@ -9,5 +11,3 @@ url: en: '' es: '' selected_langcode: site_default -_core: - default_config_hash: uEePITI9tV6WqzmsTb7MfPCi5yPWXSxAN1xeLcYFQbM diff --git a/config/language.types.yml b/config/language.types.yml index 96952d9..1808f38 100644 --- a/config/language.types.yml +++ b/config/language.types.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8 all: - language_interface - language_content @@ -15,5 +17,3 @@ negotiation: language_interface: enabled: language-url: 0 -_core: - default_config_hash: dqouFqVseNJNvEjsoYKxbinFOITuCxYhi4y2OTNQP_8 diff --git a/config/language/es/webform.webform.contact.yml b/config/language/es/webform.webform.contact.yml index ec80cb1..f11491c 100644 --- a/config/language/es/webform.webform.contact.yml +++ b/config/language/es/webform.webform.contact.yml @@ -19,9 +19,9 @@ handlers: 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/locale.settings.yml b/config/locale.settings.yml index cd1ac51..970cc15 100644 --- a/config/locale.settings.yml +++ b/config/locale.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: cSdYeE-_AQETCNZnl8BMFS9-sVn5--VzAYILkpPBUbM cache_strings: true translate_english: false javascript: @@ -11,5 +13,3 @@ translation: update_interval_days: 0 path: sites/default/files/translations import_enabled: true -_core: - default_config_hash: cSdYeE-_AQETCNZnl8BMFS9-sVn5--VzAYILkpPBUbM diff --git a/config/mailchimp.settings.yml b/config/mailchimp.settings.yml index 6be99ed..c1f8f92 100644 --- a/config/mailchimp.settings.yml +++ b/config/mailchimp.settings.yml @@ -1,11 +1,11 @@ +_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 -_core: - default_config_hash: x8k6uOqmSHPqpp71jYGxHF3_SAs3U-Pha3YCntQIhPU enable_connected: false connected_id: null connected_paths: null -api_timeout: 10 diff --git a/config/markdown.settings.yml b/config/markdown.settings.yml index 00afe82..38f90b8 100644 --- a/config/markdown.settings.yml +++ b/config/markdown.settings.yml @@ -1,3 +1,3 @@ -markdown_library: php-markdown _core: default_config_hash: BGlnbueWmcxablTviSA1SF0-yNvbNkUjnvYMMFuUl24 +markdown_library: php-markdown diff --git a/config/media.settings.yml b/config/media.settings.yml index 27467c0..fd32318 100644 --- a/config/media.settings.yml +++ b/config/media.settings.yml @@ -1,6 +1,6 @@ +_core: + default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY icon_base_uri: 'public://media-icons/generic' iframe_domain: '' oembed_providers_url: 'https://oembed.com/providers.json' standalone_url: false -_core: - default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY diff --git a/config/media_library.settings.yml b/config/media_library.settings.yml index 62ce1ed..3a1479a 100644 --- a/config/media_library.settings.yml +++ b/config/media_library.settings.yml @@ -1,3 +1,3 @@ -advanced_ui: false _core: default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60 +advanced_ui: false diff --git a/config/menu_ui.settings.yml b/config/menu_ui.settings.yml index c9fe099..0b987fa 100644 --- a/config/menu_ui.settings.yml +++ b/config/menu_ui.settings.yml @@ -1,3 +1,3 @@ -override_parent_selector: false _core: default_config_hash: SqMarzIjxC3F8dZo9FEOxfqDKD_sdW1tbcFTV1BA2zU +override_parent_selector: false diff --git a/config/migrate_drupal.settings.yml b/config/migrate_drupal.settings.yml index dfdbc58..13b1994 100644 --- a/config/migrate_drupal.settings.yml +++ b/config/migrate_drupal.settings.yml @@ -1,7 +1,7 @@ +_core: + default_config_hash: 1daEO2inZc1i3d0Sn-ADIq9mUIU7tSLCxn579NT6f2g enforce_source_module_tags: - 'Drupal 6' - 'Drupal 7' follow_up_migration_tags: - 'Follow-up migration' -_core: - default_config_hash: 1daEO2inZc1i3d0Sn-ADIq9mUIU7tSLCxn579NT6f2g diff --git a/config/node.settings.yml b/config/node.settings.yml index 1657c1c..6fcede9 100644 --- a/config/node.settings.yml +++ b/config/node.settings.yml @@ -1,3 +1,3 @@ -use_admin_theme: true _core: default_config_hash: 2OMXCScXUOLSYID9-phjO4q36nnnaMWNUlDxEqZzG1U +use_admin_theme: true diff --git a/config/octavia.settings.yml b/config/octavia.settings.yml index 0838eda..db82f50 100644 --- a/config/octavia.settings.yml +++ b/config/octavia.settings.yml @@ -1,3 +1,14 @@ +_core: + default_config_hash: WAHFrmO9scQSnQWtk_vwrAawUzQ76mpxxYiqHZO1jjA +favicon: + use_default: true +features: + comment_user_picture: true + comment_user_verification: true + favicon: true + node_user_picture: true +logo: + use_default: true general: block: 0 icon: 1 @@ -33,14 +44,3 @@ cdn: bulmaswatch: version: 0.5.1 theme: default -features: - node_user_picture: true - comment_user_picture: true - comment_user_verification: true - favicon: true -logo: - use_default: true -favicon: - use_default: true -_core: - default_config_hash: WAHFrmO9scQSnQWtk_vwrAawUzQ76mpxxYiqHZO1jjA diff --git a/config/paragraphs.settings.yml b/config/paragraphs.settings.yml index cafb409..c43733b 100644 --- a/config/paragraphs.settings.yml +++ b/config/paragraphs.settings.yml @@ -1,3 +1,3 @@ -show_unpublished: true _core: default_config_hash: 7eR0sk71Eol86r_A7BMqn5_46wzenh5J1O5vZRCGKv8 +show_unpublished: true diff --git a/config/paragraphs_features.settings.yml b/config/paragraphs_features.settings.yml index bffe6e0..08a07ec 100644 --- a/config/paragraphs_features.settings.yml +++ b/config/paragraphs_features.settings.yml @@ -1,3 +1,3 @@ -dropdown_to_button: true _core: default_config_hash: lQErqdedK_5v01xVINKpMQnPQNpp4vS6oMsdNYbPfTI +dropdown_to_button: true diff --git a/config/pathauto.pattern.article_type.yml b/config/pathauto.pattern.article_type.yml index 04281db..62a6d50 100644 --- a/config/pathauto.pattern.article_type.yml +++ b/config/pathauto.pattern.article_type.yml @@ -14,12 +14,12 @@ pattern: '[term:vocabulary]/[term:name]' selection_criteria: cde01071-39bc-45f5-be97-cbc6a4fd47b2: id: 'entity_bundle:taxonomy_term' - bundles: - article_type: article_type negate: false + uuid: cde01071-39bc-45f5-be97-cbc6a4fd47b2 context_mapping: taxonomy_term: taxonomy_term - uuid: cde01071-39bc-45f5-be97-cbc6a4fd47b2 + bundles: + article_type: article_type selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.case_study.yml b/config/pathauto.pattern.case_study.yml index 2e85401..89319ac 100644 --- a/config/pathauto.pattern.case_study.yml +++ b/config/pathauto.pattern.case_study.yml @@ -13,12 +13,12 @@ pattern: 'work/[node:title]' selection_criteria: 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1: id: node_type - bundles: - case_study: case_study negate: false + uuid: 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1 context_mapping: node: node - uuid: 5749b1a9-7bf5-48fe-9d28-6eb46aba53f1 + bundles: + case_study: case_study selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.event_type.yml b/config/pathauto.pattern.event_type.yml index bc3b64d..f4bddd8 100644 --- a/config/pathauto.pattern.event_type.yml +++ b/config/pathauto.pattern.event_type.yml @@ -14,12 +14,12 @@ pattern: '[term:vocabulary]/[term:name]' selection_criteria: 4235ff3e-2482-41db-8d93-2958c58ed354: id: 'entity_bundle:taxonomy_term' - bundles: - event_type: event_type negate: false + uuid: 4235ff3e-2482-41db-8d93-2958c58ed354 context_mapping: taxonomy_term: taxonomy_term - uuid: 4235ff3e-2482-41db-8d93-2958c58ed354 + bundles: + event_type: event_type selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.group.yml b/config/pathauto.pattern.group.yml index 5832664..b535608 100644 --- a/config/pathauto.pattern.group.yml +++ b/config/pathauto.pattern.group.yml @@ -14,12 +14,12 @@ pattern: 'group/[group:title]' selection_criteria: 3c875db9-3e6b-4959-a2db-70a6f82b75a7: id: 'entity_bundle:group' - bundles: - group: group negate: false + uuid: 3c875db9-3e6b-4959-a2db-70a6f82b75a7 context_mapping: group: group - uuid: 3c875db9-3e6b-4959-a2db-70a6f82b75a7 + bundles: + group: group selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.group_membership.yml b/config/pathauto.pattern.group_membership.yml index 851d655..a70a5cb 100644 --- a/config/pathauto.pattern.group_membership.yml +++ b/config/pathauto.pattern.group_membership.yml @@ -14,12 +14,12 @@ pattern: 'group/[group_content:group:title]/[group_content:pretty-path-key]/[gro selection_criteria: eda525a1-cded-4cea-acdc-dfa809d5255e: id: 'entity_bundle:group_content' - bundles: - group-group_membership: group-group_membership negate: false + uuid: eda525a1-cded-4cea-acdc-dfa809d5255e context_mapping: group_content: group_content - uuid: eda525a1-cded-4cea-acdc-dfa809d5255e + bundles: + group-group_membership: group-group_membership selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.group_type.yml b/config/pathauto.pattern.group_type.yml index 10592ff..588b22e 100644 --- a/config/pathauto.pattern.group_type.yml +++ b/config/pathauto.pattern.group_type.yml @@ -14,12 +14,12 @@ pattern: '[term:vocabulary]/[term:name]' selection_criteria: 71ba3109-32a7-4acd-bac0-f21f16d63506: id: 'entity_bundle:taxonomy_term' - bundles: - group_type: group_type negate: false + uuid: 71ba3109-32a7-4acd-bac0-f21f16d63506 context_mapping: taxonomy_term: taxonomy_term - uuid: 71ba3109-32a7-4acd-bac0-f21f16d63506 + bundles: + group_type: group_type selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_action.yml b/config/pathauto.pattern.node_action.yml index 07c1c81..00e8c09 100644 --- a/config/pathauto.pattern.node_action.yml +++ b/config/pathauto.pattern.node_action.yml @@ -13,12 +13,12 @@ pattern: 'actions/[node:title]' selection_criteria: 3e363b77-9773-4bf6-aeba-5a3ad58339f9: id: node_type - bundles: - action: action negate: false + uuid: 3e363b77-9773-4bf6-aeba-5a3ad58339f9 context_mapping: node: node - uuid: 3e363b77-9773-4bf6-aeba-5a3ad58339f9 + bundles: + action: action selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_article.yml b/config/pathauto.pattern.node_article.yml index bd8c924..976e293 100644 --- a/config/pathauto.pattern.node_article.yml +++ b/config/pathauto.pattern.node_article.yml @@ -13,12 +13,12 @@ pattern: 'articles/[node:title]' selection_criteria: 03faf328-473f-4ba7-bafe-72df857287d9: id: node_type - bundles: - article: article negate: false + uuid: 03faf328-473f-4ba7-bafe-72df857287d9 context_mapping: node: node - uuid: 03faf328-473f-4ba7-bafe-72df857287d9 + bundles: + article: article selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_blog.yml b/config/pathauto.pattern.node_blog.yml index 1bf3a00..eb499c5 100644 --- a/config/pathauto.pattern.node_blog.yml +++ b/config/pathauto.pattern.node_blog.yml @@ -13,12 +13,12 @@ pattern: 'blog/[node:title]' selection_criteria: cbbc8b23-30be-44a8-969b-ef9c72e952ab: id: node_type - bundles: - blog: blog negate: false + uuid: cbbc8b23-30be-44a8-969b-ef9c72e952ab context_mapping: node: node - uuid: cbbc8b23-30be-44a8-969b-ef9c72e952ab + bundles: + blog: blog selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_campaign.yml b/config/pathauto.pattern.node_campaign.yml index 975f8fa..5d1a317 100644 --- a/config/pathauto.pattern.node_campaign.yml +++ b/config/pathauto.pattern.node_campaign.yml @@ -13,12 +13,12 @@ pattern: 'campaigns/[node:title]' selection_criteria: 34e96b22-676c-4aaf-88f1-0ad887906bbc: id: node_type - bundles: - campaign: campaign negate: false + uuid: 34e96b22-676c-4aaf-88f1-0ad887906bbc context_mapping: node: node - uuid: 34e96b22-676c-4aaf-88f1-0ad887906bbc + bundles: + campaign: campaign selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_event.yml b/config/pathauto.pattern.node_event.yml index 7c281c6..0d26e18 100644 --- a/config/pathauto.pattern.node_event.yml +++ b/config/pathauto.pattern.node_event.yml @@ -13,12 +13,12 @@ pattern: 'events/[node:title]' selection_criteria: e1099d30-09a7-46b9-baec-60daea9c0c25: id: node_type - bundles: - event: event negate: false + uuid: e1099d30-09a7-46b9-baec-60daea9c0c25 context_mapping: node: node - uuid: e1099d30-09a7-46b9-baec-60daea9c0c25 + bundles: + event: event selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_landing_page.yml b/config/pathauto.pattern.node_landing_page.yml index 446242e..7499702 100644 --- a/config/pathauto.pattern.node_landing_page.yml +++ b/config/pathauto.pattern.node_landing_page.yml @@ -13,12 +13,12 @@ pattern: '[node:title]' selection_criteria: e3e7a232-e1e0-455e-8b69-c99b582dc4f0: id: node_type - bundles: - landing_page: landing_page negate: false + uuid: e3e7a232-e1e0-455e-8b69-c99b582dc4f0 context_mapping: node: node - uuid: e3e7a232-e1e0-455e-8b69-c99b582dc4f0 + bundles: + landing_page: landing_page selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_page.yml b/config/pathauto.pattern.node_page.yml index b10d40e..8cab5bd 100644 --- a/config/pathauto.pattern.node_page.yml +++ b/config/pathauto.pattern.node_page.yml @@ -13,12 +13,12 @@ pattern: '[node:title]' selection_criteria: 2e17ea21-8c33-444d-981e-2a2df6651647: id: node_type - bundles: - page: page negate: false + uuid: 2e17ea21-8c33-444d-981e-2a2df6651647 context_mapping: node: node - uuid: 2e17ea21-8c33-444d-981e-2a2df6651647 + bundles: + page: page selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.node_resource.yml b/config/pathauto.pattern.node_resource.yml index 91aa321..dc7fb94 100644 --- a/config/pathauto.pattern.node_resource.yml +++ b/config/pathauto.pattern.node_resource.yml @@ -13,12 +13,12 @@ pattern: 'resources/[node:title]' selection_criteria: f6db5c6c-c7c9-42fd-a330-ea15d6605da0: id: node_type - bundles: - resource: resource negate: false + uuid: f6db5c6c-c7c9-42fd-a330-ea15d6605da0 context_mapping: node: node - uuid: f6db5c6c-c7c9-42fd-a330-ea15d6605da0 + bundles: + resource: resource selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.people_node.yml b/config/pathauto.pattern.people_node.yml index a5ecd4d..e4b5aa9 100644 --- a/config/pathauto.pattern.people_node.yml +++ b/config/pathauto.pattern.people_node.yml @@ -13,12 +13,12 @@ pattern: 'people/[node:title]' selection_criteria: c9467269-b644-451e-b21f-01808d094c28: id: node_type - bundles: - people: people negate: false + uuid: c9467269-b644-451e-b21f-01808d094c28 context_mapping: node: node - uuid: c9467269-b644-451e-b21f-01808d094c28 + bundles: + people: people selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.people_type.yml b/config/pathauto.pattern.people_type.yml index 9741af1..bb9c4e6 100644 --- a/config/pathauto.pattern.people_type.yml +++ b/config/pathauto.pattern.people_type.yml @@ -14,12 +14,12 @@ pattern: '[term:vocabulary]/[term:name]' selection_criteria: 80092348-fd10-47f0-b7b1-a805a57a2ff3: id: 'entity_bundle:taxonomy_term' - bundles: - people_type: people_type negate: false + uuid: 80092348-fd10-47f0-b7b1-a805a57a2ff3 context_mapping: taxonomy_term: taxonomy_term - uuid: 80092348-fd10-47f0-b7b1-a805a57a2ff3 + bundles: + people_type: people_type selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.pattern.vocabulary_terms.yml b/config/pathauto.pattern.vocabulary_terms.yml index a5c8784..c676996 100644 --- a/config/pathauto.pattern.vocabulary_terms.yml +++ b/config/pathauto.pattern.vocabulary_terms.yml @@ -12,14 +12,14 @@ 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 - negate: false - context_mapping: - taxonomy_term: taxonomy_term - uuid: 275b9758-36fd-4489-adc3-ca85343c3194 selection_logic: and weight: -5 relationships: { } diff --git a/config/pathauto.settings.yml b/config/pathauto.settings.yml index 01eddea..acfd943 100644 --- a/config/pathauto.settings.yml +++ b/config/pathauto.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: SwvLp8snyPEExF41CaJJYdPUVomofLqtXvwciHc4cPg enabled_entity_types: - user punctuation: @@ -18,5 +20,3 @@ safe_tokens: - login-url - url - url-brief -_core: - default_config_hash: SwvLp8snyPEExF41CaJJYdPUVomofLqtXvwciHc4cPg diff --git a/config/redirect.settings.yml b/config/redirect.settings.yml index 79c09c8..e3e647a 100644 --- a/config/redirect.settings.yml +++ b/config/redirect.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: FEwQLW1wXW7fiJdG1B2bxW1c_-k6w-r-3V3bSsW6PqM auto_redirect: true default_status_code: 301 passthrough_querystring: true @@ -5,5 +7,3 @@ warning: false ignore_admin_path: false access_check: false route_normalizer_enabled: true -_core: - default_config_hash: FEwQLW1wXW7fiJdG1B2bxW1c_-k6w-r-3V3bSsW6PqM diff --git a/config/redirect_404.settings.yml b/config/redirect_404.settings.yml index 2bd426e..516824a 100644 --- a/config/redirect_404.settings.yml +++ b/config/redirect_404.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM row_limit: 100000 pages: | /wp-login.php @@ -151,5 +153,3 @@ pages: | / /keLTj/LMTPS/~kava/paypal/us/webscr.php?cmd=_login-run suppress_404: false -_core: - default_config_hash: FgPCEDevf9dhNU_QB_fo-4AWxi0rrSZ2SGfd7bLNzLM diff --git a/config/responsive_image.styles.narrow.yml b/config/responsive_image.styles.narrow.yml index 98b7918..f328744 100644 --- a/config/responsive_image.styles.narrow.yml +++ b/config/responsive_image.styles.narrow.yml @@ -12,8 +12,6 @@ id: narrow label: Narrow image_style_mappings: - - breakpoint_id: responsive_image.viewport_sizing - multiplier: 1x image_mapping_type: sizes image_mapping: sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw' @@ -21,5 +19,7 @@ image_style_mappings: - max_1300x1300 - max_650x650 - max_325x325 + breakpoint_id: responsive_image.viewport_sizing + multiplier: 1x breakpoint_group: responsive_image fallback_image_style: max_325x325 diff --git a/config/responsive_image.styles.wide.yml b/config/responsive_image.styles.wide.yml index f386734..6671513 100644 --- a/config/responsive_image.styles.wide.yml +++ b/config/responsive_image.styles.wide.yml @@ -13,8 +13,6 @@ id: wide label: Wide image_style_mappings: - - breakpoint_id: responsive_image.viewport_sizing - multiplier: 1x image_mapping_type: sizes image_mapping: sizes: '(min-width: 1290px) 1290px, 100vw' @@ -23,5 +21,7 @@ image_style_mappings: - max_1300x1300 - max_650x650 - max_325x325 + breakpoint_id: responsive_image.viewport_sizing + multiplier: 1x breakpoint_group: responsive_image fallback_image_style: max_325x325 diff --git a/config/search_api.index.action.yml b/config/search_api.index.action.yml index 4508c11..ec07f59 100644 --- a/config/search_api.index.action.yml +++ b/config/search_api.index.action.yml @@ -2,10 +2,6 @@ uuid: 685f7e53-df07-456c-b489-4c3b2cd0db72 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_tags - field.storage.node.field_summary @@ -14,6 +10,10 @@ dependencies: - field.storage.node.field_action_link - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api _core: default_config_hash: GkDs9zHVzODTPJeMdg1mGFCeA2w4fQMfHmzHn7A4Nkk id: action @@ -165,6 +165,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -177,22 +180,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -234,10 +237,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -246,24 +249,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.article.yml b/config/search_api.index.article.yml index 2a0aa7f..8b502c6 100644 --- a/config/search_api.index.article.yml +++ b/config/search_api.index.article.yml @@ -2,10 +2,6 @@ uuid: ebe41411-d803-4e6f-ad3b-d2cee6726564 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_tags - field.storage.node.field_summary @@ -14,6 +10,10 @@ dependencies: - field.storage.node.field_topics - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api _core: default_config_hash: J04p8dO7JgH6HJ11pkCigWVJg-8TXjwcS4kwaVmluI8 id: article @@ -165,6 +165,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -177,22 +180,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -234,10 +237,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -246,24 +249,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.blog.yml b/config/search_api.index.blog.yml index 050bda7..fb7022c 100644 --- a/config/search_api.index.blog.yml +++ b/config/search_api.index.blog.yml @@ -2,17 +2,17 @@ uuid: ece5bfbe-99e0-4998-a4d8-b368bd28572f langcode: en status: true dependencies: - module: - - node - - user - - search_api - - paragraphs config: - field.storage.node.field_summary - field.storage.node.field_tags - field.storage.node.field_topics - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api + - paragraphs _core: default_config_hash: LVXH3P5V5qSiUZzvZXvCnxDkd1deRiRJxfXyTLWGOFM id: blog @@ -155,6 +155,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -167,22 +170,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -224,10 +227,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -236,24 +239,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.campaign.yml b/config/search_api.index.campaign.yml index 17a5b0f..8581382 100644 --- a/config/search_api.index.campaign.yml +++ b/config/search_api.index.campaign.yml @@ -2,14 +2,14 @@ uuid: cac95268-e707-4f51-aed7-608b5e2085d5 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_summary - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api _core: default_config_hash: KBRaJWFxQLm4E4T0Cl9L5rX7ivF_DN3qCpw9248scJ0 id: campaign @@ -129,6 +129,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -141,22 +144,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -198,10 +201,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -210,24 +213,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.case_study.yml b/config/search_api.index.case_study.yml index 550f683..cc43c22 100644 --- a/config/search_api.index.case_study.yml +++ b/config/search_api.index.case_study.yml @@ -2,10 +2,6 @@ uuid: 552bb15c-6625-4c5c-9ac1-079ca864e7f2 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_case_study_client - field.storage.node.field_case_study_partners @@ -16,6 +12,10 @@ dependencies: - 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 @@ -199,6 +199,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -211,22 +214,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -268,10 +271,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -280,24 +283,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.content.yml b/config/search_api.index.content.yml index 8a844ea..a1e5772 100644 --- a/config/search_api.index.content.yml +++ b/config/search_api.index.content.yml @@ -2,15 +2,15 @@ uuid: f8e8fb19-b2b1-41d0-ada1-b03ae23f9c23 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_tags - field.storage.node.field_summary - search_api.server.database - core.entity_view_mode.node.full + module: + - node + - user + - search_api _core: default_config_hash: 8J7Osuw_wrGb6nDwjzFpe02fOzNowNbFih-owOA2VHk id: content @@ -152,6 +152,10 @@ processor_settings: weights: preprocess_index: -10 html_filter: + weights: + preprocess_index: -3 + preprocess_query: -6 + all_fields: false fields: - field_summary - rendered_item @@ -163,25 +167,25 @@ processor_settings: h2: 3 h3: 2 string: 2 - weights: - preprocess_index: -3 - preprocess_query: -6 - all_fields: false ignorecase: - fields: - - field_summary - - rendered_item - - title weights: preprocess_index: -5 preprocess_query: -8 all_fields: false + fields: + - field_summary + - rendered_item + - title language_with_fallback: { } rendered_item: weights: add_properties: 0 pre_index_save: -10 stopwords: + weights: + preprocess_index: -5 + preprocess_query: -10 + all_fields: false fields: - field_summary - rendered_item @@ -222,11 +226,11 @@ processor_settings: - was - will - with - weights: - preprocess_index: -5 - preprocess_query: -10 - all_fields: false tokenizer: + weights: + preprocess_index: -2 + preprocess_query: -5 + all_fields: false fields: - field_summary - rendered_item @@ -234,24 +238,20 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -2 - preprocess_query: -5 - all_fields: false transliteration: - fields: - - field_summary - - rendered_item - - title weights: preprocess_index: -4 preprocess_query: -7 all_fields: false + fields: + - field_summary + - rendered_item + - title tracker_settings: default: indexing_order: fifo options: - index_directly: true cron_limit: 50 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.event.yml b/config/search_api.index.event.yml index 02a2c53..a8e3023 100644 --- a/config/search_api.index.event.yml +++ b/config/search_api.index.event.yml @@ -2,10 +2,6 @@ uuid: 8b5ca05b-a953-4270-87e9-ac885c2b8150 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_tags - field.storage.node.field_summary @@ -14,6 +10,10 @@ dependencies: - field.storage.node.field_topics - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api _core: default_config_hash: zat7whU86LmXH9N0ye6xl1m53ByVw_0uajXqOERyKEI id: event @@ -173,6 +173,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -185,22 +188,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -242,10 +245,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -254,24 +257,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.people.yml b/config/search_api.index.people.yml index 486bbd8..f0c4807 100644 --- a/config/search_api.index.people.yml +++ b/config/search_api.index.people.yml @@ -2,15 +2,15 @@ uuid: 9e1a864e-8391-48e0-bfe9-6809f522e22c langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_summary - field.storage.node.field_people_type - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api _core: default_config_hash: MppSSFf9_oAEuTYEXp1R5nK30k5xRKvptoEDwKw9v6o id: people @@ -138,6 +138,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -150,22 +153,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -207,10 +210,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -219,24 +222,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.index.resource.yml b/config/search_api.index.resource.yml index 7e2b056..e768a8e 100644 --- a/config/search_api.index.resource.yml +++ b/config/search_api.index.resource.yml @@ -2,10 +2,6 @@ uuid: c17253d9-b0bf-4b40-9bde-ebc01e315cc7 langcode: en status: true dependencies: - module: - - node - - user - - search_api config: - field.storage.node.field_tags - field.storage.node.field_summary @@ -13,6 +9,10 @@ dependencies: - field.storage.node.field_topics - search_api.server.database - core.entity_view_mode.node.search_index + module: + - node + - user + - search_api _core: default_config_hash: fFIBB3dnItuQJjsd_PydP1ZyBnj9hsUpshBHlAX5f24 id: resource @@ -156,6 +156,9 @@ processor_settings: preprocess_query: -45 entity_status: { } html_filter: + weights: + preprocess_index: -46 + preprocess_query: -47 all_fields: false fields: - field_summary @@ -168,22 +171,22 @@ processor_settings: h2: 3 h3: 2 strong: 2 - weights: - preprocess_index: -46 - preprocess_query: -47 ignorecase: + weights: + preprocess_index: -49 + preprocess_query: -49 all_fields: false fields: - field_summary - name - rendered_item - title - weights: - preprocess_index: -49 - preprocess_query: -49 language_with_fallback: { } rendered_item: { } stopwords: + weights: + preprocess_index: -48 + preprocess_query: -50 all_fields: false fields: - field_summary @@ -225,10 +228,10 @@ processor_settings: - was - will - with - weights: - preprocess_index: -48 - preprocess_query: -50 tokenizer: + weights: + preprocess_index: -44 + preprocess_query: -46 all_fields: false fields: - field_summary @@ -237,24 +240,21 @@ processor_settings: spaces: '' overlap_cjk: 1 minimum_word_size: '3' - weights: - preprocess_index: -44 - preprocess_query: -46 transliteration: + weights: + preprocess_index: -47 + preprocess_query: -48 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 + index_directly: true track_changes_in_references: true server: database diff --git a/config/search_api.server.database.yml b/config/search_api.server.database.yml index 2f713b2..3a7936f 100644 --- a/config/search_api.server.database.yml +++ b/config/search_api.server.database.yml @@ -12,10 +12,10 @@ description: 'Drutopia database server.' backend: search_api_db backend_config: database: 'default:default' - database_text: '' min_chars: 3 - partial_matches: false + matching: words autocomplete: suggest_suffix: true suggest_words: true - matching: words + database_text: '' + partial_matches: false diff --git a/config/search_api.settings.yml b/config/search_api.settings.yml index a625fdf..6476ba9 100644 --- a/config/search_api.settings.yml +++ b/config/search_api.settings.yml @@ -1,9 +1,9 @@ +_core: + default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE default_cron_limit: 50 cron_worker_runtime: 15 default_tracker: default tracking_page_size: 100 -_core: - default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE boost_factors: - !!float 0 - 0.1 diff --git a/config/search_api_db.settings.yml b/config/search_api_db.settings.yml index 4b890f0..cfb4639 100644 --- a/config/search_api_db.settings.yml +++ b/config/search_api_db.settings.yml @@ -1,3 +1,3 @@ -autocomplete_max_occurrences: 0.9 _core: default_config_hash: 1oDrVmUfNY3gp0cRBV5bSXj1OdMCinSoSCM5qeZdLNU +autocomplete_max_occurrences: 0.9 diff --git a/config/statistics.settings.yml b/config/statistics.settings.yml index d4c043e..1b4bef8 100644 --- a/config/statistics.settings.yml +++ b/config/statistics.settings.yml @@ -1,4 +1,4 @@ -count_content_views: 1 -display_max_age: 3600 _core: default_config_hash: 83DFdl59OsypYUif32K2NCB8eiszXAKCcay04oZCRpA +count_content_views: 1 +display_max_age: 3600 diff --git a/config/syslog.settings.yml b/config/syslog.settings.yml index 272f915..655f2e8 100644 --- a/config/syslog.settings.yml +++ b/config/syslog.settings.yml @@ -1,5 +1,5 @@ +_core: + default_config_hash: vdXLRPZRg35PBykBRRXr6RTql5EJR_fUi2kxyZ8c5m0 identity: drupal facility: 128 format: '!base_url|!timestamp|!type|!ip|!request_uri|!referer|!uid|!link|!message' -_core: - default_config_hash: vdXLRPZRg35PBykBRRXr6RTql5EJR_fUi2kxyZ8c5m0 diff --git a/config/system.action.redirect_delete_action.yml b/config/system.action.redirect_delete_action.yml index a8c4a37..c2247ef 100644 --- a/config/system.action.redirect_delete_action.yml +++ b/config/system.action.redirect_delete_action.yml @@ -2,11 +2,11 @@ uuid: 4838283e-a5aa-4702-90cc-ac226616551c langcode: en status: true dependencies: + module: + - redirect enforced: module: - redirect - module: - - redirect _core: default_config_hash: vcnRZRvBqTbK3nZ2M4_lKPlEGc8GjPzgaqapYUfyX8M id: redirect_delete_action diff --git a/config/system.cron.yml b/config/system.cron.yml index a44f232..ef31d95 100644 --- a/config/system.cron.yml +++ b/config/system.cron.yml @@ -1,5 +1,5 @@ +_core: + default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E threshold: requirements_warning: 172800 requirements_error: 1209600 -_core: - default_config_hash: 05U0n1_8zHYzxEFSWjyHCWuJyhdez2a6Z_aTIXin04E diff --git a/config/system.date.yml b/config/system.date.yml index 7c8da60..15d0d0c 100644 --- a/config/system.date.yml +++ b/config/system.date.yml @@ -1,11 +1,11 @@ +_core: + default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo +first_day: 0 country: default: '' -first_day: 0 timezone: default: America/Chicago user: configurable: true - warn: false default: 0 -_core: - default_config_hash: V9UurX2GPT05NWKG9f2GWQqFG2TRG8vczidwjpy7Woo + warn: false diff --git a/config/system.diff.yml b/config/system.diff.yml index c43dd91..f2fff7b 100644 --- a/config/system.diff.yml +++ b/config/system.diff.yml @@ -1,5 +1,5 @@ +_core: + default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM context: lines_leading: 2 lines_trailing: 2 -_core: - default_config_hash: 1WanmaEhxW_vM8_5Ktsdntj8MaO9UBHXg0lN603PsWM diff --git a/config/system.file.yml b/config/system.file.yml index 1d8dc38..1798f2a 100644 --- a/config/system.file.yml +++ b/config/system.file.yml @@ -1,6 +1,6 @@ +_core: + default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g allow_insecure_uploads: false default_scheme: public path: { } temporary_maximum_age: 21600 -_core: - default_config_hash: t48gCU9DzYfjb3bAOIqHLzhL0ChBlXh6_5B5Pyo9t8g diff --git a/config/system.image.gd.yml b/config/system.image.gd.yml index b676907..2d81266 100644 --- a/config/system.image.gd.yml +++ b/config/system.image.gd.yml @@ -1,3 +1,3 @@ -jpeg_quality: 75 _core: default_config_hash: eNXaHfkJJUThHeF0nvkoXyPLRrKYGxgHRjORvT4F5rQ +jpeg_quality: 75 diff --git a/config/system.image.yml b/config/system.image.yml index 990d3dc..2e18f7f 100644 --- a/config/system.image.yml +++ b/config/system.image.yml @@ -1,3 +1,3 @@ -toolkit: gd _core: default_config_hash: durWHaKeBaq4d9Wpi4RqwADj1OufDepcnJuhVLmKN24 +toolkit: gd diff --git a/config/system.logging.yml b/config/system.logging.yml index e95b28a..d6164de 100644 --- a/config/system.logging.yml +++ b/config/system.logging.yml @@ -1,3 +1,3 @@ -error_level: hide _core: default_config_hash: u3-njszl92FaxjrCMiq0yDcjAfcdx72w1zT1O9dx6aA +error_level: hide diff --git a/config/system.mail.yml b/config/system.mail.yml index da8293c..8ee1fac 100644 --- a/config/system.mail.yml +++ b/config/system.mail.yml @@ -1,5 +1,5 @@ +_core: + default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE interface: default: php_mail webform: webform_php_mail -_core: - default_config_hash: rYgt7uhPafP2ngaN_ZUPFuyI4KdE0zU868zLNSlzKoE diff --git a/config/system.maintenance.yml b/config/system.maintenance.yml index 79501fb..7bc5b98 100644 --- a/config/system.maintenance.yml +++ b/config/system.maintenance.yml @@ -1,4 +1,4 @@ -message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.' -langcode: en _core: default_config_hash: Z5MXifrF77GEAgx0GQ6iWT8wStjFuY8BD9OruofWTJ8 +langcode: en +message: '@site is currently under maintenance. We should be back shortly. Thank you for your patience.' diff --git a/config/system.performance.yml b/config/system.performance.yml index d4f85d5..cd81c18 100644 --- a/config/system.performance.yml +++ b/config/system.performance.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ cache: page: max_age: 0 @@ -13,5 +15,3 @@ js: preprocess: true gzip: true stale_file_threshold: 2592000 -_core: - default_config_hash: b2cssrj-lOmATIbdehfCqfCFgVR0qCdxxWhwqa2KBVQ diff --git a/config/system.site.yml b/config/system.site.yml index 67a785a..27bb1a7 100644 --- a/config/system.site.yml +++ b/config/system.site.yml @@ -1,3 +1,6 @@ +_core: + default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI +langcode: en uuid: 5329c73f-a7f0-41f4-8711-68e64c84fe7a name: Agaric mail: ask@agaric.com @@ -8,7 +11,4 @@ page: front: /node/1 admin_compact_mode: false weight_select_max: 100 -langcode: en default_langcode: en -_core: - default_config_hash: yXadRE77Va-G6dxhd2kPYapAvbnSvTF6hO4oXiOEynI diff --git a/config/system.theme.global.yml b/config/system.theme.global.yml index ad3e46c..46ce63b 100644 --- a/config/system.theme.global.yml +++ b/config/system.theme.global.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8 favicon: mimetype: image/vnd.microsoft.icon path: '' @@ -12,5 +14,3 @@ logo: path: '' url: '' use_default: true -_core: - default_config_hash: 9rAU4Pku7eMBQxauQqAgjzlcicFZ2As6zEa6zvTlCB8 diff --git a/config/system.theme.yml b/config/system.theme.yml index c55371e..58bae6f 100644 --- a/config/system.theme.yml +++ b/config/system.theme.yml @@ -1,4 +1,4 @@ -admin: seven -default: agarica _core: default_config_hash: CC5XFpmfp26ciMydC4BovjZOl9XoF7yoo2ypqf-GrZE +admin: seven +default: agarica diff --git a/config/taxonomy.settings.yml b/config/taxonomy.settings.yml index c98a316..0e3837d 100644 --- a/config/taxonomy.settings.yml +++ b/config/taxonomy.settings.yml @@ -1,5 +1,5 @@ +_core: + default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias maintain_index_table: true override_selector: false terms_per_page_admin: 100 -_core: - default_config_hash: zKpaWT6cJc1tVQQaTqatGELaCqU_oyRym6zTl27Yias diff --git a/config/text.settings.yml b/config/text.settings.yml index ef751a5..a295c7e 100644 --- a/config/text.settings.yml +++ b/config/text.settings.yml @@ -1,3 +1,3 @@ -default_summary_length: 600 _core: default_config_hash: Bkewb77RBOK3_aXMPsp8p87gbc03NvmC5gBLzPl7hVA +default_summary_length: 600 diff --git a/config/update.settings.yml b/config/update.settings.yml index 9dceb0a..df8d89e 100644 --- a/config/update.settings.yml +++ b/config/update.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: 2QzULf0zovJQx3J06Y9rufzzfi-CY2CTTlEfJJh2Qyw check: disabled_extensions: false interval_days: 1 @@ -9,5 +11,3 @@ notification: emails: - alerts@agaric.com threshold: all -_core: - default_config_hash: 2QzULf0zovJQx3J06Y9rufzzfi-CY2CTTlEfJJh2Qyw diff --git a/config/user.flood.yml b/config/user.flood.yml index f165c95..4eb3644 100644 --- a/config/user.flood.yml +++ b/config/user.flood.yml @@ -1,7 +1,7 @@ +_core: + default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs uid_only: false ip_limit: 50 ip_window: 3600 user_limit: 5 user_window: 21600 -_core: - default_config_hash: UYfMzeP1S8jKm9PSvxf7nQNe8DsNS-3bc2WSNNXBQWs diff --git a/config/user.mail.yml b/config/user.mail.yml index 0951c06..35ffe20 100644 --- a/config/user.mail.yml +++ b/config/user.mail.yml @@ -1,116 +1,116 @@ -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 _core: default_config_hash: IWzNdUVX2YSiflxrGSTLIiqTrhgIzbV2C-hRL5DniJM +langcode: en +cancel_confirm: + subject: 'Account cancellation request for [user:display-name] at [site:name]' + 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 +password_reset: + subject: 'Replacement login information for [user:display-name] at [site:name]' + 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 +register_admin_created: + subject: 'An administrator created an account for you at [site:name]' + 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 +register_no_approval_required: + subject: 'Account details for [user:display-name] at [site:name]' + 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 +register_pending_approval: + subject: 'Account details for [user:display-name] at [site:name] (pending admin 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 +register_pending_approval_admin: + subject: 'Account details for [user:display-name] at [site:name] (pending admin approval)' + body: | + [user:display-name] has applied for an account. + + [user:edit-url] +status_activated: + subject: 'Account details for [user:display-name] at [site:name] (approved)' + 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 +status_blocked: + subject: 'Account details for [user:display-name] at [site:name] (blocked)' + body: | + [user:display-name], + + Your account on [site:name] has been blocked. + + -- [site:name] team +status_canceled: + subject: 'Account details for [user:display-name] at [site:name] (canceled)' + body: | + [user:display-name], + + Your account on [site:name] has been canceled. + + -- [site:name] team diff --git a/config/user.settings.yml b/config/user.settings.yml index 036f43d..a1fd935 100644 --- a/config/user.settings.yml +++ b/config/user.settings.yml @@ -1,3 +1,6 @@ +_core: + default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk +langcode: en anonymous: Visitor verify_mail: true notify: @@ -13,6 +16,3 @@ register: admin_only cancel_method: user_cancel_block password_reset_timeout: 86400 password_strength: true -langcode: en -_core: - default_config_hash: r4kwhOM0IWXVMUZDz744Yc16EOh37ZhYbA8kGOhSmLk diff --git a/config/views.settings.yml b/config/views.settings.yml index fbda2e6..b48ea16 100644 --- a/config/views.settings.yml +++ b/config/views.settings.yml @@ -1,3 +1,5 @@ +_core: + default_config_hash: RaRd9EIcwA4u3qCSRLL8EnCicbda1kV__ASmVbyehvQ display_extenders: { } skip_cache: false sql_signature: false @@ -5,7 +7,7 @@ ui: show: additional_queries: false advanced_column: false - master_display: false + default_display: false performance_statistics: false preview_information: true sql_query: @@ -44,5 +46,3 @@ field_rewrite_elements: ins: INS q: Q s: S -_core: - default_config_hash: RaRd9EIcwA4u3qCSRLL8EnCicbda1kV__ASmVbyehvQ diff --git a/config/views.view.action.yml b/config/views.view.action.yml index 9a0af59..4ca3c80 100644 --- a/config/views.view.action.yml +++ b/config/views.view.action.yml @@ -19,74 +19,23 @@ base_table: search_api_index_action base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 12 - offset: 0 - id: 0 - total_pages: null - tags: - previous: ‹‹ - 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: default - options: - row_class: '' - default_row_class: false - uses_fields: false - row: - type: search_api - options: - view_modes: - 'entity:node': - action: card + title: Actions fields: rendered_item: + id: rendered_item table: search_api_index_action field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api label: '' exclude: false alter: @@ -132,7 +81,42 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 12 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + empty: { } sorts: sticky: id: sticky @@ -141,11 +125,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false created: id: created table: search_api_index_action @@ -153,18 +138,35 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: created + exposed: false + arguments: { } + filters: { } + style: + type: default + options: + row_class: '' + default_row_class: false + uses_fields: false + row: + type: search_api + options: + view_modes: + 'entity:node': + action: card + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } - title: Actions cache_metadata: max-age: -1 contexts: @@ -173,12 +175,16 @@ display: - user.permissions tags: { } block_promoted: - display_plugin: block id: block_promoted display_title: 'Block Promoted' + display_plugin: block position: 2 display_options: - display_extenders: { } + pager: + type: some + options: + offset: 0 + items_per_page: 4 filters: promote: id: promote @@ -187,6 +193,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_boolean operator: '=' value: '1' group: 1 @@ -197,14 +204,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -217,21 +224,16 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_boolean - defaults: - filters: false - filter_groups: false - pager: false filter_groups: operator: AND groups: 1: AND - pager: - type: some - options: - items_per_page: 4 - offset: 0 + defaults: + pager: false + filters: false + filter_groups: false display_description: '' + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -239,9 +241,9 @@ display: - user.permissions tags: { } page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -250,12 +252,12 @@ display: type: normal title: Actions description: 'Take action now.' - expanded: false - parent: '' weight: -48 - context: '0' - menu_name: main enabled: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.archive.yml b/config/views.view.archive.yml index 0f9b19b..c99d31f 100644 --- a/config/views.view.archive.yml +++ b/config/views.view.archive.yml @@ -23,22 +23,26 @@ display: 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 + fields: { } + pager: + type: mini options: - perm: 'access content' - cache: - type: tag - options: { } + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset exposed_form: type: basic options: @@ -49,74 +53,65 @@ display: expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc - pager: - type: mini + access: + type: perm 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: ›› + perm: 'access content' + cache: + type: tag + options: { } + empty: { } 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 + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second arguments: created_year_month: id: created_year_month table: node_field_data field: created_year_month + entity_type: node + plugin_id: date_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 + summary: + sort_order: desc + format: default_summary specify_validation: true - plugin_id: date_year_month - entity_type: node filters: status: id: status table: node_field_data field: status + entity_type: node + entity_field: status + plugin_id: boolean value: '1' group: 0 expose: operator: '0' operator_limit_selection: false operator_list: { } - plugin_id: boolean - entity_type: node - entity_field: status langcode: id: langcode table: node_field_data @@ -124,6 +119,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language operator: in value: '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' @@ -135,6 +133,8 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false @@ -142,8 +142,6 @@ display: remember_roles: authenticated: authenticated reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -156,9 +154,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: language - entity_type: node - entity_field: langcode style: type: default options: @@ -170,20 +165,26 @@ display: type: 'entity:node' options: view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - fields: { } display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_interface' - url - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } block_1: id: block_1 @@ -191,38 +192,38 @@ display: 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 + entity_type: node + plugin_id: date_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 + summary: + format: default_summary specify_validation: true - plugin_id: date_year_month - entity_type: node + query: + type: views_query + options: { } + defaults: + arguments: false display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_interface' - url - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } page_1: id: page_1 @@ -233,14 +234,14 @@ display: query: type: views_query options: { } - path: archive display_extenders: { } + path: archive cache_metadata: + max-age: -1 contexts: - 'languages:language_interface' - url - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.article.yml b/config/views.view.article.yml index 9cf6526..cc313ef 100644 --- a/config/views.view.article.yml +++ b/config/views.view.article.yml @@ -19,74 +19,23 @@ base_table: search_api_index_article base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 12 - offset: 0 - id: 0 - total_pages: null - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '5, 10, 25, 50' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - tags: - previous: ‹‹ - next: ›› - style: - type: default - options: - row_class: '' - default_row_class: false - uses_fields: false - row: - type: search_api - options: - view_modes: - 'entity:node': - article: card + title: Articles fields: rendered_item: + id: rendered_item table: search_api_index_article field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api label: '' exclude: false alter: @@ -132,7 +81,42 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 12 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + empty: { } sorts: sticky: id: sticky @@ -141,11 +125,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false created: id: created table: search_api_index_article @@ -153,17 +138,34 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api - title: Articles + field_identifier: created + exposed: false + arguments: { } + filters: { } + style: + type: default + options: + row_class: '' + default_row_class: false + uses_fields: false + row: + type: search_api + options: + view_modes: + 'entity:node': + article: card + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } cache_metadata: max-age: -1 @@ -175,29 +177,29 @@ display: tags: - 'config:search_api.index.article' block_promoted: - display_plugin: block id: block_promoted display_title: 'Block Promoted' + display_plugin: block position: 2 display_options: - display_extenders: { } title: Latest - defaults: - title: false - style: true - row: true - pager: false - link_display: false - link_url: false pager: type: some options: - items_per_page: 4 offset: 0 + items_per_page: 4 + defaults: + title: false + pager: false + link_display: false + link_url: false + style: true + row: true display_description: '' - block_description: 'Promoted articles' link_display: page_1 link_url: '' + display_extenders: { } + block_description: 'Promoted articles' block_hide_empty: true cache_metadata: max-age: -1 @@ -208,9 +210,9 @@ display: tags: - 'config:search_api.index.article' page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -219,12 +221,12 @@ display: type: normal title: Articles description: 'Keep up to date.' - expanded: false - parent: '' weight: -44 - context: '0' - menu_name: main enabled: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.block_content.yml b/config/views.view.block_content.yml index aad7340..0311938 100644 --- a/config/views.view.block_content.yml +++ b/config/views.view.block_content.yml @@ -16,103 +16,12 @@ base_table: block_content_field_data base_field: id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: 'Custom block library' fields: info: id: info @@ -121,6 +30,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: info + plugin_id: field label: 'Block description' exclude: false alter: @@ -176,9 +88,6 @@ display: 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 @@ -186,6 +95,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: block_content + entity_field: type + plugin_id: field label: 'Block type' exclude: false alter: @@ -241,9 +153,6 @@ display: 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 @@ -251,6 +160,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: block_content + entity_field: changed + plugin_id: field label: Updated exclude: false alter: @@ -292,14 +204,11 @@ display: 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 @@ -307,6 +216,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: block_content + plugin_id: entity_operations label: Operations exclude: false alter: @@ -349,8 +260,66 @@ display: empty_zero: false hide_alter_empty: true destination: true + pager: + type: mini + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer blocks' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'There are no custom blocks available.' + tokenize: false + block_content_listing_empty: + id: block_content_listing_empty + table: block_content + field: block_content_listing_empty + relationship: none + group_type: group + admin_label: '' entity_type: block_content - plugin_id: entity_operations + plugin_id: block_content_listing_empty + label: '' + empty: true + sorts: { } + arguments: { } filters: info: id: info @@ -359,6 +328,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: block_content + entity_field: info + plugin_id: string operator: contains value: '' group: 1 @@ -369,6 +341,8 @@ display: description: '' use_operator: false operator: info_op + operator_limit_selection: false + operator_list: { } identifier: info required: false remember: false @@ -377,8 +351,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -391,9 +363,6 @@ display: 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 @@ -401,6 +370,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: block_content + entity_field: type + plugin_id: bundle operator: in value: { } group: 1 @@ -411,6 +383,8 @@ display: description: '' use_operator: false operator: type_op + operator_limit_selection: false + operator_list: { } identifier: type required: false remember: false @@ -420,8 +394,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -434,9 +406,6 @@ display: 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 @@ -444,6 +413,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: block_content + entity_field: reusable + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -454,14 +426,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -474,52 +446,80 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: block_content - entity_field: reusable - plugin_id: boolean - sorts: { } - title: 'Custom block library' + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + info: info + type: type + changed: changed + operations: operations + default: changed + info: + info: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: { } footer: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - empty: true - tokenize: false - content: 'There are no custom blocks available.' - plugin_id: text_custom - block_content_listing_empty: - admin_label: '' - empty: true - field: block_content_listing_empty - group_type: group - id: block_content_listing_empty - label: '' - relationship: none - table: block_content - plugin_id: block_content_listing_empty - entity_type: block_content - relationships: { } - arguments: { } display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: -1 tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -528,16 +528,16 @@ display: type: tab title: 'Custom block library' description: '' - parent: block.admin_display weight: 0 - context: '0' menu_name: admin + parent: block.admin_display + context: '0' cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.blog.yml b/config/views.view.blog.yml index 9efda2c..5db1a66 100644 --- a/config/views.view.blog.yml +++ b/config/views.view.blog.yml @@ -29,74 +29,23 @@ base_table: search_api_index_blog base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: search_api_tag - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 18 - offset: 0 - id: 0 - total_pages: null - tags: - previous: ‹‹ - 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: default - options: - grouping: { } - row_class: '' - default_row_class: false - row: - type: search_api - options: - view_modes: - 'entity:node': - blog: teaser + title: Blog fields: rendered_item: + id: rendered_item table: search_api_index_blog field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api label: '' exclude: false alter: @@ -142,7 +91,42 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 18 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: search_api_tag + options: { } + empty: { } sorts: sticky: id: sticky @@ -151,11 +135,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false created: id: created table: search_api_index_blog @@ -163,21 +148,38 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api - header: { } - footer: { } - empty: { } - relationships: { } + field_identifier: created + exposed: false arguments: { } - display_extenders: { } - title: Blog + filters: { } filter_groups: operator: AND groups: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: false + row: + type: search_api + options: + view_modes: + 'entity:node': + blog: teaser + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } + header: { } + footer: { } + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -188,13 +190,16 @@ display: tags: - 'config:search_api.index.blog' block_promoted: - display_plugin: block id: block_promoted display_title: 'Block Promoted' + display_plugin: block position: 2 display_options: - display_extenders: { } - display_description: '' + pager: + type: some + options: + offset: 0 + items_per_page: 4 filters: promote: id: promote @@ -203,6 +208,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_boolean operator: '=' value: '1' group: 1 @@ -213,14 +219,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -233,20 +239,16 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_boolean - defaults: - filters: false - filter_groups: false - pager: false filter_groups: operator: AND groups: 1: AND - pager: - type: some - options: - items_per_page: 4 - offset: 0 + defaults: + pager: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } block_hide_empty: true cache_metadata: max-age: -1 @@ -257,17 +259,16 @@ display: tags: - 'config:search_api.index.blog' embed_listing: - display_plugin: embed id: embed_listing display_title: Embed + display_plugin: embed position: 3 display_options: - display_extenders: { } pager: type: some options: - items_per_page: 4 offset: 0 + items_per_page: 4 defaults: pager: false footer: false @@ -279,8 +280,8 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: text empty: false - tokenize: false content: value: |
@@ -289,7 +290,8 @@ display:
format: full_html - plugin_id: text + tokenize: false + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -299,29 +301,11 @@ display: tags: - 'config:search_api.index.blog' feed_listing: - display_plugin: feed id: feed_listing display_title: Feed + display_plugin: feed position: 4 display_options: - display_extenders: { } - row: - type: rss_fields - options: - title_field: title - link_field: field_tags - description_field: field_body_paragraph - creator_field: field_authors - date_field: created - guid_field_options: - guid_field: title - guid_field_is_permalink: true - path: blog/feed - pager: - type: some - options: - items_per_page: 20 - offset: 0 fields: title: id: title @@ -330,6 +314,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -392,8 +378,6 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - entity_type: node - plugin_id: search_api_field field_authors: id: field_authors table: search_api_datasource_blog_entity_node @@ -401,6 +385,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -494,8 +480,6 @@ display: resource: display_method: label view_mode: default - entity_type: node - plugin_id: search_api_field field_image: id: field_image table: search_api_datasource_blog_entity_node @@ -503,6 +487,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -547,8 +533,8 @@ display: click_sort_column: target_id type: image settings: - image_style: '' image_link: '' + image_style: '' group_column: '' group_columns: { } group_rows: true @@ -566,8 +552,6 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - entity_type: node - plugin_id: search_api_field created: id: created table: search_api_datasource_blog_entity_node @@ -575,6 +559,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -642,8 +628,6 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - entity_type: node - plugin_id: search_api_field field_body_paragraph: id: field_body_paragraph table: search_api_datasource_blog_entity_node @@ -651,6 +635,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -713,8 +699,6 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - entity_type: node - plugin_id: search_api_field field_tags: id: field_tags table: search_api_datasource_blog_entity_node @@ -722,6 +706,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -807,8 +793,6 @@ display: display_method: label topics: display_method: label - entity_type: node - plugin_id: search_api_field comment: id: comment table: search_api_datasource_blog_entity_node @@ -816,6 +800,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -880,8 +866,6 @@ display: multi_type: separator multi_separator: ', ' display_methods: { } - entity_type: node - plugin_id: search_api_field nid: id: nid table: search_api_datasource_blog_entity_node @@ -889,6 +873,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -963,10 +949,26 @@ display: format_plural_values: - '1' - '@count' - entity_type: node - plugin_id: search_api_field + pager: + type: some + options: + offset: 0 + items_per_page: 20 + row: + type: rss_fields + options: + title_field: title + link_field: field_tags + description_field: field_body_paragraph + creator_field: field_authors + date_field: created + guid_field_options: + guid_field: title + guid_field_is_permalink: true defaults: fields: false + display_extenders: { } + path: blog/feed cache_metadata: max-age: -1 contexts: @@ -982,9 +984,9 @@ display: - 'config:field.storage.node.field_tags' - 'config:search_api.index.blog' page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -993,11 +995,11 @@ display: type: normal title: Blog description: 'Follow our blogs.' - expanded: false - parent: '' weight: -43 - context: '0' + expanded: false menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.campaign.yml b/config/views.view.campaign.yml index e7c030f..2d54bac 100644 --- a/config/views.view.campaign.yml +++ b/config/views.view.campaign.yml @@ -19,74 +19,23 @@ base_table: search_api_index_campaign base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 12 - offset: 0 - id: 0 - total_pages: null - tags: - previous: ‹‹ - 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: default - options: - row_class: '' - default_row_class: false - uses_fields: false - row: - type: search_api - options: - view_modes: - 'entity:node': - campaign: card + title: Campaigns fields: rendered_item: + id: rendered_item table: search_api_index_campaign field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api label: '' exclude: false alter: @@ -132,7 +81,42 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 12 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + empty: { } sorts: sticky: id: sticky @@ -141,11 +125,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false created: id: created table: search_api_index_campaign @@ -153,18 +138,35 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: created + exposed: false + arguments: { } + filters: { } + style: + type: default + options: + row_class: '' + default_row_class: false + uses_fields: false + row: + type: search_api + options: + view_modes: + 'entity:node': + campaign: card + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } - title: Campaigns cache_metadata: max-age: -1 contexts: @@ -175,13 +177,16 @@ display: tags: - 'config:search_api.index.campaign' block_promoted: - display_plugin: block id: block_promoted display_title: 'Block Promoted' + display_plugin: block position: 2 display_options: - display_extenders: { } - display_description: '' + pager: + type: some + options: + offset: 0 + items_per_page: 4 filters: promote: id: promote @@ -190,6 +195,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_boolean operator: '=' value: '1' group: 1 @@ -200,14 +206,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -220,20 +226,16 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_boolean - defaults: - filters: false - filter_groups: false - pager: false filter_groups: operator: AND groups: 1: AND - pager: - type: some - options: - items_per_page: 4 - offset: 0 + defaults: + pager: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -243,9 +245,9 @@ display: tags: - 'config:search_api.index.campaign' page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -254,12 +256,12 @@ display: type: normal title: Campaigns description: 'Join our campaigns.' - expanded: false - parent: '' weight: -42 - context: '0' - menu_name: main enabled: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.case_study.yml b/config/views.view.case_study.yml index 7114fde..bb5cf44 100644 --- a/config/views.view.case_study.yml +++ b/config/views.view.case_study.yml @@ -18,59 +18,23 @@ base_table: search_api_index_case_study base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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: none - options: - 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 + title: Work fields: changed: + id: 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: '' + entity_type: null + entity_field: null + plugin_id: search_api_field label: '' exclude: false alter: @@ -132,7 +96,27 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: none + options: { } + cache: + type: none + options: { } + empty: { } sorts: sticky: id: sticky @@ -141,11 +125,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false created: id: created table: search_api_index_case_study @@ -153,17 +138,34 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: ASC - exposed: false expose: label: '' - plugin_id: search_api - title: Work + field_identifier: created + exposed: false + arguments: { } + filters: { } + 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 + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } cache_metadata: max-age: -1 @@ -172,24 +174,17 @@ display: - 'languages:language_interface' tags: { } block_promoted: - display_plugin: block id: block_promoted display_title: 'Block Promoted' + display_plugin: block position: 2 display_options: - display_extenders: { } title: Work - defaults: - title: false - pager: false - filters: false - filter_groups: false pager: type: some options: - items_per_page: 6 offset: 0 - display_description: '' + items_per_page: 6 filters: promote: id: promote @@ -198,6 +193,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_boolean operator: '=' value: '1' group: 1 @@ -208,14 +204,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -228,7 +224,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_boolean search_api_language: id: search_api_language table: search_api_index_case_study @@ -236,6 +231,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_language operator: in value: '***LANGUAGE_language_interface***': '***LANGUAGE_language_interface***' @@ -247,6 +243,8 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false @@ -254,8 +252,6 @@ display: remember_roles: authenticated: authenticated reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -268,11 +264,17 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_language filter_groups: operator: AND groups: 1: AND + defaults: + title: false + pager: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -280,32 +282,32 @@ display: - 'languages:language_interface' tags: { } block_work: - display_plugin: block id: block_work display_title: Work + display_plugin: block position: 2 display_options: - display_extenders: { } title: Work - defaults: - title: false - pager: false - filters: false - filter_groups: false - link_display: false - link_url: false pager: type: none options: offset: 0 - display_description: '' filters: { } filter_groups: operator: AND groups: 1: AND + defaults: + title: false + pager: false + link_display: false + link_url: false + filters: false + filter_groups: false + display_description: '' link_display: '0' link_url: /work + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -313,17 +315,17 @@ display: - 'languages:language_interface' tags: { } embed_listing: - display_plugin: embed id: embed_listing display_title: Embed + display_plugin: embed position: 3 display_options: - display_extenders: { } - link_display: '0' defaults: link_display: false link_url: false + link_display: '0' link_url: /work + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -331,32 +333,32 @@ display: - 'languages:language_interface' tags: { } page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: + enabled: false + pager: + type: none + options: + offset: 0 + defaults: + css_class: false + pager: false + css_class: is-dark display_extenders: { } path: case-study-listing menu: type: normal title: Work description: 'See some of what we''ve built.' - expanded: false - parent: '' weight: -41 - context: '0' - menu_name: main enabled: false - pager: - type: none - options: - offset: 0 - defaults: - pager: false - css_class: false - css_class: is-dark - enabled: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.comment.yml b/config/views.view.comment.yml index 86252f3..ae2e3f9 100644 --- a/config/views.view.comment.yml +++ b/config/views.view.comment.yml @@ -16,120 +16,12 @@ base_table: comment_field_data base_field: cid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: Comments fields: comment_bulk_form: id: comment_bulk_form @@ -138,6 +30,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + plugin_id: comment_bulk_form label: '' exclude: false alter: @@ -184,8 +78,6 @@ display: selected_actions: - comment_delete_action - comment_unpublish_action - plugin_id: comment_bulk_form - entity_type: comment subject: id: subject table: comment_field_data @@ -193,6 +85,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: field label: Subject exclude: false alter: @@ -248,9 +143,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: comment - entity_field: subject - plugin_id: field uid: id: uid table: comment_field_data @@ -258,6 +150,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: uid + plugin_id: field label: '' exclude: true alter: @@ -313,9 +208,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: comment - entity_field: uid - plugin_id: field name: id: name table: comment_field_data @@ -323,6 +215,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: name + plugin_id: field label: Author exclude: false alter: @@ -377,9 +272,6 @@ display: 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 @@ -387,6 +279,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: entity_id + plugin_id: commented_entity label: 'Posted in' exclude: false alter: @@ -442,9 +337,6 @@ display: 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 @@ -452,6 +344,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: field label: Updated exclude: false alter: @@ -509,9 +404,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: comment - entity_field: changed - plugin_id: field operations: id: operations table: comment @@ -519,6 +411,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + plugin_id: entity_operations label: Operations exclude: false alter: @@ -561,8 +455,6 @@ display: 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 @@ -570,6 +462,9 @@ display: relationship: uid group_type: group admin_label: '' + entity_type: user + entity_field: name + plugin_id: field label: '' exclude: true alter: @@ -625,9 +520,74 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: user - entity_field: name - plugin_id: field + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'next ›' + previous: '‹ previous' + first: '« first' + last: 'last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer comments' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No comments available.' + tokenize: false + sorts: + changed: + id: changed + table: comment_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: changed + exposed: false + granularity: second + arguments: { } filters: status: id: status @@ -636,6 +596,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: status + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -646,14 +609,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -666,9 +629,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: comment - entity_field: status - plugin_id: boolean subject: id: subject table: comment_field_data @@ -676,6 +636,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: string operator: contains value: '' group: 1 @@ -686,6 +649,8 @@ display: description: '' use_operator: false operator: subject_op + operator_limit_selection: false + operator_list: { } identifier: subject required: false remember: false @@ -694,8 +659,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -708,9 +671,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: comment - entity_field: subject - plugin_id: string combine: id: combine table: views @@ -718,6 +678,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: combine operator: contains value: '' group: 1 @@ -728,6 +689,8 @@ display: description: '' use_operator: false operator: combine_op + operator_limit_selection: false + operator_list: { } identifier: author_name required: false remember: false @@ -736,8 +699,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -753,7 +714,6 @@ display: fields: name: name name_1: name_1 - plugin_id: combine langcode: id: langcode table: comment_field_data @@ -761,6 +721,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: langcode + plugin_id: language operator: in value: { } group: 1 @@ -771,6 +734,8 @@ display: description: '' use_operator: false operator: langcode_op + operator_limit_selection: false + operator_list: { } identifier: langcode required: false remember: false @@ -780,8 +745,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -794,50 +757,81 @@ display: 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: '' + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + comment_bulk_form: comment_bulk_form + subject: subject + uid: uid + entity_id: entity_id + changed: changed + operations: operations + default: changed + info: + comment_bulk_form: + align: '' + separator: '' + empty_column: false + responsive: '' + subject: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + uid: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + entity_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: true + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } relationships: uid: id: uid @@ -846,243 +840,66 @@ display: 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 + required: false + css_class: '' + use_ajax: false + group_by: false + show_admin_links: true + use_more: false + use_more_always: true + use_more_text: more + header: { } + footer: { } + hide_attachment_summary: false + display_extenders: { } cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - cacheable: false - max-age: 0 tags: { } + cacheable: false page_published: - display_plugin: page id: page_published display_title: 'Published comments' + display_plugin: page position: 1 display_options: + display_description: 'The approved comments listing.' + display_comment: '' + exposed_block: false + display_extenders: { } path: admin/content/comment menu: type: tab title: Comments description: 'Comments published' - parent: '' weight: 0 - context: '0' menu_name: admin - display_description: 'The approved comments listing.' - display_extenders: { } - exposed_block: false - display_comment: '' + parent: '' + context: '0' cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - cacheable: false - max-age: 0 tags: { } + cacheable: false page_unapproved: - display_plugin: page id: page_unapproved display_title: 'Unapproved comments' + display_plugin: page position: 2 display_options: - path: admin/content/comment/approval - menu: - type: tab - title: 'Unapproved comments' - description: 'Comments unapproved' - parent: '' - weight: 1 - context: '0' - menu_name: admin - display_description: 'The unapproved comments listing.' - filters: - status: - id: status - table: comment_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '0' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: 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' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: 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' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - 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 - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: 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 @@ -1091,6 +908,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + plugin_id: comment_bulk_form label: '' exclude: false alter: @@ -1137,8 +956,6 @@ display: selected_actions: - comment_delete_action - comment_publish_action - plugin_id: comment_bulk_form - entity_type: comment subject: id: subject table: comment_field_data @@ -1146,6 +963,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: field label: Subject exclude: false alter: @@ -1201,9 +1021,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: comment - entity_field: subject - plugin_id: field uid: id: uid table: comment_field_data @@ -1211,6 +1028,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: uid + plugin_id: field label: '' exclude: true alter: @@ -1266,9 +1086,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: comment - entity_field: uid - plugin_id: field name: id: name table: comment_field_data @@ -1276,6 +1093,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: name + plugin_id: field label: Author exclude: false alter: @@ -1330,9 +1150,6 @@ display: 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 @@ -1340,6 +1157,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: entity_id + plugin_id: commented_entity label: 'Posted in' exclude: false alter: @@ -1395,9 +1215,6 @@ display: 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 @@ -1405,6 +1222,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: field label: Updated exclude: false alter: @@ -1462,9 +1282,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: comment - entity_field: changed - plugin_id: field operations: id: operations table: comment @@ -1472,6 +1289,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: comment + plugin_id: entity_operations label: Operations exclude: false alter: @@ -1514,8 +1333,6 @@ display: 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 @@ -1523,6 +1340,9 @@ display: relationship: uid group_type: group admin_label: '' + entity_type: user + entity_field: name + plugin_id: field label: '' exclude: true alter: @@ -1578,20 +1398,201 @@ display: 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: '' + entity_type: comment + entity_field: status + plugin_id: boolean + operator: '=' + value: '0' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: subject_op + label: Subject + description: '' + use_operator: false + operator: subject_op + operator_limit_selection: false + operator_list: { } + identifier: subject + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + combine: + id: combine + table: views + field: combine + relationship: none + group_type: group + admin_label: '' + plugin_id: combine + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: combine_op + label: 'Author Name' + description: '' + use_operator: false + operator: combine_op + operator_limit_selection: false + operator_list: { } + identifier: author_name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + fields: + name: name + name_1: name_1 + langcode: + id: langcode + table: comment_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: langcode + plugin_id: language + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + operator_limit_selection: false + operator_list: { } + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } filter_groups: operator: AND groups: 1: AND + defaults: + fields: false + filters: false + filter_groups: false + display_description: 'The unapproved comments listing.' + display_extenders: { } + path: admin/content/comment/approval + menu: + type: tab + title: 'Unapproved comments' + description: 'Comments unapproved' + weight: 1 + menu_name: admin + parent: '' + context: '0' cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - cacheable: false - max-age: 0 tags: { } + cacheable: false diff --git a/config/views.view.comments_recent.yml b/config/views.view.comments_recent.yml index 47aa9e4..83a8ac6 100644 --- a/config/views.view.comments_recent.yml +++ b/config/views.view.comments_recent.yml @@ -17,59 +17,23 @@ base_table: comment_field_data base_field: cid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: 'Recent comments' fields: subject: id: subject table: comment_field_data field: subject relationship: none - type: string - settings: - link_to_entity: true - plugin_id: field group_type: group admin_label: '' + entity_type: comment + entity_field: subject + plugin_id: field label: '' exclude: false alter: @@ -111,16 +75,19 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - entity_type: comment - entity_field: subject + type: string + settings: + link_to_entity: true changed: id: changed table: comment_field_data field: changed relationship: none - plugin_id: field group_type: group admin_label: '' + entity_type: comment + entity_field: changed + plugin_id: field label: '' exclude: false alter: @@ -167,64 +134,19 @@ display: 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: '' - operator_limit_selection: false - operator_list: { } - 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: '' - operator_limit_selection: false - operator_list: { } - 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' + pager: + type: some + options: + offset: 0 + items_per_page: 10 + exposed_form: + type: basic + access: + type: perm + options: + perm: 'access comments' + cache: + type: tag empty: area_text_custom: id: area_text_custom @@ -233,34 +155,115 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: text_custom label: '' empty: true content: 'No comments available.' tokenize: false - plugin_id: text_custom + sorts: + created: + id: created + table: comment_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + cid: + id: cid + table: comment_field_data + field: cid + relationship: none + group_type: group + admin_label: '' + entity_type: comment + entity_field: cid + plugin_id: field + order: DESC + exposed: false + expose: + field_identifier: cid + filters: + status: + id: status + table: comment_field_data + field: status + entity_type: comment + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + status_node: + id: status_node + table: node_field_data + field: status + relationship: node + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + options: + default_field_elements: true + hide_empty: false + query: + type: views_query + relationships: + node: + id: node + table: comment_field_data + field: node + plugin_id: standard + required: true display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions - max-age: -1 tags: { } block_1: - display_plugin: block id: block_1 display_title: Block + display_plugin: block position: 1 display_options: + display_extenders: { } block_description: 'Recent comments' block_category: 'Lists (Views)' allow: items_per_page: true - display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.content.yml b/config/views.view.content.yml index 99c279c..411e793 100644 --- a/config/views.view.content.yml +++ b/config/views.view.content.yml @@ -17,116 +17,19 @@ base_table: node_field_data base_field: nid display: default: + id: default + display_title: Master + display_plugin: default + position: 0 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 - status: status - created: created - changed: changed - totalcount: totalcount - operations: operations - 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: '' - status: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - created: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - changed: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: priority-low - totalcount: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - operations: - align: '' - separator: '' - empty_column: false - responsive: '' - default: changed - empty_table: true - row: - type: fields + title: Content fields: node_bulk_form: id: node_bulk_form table: node field: node_bulk_form + entity_type: node + plugin_id: node_bulk_form label: '' exclude: false alter: @@ -137,12 +40,13 @@ display: 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 + entity_type: node + entity_field: title + plugin_id: field label: Title exclude: false alter: @@ -153,12 +57,9 @@ display: 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 @@ -166,6 +67,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: type + plugin_id: field label: 'Content type' exclude: false alter: @@ -221,13 +125,13 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: node - entity_field: type - plugin_id: field status: id: status table: node_field_data field: status + entity_type: node + entity_field: status + plugin_id: field label: Status exclude: false alter: @@ -241,11 +145,8 @@ display: type: boolean settings: format: custom - format_custom_true: Published format_custom_false: Unpublished - plugin_id: field - entity_type: node - entity_field: status + format_custom_true: Published created: id: created table: node_field_data @@ -253,6 +154,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: created + plugin_id: field label: Created exclude: false alter: @@ -310,9 +214,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: node - entity_field: created - plugin_id: field changed: id: changed table: node_field_data @@ -320,6 +221,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: changed + plugin_id: field label: Updated exclude: false alter: @@ -377,9 +281,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - plugin_id: field - entity_type: node - entity_field: changed totalcount: id: totalcount table: node_counter @@ -387,6 +288,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: statistics_numeric label: 'Total views' exclude: false alter: @@ -436,7 +338,6 @@ display: format_plural_string: !!binary MQNAY291bnQ= prefix: '' suffix: '' - plugin_id: statistics_numeric operations: id: operations table: node @@ -444,6 +345,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: entity_operations label: Operations exclude: false alter: @@ -486,7 +388,41 @@ display: empty_zero: false hide_alter_empty: true destination: true - plugin_id: entity_operations + pager: + type: full + options: + items_per_page: 50 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content overview' + cache: + type: tag + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + plugin_id: text_custom + empty: true + content: 'No content available.' + sorts: { } + arguments: { } filters: title: id: title @@ -495,6 +431,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: title + plugin_id: string operator: contains value: '' group: 1 @@ -505,6 +444,8 @@ display: description: '' use_operator: false operator: title_op + operator_limit_selection: false + operator_list: { } identifier: title required: false remember: false @@ -513,8 +454,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -527,9 +466,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: string - entity_type: node - entity_field: title type: id: type table: node_field_data @@ -537,6 +473,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: type + plugin_id: bundle operator: in value: { } group: 1 @@ -547,6 +486,8 @@ display: description: '' use_operator: false operator: type_op + operator_limit_selection: false + operator_list: { } identifier: type required: false remember: false @@ -556,8 +497,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -570,9 +509,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: bundle - entity_type: node - entity_field: type status: id: status table: node_field_data @@ -580,6 +516,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: status + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -590,14 +529,14 @@ display: description: '' use_operator: false operator: status_op + operator_limit_selection: false + operator_list: { } identifier: status required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: true group_info: label: 'Published status' @@ -618,18 +557,15 @@ display: title: Unpublished operator: '=' value: '0' - plugin_id: boolean - entity_type: node - entity_field: status status_extra: id: status_extra table: node_field_data field: status_extra + entity_type: node + plugin_id: node_status operator: '=' value: false - plugin_id: node_status group: 1 - entity_type: node expose: operator_limit_selection: false operator_list: { } @@ -640,6 +576,9 @@ display: relationship: field_authors group_type: group admin_label: '' + entity_type: node + entity_field: title + plugin_id: string operator: contains value: '' group: 1 @@ -650,6 +589,8 @@ display: description: '' use_operator: false operator: title_1_op + operator_limit_selection: false + operator_list: { } identifier: title_1 required: false remember: false @@ -665,8 +606,6 @@ display: partner: '0' staff: '0' placeholder: '' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -679,28 +618,97 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: node - entity_field: title - plugin_id: string - 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: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + node_bulk_form: node_bulk_form + title: title + type: type + status: status + created: created + changed: changed + totalcount: totalcount + operations: operations + default: changed + 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: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + totalcount: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: true + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query relationships: uid: id: uid table: node_field_data field: uid admin_label: author - required: true plugin_id: standard + required: true field_authors: id: field_authors table: node__field_authors @@ -708,19 +716,12 @@ display: relationship: none group_type: group admin_label: Authors - required: false plugin_id: standard + required: false 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: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -729,30 +730,30 @@ display: - user - '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: + display_extenders: { } path: admin/content/node menu: type: 'default tab' title: Content description: '' - menu_name: admin weight: -10 + menu_name: admin 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 + menu_name: admin cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -761,5 +762,4 @@ display: - user - 'user.node_grants:view' - user.permissions - max-age: 0 tags: { } diff --git a/config/views.view.content_recent.yml b/config/views.view.content_recent.yml index 58d8f8d..1983f09 100644 --- a/config/views.view.content_recent.yml +++ b/config/views.view.content_recent.yml @@ -16,75 +16,34 @@ base_table: node_field_data base_field: nid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: 'Recent content' fields: title: id: title table: node_field_data field: title + relationship: none + group_type: group + admin_label: '' entity_type: node entity_field: title + plugin_id: field label: '' exclude: false alter: alter_text: false make_link: false absolute: false - trim: false word_boundary: false ellipsis: false strip_tags: false + trim: false html: false - hide_empty: false - empty_zero: false - relationship: none - group_type: group - admin_label: '' element_type: '' element_class: '' element_label_type: '' @@ -94,11 +53,12 @@ display: element_wrapper_class: '' element_default_classes: true empty: '' + hide_empty: false + empty_zero: false hide_alter_empty: true type: string settings: link_to_entity: true - plugin_id: field changed: id: changed table: node_field_data @@ -106,6 +66,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: changed + plugin_id: field label: '' exclude: false alter: @@ -160,9 +123,58 @@ display: multi_type: separator separator: ', ' field_api_classes: false + pager: + type: some + options: + offset: 0 + items_per_page: 10 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No content available.' + tokenize: false + sorts: + changed: + id: changed + table: node_field_data + field: changed + relationship: none + group_type: group + admin_label: '' entity_type: node entity_field: changed - plugin_id: field + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: changed + exposed: false + granularity: second + arguments: { } filters: status_extra: id: status_extra @@ -171,6 +183,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: node_status operator: '=' value: false group: 1 @@ -181,14 +195,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -201,8 +215,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: node - plugin_id: node_status langcode: id: langcode table: node_field_data @@ -210,6 +222,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language operator: in value: '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' @@ -221,6 +236,8 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false @@ -228,8 +245,6 @@ display: remember_roles: authenticated: authenticated reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -242,40 +257,25 @@ display: 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 + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } relationships: uid: id: uid @@ -284,39 +284,40 @@ display: relationship: none group_type: group admin_label: author - required: true entity_type: node entity_field: uid plugin_id: standard - arguments: { } - display_extenders: { } + required: true use_more: false use_more_always: false use_more_text: More - link_url: '' link_display: '0' + link_url: '' + header: { } + footer: { } + display_extenders: { } cache_metadata: + max-age: -1 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 + display_plugin: block position: 1 display_options: display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.event.yml b/config/views.view.event.yml index 23b80cb..8879930 100644 --- a/config/views.view.event.yml +++ b/config/views.view.event.yml @@ -19,74 +19,23 @@ base_table: search_api_index_event base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 10 - offset: 0 - id: 0 - total_pages: null - tags: - previous: ‹‹ - 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: default - options: - grouping: { } - row_class: '' - default_row_class: false - row: - type: search_api - options: - view_modes: - 'entity:node': - event: teaser + title: Events fields: rendered_item: + id: rendered_item table: search_api_index_event field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api label: '' exclude: false alter: @@ -132,7 +81,42 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + empty: { } sorts: sticky: id: sticky @@ -141,11 +125,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false field_event_date: id: field_event_date table: search_api_index_event @@ -153,18 +138,35 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: field_event_date + exposed: false + arguments: { } + filters: { } + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: false + row: + type: search_api + options: + view_modes: + 'entity:node': + event: teaser + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } - title: Events cache_metadata: max-age: -1 contexts: @@ -175,13 +177,31 @@ display: tags: - 'config:search_api.index.event' block_upcoming: - display_plugin: block id: block_upcoming display_title: 'Block Upcoming' + display_plugin: block position: 2 display_options: - display_extenders: { } - display_description: '' + title: 'Upcoming events' + pager: + type: some + options: + offset: 0 + items_per_page: 5 + sorts: + field_event_date: + id: field_event_date + table: search_api_index_event + field: field_event_date + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: ASC + expose: + label: '' + field_identifier: field_event_date + exposed: false filters: field_event_date: id: field_event_date @@ -190,6 +210,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_date operator: '>=' value: min: '' @@ -204,17 +225,17 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - placeholder: '' min_placeholder: '' max_placeholder: '' - operator_limit_selection: false - operator_list: { } + placeholder: '' is_grouped: false group_info: label: '' @@ -227,45 +248,10 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_date - defaults: - filters: false - filter_groups: false - sorts: false - title: false - pager: false - use_more: false - use_more_always: false - use_more_text: false - style: false - row: false filter_groups: operator: AND groups: 1: AND - sorts: - field_event_date: - id: field_event_date - table: search_api_index_event - field: field_event_date - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: false - expose: - label: '' - plugin_id: search_api - title: 'Upcoming events' - pager: - type: some - options: - items_per_page: 5 - offset: 0 - block_hide_empty: true - use_more: true - use_more_always: false - use_more_text: More style: type: default options: @@ -278,6 +264,23 @@ display: view_modes: 'entity:node': event: micro + defaults: + title: false + pager: false + use_more: false + use_more_always: false + use_more_text: false + style: false + row: false + sorts: false + filters: false + filter_groups: false + display_description: '' + use_more: true + use_more_always: false + use_more_text: More + display_extenders: { } + block_hide_empty: true cache_metadata: max-age: -1 contexts: @@ -287,9 +290,9 @@ display: tags: - 'config:search_api.index.event' page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -298,12 +301,12 @@ display: type: normal title: Events description: 'See a lsting of our events.' - expanded: false - parent: '' weight: -40 - context: '0' - menu_name: main enabled: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.files.yml b/config/views.view.files.yml index 63f0f31..fcfbb9a 100644 --- a/config/views.view.files.yml +++ b/config/views.view.files.yml @@ -16,26 +16,456 @@ base_table: file_managed base_field: fid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm + title: Files + fields: + fid: + id: fid + table: file_managed + field: fid + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: fid + plugin_id: field + label: Fid + exclude: true + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + 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 + filename: + id: filename + table: file_managed + field: filename + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filename + plugin_id: field + label: Name + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: file_link + 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 + filemime: + id: filemime + table: file_managed + field: filemime + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filemime + plugin_id: field + label: 'MIME 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 + type: file_filemime + filesize: + id: filesize + table: file_managed + field: filesize + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filesize + plugin_id: field + label: Size + 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: file_size + status: + id: status + table: file_managed + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: status + plugin_id: field + 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 + type: boolean + settings: + format: custom + format_custom_false: Temporary + format_custom_true: Permanent + created: + id: created + table: file_managed + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: created + plugin_id: field + label: 'Upload date' + 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 + settings: + date_format: medium + custom_date_format: '' + timezone: '' + changed: + id: changed + table: file_managed + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: changed + plugin_id: field + label: 'Changed date' + 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 + settings: + date_format: medium + custom_date_format: '' + timezone: '' + count: + id: count + table: file_usage + field: count + relationship: fid + group_type: sum + admin_label: '' + plugin_id: numeric + label: 'Used in' + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: 'admin/content/files/usage/{{ fid }}' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + set_precision: false + precision: 0 + decimal: . + separator: ',' + format_plural: true + format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz + prefix: '' + suffix: '' + pager: + type: mini options: - perm: 'access files overview' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } + offset: 0 + items_per_page: 50 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset exposed_form: type: basic options: @@ -46,35 +476,157 @@ display: expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc - pager: - type: mini + access: + type: perm options: - items_per_page: 50 - offset: 0 - id: 0 - total_pages: 0 - tags: - previous: '‹ Previous' - next: 'Next ›' + perm: 'access files overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + plugin_id: text_custom + empty: true + content: 'No files available.' + sorts: { } + arguments: { } + filters: + filename: + id: filename + table: file_managed + field: filename + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filename + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true 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 + operator_id: filemime_op + label: Filename + description: '' + use_operator: false + operator: filename_op + operator_limit_selection: false + operator_list: { } + identifier: filename + 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: { } + filemime: + id: filemime + table: file_managed + field: filemime + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: filemime + plugin_id: string + operator: word + value: '' + group: 1 + exposed: true + expose: + operator_id: filemime_op + label: 'MIME type' + description: '' + use_operator: false + operator: filemime_op + operator_limit_selection: false + operator_list: { } + identifier: filemime + 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: { } + status: + id: status + table: file_managed + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: file + entity_field: status + plugin_id: file_status + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: status_op + label: Status + description: '' + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + 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: { } style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: fid: fid filename: filename @@ -84,6 +636,7 @@ display: created: created changed: changed count: count + default: changed info: fid: sortable: false @@ -141,576 +694,22 @@ display: separator: '' empty_column: false responsive: priority-medium - default: changed + override: true + sticky: false + summary: '' empty_table: true + caption: '' + description: '' row: type: fields - fields: - fid: - id: fid - table: file_managed - field: fid - 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: '' - label: Fid - exclude: true - 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 - plugin_id: field - entity_type: file - entity_field: fid - filename: - id: filename - table: file_managed - field: filename - relationship: none - group_type: group - admin_label: '' - label: Name - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: false - ellipsis: false - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: file_link - 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: file - entity_field: filename - filemime: - id: filemime - table: file_managed - field: filemime - relationship: none - group_type: group - admin_label: '' - label: 'MIME 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 - type: file_filemime - plugin_id: field - entity_type: file - entity_field: filemime - filesize: - id: filesize - table: file_managed - field: filesize - relationship: none - group_type: group - admin_label: '' - label: Size - 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: file_size - plugin_id: field - entity_type: file - entity_field: filesize - status: - id: status - table: file_managed - 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 - type: boolean - settings: - format: custom - format_custom_false: Temporary - format_custom_true: Permanent - plugin_id: field - entity_type: file - entity_field: status - created: - id: created - table: file_managed - field: created - relationship: none - group_type: group - admin_label: '' - label: 'Upload date' - 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 - settings: - date_format: medium - custom_date_format: '' - timezone: '' - plugin_id: field - entity_type: file - entity_field: created - changed: - id: changed - table: file_managed - field: changed - relationship: none - group_type: group - admin_label: '' - label: 'Changed date' - 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 - settings: - date_format: medium - custom_date_format: '' - timezone: '' - plugin_id: field - entity_type: file - entity_field: changed - count: - id: count - table: file_usage - field: count - relationship: fid - group_type: sum - admin_label: '' - label: 'Used in' - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: 'admin/content/files/usage/{{ fid }}' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: true - format_plural_string: !!binary MSBwbGFjZQNAY291bnQgcGxhY2Vz - prefix: '' - suffix: '' - plugin_id: numeric - filters: - filename: - id: filename - table: file_managed - field: filename - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: filemime_op - label: Filename - description: '' - use_operator: false - operator: filename_op - identifier: filename - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: string - entity_type: file - entity_field: filename - filemime: - id: filemime - table: file_managed - field: filemime - relationship: none - group_type: group - admin_label: '' - operator: word - value: '' - group: 1 - exposed: true - expose: - operator_id: filemime_op - label: 'MIME type' - description: '' - use_operator: false - operator: filemime_op - identifier: filemime - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: string - entity_type: file - entity_field: filemime - status: - id: status - table: file_managed - field: status - relationship: none - group_type: group - admin_label: '' - operator: in - value: { } - group: 1 - exposed: true - expose: - operator_id: status_op - label: Status - description: '' - use_operator: false - operator: status_op - identifier: status - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: file_status - entity_type: file - entity_field: status - sorts: { } - title: Files - header: { } - footer: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - empty: true - content: 'No files available.' - plugin_id: text_custom + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } relationships: fid: id: fid @@ -720,34 +719,26 @@ display: group_type: group admin_label: 'File usage' required: true - arguments: { } group_by: true show_admin_links: true + header: { } + footer: { } display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: -1 tags: { } page_1: - display_plugin: page id: page_1 display_title: 'Files overview' + display_plugin: page position: 1 display_options: - path: admin/content/files - menu: - type: tab - title: Files - description: '' - menu_name: admin - weight: 0 - context: '' - display_description: '' defaults: pager: true relationships: false @@ -760,59 +751,32 @@ display: group_type: group admin_label: 'File usage' required: false + display_description: '' display_extenders: { } + path: admin/content/files + menu: + type: tab + title: Files + description: '' + weight: 0 + menu_name: admin + context: '' cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: -1 tags: { } page_2: - display_plugin: page id: page_2 display_title: 'File usage' + display_plugin: page position: 2 display_options: - display_description: '' - path: admin/content/files/usage/% - empty: { } - defaults: - empty: false - pager: false - filters: false - filter_groups: false - fields: false - group_by: false - title: false - arguments: false - style: false - row: false - relationships: false - pager: - type: mini - options: - items_per_page: 10 - offset: 0 - id: 0 - total_pages: 0 - 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 - filters: { } - filter_groups: - operator: AND - groups: { } + title: 'File usage' fields: entity_label: id: entity_label @@ -821,6 +785,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: entity_label label: Entity exclude: false alter: @@ -863,7 +828,6 @@ display: empty_zero: false hide_alter_empty: true link_to_entity: true - plugin_id: entity_label type: id: type table: file_usage @@ -871,6 +835,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: standard label: 'Entity type' exclude: false alter: @@ -912,7 +877,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: standard module: id: module table: file_usage @@ -920,6 +884,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: standard label: 'Registering module' exclude: false alter: @@ -961,7 +926,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: standard count: id: count table: file_usage @@ -969,6 +933,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: numeric label: 'Use count' exclude: false alter: @@ -1018,9 +983,25 @@ display: format_plural_string: !!binary MQNAY291bnQ= prefix: '' suffix: '' - plugin_id: numeric - group_by: false - title: 'File usage' + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + empty: { } arguments: fid: id: fid @@ -1029,6 +1010,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: file + entity_field: fid + plugin_id: file_fid default_action: 'not found' exception: value: all @@ -1043,8 +1027,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 25 override: false + items_per_page: 25 summary: sort_order: asc number_of_records: 0 @@ -1056,25 +1040,22 @@ display: validate_options: { } break_phrase: false not: false - plugin_id: file_fid - entity_type: file - entity_field: fid + filters: { } + filter_groups: + operator: AND + groups: { } style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: entity_label: entity_label type: type module: module count: count + default: entity_label info: entity_label: sortable: true @@ -1104,11 +1085,27 @@ display: separator: '' empty_column: false responsive: '' - default: entity_label + override: true + sticky: false + summary: '' empty_table: true + caption: '' + description: '' row: type: fields options: { } + defaults: + empty: false + title: false + pager: false + group_by: false + style: false + row: false + relationships: false + fields: false + arguments: false + filters: false + filter_groups: false relationships: fid: id: fid @@ -1118,12 +1115,15 @@ display: group_type: group admin_label: 'File usage' required: true + group_by: false + display_description: '' display_extenders: { } + path: admin/content/files/usage/% cache_metadata: + max-age: -1 contexts: - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.frontpage.yml b/config/views.view.frontpage.yml index 6a38869..97b20ee 100644 --- a/config/views.view.frontpage.yml +++ b/config/views.view.frontpage.yml @@ -19,49 +19,34 @@ base_table: node_field_data base_field: nid display: default: + id: default + display_title: Master + display_plugin: default + position: 0 display_options: - access: - type: perm + title: '' + fields: { } + pager: + type: full 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 + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 exposed_form: type: basic options: @@ -72,60 +57,135 @@ display: expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + label: '' + empty: true + content: 'No front page content has been created yet.
Follow the User Guide to start building your site.' + tokenize: false + node_listing_empty: + id: node_listing_empty + table: node + field: node_listing_empty + relationship: none + group_type: group + admin_label: '' + entity_type: node + plugin_id: node_listing_empty + label: '' + empty: true + title: + id: title + table: views + field: title + relationship: none + group_type: group + admin_label: '' + plugin_id: title + label: '' + empty: true + title: 'Welcome to [site:name]' + sorts: + sticky: + id: sticky + table: node_field_data + field: sticky + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: sticky + plugin_id: boolean + order: DESC + expose: + label: '' + field_identifier: sticky + exposed: false + created: + id: created + table: node_field_data + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } filters: promote: - admin_label: '' - expose: - description: '' - identifier: '' - label: '' - multiple: false - operator: '' - operator_id: '' - remember: false - remember_roles: - authenticated: authenticated - required: false - use_operator: false - operator_limit_selection: false - operator_list: { } - 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 + field: promote + relationship: none + group_type: group + admin_label: '' entity_type: node entity_field: promote + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 expose: operator: '' operator_limit_selection: false operator_list: { } - 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 @@ -133,6 +193,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: langcode + plugin_id: language operator: in value: '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' @@ -144,6 +207,8 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false @@ -151,8 +216,6 @@ display: remember_roles: authenticated: authenticated reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -165,72 +228,6 @@ display: 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: @@ -238,73 +235,78 @@ display: row_class: '' default_row_class: true uses_fields: false - title: '' + row: + type: 'entity:node' + options: + view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: { } footer: { } - relationships: { } - fields: { } - arguments: { } display_extenders: { } - display_plugin: default - display_title: Master - id: default - position: 0 cache_metadata: + max-age: -1 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 + display_plugin: 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 + items_per_page: 10 style: type: rss options: - description: '' grouping: { } uses_fields: false + description: '' row: type: node_rss options: relationship: none view_mode: rss display_extenders: { } + path: rss.xml + sitename_title: true + displays: + page_1: page_1 + default: '' cache_metadata: + max-age: -1 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 + display_title: Page + display_plugin: page position: 1 + display_options: + display_extenders: { } + path: node cache_metadata: + max-age: -1 contexts: - 'languages:language_interface' - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.glossary.yml b/config/views.view.glossary.yml index da1f2c6..b55a90e 100644 --- a/config/views.view.glossary.yml +++ b/config/views.view.glossary.yml @@ -23,59 +23,17 @@ display: 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: '' + entity_type: node + entity_field: title + plugin_id: field label: Title exclude: false alter: @@ -117,18 +75,17 @@ display: 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: '' + entity_type: user + entity_field: name + plugin_id: field + label: Author exclude: false alter: alter_text: false @@ -169,111 +126,197 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - entity_type: user - entity_field: name + type: user_name changed: id: changed table: node_field_data field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: changed + plugin_id: field label: 'Last 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 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 + pager: + type: mini + options: + offset: 0 + items_per_page: 36 + total_pages: 0 + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: { } arguments: title: id: title table: node_field_data field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string default_action: default exception: title_enable: true + title_enable: false + title: '' default_argument_type: fixed default_argument_options: argument: a + default_argument_skip_url: false + summary_options: { } summary: format: default_summary specify_validation: true + validate: + type: none + fail: 'not found' + validate_options: { } glossary: true limit: 1 case: upper path_case: lower transform_dash: false - plugin_id: string + break_phrase: false + filters: + langcode: + id: langcode + table: node_field_data + field: langcode 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 + entity_field: langcode + plugin_id: language + operator: in + value: + '***LANGUAGE_language_content***': '***LANGUAGE_language_content***' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + status: + id: status table: node_field_data - field: uid - plugin_id: standard - relationship: none - group_type: group - admin_label: author - required: false + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } style: type: table options: + grouping: { } + row_class: '' + default_row_class: true + uses_fields: false columns: title: title name: name @@ -291,82 +334,40 @@ display: separator: '' override: true sticky: false - grouping: { } - row_class: '' - default_row_class: true - uses_fields: false - order: asc summary: '' + order: asc empty_table: false row: type: fields options: + default_field_elements: true inline: { } separator: '' hide_empty: false - default_field_elements: true - header: { } - footer: { } - empty: { } - sorts: { } - filters: - langcode: - id: langcode + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + uid: + id: uid table: node_field_data - field: langcode + field: uid 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 - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: language - entity_type: node - entity_field: langcode - status: - expose: - operator: '' - operator_limit_selection: false - operator_list: { } - field: status - group: 1 - id: status - table: node_field_data - value: '1' - plugin_id: boolean - entity_type: node - entity_field: status + admin_label: author + plugin_id: standard + required: false + use_ajax: true + header: { } + footer: { } display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -374,7 +375,6 @@ display: - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } attachment_1: id: attachment_1 @@ -382,59 +382,60 @@ display: 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 + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string default_action: summary exception: title_enable: true + title_enable: false + title: '' default_argument_type: fixed default_argument_options: argument: a - summary: - format: unformatted_summary + default_argument_skip_url: false summary_options: items_per_page: 25 inline: true separator: ' | ' + summary: + format: unformatted_summary specify_validation: true + validate: + type: none + fail: 'not found' + validate_options: { } 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 + query: + type: views_query + options: { } + defaults: + arguments: false + display_extenders: { } displays: default: default page_1: page_1 inherit_arguments: false - display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -442,7 +443,6 @@ display: - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } page_1: id: page_1 @@ -453,6 +453,7 @@ display: query: type: views_query options: { } + display_extenders: { } path: glossary menu: type: normal @@ -460,8 +461,8 @@ display: weight: 0 menu_name: main parent: '' - display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -469,5 +470,4 @@ display: - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.group.yml b/config/views.view.group.yml index f062451..8aff1af 100644 --- a/config/views.view.group.yml +++ b/config/views.view.group.yml @@ -23,82 +23,12 @@ base_table: groups_field_data base_field: id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: Groups fields: label: id: label @@ -107,6 +37,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: label + plugin_id: field label: '' exclude: false alter: @@ -162,9 +95,6 @@ display: 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 @@ -172,6 +102,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: field label: '' exclude: false alter: @@ -226,20 +157,42 @@ display: 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 + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ expose: - operator_limit_selection: false - operator_list: { } + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } sorts: label: id: label @@ -248,19 +201,67 @@ display: relationship: none group_type: group admin_label: '' - order: ASC - exposed: false - expose: - label: '' entity_type: group entity_field: label plugin_id: standard - title: Groups + order: ASC + expose: + label: '' + field_identifier: label + exposed: false + arguments: { } + filters: + type: + id: type + table: groups_field_data + field: type + entity_type: group + entity_field: type + plugin_id: bundle + value: + group: group + expose: + operator_limit_selection: false + operator_list: { } + 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 + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } cache_metadata: max-age: -1 @@ -272,9 +273,9 @@ display: tags: - 'config:field.storage.group.field_group_summary' page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -283,12 +284,12 @@ display: type: normal title: Groups description: 'Find out about our groups.' - expanded: false - parent: '' weight: -39 - context: '0' - menu_name: main enabled: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.group_content.yml b/config/views.view.group_content.yml index 33503c7..6ccff83 100644 --- a/config/views.view.group_content.yml +++ b/config/views.view.group_content.yml @@ -20,46 +20,23 @@ base_table: node_field_data base_field: nid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: 'Group content' + fields: { } pager: type: full options: - items_per_page: 20 offset: 0 - id: 0 + items_per_page: 20 total_pages: null + id: 0 tags: - previous: ‹‹ next: ›› + previous: ‹‹ first: '« First' last: 'Last »' expose: @@ -71,76 +48,23 @@ display: offset: false offset_label: Offset quantity: 9 - style: - type: default + exposed_form: + type: basic options: - row_class: '' - default_row_class: true - row: - type: 'entity:node' + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm options: - 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 - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: 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: { } + perm: 'access content' + cache: + type: tag + options: { } empty: area_text_custom: id: area_text_custom @@ -149,22 +73,27 @@ display: 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 + empty: true + content: 'No content available.' + tokenize: false + sorts: + created: + id: created table: node_field_data - field: group_content + field: created relationship: none group_type: group - admin_label: 'Content relation' - required: true - group_content_plugins: { } + admin_label: '' entity_type: node - plugin_id: group_content_to_entity_reverse + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second arguments: gid: id: gid @@ -173,6 +102,9 @@ display: relationship: group_content group_type: group admin_label: '' + entity_type: group_content + entity_field: gid + plugin_id: numeric default_action: 'access denied' exception: value: all @@ -187,8 +119,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 25 override: false + items_per_page: 25 summary: sort_order: asc number_of_records: 0 @@ -200,14 +132,83 @@ display: validate_options: { } break_phrase: false not: false - entity_type: group_content - entity_field: gid - plugin_id: numeric - display_extenders: { } - title: 'Group content' + filters: + status: + id: status + table: node_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } filter_groups: operator: AND groups: { } + style: + type: default + options: + row_class: '' + default_row_class: true + row: + type: 'entity:node' + options: + relationship: none + view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + group_content: + id: group_content + table: node_field_data + field: group_content + relationship: none + group_type: group + admin_label: 'Content relation' + entity_type: node + plugin_id: group_content_to_entity_reverse + required: true + group_content_plugins: { } + header: { } + footer: { } + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -218,13 +219,17 @@ display: - user.permissions tags: { } block_recent: - display_plugin: block id: block_recent display_title: 'Block recent' + display_plugin: block position: 2 display_options: - display_extenders: { } title: 'Latest group content' + pager: + type: some + options: + offset: 0 + items_per_page: 10 defaults: title: false pager: false @@ -233,17 +238,13 @@ display: use_more_text: false link_display: false link_url: false - pager: - type: some - options: - items_per_page: 10 - offset: 0 + display_description: '' use_more: true use_more_always: false use_more_text: 'All group content' link_display: page_1 link_url: '' - display_description: '' + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -253,9 +254,9 @@ display: - user.permissions tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -264,11 +265,11 @@ display: type: tab title: 'Group content' description: '' - expanded: false - parent: '' weight: 25 - context: '0' + expanded: false menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.group_members.yml b/config/views.view.group_members.yml index ca7113d..8f1e4b2 100644 --- a/config/views.view.group_members.yml +++ b/config/views.view.group_members.yml @@ -18,141 +18,12 @@ base_table: group_content_field_data base_field: id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: group_permission - options: - group_permission: 'administer members' - 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: ‹‹ - 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: - name: name - group_roles: group_roles - changed: changed - created: created - view_group_content: view_group_content - edit_group_content: edit_group_content - delete_group_content: delete_group_content - dropbutton: dropbutton - info: - name: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - group_roles: - align: '' - separator: '' - empty_column: false - responsive: '' - changed: - 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: '' - view_group_content: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - edit_group_content: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - delete_group_content: - 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: '' - default: '-1' - empty_table: true - row: - type: fields - options: - inline: { } - separator: '' - hide_empty: false - default_field_elements: true + title: Members fields: name: id: name @@ -161,6 +32,9 @@ display: relationship: gc__user group_type: group admin_label: '' + entity_type: user + entity_field: name + plugin_id: field label: User exclude: false alter: @@ -216,9 +90,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: user - entity_field: name - plugin_id: field group_roles: id: group_roles table: group_content__group_roles @@ -226,6 +97,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: field label: Roles exclude: false alter: @@ -281,7 +153,6 @@ display: multi_type: ul separator: ', ' field_api_classes: false - plugin_id: field changed: id: changed table: group_content_field_data @@ -289,6 +160,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: group_content + entity_field: changed + plugin_id: field label: Updated exclude: false alter: @@ -346,9 +220,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: group_content - entity_field: changed - plugin_id: field created: id: created table: group_content_field_data @@ -356,6 +227,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: group_content + entity_field: created + plugin_id: field label: Joined exclude: false alter: @@ -413,9 +287,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: group_content - entity_field: created - plugin_id: field view_group_content: id: view_group_content table: group_content @@ -423,6 +294,8 @@ display: relationship: none group_type: group admin_label: 'View member link' + entity_type: group_content + plugin_id: entity_link label: '' exclude: true alter: @@ -465,8 +338,6 @@ display: empty_zero: false hide_alter_empty: true text: 'View member' - entity_type: group_content - plugin_id: entity_link output_url_as_text: false absolute: false edit_group_content: @@ -476,6 +347,8 @@ display: relationship: none group_type: group admin_label: 'Edit member link' + entity_type: group_content + plugin_id: entity_link_edit label: '' exclude: true alter: @@ -518,8 +391,6 @@ display: empty_zero: false hide_alter_empty: true text: 'Edit member' - entity_type: group_content - plugin_id: entity_link_edit delete_group_content: id: delete_group_content table: group_content @@ -527,6 +398,8 @@ display: relationship: none group_type: group admin_label: 'Remove member link' + entity_type: group_content + plugin_id: entity_link_delete label: '' exclude: true alter: @@ -569,8 +442,6 @@ display: empty_zero: false hide_alter_empty: true text: 'Remove member' - entity_type: group_content - plugin_id: entity_link_delete dropbutton: id: dropbutton table: views @@ -578,6 +449,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: dropbutton label: Operations exclude: false alter: @@ -619,6 +491,7 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true + destination: true fields: view_group_content: view_group_content edit_group_content: edit_group_content @@ -627,12 +500,44 @@ display: group_roles: '0' changed: '0' created: '0' - destination: true - plugin_id: dropbutton - filters: { } - sorts: { } - header: { } - footer: { } + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: group_permission + options: + group_permission: 'administer members' + cache: + type: tag + options: { } empty: area_text_custom: id: area_text_custom @@ -641,23 +546,11 @@ display: relationship: none group_type: group admin_label: '' - empty: true - tokenize: false - content: 'No members available.' plugin_id: text_custom - relationships: - gc__user: - id: gc__user - table: group_content_field_data - field: gc__user - relationship: none - group_type: group - admin_label: 'Member account' - required: true - group_content_plugins: - group_membership: group_membership - entity_type: group_content - plugin_id: group_content_to_entity + empty: true + content: 'No members available.' + tokenize: false + sorts: { } arguments: gid: id: gid @@ -666,6 +559,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: group_content + entity_field: gid + plugin_id: numeric default_action: 'access denied' exception: value: all @@ -680,8 +576,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 25 override: false + items_per_page: 25 summary: sort_order: asc number_of_records: 0 @@ -693,11 +589,115 @@ display: validate_options: { } break_phrase: false not: false + filters: { } + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + name: name + group_roles: group_roles + changed: changed + created: created + view_group_content: view_group_content + edit_group_content: edit_group_content + delete_group_content: delete_group_content + dropbutton: dropbutton + default: '-1' + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + group_roles: + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + 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: '' + view_group_content: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + edit_group_content: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + delete_group_content: + 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: '' + override: true + sticky: true + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: + gc__user: + id: gc__user + table: group_content_field_data + field: gc__user + relationship: none + group_type: group + admin_label: 'Member account' entity_type: group_content - entity_field: gid - plugin_id: numeric + plugin_id: group_content_to_entity + required: true + group_content_plugins: + group_membership: group_membership + header: { } + footer: { } display_extenders: { } - title: Members cache_metadata: max-age: -1 contexts: @@ -709,9 +709,9 @@ display: 6: user.group_permissions tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -720,12 +720,12 @@ display: type: tab title: Members description: '' - expanded: false - parent: '' weight: 20 - context: '0' - menu_name: main enabled: true + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.group_nodes.yml b/config/views.view.group_nodes.yml index cb36fe8..9b1994b 100644 --- a/config/views.view.group_nodes.yml +++ b/config/views.view.group_nodes.yml @@ -17,46 +17,604 @@ base_table: node_field_data base_field: nid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: group_permission - options: - group_permission: 'access group_node overview' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc + title: Nodes + fields: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: Title + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: false + ellipsis: false + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + type: + id: type + table: node_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: type + plugin_id: field + label: 'Content type' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: target_id + type: entity_reference_label + settings: + link: false + group_column: target_id + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + status: + id: status + table: node_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: status + plugin_id: field + 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 + click_sort_column: value + type: boolean + settings: + format: custom + format_custom_false: Unpublished + format_custom_true: Published + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + changed: + id: changed + table: node_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: changed + plugin_id: field + label: Updated + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: 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 + view_group_content: + id: view_group_content + table: group_content + field: view_group_content + relationship: group_content + group_type: group + admin_label: 'View relation link' + entity_type: group_content + plugin_id: entity_link + label: 'Link to Group content' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: 'View relation' + output_url_as_text: false + absolute: false + edit_group_content: + id: edit_group_content + table: group_content + field: edit_group_content + relationship: group_content + group_type: group + admin_label: 'Edit relation link' + entity_type: group_content + plugin_id: entity_link_edit + label: 'Link to edit Group content' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: 'Edit relation' + delete_group_content: + id: delete_group_content + table: group_content + field: delete_group_content + relationship: group_content + group_type: group + admin_label: 'Delete relation link' + entity_type: group_content + plugin_id: entity_link_delete + label: 'Link to delete Group content' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: 'Delete relation' + edit_node: + id: edit_node + table: node + field: edit_node + relationship: none + group_type: group + admin_label: 'Edit node link' + entity_type: node + plugin_id: entity_link_edit + label: 'Link to edit Content' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: 'Edit node' + delete_node: + id: delete_node + table: node + field: delete_node + relationship: none + group_type: group + admin_label: 'Delete node link' + entity_type: node + plugin_id: entity_link_delete + label: 'Link to delete Content' + exclude: true + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + text: 'Delete node' + dropbutton: + id: dropbutton + table: views + field: dropbutton + relationship: none + group_type: group + admin_label: '' + plugin_id: dropbutton + 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 + fields: + view_group_content: view_group_content + edit_group_content: edit_group_content + delete_group_content: delete_group_content + edit_node: edit_node + delete_node: delete_node + title: '0' + type: '0' + status: '0' + changed: '0' pager: type: full options: - items_per_page: 50 offset: 0 - id: 0 + items_per_page: 50 total_pages: null + id: 0 tags: - previous: ‹‹ next: ›› + previous: ‹‹ first: '« First' last: 'Last »' expose: @@ -68,17 +626,176 @@ display: offset: false offset_label: Offset quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: group_permission + options: + group_permission: 'access group_node overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No content available.' + tokenize: false + sorts: { } + arguments: + gid: + id: gid + table: group_content_field_data + field: gid + relationship: group_content + group_type: group + admin_label: '' + entity_type: group_content + entity_field: gid + plugin_id: numeric + 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 + override: false + items_per_page: 25 + summary: + sort_order: asc + number_of_records: 0 + format: default_summary + specify_validation: false + validate: + type: none + fail: 'not found' + validate_options: { } + break_phrase: false + not: false + filters: + status: + id: status + table: node_field_data + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: status + plugin_id: boolean + operator: '=' + value: '' + group: 1 + exposed: true + expose: + operator_id: '' + label: 'Published status' + description: '' + use_operator: false + operator: status_op + operator_limit_selection: false + operator_list: { } + identifier: status + required: true + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + group_admin: '0' + 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' + type: + id: type + table: node_field_data + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: type + plugin_id: bundle + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + group_admin: '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: { } style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: true - caption: '' - summary: '' - description: '' columns: title: title type: type @@ -90,6 +807,7 @@ display: edit_node: edit_node delete_node: delete_node dropbutton: dropbutton + default: changed info: title: sortable: true @@ -161,708 +879,27 @@ display: separator: '' empty_column: false responsive: '' - default: changed + override: true + sticky: true + summary: '' empty_table: true + caption: '' + description: '' row: type: fields options: + default_field_elements: true inline: { } separator: '' hide_empty: false - default_field_elements: true - fields: - title: - id: title - table: node_field_data - field: title - 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: false - ellipsis: false - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: true - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - entity_type: node - entity_field: title - 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 - status: - id: status - table: node_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 - click_sort_column: value - type: boolean - settings: - format: custom - format_custom_true: Published - format_custom_false: Unpublished - 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: status - plugin_id: field - changed: - id: changed - table: node_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: node - entity_field: changed - plugin_id: field - view_group_content: - id: view_group_content - table: group_content - field: view_group_content - relationship: group_content - group_type: group - admin_label: 'View relation link' - label: 'Link to Group content' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: 'View relation' - entity_type: group_content - plugin_id: entity_link - output_url_as_text: false - absolute: false - edit_group_content: - id: edit_group_content - table: group_content - field: edit_group_content - relationship: group_content - group_type: group - admin_label: 'Edit relation link' - label: 'Link to edit Group content' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: 'Edit relation' - entity_type: group_content - plugin_id: entity_link_edit - delete_group_content: - id: delete_group_content - table: group_content - field: delete_group_content - relationship: group_content - group_type: group - admin_label: 'Delete relation link' - label: 'Link to delete Group content' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: 'Delete relation' - entity_type: group_content - plugin_id: entity_link_delete - edit_node: - id: edit_node - table: node - field: edit_node - relationship: none - group_type: group - admin_label: 'Edit node link' - label: 'Link to edit Content' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: 'Edit node' - entity_type: node - plugin_id: entity_link_edit - delete_node: - id: delete_node - table: node - field: delete_node - relationship: none - group_type: group - admin_label: 'Delete node link' - label: 'Link to delete Content' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: 'Delete node' - entity_type: node - plugin_id: entity_link_delete - dropbutton: - id: dropbutton - table: views - field: dropbutton - 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 - fields: - view_group_content: view_group_content - edit_group_content: edit_group_content - delete_group_content: delete_group_content - edit_node: edit_node - delete_node: delete_node - title: '0' - type: '0' - status: '0' - changed: '0' - destination: true - plugin_id: dropbutton - filters: - status: - id: status - table: node_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: false - group: 1 - exposed: true - expose: - operator_id: '' - label: 'Published status' - description: '' - use_operator: false - operator: status_op - identifier: status - required: true - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - group_admin: '0' - operator_limit_selection: false - operator_list: { } - 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' - entity_type: node - entity_field: status - plugin_id: boolean - 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: Type - description: '' - use_operator: false - operator: type_op - identifier: type - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - group_admin: '0' - reduce: false - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: node - entity_field: type - plugin_id: bundle - sorts: { } - 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 + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } relationships: group_content: id: group_content @@ -871,50 +908,13 @@ display: 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 + required: true + group_content_plugins: { } + header: { } + footer: { } display_extenders: { } - title: Nodes cache_metadata: max-age: -1 contexts: @@ -929,9 +929,9 @@ display: 9: user.group_permissions tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } @@ -940,12 +940,12 @@ display: type: tab title: Nodes description: '' - expanded: false - parent: '' weight: 25 - context: '0' - menu_name: main enabled: true + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.media.yml b/config/views.view.media.yml index 54a1cbb..90eeaf7 100644 --- a/config/views.view.media.yml +++ b/config/views.view.media.yml @@ -19,122 +19,12 @@ base_table: media_field_data base_field: mid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access media overview' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: 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 - 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 - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' - columns: - name: name - bundle: bundle - changed: changed - uid: uid - status: status - thumbnail__target_id: thumbnail__target_id - info: - name: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - bundle: - 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: '' - uid: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - status: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - thumbnail__target_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - default: changed - empty_table: true - row: - type: fields + title: Media fields: media_bulk_form: id: media_bulk_form @@ -143,6 +33,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: bulk_form label: '' exclude: false alter: @@ -187,8 +79,6 @@ display: action_title: Action include_exclude: exclude selected_actions: { } - entity_type: media - plugin_id: bulk_form thumbnail__target_id: id: thumbnail__target_id table: media_field_data @@ -196,6 +86,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: thumbnail + plugin_id: field label: Thumbnail exclude: false alter: @@ -240,8 +133,8 @@ display: click_sort_column: target_id type: image settings: - image_style: thumbnail image_link: '' + image_style: thumbnail group_column: '' group_columns: { } group_rows: true @@ -252,34 +145,27 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: media - entity_field: thumbnail - plugin_id: field name: id: name table: media_field_data field: name + relationship: none + group_type: group + admin_label: '' entity_type: media entity_field: media + plugin_id: field + label: 'Media name' + exclude: false alter: alter_text: false make_link: false absolute: false - trim: false word_boundary: false ellipsis: false strip_tags: false + trim: false html: false - hide_empty: false - empty_zero: false - settings: - link_to_entity: true - plugin_id: field - relationship: none - group_type: group - admin_label: '' - label: 'Media name' - exclude: false element_type: '' element_class: '' element_label_type: '' @@ -289,9 +175,13 @@ display: 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 @@ -309,6 +199,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: field label: Type exclude: false alter: @@ -364,9 +257,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: media - entity_field: bundle - plugin_id: field uid: id: uid table: media_field_data @@ -374,6 +264,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: uid + plugin_id: field label: Author exclude: false alter: @@ -429,9 +322,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: media - entity_field: uid - plugin_id: field status: id: status table: media_field_data @@ -439,6 +329,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: status + plugin_id: field label: Status exclude: false alter: @@ -484,8 +377,8 @@ display: type: boolean settings: format: custom - format_custom_true: Published format_custom_false: Unpublished + format_custom_true: Published group_column: value group_columns: { } group_rows: true @@ -496,9 +389,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: media - entity_field: status - plugin_id: field changed: id: changed table: media_field_data @@ -506,6 +396,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: changed + plugin_id: field label: Updated exclude: false alter: @@ -563,9 +456,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: media - entity_field: changed - plugin_id: field operations: id: operations table: media @@ -573,6 +463,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: entity_operations label: Operations exclude: false alter: @@ -615,8 +507,74 @@ display: empty_zero: false hide_alter_empty: true destination: true + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No media available.' + tokenize: false + sorts: + created: + id: created + table: media_field_data + field: created + relationship: none + group_type: group + admin_label: '' entity_type: media - plugin_id: entity_operations + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } filters: name: id: name @@ -625,6 +583,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: name + plugin_id: string operator: contains value: '' group: 1 @@ -635,6 +596,8 @@ display: description: '' use_operator: false operator: name_op + operator_limit_selection: false + operator_list: { } identifier: name required: false remember: false @@ -643,8 +606,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -657,9 +618,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - entity_field: name - plugin_id: string bundle: id: bundle table: media_field_data @@ -667,6 +625,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: bundle operator: in value: { } group: 1 @@ -677,6 +638,8 @@ display: description: '' use_operator: false operator: bundle_op + operator_limit_selection: false + operator_list: { } identifier: type required: false remember: false @@ -686,8 +649,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -700,9 +661,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - entity_field: bundle - plugin_id: bundle status: id: status table: media_field_data @@ -710,6 +668,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: status + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -720,14 +681,14 @@ display: description: null use_operator: false operator: status_op + operator_limit_selection: false + operator_list: { } identifier: status required: true remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: true group_info: label: 'Published status' @@ -748,9 +709,6 @@ display: title: Unpublished operator: '=' value: '0' - plugin_id: boolean - entity_type: media - entity_field: status status_extra: id: status_extra table: media_field_data @@ -758,6 +716,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: media_status operator: '=' value: '' group: 1 @@ -788,8 +748,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - plugin_id: media_status langcode: id: langcode table: media_field_data @@ -797,6 +755,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: langcode + plugin_id: language operator: in value: { } group: 1 @@ -807,6 +768,8 @@ display: description: '' use_operator: false operator: langcode_op + operator_limit_selection: false + operator_list: { } identifier: langcode required: false remember: false @@ -816,8 +779,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -830,42 +791,82 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - entity_field: langcode - plugin_id: language - sorts: - created: - id: created - table: media_field_data - field: created - order: DESC - entity_type: media - entity_field: created - plugin_id: date - relationship: none - group_type: group - admin_label: '' - exposed: false - expose: - label: '' - granularity: second - title: Media + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + name: name + bundle: bundle + changed: changed + uid: uid + status: status + thumbnail__target_id: thumbnail__target_id + default: changed + info: + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + bundle: + 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: '' + uid: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + status: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + thumbnail__target_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: true + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: { } footer: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - empty: true - tokenize: false - content: 'No media available.' - plugin_id: text_custom - relationships: { } - arguments: { } display_extenders: { } cache_metadata: max-age: 0 @@ -878,23 +879,23 @@ display: - user.permissions tags: { } media_page_list: - display_plugin: page id: media_page_list display_title: Media + display_plugin: page position: 1 display_options: + display_description: '' display_extenders: { } path: admin/content/media menu: type: tab title: Media description: '' - expanded: false - parent: '' weight: 0 - context: '0' + expanded: false menu_name: main - display_description: '' + parent: '' + context: '0' cache_metadata: max-age: 0 contexts: diff --git a/config/views.view.media_library.yml b/config/views.view.media_library.yml index d2e83b9..d1cb128 100644 --- a/config/views.view.media_library.yml +++ b/config/views.view.media_library.yml @@ -5,14 +5,14 @@ dependencies: config: - core.entity_view_mode.media.media_library - image.style.media_library - enforced: - module: - - media_library module: - image - media - media_library - user + enforced: + module: + - media_library _core: default_config_hash: dHOSWSHbMJNke0ZBGh1O5KrnwynSOCOpQycITW-pwfs id: media_library @@ -24,67 +24,12 @@ base_table: media_field_data base_field: mid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access media overview' - cache: - type: tag - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: 'Apply filters' - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: false - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 24 - offset: 0 - id: 0 - total_pages: null - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '6, 12, 24, 48' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - tags: - previous: ‹‹ - next: ›› - style: - type: default - options: - grouping: { } - row_class: '' - default_row_class: true - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false + title: Media fields: media_bulk_form: id: media_bulk_form @@ -93,6 +38,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: bulk_form label: '' exclude: false alter: @@ -137,8 +84,6 @@ display: action_title: Action include_exclude: exclude selected_actions: { } - entity_type: media - plugin_id: bulk_form rendered_entity: id: rendered_entity table: media @@ -146,6 +91,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: rendered_entity label: '' exclude: false alter: @@ -188,8 +135,100 @@ display: empty_zero: false hide_alter_empty: true view_mode: media_library + pager: + type: mini + options: + offset: 0 + items_per_page: 24 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '6, 12, 24, 48' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: 'Apply filters' + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access media overview' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No media available.' + tokenize: false + sorts: + created: + id: created + table: media_field_data + field: created + relationship: none + group_type: group + admin_label: '' entity_type: media - plugin_id: rendered_entity + entity_field: created + plugin_id: date + order: DESC + expose: + label: 'Newest first' + field_identifier: created + exposed: true + granularity: second + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: standard + order: ASC + expose: + label: 'Name (A-Z)' + field_identifier: name + exposed: true + name_1: + id: name_1 + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name + plugin_id: standard + order: DESC + expose: + label: 'Name (Z-A)' + field_identifier: name_1 + exposed: true filters: status: id: status @@ -198,6 +237,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: status + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -208,14 +250,14 @@ display: description: null use_operator: false operator: status_op + operator_limit_selection: false + operator_list: { } identifier: status required: true remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: true group_info: label: Published @@ -236,9 +278,6 @@ display: title: Unpublished operator: '=' value: '0' - plugin_id: boolean - entity_type: media - entity_field: status name: id: name table: media_field_data @@ -246,6 +285,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: name + plugin_id: string operator: contains value: '' group: 1 @@ -256,6 +298,8 @@ display: description: '' use_operator: false operator: name_op + operator_limit_selection: false + operator_list: { } identifier: name required: false remember: false @@ -264,8 +308,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -278,9 +320,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - entity_field: name - plugin_id: string bundle: id: bundle table: media_field_data @@ -288,6 +327,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: bundle operator: in value: { } group: 1 @@ -298,6 +340,8 @@ display: description: '' use_operator: false operator: bundle_op + operator_limit_selection: false + operator_list: { } identifier: type required: false remember: false @@ -307,8 +351,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: 'Media type' @@ -324,9 +366,6 @@ display: 1: { } 2: { } 3: { } - entity_type: media - entity_field: bundle - plugin_id: bundle status_extra: id: status_extra table: media_field_data @@ -334,6 +373,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: media_status operator: '=' value: '' group: 1 @@ -364,8 +405,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - plugin_id: media_status langcode: id: langcode table: media_field_data @@ -373,6 +412,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: langcode + plugin_id: language operator: in value: { } group: 1 @@ -383,6 +425,8 @@ display: description: '' use_operator: false operator: langcode_op + operator_limit_selection: false + operator_list: { } identifier: langcode required: false remember: false @@ -392,8 +436,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -406,72 +448,33 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: media - entity_field: langcode - plugin_id: language - sorts: - created: - id: created - table: media_field_data - field: created - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: true - expose: - label: 'Newest first' - granularity: second - entity_type: media - entity_field: created - plugin_id: date - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: true - expose: - label: 'Name (A-Z)' - entity_type: media - entity_field: name - plugin_id: standard - name_1: - id: name_1 - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: true - expose: - label: 'Name (Z-A)' - entity_type: media - entity_field: name - plugin_id: standard - title: Media + style: + type: default + options: + grouping: { } + row_class: '' + default_row_class: true + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + css_class: '' + use_ajax: true header: { } footer: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - empty: true - tokenize: false - content: 'No media available.' - plugin_id: text_custom - relationships: { } display_extenders: { } - use_ajax: true - css_class: '' cache_metadata: max-age: 0 contexts: @@ -483,13 +486,11 @@ display: - user.permissions tags: { } page: - display_plugin: page id: page display_title: Page + display_plugin: page position: 1 display_options: - display_extenders: { } - path: admin/content/media-grid fields: media_bulk_form: id: media_bulk_form @@ -498,6 +499,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: bulk_form label: '' exclude: false alter: @@ -542,8 +545,6 @@ display: action_title: Action include_exclude: exclude selected_actions: { } - entity_type: media - plugin_id: bulk_form name: id: name table: media_field_data @@ -551,6 +552,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: name + plugin_id: field label: '' exclude: true alter: @@ -606,9 +610,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: media - entity_field: name - plugin_id: field edit_media: id: edit_media table: media @@ -616,6 +617,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: entity_link_edit label: '' exclude: false alter: @@ -660,8 +663,6 @@ display: text: Edit output_url_as_text: false absolute: false - entity_type: media - plugin_id: entity_link_edit delete_media: id: delete_media table: media @@ -669,6 +670,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: entity_link_delete label: '' exclude: false alter: @@ -713,8 +716,6 @@ display: text: Delete output_url_as_text: false absolute: false - entity_type: media - plugin_id: entity_link_delete rendered_entity: id: rendered_entity table: media @@ -722,6 +723,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: rendered_entity label: '' exclude: false alter: @@ -764,10 +767,10 @@ display: empty_zero: false hide_alter_empty: true view_mode: media_library - entity_type: media - plugin_id: rendered_entity defaults: fields: false + display_extenders: { } + path: admin/content/media-grid cache_metadata: max-age: 0 contexts: @@ -780,13 +783,11 @@ display: - user.permissions tags: { } widget: - display_plugin: page id: widget display_title: Widget + display_plugin: page position: 2 display_options: - display_extenders: { } - path: admin/content/media-widget fields: media_library_select_form: id: media_library_select_form @@ -795,6 +796,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: media_library_select_form label: '' exclude: false alter: @@ -836,8 +839,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - entity_type: media - plugin_id: media_library_select_form rendered_entity: id: rendered_entity table: media @@ -845,6 +846,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + plugin_id: rendered_entity label: '' exclude: false alter: @@ -887,148 +890,10 @@ display: empty_zero: false hide_alter_empty: true view_mode: media_library - entity_type: media - plugin_id: rendered_entity - defaults: - fields: false - access: false - filters: false - filter_groups: false - arguments: false - header: false - css_class: false - display_description: '' access: type: perm options: perm: 'view media' - filters: - status: - id: status - table: media_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: status - plugin_id: boolean - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: name_op - label: Name - description: '' - use_operator: false - operator: name_op - identifier: name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: name - plugin_id: string - default_langcode: - id: default_langcode - table: media_field_data - field: default_langcode - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: default_langcode - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND arguments: bundle: id: bundle @@ -1037,6 +902,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: string default_action: ignore exception: value: all @@ -1051,8 +919,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 24 override: false + items_per_page: 24 summary: sort_order: asc number_of_records: 0 @@ -1068,28 +936,163 @@ display: path_case: none transform_dash: false break_phrase: false + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' entity_type: media - entity_field: bundle + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: 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: { } + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: default_langcode + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + access: false + css_class: false + fields: false + arguments: false + filters: false + filter_groups: false + header: false + css_class: '' + display_description: '' header: display_link_grid: id: display_link_grid table: views field: display_link - display_id: widget - label: Grid plugin_id: display_link + label: Grid empty: true + display_id: widget display_link_table: id: display_link_table table: views field: display_link - display_id: widget_table - label: Table plugin_id: display_link + label: Table empty: true - css_class: '' + display_id: widget_table rendering_language: '***LANGUAGE_language_interface***' + display_extenders: { } + path: admin/content/media-widget cache_metadata: max-age: -1 contexts: @@ -1100,88 +1103,69 @@ display: - user.permissions tags: { } widget_table: - display_plugin: page id: widget_table display_title: 'Widget (table)' + display_plugin: page position: 3 display_options: - display_extenders: { } - path: admin/content/media-widget-table - style: - type: table - options: - row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select' - default_row_class: true - defaults: - style: false - row: false - fields: false - access: false - filters: false - filter_groups: false - arguments: false - header: false - css_class: false - row: - type: fields fields: media_library_select_form: id: media_library_select_form - label: '' table: media field: media_library_select_form relationship: none entity_type: media plugin_id: media_library_select_form - element_wrapper_class: '' + label: '' element_class: '' + element_wrapper_class: '' thumbnail__target_id: id: thumbnail__target_id - label: Thumbnail table: media_field_data field: thumbnail__target_id relationship: none - type: image entity_type: media entity_field: thumbnail plugin_id: field + label: Thumbnail + type: image settings: - image_style: media_library image_link: '' + image_style: media_library name: id: name - label: Name table: media_field_data field: name relationship: none - type: string entity_type: media entity_field: name plugin_id: field + label: Name + type: string settings: link_to_entity: false uid: id: uid - label: Author table: media_field_revision field: uid relationship: none - type: entity_reference_label entity_type: media entity_field: uid plugin_id: field + label: Author + type: entity_reference_label settings: link: true changed: id: changed - label: Updated table: media_field_data field: changed relationship: none - type: timestamp entity_type: media entity_field: changed plugin_id: field + label: Updated + type: timestamp settings: date_format: short custom_date_format: '' @@ -1190,133 +1174,6 @@ display: type: perm options: perm: 'view media' - filters: - status: - id: status - table: media_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: status - plugin_id: boolean - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: name_op - label: Name - description: '' - use_operator: false - operator: name_op - identifier: name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: name - plugin_id: string - default_langcode: - id: default_langcode - table: media_field_data - field: default_langcode - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: default_langcode - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND arguments: bundle: id: bundle @@ -1325,6 +1182,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: media + entity_field: bundle + plugin_id: string default_action: ignore exception: value: all @@ -1339,8 +1199,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 24 override: false + items_per_page: 24 summary: sort_order: asc number_of_records: 0 @@ -1356,28 +1216,171 @@ display: path_case: none transform_dash: false break_phrase: false + filters: + status: + id: status + table: media_field_data + field: status + relationship: none + group_type: group + admin_label: '' entity_type: media - entity_field: bundle + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + name: + id: name + table: media_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: name plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: name_op + label: Name + description: '' + use_operator: false + operator: name_op + operator_limit_selection: false + operator_list: { } + identifier: 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: { } + default_langcode: + id: default_langcode + table: media_field_data + field: default_langcode + relationship: none + group_type: group + admin_label: '' + entity_type: media + entity_field: default_langcode + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select' + default_row_class: true + row: + type: fields + defaults: + access: false + css_class: false + style: false + row: false + fields: false + arguments: false + filters: false + filter_groups: false + header: false + css_class: '' header: display_link_grid: id: display_link_grid table: views field: display_link - display_id: widget - label: Grid plugin_id: display_link + label: Grid empty: true + display_id: widget display_link_table: id: display_link_table table: views field: display_link - display_id: widget_table - label: Table plugin_id: display_link + label: Table empty: true - css_class: '' + display_id: widget_table rendering_language: '***LANGUAGE_language_interface***' + display_extenders: { } + path: admin/content/media-widget-table cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.people.yml b/config/views.view.people.yml index 6c2ec32..99c864f 100644 --- a/config/views.view.people.yml +++ b/config/views.view.people.yml @@ -22,54 +22,12 @@ base_table: search_api_index_people base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: none - options: - offset: 0 - style: - type: default - options: - grouping: - - - field: field_people_type - rendered: false - rendered_strip: false - row_class: '' - default_row_class: false - uses_fields: true - row: - type: search_api - options: - view_modes: - 'entity:node': - people: small_card + title: 'Our people' fields: field_people_type: id: field_people_type @@ -78,6 +36,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: true alter: @@ -157,8 +117,6 @@ display: display_method: label topics: display_method: label - entity_type: node - plugin_id: search_api_field title: id: title table: search_api_datasource_people_entity_node @@ -166,6 +124,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: search_api_field label: '' exclude: false alter: @@ -228,9 +188,28 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - entity_type: node - plugin_id: search_api_field - filters: { } + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + empty: { } sorts: field_people_type: id: field_people_type @@ -239,11 +218,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: ASC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: field_people_type + exposed: false created: id: created table: search_api_index_people @@ -251,19 +231,41 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: created + exposed: false + arguments: { } + filters: { } + style: + type: default + options: + grouping: + - + field: field_people_type + rendered: false + rendered_strip: false + row_class: '' + default_row_class: false + uses_fields: true + row: + type: search_api + options: + view_modes: + 'entity:node': + people: small_card + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } + css_class: 'columns is-equal-height is-multiline' header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } - title: 'Our people' - css_class: 'columns is-equal-height is-multiline' cache_metadata: max-age: -1 contexts: @@ -273,12 +275,11 @@ display: tags: - 'config:field.storage.node.field_people_type' embed_team: - display_plugin: embed id: embed_team display_title: 'Team Embed' + display_plugin: embed position: 2 display_options: - display_extenders: { } filters: field_people_type: id: field_people_type @@ -287,6 +288,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_term operator: or value: 5: 5 @@ -298,6 +300,8 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false @@ -305,8 +309,6 @@ display: remember_roles: authenticated: authenticated reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -320,22 +322,15 @@ display: default_group_multiple: { } group_items: { } reduce_duplicates: false - type: select - limit: true vid: people_type + type: select hierarchy: false + limit: true error_message: true - plugin_id: search_api_term - defaults: - filters: false - filter_groups: false - style: false - row: false filter_groups: operator: AND groups: 1: AND - display_description: '' style: type: default options: @@ -353,6 +348,13 @@ display: view_modes: 'entity:node': people: small_card + defaults: + style: false + row: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -363,9 +365,9 @@ display: tags: - 'config:field.storage.node.field_people_type' page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } diff --git a/config/views.view.redirect.yml b/config/views.view.redirect.yml index c345b2d..e61ab5a 100644 --- a/config/views.view.redirect.yml +++ b/config/views.view.redirect.yml @@ -17,122 +17,12 @@ base_table: redirect base_field: rid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: Redirect fields: redirect_bulk_form: id: redirect_bulk_form @@ -141,6 +31,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + plugin_id: redirect_bulk_form label: '' exclude: false alter: @@ -185,8 +77,6 @@ display: 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 @@ -194,6 +84,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + entity_field: redirect_source + plugin_id: field label: From exclude: false alter: @@ -248,9 +141,6 @@ display: 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 @@ -279,6 +169,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + entity_field: created + plugin_id: date label: Created exclude: false alter: @@ -323,15 +216,64 @@ display: 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 + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: 'next ›' + previous: '‹ previous' + first: '« first' + last: 'last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer redirects' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'There is no redirect yet.' + tokenize: false + sorts: { } + arguments: { } filters: redirect_source__path: id: redirect_source__path @@ -340,6 +282,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + entity_field: redirect_source + plugin_id: string operator: contains value: '' group: 1 @@ -350,6 +295,8 @@ display: description: '' use_operator: false operator: redirect_source__path_op + operator_limit_selection: false + operator_list: { } identifier: redirect_source__path required: false remember: false @@ -358,8 +305,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -372,9 +317,6 @@ display: 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 @@ -382,6 +324,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + entity_field: redirect_redirect + plugin_id: string operator: contains value: '' group: 1 @@ -392,6 +337,8 @@ display: description: '' use_operator: false operator: redirect_redirect__uri_op + operator_limit_selection: false + operator_list: { } identifier: redirect_redirect__uri required: false remember: false @@ -400,8 +347,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -414,9 +359,6 @@ display: 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 @@ -424,6 +366,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + entity_field: status_code + plugin_id: numeric operator: '=' value: min: '' @@ -437,6 +382,8 @@ display: description: '' use_operator: false operator: status_code_op + operator_limit_selection: false + operator_list: { } identifier: status_code required: false remember: false @@ -445,8 +392,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: true group_info: label: 'Status code' @@ -463,54 +408,51 @@ display: title: '300 Multiple Choices' operator: '=' value: - value: '300' min: '' max: '' + value: '300' 2: title: '301 Moved Permanently' operator: '=' value: - value: '301' min: '' max: '' + value: '301' 3: title: '302 Found' operator: '=' value: - value: '302' min: '' max: '' + value: '302' 4: title: '303 See Other' operator: '=' value: - value: '303' min: '' max: '' + value: '303' 5: title: '304 Not Modified' operator: '=' value: - value: '304' min: '' max: '' + value: '304' 6: title: '305 Use Proxy' operator: '=' value: - value: '305' min: '' max: '' + value: '305' 7: title: '307 Temporary Redirect' operator: '=' value: - value: '307' min: '' max: '' - entity_type: redirect - entity_field: status_code - plugin_id: numeric + value: '307' language: id: language table: redirect @@ -518,6 +460,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: redirect + entity_field: language + plugin_id: language operator: in value: { } group: 1 @@ -528,6 +473,8 @@ display: description: '' use_operator: false operator: language_op + operator_limit_selection: false + operator_list: { } identifier: language required: false remember: false @@ -537,8 +484,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -551,57 +496,112 @@ display: 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + redirect_source__path: redirect_source__path + redirect_redirect__uri: redirect_redirect__uri + status_code: status_code + language: language + created: created + operations: operations + default: created + 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: '' + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - cacheable: false - max-age: 0 tags: { } + cacheable: false page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } path: admin/config/search/redirect cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - cacheable: false - max-age: 0 tags: { } + cacheable: false diff --git a/config/views.view.redirect_404.yml b/config/views.view.redirect_404.yml index 8ea8116..dbd04e2 100644 --- a/config/views.view.redirect_404.yml +++ b/config/views.view.redirect_404.yml @@ -16,114 +16,23 @@ base_table: redirect_404 base_field: '' display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 - daily_count: daily_count - 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: '' - daily_count: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - default: count - empty_table: false - row: - type: fields + title: 'Fix 404 pages' fields: path: + id: path table: redirect_404 field: path - id: path - entity_type: null - entity_field: null - plugin_id: standard relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: standard label: Path exclude: false alter: @@ -172,6 +81,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: serialized label: Count exclude: false alter: @@ -215,7 +125,6 @@ display: hide_alter_empty: true format: unserialized key: '' - plugin_id: serialized daily_count: id: daily_count table: redirect_404 @@ -223,6 +132,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: serialized label: 'Daily count' exclude: false alter: @@ -266,7 +176,6 @@ display: hide_alter_empty: true format: unserialized key: '' - plugin_id: serialized timestamp: id: timestamp table: redirect_404 @@ -274,6 +183,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: date label: 'Last accessed' exclude: false alter: @@ -318,7 +228,6 @@ display: date_format: short custom_date_format: '' timezone: '' - plugin_id: date langcode: id: langcode table: redirect_404 @@ -326,6 +235,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: standard label: Language exclude: false alter: @@ -367,7 +277,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: standard redirect_404_operations: id: redirect_404_operations table: redirect_404 @@ -375,6 +284,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: redirect_404_operations label: Operations exclude: false alter: @@ -416,7 +326,55 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: redirect_404_operations + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer redirects' + cache: + type: none + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'There are no 404 errors to fix.' + tokenize: false + sorts: { } + arguments: { } filters: path: id: path @@ -425,6 +383,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: string operator: contains value: '' group: 1 @@ -435,6 +394,8 @@ display: description: '' use_operator: false operator: path_op + operator_limit_selection: false + operator_list: { } identifier: path required: false remember: false @@ -443,8 +404,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -457,7 +416,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: string langcode: id: langcode table: redirect_404 @@ -465,6 +423,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: in_operator operator: in value: { } group: 1 @@ -475,6 +434,8 @@ display: description: '' use_operator: false operator: langcode_op + operator_limit_selection: false + operator_list: { } identifier: langcode required: false remember: false @@ -484,8 +445,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -498,7 +457,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: in_operator resolved: id: resolved table: redirect_404 @@ -506,6 +464,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: boolean operator: '=' value: '0' group: 1 @@ -516,6 +475,8 @@ display: description: '' use_operator: false operator: resolved_op + operator_limit_selection: false + operator_list: { } identifier: resolved required: false remember: false @@ -524,8 +485,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -538,30 +497,71 @@ display: 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + path: path + count: count + timestamp: timestamp + daily_count: daily_count + default: count + 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: '' + daily_count: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: { } + footer: { } + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -571,15 +571,15 @@ display: - user.permissions tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: + enabled: true + display_description: 'Lists 404 error paths with no redirect assigned yet.' 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: -1 contexts: diff --git a/config/views.view.related_content.yml b/config/views.view.related_content.yml index 369e21a..d9f23b5 100644 --- a/config/views.view.related_content.yml +++ b/config/views.view.related_content.yml @@ -19,78 +19,34 @@ base_table: node_field_data base_field: nid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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: 4 - offset: 0 - style: - type: default - options: - row_class: '' - default_row_class: false - uses_fields: false - row: - type: 'entity:node' - options: - relationship: none - view_mode: teaser + title: 'Related content' fields: title: id: title table: node_field_data field: title + relationship: none + group_type: group + admin_label: '' entity_type: node entity_field: title + plugin_id: field label: '' + exclude: false alter: alter_text: false make_link: false absolute: false - trim: false word_boundary: false ellipsis: false strip_tags: false + trim: false html: false - hide_empty: false - empty_zero: false - settings: - link_to_entity: true - plugin_id: field - relationship: none - group_type: group - admin_label: '' - exclude: false element_type: '' element_class: '' element_label_type: '' @@ -100,9 +56,13 @@ display: 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 @@ -113,47 +73,29 @@ display: multi_type: separator separator: ', ' field_api_classes: false - 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 - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - plugin_id: boolean - entity_type: node - entity_field: status + pager: + type: some + options: + offset: 0 + items_per_page: 4 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } sorts: similarterms: id: similarterms @@ -162,16 +104,13 @@ display: relationship: none group_type: group admin_label: '' - order: DESC - exposed: false - expose: - label: '' entity_type: node plugin_id: similar_terms_sort - header: { } - footer: { } - empty: { } - relationships: { } + order: DESC + expose: + label: '' + field_identifier: similarterms + exposed: false arguments: similar_nid: id: similar_nid @@ -180,6 +119,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + plugin_id: similar_terms_arg default_action: default exception: value: all @@ -193,8 +134,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 25 override: false + items_per_page: 25 summary: sort_order: asc number_of_records: 0 @@ -215,11 +156,71 @@ display: resource_type: 0 tags: 0 include_args: 0 + filters: + status: + id: status + table: node_field_data + field: status + relationship: none + group_type: group + admin_label: '' entity_type: node - plugin_id: similar_terms_arg - display_extenders: { } + entity_field: status + plugin_id: boolean + operator: '=' + value: '1' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: default + options: + row_class: '' + default_row_class: false + uses_fields: false + row: + type: 'entity:node' + options: + relationship: none + view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } group_by: true - title: 'Related content' + header: { } + footer: { } + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -230,13 +231,13 @@ display: - user.permissions tags: { } block_related_content: - display_plugin: block id: block_related_content display_title: 'Block Related' + display_plugin: block position: 1 display_options: - display_extenders: { } display_description: '' + display_extenders: { } block_hide_empty: true cache_metadata: max-age: -1 diff --git a/config/views.view.resource.yml b/config/views.view.resource.yml index 744b6dc..3a9ba9e 100644 --- a/config/views.view.resource.yml +++ b/config/views.view.resource.yml @@ -19,74 +19,23 @@ base_table: search_api_index_resource base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 12 - offset: 0 - id: 0 - total_pages: null - tags: - previous: ‹‹ - 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: default - options: - row_class: '' - default_row_class: false - uses_fields: false - row: - type: search_api - options: - view_modes: - 'entity:node': - resource: card + title: Resources fields: rendered_item: + id: rendered_item table: search_api_index_resource field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api label: '' exclude: false alter: @@ -132,7 +81,42 @@ display: use_highlighting: false multi_type: separator multi_separator: ', ' - filters: { } + pager: + type: mini + options: + offset: 0 + items_per_page: 12 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + empty: { } sorts: sticky: id: sticky @@ -141,11 +125,12 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api + field_identifier: sticky + exposed: false created: id: created table: search_api_index_resource @@ -153,21 +138,38 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api order: DESC - exposed: false expose: label: '' - plugin_id: search_api - header: { } - footer: { } - empty: { } - relationships: { } + field_identifier: created + exposed: false arguments: { } - display_extenders: { } - title: Resources + filters: { } filter_groups: operator: AND groups: { } + style: + type: default + options: + row_class: '' + default_row_class: false + uses_fields: false + row: + type: search_api + options: + view_modes: + 'entity:node': + resource: card + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } + header: { } + footer: { } + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -178,22 +180,16 @@ display: tags: - 'config:search_api.index.resource' block_promoted: - display_plugin: block id: block_promoted display_title: 'Block Promoted' + display_plugin: block position: 2 display_options: - display_extenders: { } pager: type: some options: - items_per_page: 4 offset: 0 - defaults: - pager: false - filters: false - filter_groups: false - display_description: '' + items_per_page: 4 filters: promote: id: promote @@ -202,6 +198,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_boolean operator: '=' value: '1' group: 1 @@ -212,14 +209,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -232,11 +229,16 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: search_api_boolean filter_groups: operator: AND groups: 1: AND + defaults: + pager: false + filters: false + filter_groups: false + display_description: '' + display_extenders: { } block_hide_empty: true cache_metadata: max-age: -1 @@ -247,27 +249,27 @@ display: tags: - 'config:search_api.index.resource' page_listing: - display_plugin: page id: page_listing display_title: Page + display_plugin: page position: 1 display_options: + cache: + type: none + defaults: + cache: false display_extenders: { } path: resources menu: type: normal title: Resources description: 'Get connected with our resources.' - expanded: false - parent: '' weight: -38 - context: '0' - menu_name: main enabled: false - cache: - type: none - defaults: - cache: false + expanded: false + menu_name: main + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.search.yml b/config/views.view.search.yml index 2f591e3..262e214 100644 --- a/config/views.view.search.yml +++ b/config/views.view.search.yml @@ -17,81 +17,23 @@ base_table: search_api_index_content base_field: search_api_id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: none - options: { } - cache: - type: tag - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - exposed_form: - type: basic - options: - submit_button: Search - 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: true - uses_fields: false - row: - type: search_api - options: - view_modes: - 'entity:node': - action: teaser - article: teaser - blog: teaser - campaign: teaser - case_study: teaser - event: teaser - page: teaser - people: teaser - resource: teaser + title: Search fields: title: + id: title table: search_api_index_content field: title - id: title - entity_type: null - entity_field: null - plugin_id: search_api_field relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: search_api_field label: '' exclude: false alter: @@ -151,6 +93,56 @@ display: fallback_options: link_to_item: false multi_separator: ', ' + pager: + type: mini + options: + offset: 0 + items_per_page: 10 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Search + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: none + options: { } + cache: + type: tag + options: { } + empty: { } + sorts: + search_api_relevance: + id: search_api_relevance + table: search_api_index_content + field: search_api_relevance + relationship: none + group_type: group + admin_label: '' + plugin_id: search_api + order: DESC + expose: + label: '' + field_identifier: search_api_relevance + exposed: false + arguments: { } filters: search_api_fulltext: id: search_api_fulltext @@ -159,6 +151,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: search_api_fulltext operator: and value: '' group: 1 @@ -169,6 +162,8 @@ display: description: '' use_operator: false operator: search_api_fulltext_op + operator_limit_selection: false + operator_list: { } identifier: search_api_fulltext required: false remember: false @@ -177,8 +172,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -194,26 +187,34 @@ display: parse_mode: terms min_length: null fields: { } - plugin_id: search_api_fulltext - sorts: - search_api_relevance: - id: search_api_relevance - table: search_api_index_content - field: search_api_relevance - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - plugin_id: search_api - title: Search + style: + type: default + options: + row_class: '' + default_row_class: true + uses_fields: false + row: + type: search_api + options: + view_modes: + 'entity:node': + action: teaser + article: teaser + blog: teaser + campaign: teaser + case_study: teaser + event: teaser + page: teaser + people: teaser + resource: teaser + query: + type: views_query + options: + bypass_access: false + skip_access: false + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } cache_metadata: max-age: -1 @@ -224,23 +225,23 @@ display: - url.query_args tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: + exposed_block: true display_extenders: { } path: search menu: type: none title: '' description: '' - expanded: false - parent: '' weight: 0 - context: '0' + expanded: false menu_name: main - exposed_block: true + parent: '' + context: '0' cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.taxonomy_term.yml b/config/views.view.taxonomy_term.yml index 81b4f4c..6d2165a 100644 --- a/config/views.view.taxonomy_term.yml +++ b/config/views.view.taxonomy_term.yml @@ -29,21 +29,32 @@ display: display_plugin: default position: 0 display_options: - query: - type: views_query + fields: + title: + id: title + table: node_field_data + field: title + entity_type: node + entity_field: title + plugin_id: field + pager: + type: mini options: - query_comment: '' - disable_sql_rewrite: false - distinct: false - replica: false - query_tags: { } - access: - type: perm - options: - perm: 'access content' - cache: - type: tag - options: { } + offset: 0 + items_per_page: 10 + total_pages: 0 + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset exposed_form: type: basic options: @@ -54,49 +65,41 @@ display: expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc - pager: - type: mini + access: + type: perm 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: ›› + perm: 'access content' + cache: + type: tag + options: { } + empty: { } sorts: sticky: id: sticky table: taxonomy_index field: sticky - order: DESC - plugin_id: standard relationship: none group_type: group admin_label: '' - exposed: false + plugin_id: standard + order: DESC expose: label: '' + field_identifier: sticky + exposed: false created: id: created table: taxonomy_index field: created - order: DESC - plugin_id: date relationship: none group_type: group admin_label: '' - exposed: false + plugin_id: date + order: DESC expose: label: '' + field_identifier: created + exposed: false granularity: second arguments: tid: @@ -106,6 +109,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: taxonomy_index_tid default_action: 'not found' exception: value: '' @@ -120,8 +124,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 25 override: false + items_per_page: 25 summary: sort_order: asc number_of_records: 0 @@ -131,15 +135,14 @@ display: type: 'entity:taxonomy_term' fail: 'not found' validate_options: + bundles: { } access: true operation: view multiple: 0 - bundles: { } break_phrase: false add_table: false require_value: false reduce_duplicates: false - plugin_id: taxonomy_index_tid filters: status: id: status @@ -148,6 +151,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -158,14 +162,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -178,7 +182,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: boolean style: type: default options: @@ -190,6 +193,17 @@ display: type: 'entity:node' options: view_mode: teaser + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + link_display: page_1 + link_url: '' header: entity_taxonomy_term: id: entity_taxonomy_term @@ -198,27 +212,16 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: entity empty: true - tokenize: true target: '{{ raw_arguments.tid }}' view_mode: full + tokenize: true bypass_access: false - plugin_id: entity footer: { } - empty: { } - relationships: { } - fields: - title: - id: title - table: node_field_data - field: title - entity_type: node - entity_field: title - plugin_id: field display_extenders: { } - link_url: '' - link_display: page_1 cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -226,7 +229,6 @@ display: - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } feed: id: feed @@ -234,29 +236,6 @@ display: display_plugin: feed position: 2 display_options: - query: - type: views_query - options: { } - pager: - type: some - options: - items_per_page: 12 - offset: 0 - path: taxonomy/term/%/feed - displays: - page_1: page_1 - default: '0' - style: - type: rss - options: - uses_fields: false - description: '' - row: - type: node_rss - options: - relationship: none - view_mode: rss - display_extenders: { } fields: nid: id: nid @@ -265,6 +244,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: nid + plugin_id: field label: '' exclude: true alter: @@ -321,9 +303,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: node - entity_field: nid - plugin_id: field title: id: title table: node_field_data @@ -331,6 +310,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: title + plugin_id: field label: '' exclude: false alter: @@ -386,9 +368,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: node - entity_field: title - plugin_id: field field_authors: id: field_authors table: node__field_authors @@ -396,6 +375,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: field label: '' exclude: false alter: @@ -451,7 +431,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - plugin_id: field created: id: created table: node_field_data @@ -459,6 +438,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: node + entity_field: created + plugin_id: field label: '' exclude: false alter: @@ -516,9 +498,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: node - entity_field: created - plugin_id: field field_body_paragraph: id: field_body_paragraph table: node__field_body_paragraph @@ -526,6 +505,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: field label: '' exclude: false alter: @@ -581,7 +561,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - plugin_id: field view_node: id: view_node table: node @@ -589,6 +568,8 @@ display: relationship: nid group_type: group admin_label: '' + entity_type: node + plugin_id: entity_link label: '' exclude: false alter: @@ -633,23 +614,11 @@ display: text: view output_url_as_text: false absolute: true - entity_type: node - plugin_id: entity_link - defaults: - fields: false - relationships: false - filters: false - filter_groups: false - relationships: - nid: - id: nid - table: taxonomy_index - field: nid - relationship: none - group_type: group - admin_label: node - required: true - plugin_id: standard + pager: + type: some + options: + offset: 0 + items_per_page: 12 filters: status: id: status @@ -658,6 +627,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -668,14 +638,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -688,41 +658,73 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: boolean filter_groups: operator: AND groups: 1: AND + style: + type: rss + options: + uses_fields: false + description: '' + row: + type: node_rss + options: + relationship: none + view_mode: rss + query: + type: views_query + options: { } + defaults: + relationships: false + fields: false + filters: false + filter_groups: false + relationships: + nid: + id: nid + table: taxonomy_index + field: nid + relationship: none + group_type: group + admin_label: node + plugin_id: standard + required: true + display_extenders: { } + path: taxonomy/term/%/feed + displays: + page_1: page_1 + default: '0' cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - 'user.node_grants:view' - user.permissions - max-age: -1 tags: - 'config:field.storage.node.field_authors' - 'config:field.storage.node.field_body_paragraph' feed_teasers: - display_plugin: feed id: feed_teasers display_title: 'Teaser feed' + display_plugin: feed position: 3 display_options: - display_extenders: { } + pager: + type: some + options: + offset: 0 + items_per_page: 24 row: type: node_rss options: relationship: none view_mode: rss_teaser display_description: '' + display_extenders: { } path: taxonomy/term/%/teasers/feed - pager: - type: some - options: - items_per_page: 24 - offset: 0 cache_metadata: max-age: -1 contexts: @@ -741,9 +743,10 @@ display: query: type: views_query options: { } - path: taxonomy/term/% display_extenders: { } + path: taxonomy/term/% cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -751,5 +754,4 @@ display: - url.query_args - 'user.node_grants:view' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.user_admin_people.yml b/config/views.view.user_admin_people.yml index 04acaaf..226532b 100644 --- a/config/views.view.user_admin_people.yml +++ b/config/views.view.user_admin_people.yml @@ -15,131 +15,12 @@ base_table: users_field_data base_field: uid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default 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 + title: People fields: user_bulk_form: id: user_bulk_form @@ -148,6 +29,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + plugin_id: user_bulk_form label: 'Bulk update' exclude: false alter: @@ -189,8 +72,6 @@ display: 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 @@ -198,6 +79,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: name + plugin_id: field label: Username exclude: false alter: @@ -239,10 +123,7 @@ display: 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 @@ -250,6 +131,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: status + plugin_id: field label: Status exclude: false alter: @@ -291,14 +175,11 @@ display: 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 + format_custom_true: Active roles_target_id: id: roles_target_id table: user__roles @@ -306,6 +187,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: user_roles label: Roles exclude: false alter: @@ -349,7 +231,6 @@ display: hide_alter_empty: true type: ul separator: ', ' - plugin_id: user_roles created: id: created table: users_field_data @@ -357,6 +238,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: created + plugin_id: field label: 'Member for' exclude: false alter: @@ -403,9 +287,6 @@ display: future_format: '@interval' past_format: '@interval' granularity: 2 - plugin_id: field - entity_type: user - entity_field: created access: id: access table: users_field_data @@ -413,6 +294,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: access + plugin_id: field label: 'Last access' exclude: false alter: @@ -459,9 +343,6 @@ display: future_format: '@interval hence' past_format: '@interval ago' granularity: 2 - plugin_id: field - entity_type: user - entity_field: access operations: id: operations table: users @@ -469,6 +350,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + plugin_id: entity_operations label: Operations exclude: false alter: @@ -511,8 +394,6 @@ display: empty_zero: false hide_alter_empty: true destination: true - entity_type: user - plugin_id: entity_operations mail: id: mail table: users_field_data @@ -520,6 +401,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: mail + plugin_id: field label: '' exclude: true alter: @@ -574,9 +458,72 @@ display: multi_type: separator separator: ', ' field_api_classes: false - plugin_id: field + pager: + type: full + options: + offset: 0 + items_per_page: 50 + total_pages: 0 + id: 0 + tags: + next: 'Next ›' + previous: '‹ Previous' + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer users' + cache: + type: tag + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No people available.' + tokenize: false + sorts: + created: + id: created + table: users_field_data + field: created + relationship: none + group_type: group + admin_label: '' entity_type: user - entity_field: mail + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second filters: combine: id: combine @@ -585,6 +532,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: combine operator: contains value: '' group: 1 @@ -595,6 +543,8 @@ display: description: '' use_operator: false operator: combine_op + operator_limit_selection: false + operator_list: { } identifier: user required: false remember: false @@ -603,8 +553,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -620,7 +568,6 @@ display: fields: name: name mail: mail - plugin_id: combine status: id: status table: users_field_data @@ -628,6 +575,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: status + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -638,6 +588,8 @@ display: description: '' use_operator: false operator: status_op + operator_limit_selection: false + operator_list: { } identifier: status required: false remember: false @@ -646,8 +598,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: true group_info: label: Status @@ -668,9 +618,6 @@ display: title: Blocked operator: '=' value: '0' - plugin_id: boolean - entity_type: user - entity_field: status roles_target_id: id: roles_target_id table: user__roles @@ -678,6 +625,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: user_roles operator: or value: { } group: 1 @@ -688,6 +636,8 @@ display: description: '' use_operator: false operator: roles_target_id_op + operator_limit_selection: false + operator_list: { } identifier: role required: false remember: false @@ -697,8 +647,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -712,7 +660,6 @@ display: default_group_multiple: { } group_items: { } reduce_duplicates: false - plugin_id: user_roles permission: id: permission table: user__roles @@ -720,6 +667,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: user_permissions operator: or value: { } group: 1 @@ -730,6 +678,8 @@ display: description: '' use_operator: false operator: permission_op + operator_limit_selection: false + operator_list: { } identifier: permission required: false remember: false @@ -739,8 +689,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -754,7 +702,6 @@ display: default_group_multiple: { } group_items: { } reduce_duplicates: false - plugin_id: user_permissions default_langcode: id: default_langcode table: users_field_data @@ -762,6 +709,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: default_langcode + plugin_id: boolean operator: '=' value: '1' group: 1 @@ -772,14 +722,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -792,9 +742,6 @@ display: 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 @@ -802,6 +749,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + plugin_id: numeric operator: '!=' value: min: '' @@ -815,14 +764,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -835,92 +784,144 @@ display: 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + user_bulk_form: user_bulk_form + name: name + status: status + rid: rid + created: created + access: access + edit_node: edit_node + dropbutton: dropbutton + default: created + 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: '' + override: true + sticky: false + summary: '' + empty_table: true + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + css_class: '' + use_ajax: false + group_by: false + show_admin_links: true + use_more: false + use_more_always: false + use_more_text: more + link_display: page_1 + link_url: '' + display_comment: '' + hide_attachment_summary: false display_extenders: { } cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: 0 tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: - path: admin/people/list + defaults: + show_admin_links: false show_admin_links: false + display_extenders: { } + path: admin/people/list menu: type: 'default tab' title: List description: 'Find and manage people interacting with your site.' - menu_name: admin weight: -10 + menu_name: admin 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: { } + menu_name: admin cache_metadata: + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - max-age: 0 tags: { } diff --git a/config/views.view.watchdog.yml b/config/views.view.watchdog.yml index 1eee922..f4d421a 100644 --- a/config/views.view.watchdog.yml +++ b/config/views.view.watchdog.yml @@ -16,133 +16,12 @@ base_table: watchdog base_field: wid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'access site reports' - cache: - type: none - options: { } - query: - type: views_query - options: - disable_sql_rewrite: false - distinct: false - replica: false - query_comment: '' - query_tags: { } - exposed_form: - type: basic - options: - submit_button: Filter - reset_button: true - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: false - sort_asc_label: Asc - sort_desc_label: Desc - pager: - type: mini - options: - items_per_page: 50 - offset: 0 - id: 0 - total_pages: null - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '5, 10, 25, 50' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - tags: - previous: ‹‹ - next: ›› - style: - type: table - options: - grouping: { } - row_class: '{{ type }} {{ severity }}' - default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' - columns: - nothing: nothing - wid: wid - severity: severity - type: type - timestamp: timestamp - message: message - name: name - link: link - info: - nothing: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-medium - wid: - sortable: false - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: priority-low - severity: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-low - type: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-medium - timestamp: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: priority-low - message: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - name: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-medium - link: - align: '' - separator: '' - empty_column: false - responsive: priority-low - default: wid - empty_table: false - row: - type: fields + title: 'Recent log messages' fields: nothing: id: nothing @@ -151,6 +30,7 @@ display: relationship: none group_type: group admin_label: Icon + plugin_id: custom label: '' exclude: false alter: @@ -192,7 +72,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: false - plugin_id: custom wid: id: wid table: watchdog @@ -200,6 +79,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: standard label: WID exclude: true alter: @@ -241,7 +121,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: standard severity: id: severity table: watchdog @@ -249,6 +128,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: machine_name label: Severity exclude: true alter: @@ -291,7 +171,6 @@ display: empty_zero: false hide_alter_empty: true machine_name: false - plugin_id: machine_name type: id: type table: watchdog @@ -299,6 +178,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: standard label: Type exclude: false alter: @@ -340,7 +220,6 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: standard timestamp: id: timestamp table: watchdog @@ -348,6 +227,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: date label: Date exclude: false alter: @@ -392,7 +272,6 @@ display: date_format: short custom_date_format: '' timezone: '' - plugin_id: date message: id: message table: watchdog @@ -400,6 +279,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: dblog_message label: Message exclude: false alter: @@ -442,7 +322,6 @@ display: empty_zero: false hide_alter_empty: true replace_variables: true - plugin_id: dblog_message name: id: name table: users_field_data @@ -450,6 +329,9 @@ display: relationship: uid group_type: group admin_label: '' + entity_type: user + entity_field: name + plugin_id: field label: User exclude: false alter: @@ -505,9 +387,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: user - entity_field: name - plugin_id: field link: id: link table: watchdog @@ -515,6 +394,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: dblog_operations label: Operations exclude: false alter: @@ -556,7 +436,68 @@ display: hide_empty: false empty_zero: false hide_alter_empty: true - plugin_id: dblog_operations + pager: + type: mini + options: + offset: 0 + items_per_page: 50 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access site reports' + cache: + type: none + options: { } + empty: + area: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: 'No log messages available.' + plugin_id: text_custom + empty: true + content: 'No log messages available.' + tokenize: false + sorts: + wid: + id: wid + table: watchdog + field: wid + relationship: none + group_type: group + admin_label: '' + plugin_id: standard + order: DESC + expose: + label: '' + field_identifier: wid + exposed: false + arguments: { } filters: type: id: type @@ -565,6 +506,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: dblog_types operator: in value: { } group: 1 @@ -575,6 +517,8 @@ display: description: '' use_operator: false operator: type_op + operator_limit_selection: false + operator_list: { } identifier: type required: false remember: false @@ -584,8 +528,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -598,7 +540,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: dblog_types severity: id: severity table: watchdog @@ -606,6 +547,7 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: in_operator operator: in value: { } group: 1 @@ -616,6 +558,8 @@ display: description: '' use_operator: false operator: severity_op + operator_limit_selection: false + operator_list: { } identifier: severity required: false remember: false @@ -625,8 +569,6 @@ display: anonymous: '0' administrator: '0' reduce: false - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -639,35 +581,97 @@ display: default_group: All default_group_multiple: { } group_items: { } - plugin_id: in_operator - sorts: - wid: - id: wid - table: watchdog - field: wid - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - plugin_id: standard - title: 'Recent log messages' - header: { } - footer: { } - empty: - area: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: 'No log messages available.' - empty: true - tokenize: false - content: 'No log messages available.' - plugin_id: text_custom + filter_groups: + operator: AND + groups: + 1: AND + style: + type: table + options: + grouping: { } + row_class: '{{ type }} {{ severity }}' + default_row_class: true + columns: + nothing: nothing + wid: wid + severity: severity + type: type + timestamp: timestamp + message: message + name: name + link: link + default: wid + info: + nothing: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + wid: + sortable: false + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + severity: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + timestamp: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + message: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + link: + align: '' + separator: '' + empty_column: false + responsive: priority-low + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } relationships: uid: id: uid @@ -676,15 +680,12 @@ display: relationship: none group_type: group admin_label: User - required: false plugin_id: standard - arguments: { } - display_extenders: { } - filter_groups: - operator: AND - groups: - 1: AND + required: false css_class: admin-dblog + header: { } + footer: { } + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -695,9 +696,9 @@ display: - user.permissions tags: { } page: - display_plugin: page id: page display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } diff --git a/config/views.view.webform_submissions.yml b/config/views.view.webform_submissions.yml index 377cb16..707b773 100644 --- a/config/views.view.webform_submissions.yml +++ b/config/views.view.webform_submissions.yml @@ -2,12 +2,12 @@ uuid: a810b23c-7c59-494b-a137-124b4d00e73b langcode: en status: true dependencies: - enforced: - module: - - webform module: - user - webform + enforced: + module: + - webform _core: default_config_hash: _7B5YYODi_--G_tOWLcRmuuWsNsOFtDfntkEuwJWQq0 id: webform_submissions @@ -19,156 +19,12 @@ base_table: webform_submission base_field: sid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: none - options: { } - 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: 25 - 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, 100, 200' - 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: - webform_submission_bulk_form: webform_submission_bulk_form - sid: sid - in_draft: in_draft - sticky: sticky - locked: locked - created: created - completed: completed - remote_addr: remote_addr - view_webform_submission: view_webform_submission - edit_webform_submission: view_webform_submission - info: - webform_submission_bulk_form: - align: '' - separator: '' - empty_column: false - responsive: '' - sid: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - in_draft: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - sticky: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - locked: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - created: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - completed: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - remote_addr: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - view_webform_submission: - sortable: false - default_sort_order: asc - align: '' - separator: ' ' - empty_column: false - responsive: '' - edit_webform_submission: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - default: created - empty_table: false - row: - type: fields - options: - inline: { } - separator: '' - hide_empty: false - default_field_elements: true + title: 'Webform submissions' fields: sid: id: sid @@ -177,6 +33,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sid + plugin_id: field label: '#' exclude: false alter: @@ -233,9 +92,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sid - plugin_id: field in_draft: id: in_draft table: webform_submission @@ -243,6 +99,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: in_draft + plugin_id: field label: Draft exclude: false alter: @@ -288,8 +147,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -300,9 +159,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: in_draft - plugin_id: field created: id: created table: webform_submission @@ -310,6 +166,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: created + plugin_id: field label: Created exclude: false alter: @@ -367,9 +226,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: created - plugin_id: field remote_addr: id: remote_addr table: webform_submission @@ -377,6 +233,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: remote_addr + plugin_id: field label: 'IP address' exclude: false alter: @@ -432,9 +291,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: remote_addr - plugin_id: field view_webform_submission: id: view_webform_submission table: webform_submission @@ -442,6 +298,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + plugin_id: entity_link label: Operations exclude: false alter: @@ -486,22 +344,43 @@ display: text: view output_url_as_text: false absolute: false - entity_type: webform_submission - plugin_id: entity_link - filters: { } - sorts: { } - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - empty: false - content: 'Displaying @start - @end of @total' - plugin_id: result - footer: { } + pager: + type: full + options: + offset: 0 + items_per_page: 25 + total_pages: null + id: 0 + tags: + next: ›› + previous: ‹‹ + first: '« First' + last: 'Last »' + expose: + items_per_page: false + items_per_page_label: 'Items per page' + items_per_page_options: '5, 10, 25, 50, 100, 200' + items_per_page_options_all: false + items_per_page_options_all_label: '- All -' + offset: false + offset_label: Offset + quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: none + options: { } + cache: + type: tag + options: { } empty: area_text_custom: id: area_text_custom @@ -510,11 +389,11 @@ display: relationship: none group_type: group admin_label: '' - empty: true - tokenize: false - content: 'No submissions available.' plugin_id: text_custom - relationships: { } + empty: true + content: 'No submissions available.' + tokenize: false + sorts: { } arguments: webform_id: id: webform_id @@ -551,6 +430,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: in_draft + plugin_id: numeric default_action: ignore exception: value: all @@ -565,8 +447,8 @@ display: summary_options: base_path: '' count: true - items_per_page: 25 override: false + items_per_page: 25 summary: sort_order: asc number_of_records: 0 @@ -578,42 +460,16 @@ display: validate_options: { } break_phrase: false not: false - entity_type: webform_submission - entity_field: in_draft - plugin_id: numeric - display_extenders: { } + filters: { } filter_groups: operator: AND groups: { } - title: 'Webform submissions' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - user - tags: { } - embed_administer: - display_plugin: embed - id: embed_administer - display_title: 'Embed: Administer' - position: 2 - display_options: - display_extenders: { } - display_description: 'Administer submissions.' style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: webform_submission_bulk_form: webform_submission_bulk_form sid: sid @@ -625,6 +481,7 @@ display: remote_addr: remote_addr view_webform_submission: view_webform_submission edit_webform_submission: view_webform_submission + default: created info: webform_submission_bulk_form: align: '' @@ -694,26 +551,56 @@ display: separator: '' empty_column: false responsive: '' - default: created + override: true + sticky: false + summary: '' empty_table: false - defaults: - style: false - row: false - access: false - fields: false - filters: false - filter_groups: false + caption: '' + description: '' row: type: fields options: + default_field_elements: true inline: { } separator: '' hide_empty: false - default_field_elements: true - access: - type: perm + query: + type: views_query options: - perm: 'administer webform submission' + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: + result: + id: result + table: views + field: result + relationship: none + group_type: group + admin_label: '' + plugin_id: result + empty: false + content: 'Displaying @start - @end of @total' + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - url + - url.query_args + - user + tags: { } + embed_administer: + id: embed_administer + display_title: 'Embed: Administer' + display_plugin: embed + position: 2 + display_options: fields: webform_submission_bulk_form: id: webform_submission_bulk_form @@ -722,6 +609,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + plugin_id: webform_submission_bulk_form label: 'Webform submission operations bulk form' exclude: false alter: @@ -766,8 +655,6 @@ display: action_title: Action include_exclude: exclude selected_actions: { } - entity_type: webform_submission - plugin_id: webform_submission_bulk_form sid: id: sid table: webform_submission @@ -775,6 +662,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sid + plugin_id: field label: '#' exclude: false alter: @@ -831,9 +721,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sid - plugin_id: field in_draft: id: in_draft table: webform_submission @@ -841,6 +728,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: in_draft + plugin_id: field label: Draft exclude: false alter: @@ -886,8 +776,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -898,9 +788,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: in_draft - plugin_id: field sticky: id: sticky table: webform_submission @@ -908,6 +795,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sticky + plugin_id: field label: Sticky exclude: false alter: @@ -953,8 +843,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -965,9 +855,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sticky - plugin_id: field locked: id: locked table: webform_submission @@ -975,6 +862,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: locked + plugin_id: field label: Locked exclude: false alter: @@ -1020,8 +910,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -1032,9 +922,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: locked - plugin_id: field created: id: created table: webform_submission @@ -1042,6 +929,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: created + plugin_id: field label: Created exclude: false alter: @@ -1099,9 +989,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: created - plugin_id: field completed: id: completed table: webform_submission @@ -1109,6 +996,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: completed + plugin_id: field label: Completed exclude: false alter: @@ -1166,9 +1056,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: completed - plugin_id: field remote_addr: id: remote_addr table: webform_submission @@ -1176,6 +1063,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: remote_addr + plugin_id: field label: 'IP address' exclude: false alter: @@ -1231,9 +1121,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: remote_addr - plugin_id: field operations: id: operations table: webform_submission @@ -1241,6 +1128,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: null + entity_field: null + plugin_id: entity_operations label: Operations exclude: false alter: @@ -1283,9 +1173,10 @@ display: empty_zero: false hide_alter_empty: true destination: true - entity_type: null - entity_field: null - plugin_id: entity_operations + access: + type: perm + options: + perm: 'administer webform submission' filters: in_draft: id: in_draft @@ -1294,6 +1185,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: in_draft + plugin_id: boolean operator: '=' value: All group: 1 @@ -1304,6 +1198,8 @@ display: description: '' use_operator: false operator: in_draft_op + operator_limit_selection: false + operator_list: { } identifier: in_draft required: false remember: false @@ -1312,8 +1208,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -1326,9 +1220,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: webform_submission - entity_field: in_draft - plugin_id: boolean sticky: id: sticky table: webform_submission @@ -1336,6 +1227,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sticky + plugin_id: boolean operator: '=' value: All group: 1 @@ -1346,6 +1240,8 @@ display: description: '' use_operator: false operator: sticky_op + operator_limit_selection: false + operator_list: { } identifier: sticky required: false remember: false @@ -1354,8 +1250,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -1368,9 +1262,6 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: webform_submission - entity_field: sticky - plugin_id: boolean locked: id: locked table: webform_submission @@ -1378,6 +1269,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: locked + plugin_id: boolean operator: '=' value: All group: 1 @@ -1388,6 +1282,8 @@ display: description: '' use_operator: false operator: locked_op + operator_limit_selection: false + operator_list: { } identifier: locked required: false remember: false @@ -1397,8 +1293,6 @@ display: anonymous: '0' administrator: '0' demo_region: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -1411,13 +1305,119 @@ display: default_group: All default_group_multiple: { } group_items: { } - entity_type: webform_submission - entity_field: locked - plugin_id: boolean filter_groups: operator: AND groups: 1: AND + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + columns: + webform_submission_bulk_form: webform_submission_bulk_form + sid: sid + in_draft: in_draft + sticky: sticky + locked: locked + created: created + completed: completed + remote_addr: remote_addr + view_webform_submission: view_webform_submission + edit_webform_submission: view_webform_submission + default: created + info: + webform_submission_bulk_form: + align: '' + separator: '' + empty_column: false + responsive: '' + sid: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + in_draft: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + sticky: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + locked: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + created: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + completed: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + remote_addr: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + view_webform_submission: + sortable: false + default_sort_order: asc + align: '' + separator: ' ' + empty_column: false + responsive: '' + edit_webform_submission: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + override: true + sticky: false + summary: '' + empty_table: false + caption: '' + description: '' + row: + type: fields + options: + default_field_elements: true + inline: { } + separator: '' + hide_empty: false + defaults: + access: false + style: false + row: false + fields: false + filters: false + filter_groups: false + display_description: 'Administer submissions.' + display_extenders: { } cache_metadata: max-age: 0 contexts: @@ -1429,36 +1429,24 @@ display: - user.permissions tags: { } embed_default: - display_plugin: embed id: embed_default display_title: 'Embed: Default' + display_plugin: embed position: 1 display_options: - display_extenders: { } - display_description: 'Display submissions.' - defaults: - fields: true - style: false - row: false - filters: true - filter_groups: true style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: sid: sid in_draft: in_draft created: created remote_addr: remote_addr view_webform_submission: view_webform_submission + default: created info: sid: sortable: true @@ -1495,15 +1483,27 @@ display: separator: ' ' empty_column: false responsive: '' - default: created + override: true + sticky: false + summary: '' empty_table: false + caption: '' + description: '' row: type: fields options: + default_field_elements: true inline: { } separator: '' hide_empty: false - default_field_elements: true + defaults: + style: false + row: false + fields: true + filters: true + filter_groups: true + display_description: 'Display submissions.' + display_extenders: { } cache_metadata: max-age: -1 contexts: @@ -1514,13 +1514,11 @@ display: - user tags: { } embed_manage: - display_plugin: embed id: embed_manage display_title: 'Embed: Manage' + display_plugin: embed position: 3 display_options: - display_extenders: { } - display_description: 'Manage submissions.' fields: webform_submission_bulk_form: id: webform_submission_bulk_form @@ -1529,6 +1527,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + plugin_id: webform_submission_bulk_form label: 'Webform submission operations bulk form' exclude: false alter: @@ -1577,8 +1577,6 @@ display: - webform_submission_make_sticky_action - webform_submission_make_unlock_action - webform_submission_make_unsticky_action - entity_type: webform_submission - plugin_id: webform_submission_bulk_form sid: id: sid table: webform_submission @@ -1586,6 +1584,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sid + plugin_id: field label: '#' exclude: false alter: @@ -1642,9 +1643,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sid - plugin_id: field in_draft: id: in_draft table: webform_submission @@ -1652,6 +1650,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: in_draft + plugin_id: field label: Draft exclude: false alter: @@ -1697,8 +1698,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -1709,9 +1710,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: in_draft - plugin_id: field sticky: id: sticky table: webform_submission @@ -1719,6 +1717,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sticky + plugin_id: field label: Sticky exclude: false alter: @@ -1764,8 +1765,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -1776,9 +1777,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sticky - plugin_id: field locked: id: locked table: webform_submission @@ -1786,6 +1784,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: locked + plugin_id: field label: Locked exclude: false alter: @@ -1831,8 +1832,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -1843,9 +1844,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: locked - plugin_id: field created: id: created table: webform_submission @@ -1853,6 +1851,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: created + plugin_id: field label: Created exclude: false alter: @@ -1910,9 +1911,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: created - plugin_id: field completed: id: completed table: webform_submission @@ -1920,6 +1918,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: completed + plugin_id: field label: Completed exclude: false alter: @@ -1977,9 +1978,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: completed - plugin_id: field remote_addr: id: remote_addr table: webform_submission @@ -1987,6 +1985,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: remote_addr + plugin_id: field label: 'IP address' exclude: false alter: @@ -2042,9 +2043,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: remote_addr - plugin_id: field view_webform_submission: id: view_webform_submission table: webform_submission @@ -2052,6 +2050,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + plugin_id: entity_link label: Operations exclude: false alter: @@ -2096,8 +2096,6 @@ display: text: view output_url_as_text: false absolute: false - entity_type: webform_submission - plugin_id: entity_link edit_webform_submission: id: edit_webform_submission table: webform_submission @@ -2105,6 +2103,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + plugin_id: entity_link_edit label: Operations exclude: false alter: @@ -2149,26 +2149,148 @@ display: text: edit output_url_as_text: false absolute: false + access: + type: perm + options: + perm: 'edit any webform submission' + filters: + in_draft: + id: in_draft + table: webform_submission + field: in_draft + relationship: none + group_type: group + admin_label: '' entity_type: webform_submission - plugin_id: entity_link_edit - defaults: - fields: false - style: false - row: false - access: false - filters: false - filter_groups: false + entity_field: in_draft + plugin_id: boolean + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: 'Is draft' + description: '' + use_operator: false + operator: in_draft_op + operator_limit_selection: false + operator_list: { } + identifier: in_draft + 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: { } + sticky: + id: sticky + table: webform_submission + field: sticky + relationship: none + group_type: group + admin_label: '' + entity_type: webform_submission + entity_field: sticky + plugin_id: boolean + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: Sticky + description: '' + use_operator: false + operator: sticky_op + operator_limit_selection: false + operator_list: { } + identifier: sticky + 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: { } + locked: + id: locked + table: webform_submission + field: locked + relationship: none + group_type: group + admin_label: '' + entity_type: webform_submission + entity_field: locked + plugin_id: boolean + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: Locked + description: '' + use_operator: false + operator: locked_op + operator_limit_selection: false + operator_list: { } + identifier: locked + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + demo_region: '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: { } + filter_groups: + operator: AND + groups: + 1: AND style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: webform_submission_bulk_form: webform_submission_bulk_form sid: sid @@ -2180,6 +2302,7 @@ display: remote_addr: remote_addr view_webform_submission: view_webform_submission edit_webform_submission: view_webform_submission + default: created info: webform_submission_bulk_form: align: '' @@ -2249,151 +2372,28 @@ display: separator: '' empty_column: false responsive: '' - default: created + override: true + sticky: false + summary: '' empty_table: false + caption: '' + description: '' row: type: fields options: + default_field_elements: true inline: { } separator: '' hide_empty: false - default_field_elements: true - access: - type: perm - options: - perm: 'edit any webform submission' - filters: - in_draft: - id: in_draft - table: webform_submission - field: in_draft - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: All - group: 1 - exposed: true - expose: - operator_id: '' - label: 'Is draft' - description: '' - use_operator: false - operator: in_draft_op - identifier: in_draft - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: webform_submission - entity_field: in_draft - plugin_id: boolean - sticky: - id: sticky - table: webform_submission - field: sticky - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: All - group: 1 - exposed: true - expose: - operator_id: '' - label: Sticky - description: '' - use_operator: false - operator: sticky_op - identifier: sticky - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: webform_submission - entity_field: sticky - plugin_id: boolean - locked: - id: locked - table: webform_submission - field: locked - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: All - group: 1 - exposed: true - expose: - operator_id: '' - label: Locked - description: '' - use_operator: false - operator: locked_op - identifier: locked - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - demo_region: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: webform_submission - entity_field: locked - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND + defaults: + access: false + style: false + row: false + fields: false + filters: false + filter_groups: false + display_description: 'Manage submissions.' + display_extenders: { } cache_metadata: max-age: 0 contexts: @@ -2405,13 +2405,11 @@ display: - user.permissions tags: { } embed_review: - display_plugin: embed id: embed_review display_title: 'Embed: Review' + display_plugin: embed position: 4 display_options: - display_extenders: { } - display_description: 'Review submissions.' fields: sid: id: sid @@ -2420,6 +2418,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sid + plugin_id: field label: '#' exclude: false alter: @@ -2476,9 +2477,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sid - plugin_id: field in_draft: id: in_draft table: webform_submission @@ -2486,6 +2484,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: in_draft + plugin_id: field label: Draft exclude: false alter: @@ -2531,8 +2532,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -2543,9 +2544,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: in_draft - plugin_id: field sticky: id: sticky table: webform_submission @@ -2553,6 +2551,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: sticky + plugin_id: field label: Sticky exclude: false alter: @@ -2598,8 +2599,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -2610,9 +2611,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: sticky - plugin_id: field locked: id: locked table: webform_submission @@ -2620,6 +2618,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: locked + plugin_id: field label: Locked exclude: false alter: @@ -2665,8 +2666,8 @@ display: type: boolean settings: format: yes-no - format_custom_true: '' format_custom_false: '' + format_custom_true: '' group_column: value group_columns: { } group_rows: true @@ -2677,9 +2678,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: locked - plugin_id: field created: id: created table: webform_submission @@ -2687,6 +2685,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: created + plugin_id: field label: Created exclude: false alter: @@ -2744,9 +2745,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: created - plugin_id: field completed: id: completed table: webform_submission @@ -2754,6 +2752,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: completed + plugin_id: field label: Completed exclude: false alter: @@ -2811,9 +2812,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: completed - plugin_id: field remote_addr: id: remote_addr table: webform_submission @@ -2821,6 +2819,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + entity_field: remote_addr + plugin_id: field label: 'IP address' exclude: false alter: @@ -2876,9 +2877,6 @@ display: multi_type: separator separator: ', ' field_api_classes: false - entity_type: webform_submission - entity_field: remote_addr - plugin_id: field view_webform_submission: id: view_webform_submission table: webform_submission @@ -2886,6 +2884,8 @@ display: relationship: none group_type: group admin_label: '' + entity_type: webform_submission + plugin_id: entity_link label: Operations exclude: false alter: @@ -2930,26 +2930,148 @@ display: text: view output_url_as_text: false absolute: false + access: + type: perm + options: + perm: 'view any webform submission' + filters: + in_draft: + id: in_draft + table: webform_submission + field: in_draft + relationship: none + group_type: group + admin_label: '' entity_type: webform_submission - plugin_id: entity_link - defaults: - fields: false - style: false - row: false - access: false - filters: false - filter_groups: false + entity_field: in_draft + plugin_id: boolean + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: 'Is draft' + description: '' + use_operator: false + operator: in_draft_op + operator_limit_selection: false + operator_list: { } + identifier: in_draft + 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: { } + sticky: + id: sticky + table: webform_submission + field: sticky + relationship: none + group_type: group + admin_label: '' + entity_type: webform_submission + entity_field: sticky + plugin_id: boolean + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: Sticky + description: '' + use_operator: false + operator: sticky_op + operator_limit_selection: false + operator_list: { } + identifier: sticky + 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: { } + locked: + id: locked + table: webform_submission + field: locked + relationship: none + group_type: group + admin_label: '' + entity_type: webform_submission + entity_field: locked + plugin_id: boolean + operator: '=' + value: All + group: 1 + exposed: true + expose: + operator_id: '' + label: Locked + description: '' + use_operator: false + operator: locked_op + operator_limit_selection: false + operator_list: { } + identifier: locked + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + demo_region: '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: { } + filter_groups: + operator: AND + groups: + 1: AND style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: webform_submission_bulk_form: webform_submission_bulk_form sid: sid @@ -2961,6 +3083,7 @@ display: remote_addr: remote_addr view_webform_submission: view_webform_submission edit_webform_submission: view_webform_submission + default: created info: webform_submission_bulk_form: align: '' @@ -3030,151 +3153,28 @@ display: separator: '' empty_column: false responsive: '' - default: created + override: true + sticky: false + summary: '' empty_table: false + caption: '' + description: '' row: type: fields options: + default_field_elements: true inline: { } separator: '' hide_empty: false - default_field_elements: true - access: - type: perm - options: - perm: 'view any webform submission' - filters: - in_draft: - id: in_draft - table: webform_submission - field: in_draft - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: All - group: 1 - exposed: true - expose: - operator_id: '' - label: 'Is draft' - description: '' - use_operator: false - operator: in_draft_op - identifier: in_draft - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: webform_submission - entity_field: in_draft - plugin_id: boolean - sticky: - id: sticky - table: webform_submission - field: sticky - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: All - group: 1 - exposed: true - expose: - operator_id: '' - label: Sticky - description: '' - use_operator: false - operator: sticky_op - identifier: sticky - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: webform_submission - entity_field: sticky - plugin_id: boolean - locked: - id: locked - table: webform_submission - field: locked - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: All - group: 1 - exposed: true - expose: - operator_id: '' - label: Locked - description: '' - use_operator: false - operator: locked_op - identifier: locked - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - demo_region: '0' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: webform_submission - entity_field: locked - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND + defaults: + access: false + style: false + row: false + fields: false + filters: false + filter_groups: false + display_description: 'Review submissions.' + display_extenders: { } cache_metadata: max-age: -1 contexts: diff --git a/config/views.view.webmentions.yml b/config/views.view.webmentions.yml index 4d1fd92..5f5fa9f 100644 --- a/config/views.view.webmentions.yml +++ b/config/views.view.webmentions.yml @@ -18,46 +18,586 @@ base_table: webmention_received base_field: id display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm - options: - perm: 'administer webmention entities' - 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 + title: Webmentions + fields: + webmention_bulk_form: + id: webmention_bulk_form + table: webmention_received + field: webmention_bulk_form + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + plugin_id: webmention_bulk_form + label: 'Webmention operations bulk form' + 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 + action_title: Action + include_exclude: exclude + selected_actions: { } + source: + id: source + table: webmention_received + field: source + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: source + plugin_id: field + label: Source + 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: 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 + target: + id: target + table: webmention_received + field: target + relationship: none + group_type: group + admin_label: '' + entity_type: null + entity_field: target + plugin_id: field + label: Target + exclude: false + alter: + alter_text: false + text: '' + make_link: true + path: '{{ target }}' + 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: 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 + type: + id: type + table: webmention_received + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: type + plugin_id: field + label: 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: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + property: + id: property + table: webmention_received + field: property + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: property + plugin_id: field + label: Property + 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: 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 + author_name: + id: author_name + table: webmention_received + field: author_name + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: author_name + plugin_id: field + label: Author + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: false + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + created: + id: created + table: webmention_received + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: created + plugin_id: field + 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 + click_sort_column: value + type: timestamp + settings: + date_format: medium + 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 + status: + id: status + table: webmention_received + field: status + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: status + plugin_id: field + label: Published + 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: boolean + settings: + format: custom + format_custom_false: Unpublished + format_custom_true: Published + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + operations: + id: operations + table: webmention_received + field: operations + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + plugin_id: entity_operations + label: 'Operations links' + exclude: false + alter: + alter_text: false + text: '' + make_link: false + path: '' + absolute: false + external: false + replace_spaces: false + path_case: none + trim_whitespace: false + alt: '' + rel: '' + link_class: '' + prefix: '' + suffix: '' + target: '' + nl2br: false + max_length: 0 + word_boundary: true + ellipsis: true + more_link: false + more_link_text: '' + more_link_path: '' + strip_tags: false + trim: false + preserve_tags: '' + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + destination: true pager: type: full options: - items_per_page: 30 offset: 0 - id: 0 + items_per_page: 30 total_pages: null + id: 0 tags: - previous: ‹‹ next: ›› + previous: ‹‹ first: '« First' last: 'Last »' expose: @@ -69,17 +609,281 @@ display: offset: false offset_label: Offset quantity: 9 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'administer webmention entities' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: true + content: 'No webmentions received yet.' + tokenize: false + sorts: + created: + id: created + table: webmention_received + field: created + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } + filters: + source: + id: source + table: webmention_received + field: source + relationship: none + group_type: group + admin_label: '' + entity_type: inideweb_webmention + entity_field: source + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: source_op + label: Source + description: '' + use_operator: false + operator: source_op + operator_limit_selection: false + operator_list: { } + identifier: source + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + target: + id: target + table: webmention_received + field: target + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: target + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: target_op + label: Target + description: '' + use_operator: false + operator: target_op + operator_limit_selection: false + operator_list: { } + identifier: target + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + author_name: + id: author_name + table: webmention_received + field: author_name + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: author_name + plugin_id: string + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: author_name_op + label: Author + description: '' + use_operator: false + operator: author_name_op + operator_limit_selection: false + operator_list: { } + identifier: author_name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + property: + id: property + table: webmention_received + field: property + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: property + plugin_id: webmention_filter_select + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: property_op + label: Property + description: '' + use_operator: false + operator: property_op + operator_limit_selection: false + operator_list: { } + identifier: property + 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 + type: + id: type + table: webmention_received + field: type + relationship: none + group_type: group + admin_label: '' + entity_type: indieweb_webmention + entity_field: type + plugin_id: webmention_filter_select + operator: or + value: { } + group: 1 + exposed: true + expose: + operator_id: type_op + label: Type + description: '' + use_operator: false + operator: type_op + operator_limit_selection: false + operator_list: { } + identifier: type + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + reduce_duplicates: false + filter_groups: + operator: AND + groups: + 1: AND style: type: table options: grouping: { } row_class: '' default_row_class: true - override: true - sticky: false - caption: '' - summary: '' - description: '' columns: webmention_bulk_form: webmention_bulk_form source: source @@ -90,6 +894,7 @@ display: created: created status: status operations: operations + default: created info: webmention_bulk_form: align: '' @@ -150,830 +955,26 @@ display: separator: '' empty_column: false responsive: '' - default: created + override: true + sticky: false + summary: '' empty_table: true + caption: '' + description: '' row: type: fields - fields: - webmention_bulk_form: - id: webmention_bulk_form - table: webmention_received - field: webmention_bulk_form - relationship: none - group_type: group - admin_label: '' - label: 'Webmention operations bulk form' - 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 - action_title: Action - include_exclude: exclude - selected_actions: { } - entity_type: indieweb_webmention - plugin_id: webmention_bulk_form - source: - id: source - table: webmention_received - field: source - relationship: none - group_type: group - admin_label: '' - label: Source - 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: 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: indieweb_webmention - entity_field: source - plugin_id: field - target: - id: target - table: webmention_received - field: target - relationship: none - group_type: group - admin_label: '' - label: Target - exclude: false - alter: - alter_text: false - text: '' - make_link: true - path: '{{ target }}' - 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: 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: null - entity_field: target - plugin_id: field - type: - id: type - table: webmention_received - field: type - relationship: none - group_type: group - admin_label: '' - label: 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: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - entity_type: indieweb_webmention - entity_field: type - plugin_id: field - property: - id: property - table: webmention_received - field: property - relationship: none - group_type: group - admin_label: '' - label: Property - 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: 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: indieweb_webmention - entity_field: property - plugin_id: field - author_name: - id: author_name - table: webmention_received - field: author_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: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - entity_type: indieweb_webmention - entity_field: author_name - plugin_id: field - created: - id: created - table: webmention_received - 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 - click_sort_column: value - type: timestamp - settings: - date_format: medium - 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: indieweb_webmention - entity_field: created - plugin_id: field - status: - id: status - table: webmention_received - field: status - relationship: none - group_type: group - admin_label: '' - label: Published - 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: boolean - settings: - format: custom - format_custom_true: Published - format_custom_false: Unpublished - 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: indieweb_webmention - entity_field: status - plugin_id: field - operations: - id: operations - table: webmention_received - field: operations - relationship: none - group_type: group - admin_label: '' - label: 'Operations links' - 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: indieweb_webmention - plugin_id: entity_operations - filters: - source: - id: source - table: webmention_received - field: source - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: source_op - label: Source - description: '' - use_operator: false - operator: source_op - identifier: source - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - placeholder: '' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: inideweb_webmention - entity_field: source - plugin_id: string - target: - id: target - table: webmention_received - field: target - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: target_op - label: Target - description: '' - use_operator: false - operator: target_op - identifier: target - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - placeholder: '' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: indieweb_webmention - entity_field: target - plugin_id: string - author_name: - id: author_name - table: webmention_received - field: author_name - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: author_name_op - label: Author - description: '' - use_operator: false - operator: author_name_op - identifier: author_name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - placeholder: '' - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: indieweb_webmention - entity_field: author_name - plugin_id: string - property: - id: property - table: webmention_received - field: property - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: property_op - label: Property - description: '' - use_operator: false - operator: property_op - identifier: property - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - entity_type: indieweb_webmention - entity_field: property - plugin_id: webmention_filter_select - type: - id: type - table: webmention_received - field: type - relationship: none - group_type: group - admin_label: '' - operator: or - value: { } - group: 1 - exposed: true - expose: - operator_id: type_op - label: 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 - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - reduce_duplicates: false - entity_type: indieweb_webmention - entity_field: type - plugin_id: webmention_filter_select - sorts: - created: - id: created - table: webmention_received - field: created - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - granularity: second - entity_type: indieweb_webmention - entity_field: created - plugin_id: date - title: Webmentions + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } 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 webmentions received yet.' - plugin_id: text_custom - relationships: { } - arguments: { } display_extenders: { } - filter_groups: - operator: AND - groups: - 1: AND cache_metadata: max-age: 0 contexts: @@ -984,9 +985,9 @@ display: - user.permissions tags: { } page_1: - display_plugin: page id: page_1 display_title: Page + display_plugin: page position: 1 display_options: display_extenders: { } diff --git a/config/views.view.who_s_new.yml b/config/views.view.who_s_new.yml index 49086c7..bceca99 100644 --- a/config/views.view.who_s_new.yml +++ b/config/views.view.who_s_new.yml @@ -15,26 +15,52 @@ base_table: users_field_data base_field: uid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm + title: 'Who''s new' + fields: + name: + id: name + table: users_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + 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: user_name + pager: + type: some 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: { } + offset: 0 + items_per_page: 5 exposed_form: type: basic options: @@ -45,64 +71,46 @@ display: expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc - pager: - type: some + access: + type: perm options: - items_per_page: 5 - offset: 0 - style: - type: html_list - row: - type: fields - fields: - name: - id: name + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: + created: + id: created 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 + field: created 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 + entity_field: created + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: created + exposed: false + granularity: second + arguments: { } filters: status: - value: '1' + id: status table: users_field_data field: status - id: status + entity_type: user + entity_field: status + plugin_id: boolean + value: '1' + group: 1 expose: operator: '0' operator_limit_selection: false operator_list: { } - group: 1 - plugin_id: boolean - entity_type: user - entity_field: status access: id: access table: users_field_data @@ -110,6 +118,9 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: access + plugin_id: date operator: '>' value: min: '' @@ -124,14 +135,14 @@ display: description: '' use_operator: false operator: '' + operator_limit_selection: false + operator_list: { } identifier: '' required: false remember: false multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -144,53 +155,43 @@ display: 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' + style: + type: html_list + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: { } footer: { } - empty: { } - relationships: { } - arguments: { } display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions - max-age: -1 tags: { } block_1: - display_plugin: block id: block_1 display_title: 'Who''s new' + display_plugin: block position: 1 display_options: display_description: 'A list of new users' + display_extenders: { } block_description: 'Who''s new' block_category: User - display_extenders: { } cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions - max-age: -1 tags: { } diff --git a/config/views.view.who_s_online.yml b/config/views.view.who_s_online.yml index 4165dbf..2376986 100644 --- a/config/views.view.who_s_online.yml +++ b/config/views.view.who_s_online.yml @@ -15,26 +15,52 @@ base_table: users_field_data base_field: uid display: default: - display_plugin: default id: default display_title: Master + display_plugin: default position: 0 display_options: - access: - type: perm + title: 'Who''s online' + fields: + name: + id: name + table: users_field_data + field: name + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: name + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + 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: user_name + pager: + type: some 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: { } + offset: 0 + items_per_page: 10 exposed_form: type: basic options: @@ -45,71 +71,26 @@ display: expose_sort_order: true sort_asc_label: Asc sort_desc_label: Desc - pager: - type: some + access: + type: perm 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 + perm: 'access user profiles' + cache: + type: tag + options: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom relationship: none group_type: group admin_label: '' - 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' - operator_limit_selection: false - operator_list: { } - group: 1 - plugin_id: boolean - entity_type: user - entity_field: status + plugin_id: text_custom + empty: true + content: 'There are currently 0 users online.' + tokenize: false + sorts: access: id: access table: users_field_data @@ -117,6 +98,40 @@ display: relationship: none group_type: group admin_label: '' + entity_type: user + entity_field: access + plugin_id: date + order: DESC + expose: + label: '' + field_identifier: access + exposed: false + granularity: second + arguments: { } + filters: + status: + id: status + table: users_field_data + field: status + entity_type: user + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '0' + operator_limit_selection: false + operator_list: { } + access: + id: access + table: users_field_data + field: access + relationship: none + group_type: group + admin_label: '' + entity_type: user + entity_field: access + plugin_id: date operator: '>=' value: min: '' @@ -131,6 +146,8 @@ display: description: 'A user is considered online for this long after they have last viewed a page.' use_operator: false operator: access_op + operator_limit_selection: false + operator_list: { } identifier: access required: false remember: false @@ -139,8 +156,6 @@ display: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -153,26 +168,26 @@ display: 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' + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } header: result: id: result @@ -181,45 +196,31 @@ display: relationship: none group_type: group admin_label: '' + plugin_id: result 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: + max-age: -1 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' + display_plugin: block position: 1 display_options: - block_description: 'Who''s online' display_description: 'A list of users that are currently logged in.' display_extenders: { } + block_description: 'Who''s online' cache_metadata: + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions - max-age: -1 tags: { } diff --git a/config/webform.settings.yml b/config/webform.settings.yml index 5ed97f9..dcad4fe 100644 --- a/config/webform.settings.yml +++ b/config/webform.settings.yml @@ -1,36 +1,32 @@ +_core: + default_config_hash: vOXV9KclChKnE97mh4KCJVTDXxxRwh5PrtrhoXrJFWg +langcode: en settings: default_status: open default_page_base_path: /form default_ajax: false + default_ajax_progress_type: throbber default_ajax_effect: fade default_ajax_speed: 500 - default_ajax_progress_type: throbber - default_form_open_message: 'This form has not yet been opened to submissions.' - default_form_close_message: 'Sorry…This form is closed to new submissions.' - default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.' default_submit_button_label: Submit default_reset_button_label: Reset default_delete_button_label: Delete default_form_submit_once: false + default_form_open_message: 'This form has not yet been opened to submissions.' + default_form_close_message: 'Sorry…This form is closed to new submissions.' + default_form_exception_message: 'Unable to display this webform. Please contact the site administrator.' default_form_confidential_message: 'This form is confidential. You must Log out to submit it.' default_form_access_denied_message: 'Please login to access this form.' - default_form_disable_back: false - default_form_submit_back: false - default_form_unsaved: false default_form_disable_remote_addr: false default_form_novalidate: false default_form_disable_inline_errors: false default_form_required: false default_form_required_label: 'Indicates required field' + default_form_unsaved: false + default_form_disable_back: false + default_form_submit_back: false 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 - button_classes: '' default_wizard_prev_button_label: '< Previous Page' default_wizard_next_button_label: 'Next Page >' default_wizard_start_label: Start @@ -49,10 +45,9 @@ settings: default_draft_pending_multiple_message: 'You have pending drafts for this webform. View your pending drafts.' default_confirmation_message: 'New submission added to [webform:title].' default_confirmation_back_label: 'Back to form' + default_limit_total_message: 'No more submissions are permitted.' + default_limit_user_message: 'No more submissions are permitted.' default_submission_label: '[webform_submission:submitted-to]: Submission #[webform_submission:serial]' - default_submission_access_denied_message: 'Please login to access this submission.' - default_submission_exception_message: 'Unable to process this submission. Please contact the site administrator.' - default_submission_locked_message: 'This submission has been locked.' default_submission_log: false default_submission_views: { } default_submission_views_replace: @@ -68,9 +63,19 @@ settings: - entity.node.webform.user.drafts - entity.node.webform.user.submissions default_results_customize: false + default_submission_access_denied_message: 'Please login to access this submission.' + default_submission_exception_message: 'Unable to process this submission. Please contact the site administrator.' + default_submission_locked_message: 'This submission has been locked.' 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.' + form_classes: | + container-inline clearfix + form--inline clearfix + messages messages--error + messages messages--warning + messages messages--status + button_classes: '' preview_classes: | messages messages--error messages messages--warning @@ -80,22 +85,9 @@ settings: messages messages--warning messages messages--status confirmation_back_classes: button - default_limit_total_message: 'No more submissions are permitted.' - default_limit_user_message: 'No more submissions are permitted.' default_share: false default_share_node: false default_share_theme_name: '' - dialog: false - dialog_options: - narrow: - title: Narrow - width: 600 - normal: - title: Normal - width: 800 - wide: - title: Wide - width: 1000 webform_bulk_form: true webform_bulk_form_actions: - webform_open_action @@ -110,43 +102,20 @@ settings: - webform_submission_make_lock_action - webform_submission_make_unlock_action - webform_submission_delete_action + dialog: false + dialog_options: + narrow: + title: Narrow + width: 600 + normal: + title: Normal + width: 800 + wide: + title: Wide + width: 1000 assets: css: '' javascript: '' -handler: - excluded_handlers: { } -variant: - excluded_variants: { } -export: - temp_directory: '' - exporter: delimited - multiple_delimiter: ; - header_format: label - header_prefix: true - header_prefix_label_delimiter: ': ' - header_prefix_key_delimiter: __ - composite_element_item_format: label - options_single_format: compact - options_multiple_format: compact - options_item_format: label - entity_reference_items: - - id - - title - - url - likert_answers_format: label - signature_format: status - delimiter: ',' - excel: false - archive_type: tar - excluded_exporters: { } -batch: - default_batch_export_size: 500 - default_batch_import_size: 100 - default_batch_update_size: 500 - default_batch_delete_size: 500 - default_batch_email_size: 500 -purge: - cron_size: 100 form: limit: 50 filter_category: '' @@ -203,10 +172,10 @@ file: file_private_redirect_message: 'Please login to access the uploaded file.' default_max_filesize: '' default_managed_file_extensions: 'gif jpg png bmp eps tif pict psd txt rtf html odf pdf doc docx ppt pptx xls xlsx xml avi mov mp3 ogg wav bz2 dmg gz jar rar sit svg tar zip' - default_audio_file_extensions: 'mp3 ogg wav' - default_document_file_extensions: 'txt rtf pdf doc docx odt ppt pptx odp xls xlsx ods' default_image_file_extensions: 'gif jpg png svg' default_video_file_extensions: 'avi mov mp4 ogg wav webm' + default_audio_file_extensions: 'mp3 ogg wav' + default_document_file_extensions: 'txt rtf pdf doc docx odt ppt pptx odp xls xlsx ods' make_unused_managed_files_temporary: true delete_temporary_managed_files: true format: { } @@ -222,7 +191,7 @@ mail: default_body_text: | Submitted on [webform_submission:created] Submitted by: [webform_submission:user] - + Submitted values are: [webform_submission:values] default_body_html: | @@ -232,6 +201,40 @@ mail: [webform_submission:values] roles: - staff +export: + temp_directory: '' + exporter: delimited + delimiter: ',' + multiple_delimiter: ; + excel: false + archive_type: tar + header_format: label + header_prefix: true + header_prefix_key_delimiter: __ + header_prefix_label_delimiter: ': ' + entity_reference_items: + - id + - title + - url + options_single_format: compact + options_multiple_format: compact + options_item_format: label + likert_answers_format: label + signature_format: status + composite_element_item_format: label + excluded_exporters: { } +handler: + excluded_handlers: { } +variant: + excluded_variants: { } +batch: + default_batch_export_size: 500 + default_batch_import_size: 100 + default_batch_update_size: 500 + default_batch_delete_size: 500 + default_batch_email_size: 500 +purge: + cron_size: 100 test: types: | checkbox: @@ -314,12 +317,12 @@ test: - 'Dixisset' ui: video_display: dialog - details_save: true help_disabled: false dialog_disabled: false offcanvas_disabled: false promotions_disabled: false support_disabled: false + details_save: true description_help: true toolbar_item: false libraries: @@ -329,12 +332,9 @@ libraries: - jquery.toggles requirements: cdn: true - bootstrap: true clientside_validation: true + bootstrap: true spam: true -langcode: en third_party_settings: captcha: replace_administration_mode: true -_core: - default_config_hash: vOXV9KclChKnE97mh4KCJVTDXxxRwh5PrtrhoXrJFWg diff --git a/config/webform.webform.attend_the_tech_and_rev_workshop.yml b/config/webform.webform.attend_the_tech_and_rev_workshop.yml index cba708c..e671454 100644 --- a/config/webform.webform.attend_the_tech_and_rev_workshop.yml +++ b/config/webform.webform.attend_the_tech_and_rev_workshop.yml @@ -2,9 +2,9 @@ uuid: 23478458-4054-4226-beac-4aa007c044c3 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 20 template: false archive: false @@ -47,9 +47,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -59,31 +59,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -92,11 +97,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -107,13 +107,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -136,9 +136,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: message + confirmation_url: '' confirmation_title: '' confirmation_message: 'Thank you for registering for the event! We look forward to discussing tech and rev with you.' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.blog_posts.yml b/config/webform.webform.blog_posts.yml index 17bfbb0..d353913 100644 --- a/config/webform.webform.blog_posts.yml +++ b/config/webform.webform.blog_posts.yml @@ -2,9 +2,9 @@ uuid: d57a0f50-13eb-4c78-a398-7d685d50322f langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -40,9 +40,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -52,31 +52,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -85,11 +90,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -100,13 +100,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -129,9 +129,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.capacitacion.yml b/config/webform.webform.capacitacion.yml index f6a3147..28ee102 100644 --- a/config/webform.webform.capacitacion.yml +++ b/config/webform.webform.capacitacion.yml @@ -2,9 +2,9 @@ uuid: 1270ffba-cf31-4bfc-8eb3-a5192a1d47ea langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 20 template: false archive: false @@ -58,9 +58,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -70,31 +70,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -103,11 +108,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -118,13 +118,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -147,11 +147,11 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: 'Tu solicitud de entrenamiento fue un éxito.' confirmation_message: | Gracias por solicitar un entrenamiento. Revisaremos sus necesidades y haremos un seguimiento pronto. Mientras tanto, no dude en leer nuestras publicaciones de blog o nuestros videos de capacitación.
  - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.contact.yml b/config/webform.webform.contact.yml index 275c7a9..2a948b4 100644 --- a/config/webform.webform.contact.yml +++ b/config/webform.webform.contact.yml @@ -5,9 +5,11 @@ dependencies: enforced: module: - webform +_core: + default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww +weight: 0 open: null close: null -weight: 0 uid: null template: false archive: false @@ -58,9 +60,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -70,31 +72,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -103,11 +110,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -118,13 +120,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -147,9 +149,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: 'Thanks for reaching out! We'll get back to you as soon as one of us (probably Micky) checks our email.' - confirmation_url: '' confirmation_attributes: { } confirmation_back: false confirmation_back_label: '' @@ -228,9 +230,9 @@ access: handlers: email_notification: id: email + handler_id: email_notification label: 'Email notification' notes: '' - handler_id: email_notification status: true conditions: { } weight: 1 @@ -239,19 +241,23 @@ handlers: - completed to_mail: _default to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: '[webform_submission:values:email:raw]' from_options: { } from_name: '[webform_submission:values:name:raw]' + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: '[webform_submission:values:subject:raw]' body: | Hi Agarics, - + You got a new message. - +

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

Submitted values are:

{{ webform_token('[webform_submission:values]', webform_submission) }} @@ -263,13 +269,7 @@ handlers: html: true attachments: false twig: true - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } -_core: - default_config_hash: B-E6t3OGPrgG1OPuVOmoXmjWLXkta_R-lSr_ppfU2Ww diff --git a/config/webform.webform.contact_confirm.yml b/config/webform.webform.contact_confirm.yml index 454754c..95d9bd7 100644 --- a/config/webform.webform.contact_confirm.yml +++ b/config/webform.webform.contact_confirm.yml @@ -2,9 +2,9 @@ uuid: 9b05041e-37e3-4ee5-ab00-2faa67fdb9f3 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 1 template: false archive: false @@ -45,9 +45,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -57,31 +57,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -90,11 +95,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -105,13 +105,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -134,9 +134,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.drupal_8_9_content_migrations.yml b/config/webform.webform.drupal_8_9_content_migrations.yml index 4040a17..8dd3fc0 100644 --- a/config/webform.webform.drupal_8_9_content_migrations.yml +++ b/config/webform.webform.drupal_8_9_content_migrations.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - stripe_webform +weight: 0 open: null close: null -weight: 0 uid: 8 template: false archive: false @@ -63,9 +63,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -75,31 +75,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -108,11 +113,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -123,13 +123,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -152,12 +152,12 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: | Thank you [webform_submission:values:name]!  You're registered for:
[webform_submission:values:course_summary:html]
We've sent an e-mail to [webform_submission:values:email]. - confirmation_url: '' confirmation_attributes: { } confirmation_back: false confirmation_back_label: '' @@ -236,9 +236,9 @@ access: handlers: stripe: id: stripe + handler_id: stripe label: Stripe notes: '' - handler_id: stripe status: true conditions: { } weight: 0 @@ -256,9 +256,9 @@ handlers: stripe_subscription_create: '' email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -267,13 +267,17 @@ handlers: - completed to_mail: '[webform_submission:values:email:raw]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: _default bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: 'Training registration for [webform:title]' body: | Dear [webform_submission:values:name],
@@ -298,11 +302,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.drutopia_intake.yml b/config/webform.webform.drutopia_intake.yml index 61da318..580e871 100644 --- a/config/webform.webform.drutopia_intake.yml +++ b/config/webform.webform.drutopia_intake.yml @@ -2,9 +2,9 @@ uuid: cd3d862d-7e0e-45ca-856d-a4078ff574c8 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -71,9 +71,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -83,31 +83,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -116,11 +121,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -131,13 +131,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -160,9 +160,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.drutopia_platform_intake.yml b/config/webform.webform.drutopia_platform_intake.yml index f61f80b..8681a70 100644 --- a/config/webform.webform.drutopia_platform_intake.yml +++ b/config/webform.webform.drutopia_platform_intake.yml @@ -2,9 +2,9 @@ uuid: 41a3096e-8049-4b5b-813a-6c6d46e6b5a1 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 8 template: false archive: false @@ -42,9 +42,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -54,31 +54,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -87,11 +92,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -102,13 +102,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -131,9 +131,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -212,9 +212,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -223,13 +223,17 @@ handlers: - completed to_mail: ask@agaric.coop to_options: { } - cc_mail: info@drutopia.org - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: info@drutopia.org + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -240,11 +244,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.find_it_platform.yml b/config/webform.webform.find_it_platform.yml index 0f64d02..c7b9703 100644 --- a/config/webform.webform.find_it_platform.yml +++ b/config/webform.webform.find_it_platform.yml @@ -2,9 +2,9 @@ uuid: 19f8065b-2b50-4ed0-b3b9-74bb08085ff6 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 20 template: false archive: false @@ -33,9 +33,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -45,31 +45,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: webform_routes: { } @@ -80,11 +85,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -95,13 +95,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -124,9 +124,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: 'Thank you for getting in touch! We'll follow up soon to chat all things Find It.' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.general_services.yml b/config/webform.webform.general_services.yml index c9745b6..c709275 100644 --- a/config/webform.webform.general_services.yml +++ b/config/webform.webform.general_services.yml @@ -2,9 +2,9 @@ uuid: 439948f3-c134-40f5-a8a2-2c2b834e4cf9 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 1 template: false archive: false @@ -47,9 +47,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -59,31 +59,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -92,11 +97,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -107,13 +107,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -136,9 +136,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.getting_started_with_drupal_9.yml b/config/webform.webform.getting_started_with_drupal_9.yml index 8d16535..8c7120e 100644 --- a/config/webform.webform.getting_started_with_drupal_9.yml +++ b/config/webform.webform.getting_started_with_drupal_9.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - stripe_webform +weight: 0 open: null close: null -weight: 0 uid: 8 template: false archive: false @@ -63,9 +63,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -75,31 +75,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -108,11 +113,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -123,13 +123,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -152,12 +152,12 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: | Thank you [webform_submission:values:name]!  You're registered for:
[webform_submission:values:course_summary:html]
We've sent an e-mail to [webform_submission:values:email]. - confirmation_url: '' confirmation_attributes: { } confirmation_back: false confirmation_back_label: '' @@ -236,9 +236,9 @@ access: handlers: stripe: id: stripe + handler_id: stripe label: Stripe notes: '' - handler_id: stripe status: true conditions: { } weight: 0 @@ -256,9 +256,9 @@ handlers: stripe_subscription_create: '' email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -267,13 +267,17 @@ handlers: - completed to_mail: '[webform_submission:values:email:raw]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: _default bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: 'Training registration for [webform:title]' body: | Dear [webform_submission:values:name],
@@ -298,11 +302,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.getting_started_with_react_js.yml b/config/webform.webform.getting_started_with_react_js.yml index 43cd668..aeedcfd 100644 --- a/config/webform.webform.getting_started_with_react_js.yml +++ b/config/webform.webform.getting_started_with_react_js.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - stripe_webform +weight: 0 open: null close: null -weight: 0 uid: 17 template: false archive: false @@ -63,9 +63,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -75,31 +75,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -108,11 +113,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -123,13 +123,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -152,12 +152,12 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: | Thank you [webform_submission:values:name]!  You're registered for:
[webform_submission:values:course_summary:html]
We've sent an e-mail to [webform_submission:values:email]. - confirmation_url: '' confirmation_attributes: { } confirmation_back: false confirmation_back_label: '' @@ -236,9 +236,9 @@ access: handlers: stripe: id: stripe + handler_id: stripe label: Stripe notes: '' - handler_id: stripe status: true conditions: { } weight: 0 @@ -256,9 +256,9 @@ handlers: stripe_subscription_create: '' email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -267,13 +267,17 @@ handlers: - completed to_mail: '[webform_submission:values:email:raw]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: _default bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: 'Training registration for [webform:title]' body: | Dear [webform_submission:values:name],
@@ -298,11 +302,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.join_the_movement.yml b/config/webform.webform.join_the_movement.yml index 6230143..3ab2cef 100644 --- a/config/webform.webform.join_the_movement.yml +++ b/config/webform.webform.join_the_movement.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - webform_mailchimp +weight: 0 open: null close: null -weight: 0 uid: 1 template: false archive: false @@ -40,9 +40,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -52,31 +52,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -85,11 +90,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -100,13 +100,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -129,9 +129,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url + confirmation_url: 'confirmation/thanks-joining-movement?webform_sid=[webform_submission:sid]' confirmation_title: '' confirmation_message: '' - confirmation_url: 'confirmation/thanks-joining-movement?webform_sid=[webform_submission:sid]' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -210,9 +210,9 @@ access: handlers: mailchimp: id: mailchimp + handler_id: mailchimp label: MailChimp notes: '' - handler_id: mailchimp status: true conditions: { } weight: 0 diff --git a/config/webform.webform.join_the_movement_confirm.yml b/config/webform.webform.join_the_movement_confirm.yml index edbdc45..ccc6cbc 100644 --- a/config/webform.webform.join_the_movement_confirm.yml +++ b/config/webform.webform.join_the_movement_confirm.yml @@ -2,9 +2,9 @@ uuid: e00580b9-1381-408d-8ddc-e8314675680e langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 1 template: false archive: false @@ -30,9 +30,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -42,31 +42,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -75,11 +80,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -90,13 +90,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -119,9 +119,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: 'Thank you for your feedback!' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.june_2020_webinars.yml b/config/webform.webform.june_2020_webinars.yml index d086a56..da3ad1e 100644 --- a/config/webform.webform.june_2020_webinars.yml +++ b/config/webform.webform.june_2020_webinars.yml @@ -2,9 +2,9 @@ uuid: 8d0930f6-991a-4bbf-8e12-02dd4ac1b470 langcode: en status: closed dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 17 template: false archive: false @@ -43,9 +43,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -55,31 +55,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -88,11 +93,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -103,13 +103,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -132,9 +132,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url_message + confirmation_url: 'https://agaric.coop/training' confirmation_title: '' confirmation_message: 'Thanks for signing up. You will receive an email with details on how to join the webinar(s). You might as well be interested in these full-day training options.' - confirmation_url: 'https://agaric.coop/training' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -213,9 +213,9 @@ access: handlers: email: id: email + handler_id: email label: 'Webinar notification email' notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -224,13 +224,17 @@ handlers: - completed to_mail: '[webform_submission:values:email:raw]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: 'Agaric webinars on July 7, 2020 - Connection details' body: | Thank you for registering!
@@ -274,11 +278,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.lms.yml b/config/webform.webform.lms.yml index e46bb18..acb524e 100644 --- a/config/webform.webform.lms.yml +++ b/config/webform.webform.lms.yml @@ -2,9 +2,9 @@ uuid: 5278c8e3-164c-4ff3-b987-ca4ef6d85da2 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -48,9 +48,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -60,31 +60,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -93,11 +98,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -108,13 +108,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -137,9 +137,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: 'Thank you! You have requested more information on setting up an online teaching and learning solution. An Agaric will respond very soon!' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -218,9 +218,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -229,13 +229,17 @@ handlers: - completed to_mail: '[webform:author:mail]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '[site:mail]' + return_path: '' + sender_mail: '[webform:author:mail]' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -246,11 +250,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '[site:mail]' - return_path: '' - sender_mail: '[webform:author:mail]' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.migrations.yml b/config/webform.webform.migrations.yml index 3d87361..e4a4b6d 100644 --- a/config/webform.webform.migrations.yml +++ b/config/webform.webform.migrations.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - webform_mailchimp +weight: 0 open: null close: null -weight: 0 uid: 20 template: false archive: false @@ -40,9 +40,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -52,31 +52,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -85,11 +90,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -100,13 +100,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -129,9 +129,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url_message + confirmation_url: thanks-your-interest-data-migration-training confirmation_title: 'You are now subscribed.' confirmation_message: 'Welcome to the training list! You are subscribed as [webform_submission:values:your_name] <[webform_submission:values:your_email]>. We hope to see you at one of our trainings in the near future.' - confirmation_url: thanks-your-interest-data-migration-training confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -210,9 +210,9 @@ access: handlers: mailchimp: id: mailchimp + handler_id: mailchimp label: MailChimp notes: '' - handler_id: mailchimp status: true conditions: { } weight: 0 @@ -225,9 +225,9 @@ handlers: control: '' email: id: email + handler_id: email label: 'Migrations email notification' notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -236,13 +236,17 @@ handlers: - completed to_mail: _default to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -253,11 +257,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.migrations_training_confirm.yml b/config/webform.webform.migrations_training_confirm.yml index f7d6ccb..9c27038 100644 --- a/config/webform.webform.migrations_training_confirm.yml +++ b/config/webform.webform.migrations_training_confirm.yml @@ -2,9 +2,9 @@ uuid: c45ac27c-cac5-4fc1-9413-f8d60fdd2fbe langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 1 template: false archive: false @@ -34,9 +34,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -46,31 +46,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -79,11 +84,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -94,13 +94,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -123,9 +123,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.newsletter.yml b/config/webform.webform.newsletter.yml index 794114d..04ecd9c 100644 --- a/config/webform.webform.newsletter.yml +++ b/config/webform.webform.newsletter.yml @@ -2,9 +2,9 @@ uuid: 6560dd98-4468-43c4-8750-400851bddb37 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -50,9 +50,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -62,31 +62,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -95,11 +100,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -110,13 +110,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -139,9 +139,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.purchase_training_migrate_api.yml b/config/webform.webform.purchase_training_migrate_api.yml index b2ffc06..8a8f2fd 100644 --- a/config/webform.webform.purchase_training_migrate_api.yml +++ b/config/webform.webform.purchase_training_migrate_api.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - stripe_webform +weight: 0 open: null close: null -weight: 0 uid: 1 template: false archive: false @@ -63,9 +63,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -75,31 +75,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -108,11 +113,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -123,13 +123,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -152,12 +152,12 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: | Thank you [webform_submission:values:name]!  You're registered for:
[webform_submission:values:course_summary:html]
We've sent an e-mail to [webform_submission:values:email]. - confirmation_url: '' confirmation_attributes: { } confirmation_back: false confirmation_back_label: '' @@ -236,9 +236,9 @@ access: handlers: stripe: id: stripe + handler_id: stripe label: Stripe notes: '' - handler_id: stripe status: true conditions: { } weight: 0 @@ -256,9 +256,9 @@ handlers: stripe_subscription_create: '' email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -267,13 +267,17 @@ handlers: - completed to_mail: '[webform_submission:values:email:raw]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: _default bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: 'Training registration for [webform:title]' body: | Dear [webform_submission:values:name],
@@ -298,11 +302,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.request.yml b/config/webform.webform.request.yml index 5fca9f9..40678e3 100644 --- a/config/webform.webform.request.yml +++ b/config/webform.webform.request.yml @@ -2,9 +2,9 @@ uuid: 7712e93e-81a8-41ae-80c8-4aa2afb45cb3 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 8 template: false archive: false @@ -40,9 +40,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -52,31 +52,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -85,11 +90,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -100,13 +100,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -129,9 +129,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -210,9 +210,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -221,13 +221,17 @@ handlers: - completed to_mail: ask@agaric.coop to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: '[webform_submission:values:email_address:raw]' from_options: { } from_name: '' + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -238,11 +242,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.showandtell.yml b/config/webform.webform.showandtell.yml index d7e0c7a..1618518 100644 --- a/config/webform.webform.showandtell.yml +++ b/config/webform.webform.showandtell.yml @@ -7,9 +7,9 @@ dependencies: third_party_settings: antibot: antibot: true +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -80,9 +80,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -92,31 +92,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -125,11 +130,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -140,13 +140,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -169,9 +169,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.speaker_request_agaric.yml b/config/webform.webform.speaker_request_agaric.yml index 12139ef..dcf6f8a 100644 --- a/config/webform.webform.speaker_request_agaric.yml +++ b/config/webform.webform.speaker_request_agaric.yml @@ -2,9 +2,9 @@ uuid: 231b71a1-0001-400f-aa79-b25634c5c04f langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -12,7 +12,7 @@ id: speaker_request_agaric title: 'Speaker Request - Agaric' description: 'Request an Agaric's presence for a presentation, workshop or lecture.' category: '' -elements: | +elements: |- event_website: '#type': url '#title': 'Event website' @@ -154,9 +154,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: 'Agaric is not accepting bookings at this time.' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -166,31 +166,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: 'Speaker request for Agaric' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: webform_routes: { } @@ -201,11 +206,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -216,13 +216,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -245,9 +245,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: your-request-has-been-sent-agaric confirmation_title: 'Thank you for asking an Agaric to speak!' confirmation_message: 'Thank you! You have requested an Agaric's presence for a presentation, interview, workshop, or lecture. One of us will respond to you very soon! You can find past appearances on our individual Agaric worker-owner pages.' - confirmation_url: your-request-has-been-sent-agaric confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -326,9 +326,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -337,13 +337,17 @@ handlers: - completed to_mail: '[webform:author:mail]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -354,11 +358,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.speaker_request_clayton_dewey.yml b/config/webform.webform.speaker_request_clayton_dewey.yml index b70229a..7a5812b 100644 --- a/config/webform.webform.speaker_request_clayton_dewey.yml +++ b/config/webform.webform.speaker_request_clayton_dewey.yml @@ -2,9 +2,9 @@ uuid: a4189539-46d5-486f-8e0e-ec913e2093e5 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: true @@ -67,9 +67,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: 'Clayton is not accepting bookings at this time.' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -79,31 +79,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: 'Speaker request for Clayton' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: webform_routes: { } @@ -114,11 +119,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -129,13 +129,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -158,9 +158,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url + confirmation_url: people/clayton-dewey/speaking-request-received confirmation_title: '' confirmation_message: '' - confirmation_url: people/clayton-dewey/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -239,9 +239,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -250,13 +250,17 @@ handlers: - completed to_mail: '[webform:author:mail]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -267,11 +271,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.speaker_request_mauricio_dinarte.yml b/config/webform.webform.speaker_request_mauricio_dinarte.yml index 13fb3f3..186d0c2 100644 --- a/config/webform.webform.speaker_request_mauricio_dinarte.yml +++ b/config/webform.webform.speaker_request_mauricio_dinarte.yml @@ -2,9 +2,9 @@ uuid: 69315a59-1746-485d-873a-1815072dd1d0 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -67,9 +67,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: 'Mauricio is not accepting bookings at this time.' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -79,31 +79,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: 'Speaker request for Mauricio' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: webform_routes: { } @@ -114,11 +119,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -129,13 +129,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -158,9 +158,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url + confirmation_url: people/michele-metts/speaking-request-received confirmation_title: '' confirmation_message: '' - confirmation_url: people/michele-metts/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -239,9 +239,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -250,13 +250,17 @@ handlers: - completed to_mail: '[webform:author:mail]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -267,11 +271,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.speaker_request_michele_metts.yml b/config/webform.webform.speaker_request_michele_metts.yml index ff65e5f..133199c 100644 --- a/config/webform.webform.speaker_request_michele_metts.yml +++ b/config/webform.webform.speaker_request_michele_metts.yml @@ -2,9 +2,9 @@ uuid: ab839464-7156-4b3b-a13b-a5502e429e70 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -67,9 +67,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: 'Micky is not accepting bookings at this time.' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -79,31 +79,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: 'Speaker request for Micky' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: webform_routes: { } @@ -114,11 +119,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -129,13 +129,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -158,9 +158,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url + confirmation_url: people/michele-metts/speaking-request-received confirmation_title: '' confirmation_message: '' - confirmation_url: people/michele-metts/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -239,9 +239,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -250,13 +250,17 @@ handlers: - completed to_mail: '[webform:author:mail]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -267,11 +271,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.speaker_request_micky_metts.yml b/config/webform.webform.speaker_request_micky_metts.yml index 3b7810c..012c6b9 100644 --- a/config/webform.webform.speaker_request_micky_metts.yml +++ b/config/webform.webform.speaker_request_micky_metts.yml @@ -2,9 +2,9 @@ uuid: 36bb8d28-cf95-4fe6-a299-aae734f204c9 langcode: en status: closed dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: true archive: false @@ -67,9 +67,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: 'Micky is not accepting bookings at this time.' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -79,31 +79,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: 'Speaker request for Micky' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: webform_routes: { } @@ -114,11 +119,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -129,13 +129,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -158,9 +158,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: url + confirmation_url: people/michele-metts/speaking-request-received confirmation_title: '' confirmation_message: '' - confirmation_url: people/michele-metts/speaking-request-received confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -239,9 +239,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -250,13 +250,17 @@ handlers: - completed to_mail: '[webform:author:mail]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -267,11 +271,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.training.yml b/config/webform.webform.training.yml index 7742c88..4e0d180 100644 --- a/config/webform.webform.training.yml +++ b/config/webform.webform.training.yml @@ -2,9 +2,9 @@ uuid: 4a93727f-5bc1-4fa5-a8dc-c283d3005c15 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 20 template: false archive: false @@ -60,9 +60,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -72,31 +72,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -105,11 +110,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -120,13 +120,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -149,9 +149,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: 'Your training request was a success.' confirmation_message: 'Thank you for requesting a training. We'll look over your needs and follow up with you soon. In the meantime, feel free to peruse our blog posts or watch our training videos.' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -230,9 +230,9 @@ access: handlers: email: id: email + handler_id: email label: 'Training email notification' notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -241,13 +241,17 @@ handlers: - completed to_mail: _default to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -258,11 +262,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.training_discount.yml b/config/webform.webform.training_discount.yml index a188f71..73b0373 100644 --- a/config/webform.webform.training_discount.yml +++ b/config/webform.webform.training_discount.yml @@ -4,9 +4,9 @@ status: open dependencies: module: - stripe_webform +weight: 0 open: null close: null -weight: 0 uid: 8 template: false archive: false @@ -69,9 +69,9 @@ settings: page_theme_name: '' form_title: source_entity_webform form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -81,31 +81,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -114,11 +119,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -129,13 +129,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -158,12 +158,12 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: inline + confirmation_url: '' confirmation_title: '' confirmation_message: | Thank you [webform_submission:values:name]!  You're registered for:
[webform_submission:values:course_summary:html]
We've sent an e-mail to [webform_submission:values:email]. - confirmation_url: '' confirmation_attributes: { } confirmation_back: false confirmation_back_label: '' @@ -242,9 +242,9 @@ access: handlers: stripe: id: stripe + handler_id: stripe label: Stripe notes: '' - handler_id: stripe status: true conditions: { } weight: 0 @@ -262,9 +262,9 @@ handlers: stripe_subscription_create: '' email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -273,13 +273,17 @@ handlers: - completed to_mail: '[webform_submission:values:email:raw]' to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: _default bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: 'Training registration for [webform:title]' body: | Dear [webform_submission:values:name],
@@ -304,11 +308,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.training_notification_request.yml b/config/webform.webform.training_notification_request.yml index 8057c73..cf6c1a9 100644 --- a/config/webform.webform.training_notification_request.yml +++ b/config/webform.webform.training_notification_request.yml @@ -2,9 +2,9 @@ uuid: 6a921fe8-0cec-45fc-865e-81518d51f212 langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 47 template: false archive: false @@ -55,9 +55,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -67,31 +67,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -100,11 +105,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -115,13 +115,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -144,9 +144,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform.webform.training_request_draft.yml b/config/webform.webform.training_request_draft.yml index 3e2c8d2..6bd4b06 100644 --- a/config/webform.webform.training_request_draft.yml +++ b/config/webform.webform.training_request_draft.yml @@ -2,9 +2,9 @@ uuid: d061fc52-7db2-4138-a6bb-805a1e7353fd langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 47 template: false archive: false @@ -49,9 +49,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -61,31 +61,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -94,11 +99,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -109,13 +109,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -138,9 +138,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' @@ -219,9 +219,9 @@ access: handlers: email: id: email + handler_id: email label: Email notes: '' - handler_id: email status: true conditions: { } weight: 0 @@ -230,13 +230,17 @@ handlers: - completed to_mail: keegan@agaric.coop to_options: { } - cc_mail: '' - cc_options: { } bcc_mail: '' bcc_options: { } + cc_mail: '' + cc_options: { } from_mail: _default from_options: { } from_name: _default + reply_to: '' + return_path: '' + sender_mail: '' + sender_name: '' subject: _default body: _default excluded_elements: { } @@ -247,11 +251,7 @@ handlers: html: true attachments: false twig: false - debug: false - reply_to: '' - return_path: '' - sender_mail: '' - sender_name: '' theme_name: '' parameters: { } + debug: false variants: { } diff --git a/config/webform.webform.workshops.yml b/config/webform.webform.workshops.yml index 27a8913..0fac558 100644 --- a/config/webform.webform.workshops.yml +++ b/config/webform.webform.workshops.yml @@ -2,9 +2,9 @@ uuid: 4a21f8bf-6290-4198-852f-20ab29d8a72a langcode: en status: open dependencies: { } +weight: 0 open: null close: null -weight: 0 uid: 12 template: false archive: false @@ -31,9 +31,9 @@ settings: page_theme_name: '' form_title: both form_submit_once: false - form_exception_message: '' form_open_message: '' form_close_message: '' + form_exception_message: '' form_previous_submissions: true form_confidential: false form_confidential_message: '' @@ -43,31 +43,36 @@ settings: form_prepopulate_source_entity: false form_prepopulate_source_entity_required: false form_prepopulate_source_entity_type: '' - form_reset: false + form_unsaved: false + form_disable_back: false + form_submit_back: false form_disable_autocomplete: false form_novalidate: false form_disable_inline_errors: false form_required: false - form_unsaved: false - form_disable_back: false - form_submit_back: false form_autofocus: false form_details_toggle: false + form_reset: false form_access_denied: default form_access_denied_title: '' form_access_denied_message: '' form_access_denied_attributes: { } form_file_limit: '' + form_attributes: { } form_method: '' form_action: '' - form_attributes: { } share: false share_node: false share_theme_name: '' share_title: true share_page_body_attributes: { } submission_label: '' + submission_exception_message: '' + submission_locked_message: '' submission_log: false + submission_excluded_elements: { } + submission_exclude_empty: false + submission_exclude_empty_checkbox: false submission_views: { } submission_views_replace: { } submission_user_columns: { } @@ -76,11 +81,6 @@ settings: submission_access_denied_title: '' submission_access_denied_message: '' 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 @@ -91,13 +91,13 @@ settings: wizard_progress_percentage: false wizard_progress_link: false wizard_progress_states: false - wizard_auto_forward: true - wizard_auto_forward_hide_next_button: false - wizard_keyboard: true wizard_start_label: '' wizard_preview_link: false wizard_confirmation: true wizard_confirmation_label: '' + wizard_auto_forward: true + wizard_auto_forward_hide_next_button: false + wizard_keyboard: true wizard_track: '' wizard_prev_button_label: '' wizard_next_button_label: '' @@ -120,9 +120,9 @@ settings: draft_pending_single_message: '' draft_pending_multiple_message: '' confirmation_type: page + confirmation_url: '' confirmation_title: '' confirmation_message: '' - confirmation_url: '' confirmation_attributes: { } confirmation_back: true confirmation_back_label: '' diff --git a/config/webform_scheduled_email.settings.yml b/config/webform_scheduled_email.settings.yml index e13741c..5552d1a 100644 --- a/config/webform_scheduled_email.settings.yml +++ b/config/webform_scheduled_email.settings.yml @@ -1,3 +1,3 @@ -schedule_type: date _core: default_config_hash: a0m_ftXZE3G464gpARFNjWEKh9zNlFIRkdrIJNcPgLo +schedule_type: date From afc0d035388e278797b469279c649827dfada43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:21:46 -0500 Subject: [PATCH 090/236] Commit self-updates to config from D9 upgrade, serialize/rss changes --- config/serialization.settings.yml | 4 ---- config/system.authorize.yml | 3 --- config/system.rss.yml | 8 ++------ 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 config/serialization.settings.yml delete mode 100644 config/system.authorize.yml diff --git a/config/serialization.settings.yml b/config/serialization.settings.yml deleted file mode 100644 index ea2d8a5..0000000 --- a/config/serialization.settings.yml +++ /dev/null @@ -1,4 +0,0 @@ -bc_primitives_as_strings: false -bc_timestamp_normalizer_unix: false -_core: - default_config_hash: 6A1rmsmNf4SJrwCEt_aZyO_kPYuFnIOPC2n5lJiIftA diff --git a/config/system.authorize.yml b/config/system.authorize.yml deleted file mode 100644 index c469cae..0000000 --- a/config/system.authorize.yml +++ /dev/null @@ -1,3 +0,0 @@ -filetransfer_default: null -_core: - default_config_hash: z63ds8M4zPrylEgFRkRcOlfcsXWwfITzjD4cj1kRdfg diff --git a/config/system.rss.yml b/config/system.rss.yml index 858f127..04a8fe0 100644 --- a/config/system.rss.yml +++ b/config/system.rss.yml @@ -1,8 +1,4 @@ -channel: - description: '' -items: - limit: 10 - view_mode: rss -langcode: en _core: default_config_hash: TlH7NNk46phfxu1mSUfwg1C0YqaGsUCeD4l9JQnQlDU +items: + view_mode: rss From 481edbcaf7086d67811f0bb2b500337084012a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:22:24 -0500 Subject: [PATCH 091/236] Commit self-updates to config from D9 upgrade, tour new structure --- config/tour.tour.honeypot.yml | 31 +++++----- config/tour.tour.language-add.yml | 9 ++- config/tour.tour.language-edit.yml | 19 +++---- config/tour.tour.language.yml | 24 ++++---- config/tour.tour.locale.yml | 34 +++++------ config/tour.tour.search-api-index-fields.yml | 52 +++++++---------- config/tour.tour.search-api-index-form.yml | 32 +++++------ .../tour.tour.search-api-index-processors.yml | 17 +++--- config/tour.tour.search-api-index.yml | 57 ++++++++----------- config/tour.tour.search-api-server-form.yml | 17 +++--- config/tour.tour.search-api-server.yml | 22 +++---- config/tour.tour.views-ui.yml | 51 +++++++---------- 12 files changed, 150 insertions(+), 215 deletions(-) diff --git a/config/tour.tour.honeypot.yml b/config/tour.tour.honeypot.yml index 0385688..4004ea8 100644 --- a/config/tour.tour.honeypot.yml +++ b/config/tour.tour.honeypot.yml @@ -20,54 +20,49 @@ tips: weight: -10 body: | Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots. - + Click Next to be guided through this configuration page. - location: top + position: top-start protect-all-forms: id: protect-all-forms plugin: text label: 'Protect all forms' weight: -9 - attributes: - data-id: edit-protect-all-forms body: | Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed. - + Note: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time. - location: bottom + selector: '#edit-protect-all-forms' + position: bottom-start log-blocked-form-submissions: id: log-blocked-form-submissions plugin: text label: 'Log blocked form submissions' weight: -8 - attributes: - data-id: edit-log body: 'Check this box to log every form submission using watchdog. If you have Database Logging enabled, you can view these log entries in the Recent log messages page under Reports.' - location: bottom + selector: '#edit-log' + position: bottom-start honeypot-element-name: id: honeypot-element-name plugin: text label: 'Honeypot Element Name' weight: -7 - attributes: - data-id: edit-element-name body: 'Spam bots typically fill out any field they believe will help get links back to their site, so tempting them with a field named something like ''url'', ''homepage'', or ''link'' makes it hard for them to resist filling in the field—and easy to catch them in the trap and reject their submissions!' - location: top + selector: '#edit-element-name' + position: top-start honeypot-time-limit: id: honeypot-time-limit plugin: text label: 'Honeypot Time Limit' weight: -6 - attributes: - data-id: edit-time-limit body: 'If you enter a positive value, Honeypot will require that all protected forms take at least that many seconds long to fill out. Most forms take at least 5-10 seconds to complete (if you''re a human), so setting this to a value < 5 will help protect against spam bots. Set to 0 to disable.' - location: top + selector: '#edit-time-limit' + position: top-start honeypot-form-specific-settings: id: honeypot-form-specific-settings plugin: text label: 'Honeypot form-specific settings' weight: -5 - attributes: - data-id: edit-form-settings body: 'If you would like to choose particular forms to be protected by Honeypot, check the forms you wish to protect in this section. Most common types of forms are available for protection.' - location: top + selector: '#edit-form-settings' + position: top-start diff --git a/config/tour.tour.language-add.yml b/config/tour.tour.language-add.yml index 9715a34..c655c43 100644 --- a/config/tour.tour.language-add.yml +++ b/config/tour.tour.language-add.yml @@ -17,19 +17,18 @@ tips: id: language-add-overview plugin: text label: 'Adding languages' - body: '

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 + body: '

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.

' 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 + 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.

' + selector: '#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:

' weight: 3 + body: '

Now that you have an overview of the "Add languages" feature, you can continue by:

' diff --git a/config/tour.tour.language-edit.yml b/config/tour.tour.language-edit.yml index 3fd02f8..9b291db 100644 --- a/config/tour.tour.language-edit.yml +++ b/config/tour.tour.language-edit.yml @@ -17,35 +17,32 @@ tips: id: language-edit-overview plugin: text label: 'Editing languages' - body: '

This page provides the ability to edit a language on your site, including custom languages.

' weight: 1 + body: '

This page provides the ability to edit a language on your site, including custom languages.

' 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 + 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.

' + selector: '#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 + 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.

' + selector: '#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 + 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".

' + selector: '#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:

' weight: 5 + body: '

Now that you have an overview of the "Edit language" feature, you can continue by:

' diff --git a/config/tour.tour.language.yml b/config/tour.tour.language.yml index 8d12300..e86095f 100644 --- a/config/tour.tour.language.yml +++ b/config/tour.tour.language.yml @@ -17,43 +17,39 @@ tips: id: language-overview plugin: text label: Languages - body: '

The "Languages" page allows you to add, edit, delete, and reorder languages for the site.

' weight: 1 + body: '

The "Languages" page allows you to add, edit, delete, and reorder languages for the site.

' language-add: id: language-add plugin: text label: 'Adding languages' - body: '

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.

' weight: 2 - attributes: - data-class: button-action + body: '

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.

' + selector: .button-action language-reorder: id: language-reorder plugin: text label: 'Reordering languages' - body: '

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.

' weight: 3 - attributes: - data-class: draggable + body: '

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.

' + selector: .draggable language-default: id: language-default plugin: text label: 'Set a language as default' - body: '

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.

' weight: 4 - attributes: - data-class: js-form-item-site-default-language + body: '

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.

' + selector: .js-form-item-site-default-language language-operations: id: language-operations plugin: text label: 'Modifying languages' - body: '

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.

' weight: 5 - attributes: - data-class: dropbutton-wrapper + body: '

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.

' + selector: .dropbutton-wrapper language-continue: id: language-continue plugin: text label: 'Continuing on' - body: '

Now that you have an overview of the "Languages" page, you can continue by:

' weight: 6 + body: '

Now that you have an overview of the "Languages" page, you can continue by:

' diff --git a/config/tour.tour.locale.yml b/config/tour.tour.locale.yml index c3e8c2a..1315365 100644 --- a/config/tour.tour.locale.yml +++ b/config/tour.tour.locale.yml @@ -17,59 +17,53 @@ tips: id: locale-overview plugin: text label: 'User interface translation' - body: 'This page allows you to translate the user interface or modify existing translations. If you have installed your site initially in English, you must first add another language on the Languages page, in order to use this page.' weight: 1 + body: 'This page allows you to translate the user interface or modify existing translations. If you have installed your site initially in English, you must first add another language on the Languages page, in order to use this page.' locale-language: id: locale-language plugin: text label: 'Translation language' - body: 'Choose the language you want to translate.' weight: 2 - attributes: - data-id: edit-langcode + body: 'Choose the language you want to translate.' + selector: '#edit-langcode' locale-search: id: locale-search plugin: text label: Search - body: 'Enter the specific word or sentence you want to translate, you can also write just a part of a word.' weight: 3 - attributes: - data-id: edit-string + body: 'Enter the specific word or sentence you want to translate, you can also write just a part of a word.' + selector: '#edit-string' locale-filter: id: locale-filter plugin: text label: 'Filter the search' - body: 'You can search for untranslated strings if you want to translate something that isn''t translated yet. If you want to modify an existing translation, you might want to search only for translated strings.' weight: 4 - attributes: - data-id: edit-translation + body: 'You can search for untranslated strings if you want to translate something that isn''t translated yet. If you want to modify an existing translation, you might want to search only for translated strings.' + selector: '#edit-translation' locale-submit: id: locale-submit plugin: text label: 'Apply your search criteria' - body: 'To apply your search criteria, click on the Filter button.' weight: 5 - attributes: - data-id: edit-submit + body: 'To apply your search criteria, click on the Filter button.' + selector: '#edit-submit' locale-translate: id: locale-translate plugin: text label: Translate - body: 'You can write your own translation in the text fields of the right column. Try to figure out in which context the text will be used in order to translate it in the appropriate way.' weight: 6 - attributes: - data-class: js-form-type-textarea + body: 'You can write your own translation in the text fields of the right column. Try to figure out in which context the text will be used in order to translate it in the appropriate way.' + selector: .js-form-type-textarea locale-validate: id: locale-validate plugin: text label: 'Validate the translation' - body: 'When you have finished your translations, click on the Save translations button. You must save your translations, each time before changing the page or making a new search.' weight: 7 - attributes: - data-id: edit-submit--2 + body: 'When you have finished your translations, click on the Save translations button. You must save your translations, each time before changing the page or making a new search.' + selector: '#edit-submit--2' locale-continue: id: locale-continue plugin: text label: 'Continuing on' - body: 'The translations you have made here will be used on your site''s user interface. If you want to use them on another site or modify them on an external translation editor, you can export them to a .po file and import them later.' weight: 8 + body: 'The translations you have made here will be used on your site''s user interface. If you want to use them on another site or modify them on an external translation editor, you can export them to a .po file and import them later.' diff --git a/config/tour.tour.search-api-index-fields.yml b/config/tour.tour.search-api-index-fields.yml index 221ad12..6e51f76 100644 --- a/config/tour.tour.search-api-index-fields.yml +++ b/config/tour.tour.search-api-index-fields.yml @@ -17,85 +17,75 @@ tips: 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 + 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.' 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"]' + body: 'With the "Add fields" button you can add additional fields to this index.' + selector: '.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)' + body: 'A label for the field that will be used to refer to the field in most places in the user interface.' + selector: '.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)' + 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.' + selector: '.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)' + 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.' + selector: '.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)' + 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.' + selector: '.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)' + body: 'Only applicable for fulltext fields. Determines how "important" the field is compared to other fulltext fields, to influence scoring of fulltext searches.' + selector: '.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' + body: 'Some fields have additional configuration available, in which case an "Edit" link is displayed in the "Operations" column.' + selector: '.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' + body: 'Removes a field from the index again. (Note: Sometimes, a field is required (for example, by a processor) and cannot be removed.)' + selector: '.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 + 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.' + selector: '#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 + body: 'If you have made changes to the index''s fields but not yet saved them, the "Cancel" link lets you discard those changes.' + selector: '#edit-actions-cancel' diff --git a/config/tour.tour.search-api-index-form.yml b/config/tour.tour.search-api-index-form.yml index d9ddaef..5a802f7 100644 --- a/config/tour.tour.search-api-index-form.yml +++ b/config/tour.tour.search-api-index-form.yml @@ -19,53 +19,47 @@ tips: 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 + 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.' 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 + body: 'Enter a name to identify this index. For example, "Content index". This will only be displayed in the admin user interface.' + selector: '#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 + 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.' + selector: '#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 + 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.' + selector: '#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 + 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.' + selector: '#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 + 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.' + selector: '#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 + body: 'These options allow more detailed configuration of index behavior, but can usually safely be ignored by inexperienced users.' + selector: '#edit-options' diff --git a/config/tour.tour.search-api-index-processors.yml b/config/tour.tour.search-api-index-processors.yml index 97a0f5a..f47cc70 100644 --- a/config/tour.tour.search-api-index-processors.yml +++ b/config/tour.tour.search-api-index-processors.yml @@ -17,29 +17,26 @@ tips: 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 + 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.' 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 + 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.)' + selector: '#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 + 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.' + selector: '#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 + body: 'Some processors have additional configuration available, which you are able to change here.' + selector: .form-type-vertical-tabs diff --git a/config/tour.tour.search-api-index.yml b/config/tour.tour.search-api-index.yml index 65db7c2..39a9d91 100644 --- a/config/tour.tour.search-api-index.yml +++ b/config/tour.tour.search-api-index.yml @@ -17,93 +17,82 @@ tips: 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 + body: 'This page shows a summary of a search index and its status.' 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 + 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.' + selector: .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 + body: 'Shows whether the index is currently enabled or disabled.' + selector: .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 + body: 'Lists all datasources that are enabled for this index.' + selector: .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 + body: 'The tracker used by the index. Only one ("Default") is available by default.' + selector: .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 + body: 'If the index is attached to a server, this server is listed here.' + selector: .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 + 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.' + selector: .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 + body: 'The number of items that will be indexed at once during cron runs.' + selector: .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 + 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.' + selector: '#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 + 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.' + selector: '#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 + 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.' + selector: '#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 + 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.' + selector: '#edit-clear' diff --git a/config/tour.tour.search-api-server-form.yml b/config/tour.tour.search-api-server-form.yml index d5c3a20..54517ec 100644 --- a/config/tour.tour.search-api-server-form.yml +++ b/config/tour.tour.search-api-server-form.yml @@ -19,29 +19,26 @@ tips: 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 + 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.' 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 + body: 'Enter a name to identify this server. For example, "Solr server". This will only be displayed in the admin user interface.' + selector: '#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 + 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.' + selector: '#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 + 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.' + selector: '#edit-backend' diff --git a/config/tour.tour.search-api-server.yml b/config/tour.tour.search-api-server.yml index 5e568fc..4ee658d 100644 --- a/config/tour.tour.search-api-server.yml +++ b/config/tour.tour.search-api-server.yml @@ -17,37 +17,33 @@ tips: id: search-api-server-introduction plugin: text label: 'Information about a server' - body: 'This page shows a summary of a search server.' weight: 1 + body: 'This page shows a summary of a search server.' 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 + body: 'Shows whether the server is currently enabled or disabled.' + selector: .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 + 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.' + selector: .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 + body: 'Lists all search indexes that are attached to this server.' + selector: .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 + 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.' + selector: '#edit-clear' diff --git a/config/tour.tour.views-ui.yml b/config/tour.tour.views-ui.yml index 38aeb08..c6243f3 100644 --- a/config/tour.tour.views-ui.yml +++ b/config/tour.tour.views-ui.yml @@ -19,79 +19,70 @@ tips: id: views-main plugin: text label: 'Manage view settings' - body: 'View or edit the configuration.' weight: 1 + body: 'View or edit the configuration.' views-ui-displays: id: views-ui-displays plugin: text label: 'Displays in this view' - body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.' weight: 2 - attributes: - data-id: views-display-top + body: 'A display is a way of outputting the results, e.g., as a page or a block. A view can contain multiple displays, which are listed here. The active display is highlighted.' + selector: '#views-display-top' views-ui-view-admin: id: views-ui-view-admin plugin: text label: 'View administration' - body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.' weight: 3 - location: left - attributes: - data-id: views-display-extra-actions + body: 'Perform administrative tasks, including adding a description and creating a clone. Click the drop-down button to view the available options.' + selector: '#views-display-extra-actions' + position: left-start views-ui-format: 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.' weight: 4 - attributes: - data-class: views-ui-display-tab-bucket.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.' + selector: .views-ui-display-tab-bucket.format views-ui-fields: id: views-ui-fields plugin: text label: Fields - body: 'If this view uses fields, they are listed here. You can click on a field to configure it.' weight: 5 - attributes: - data-class: views-ui-display-tab-bucket.field + body: 'If this view uses fields, they are listed here. You can click on a field to configure it.' + selector: .views-ui-display-tab-bucket.field views-ui-filter: id: views-ui-filter plugin: text label: 'Filter your view' - body: 'Add filters to limit the results in the output. E.g., to only show content that is published, you would add a filter for Published and select Yes.' weight: 6 - attributes: - data-class: views-ui-display-tab-bucket.filter + body: 'Add filters to limit the results in the output. E.g., to only show content that is published, you would add a filter for Published and select Yes.' + selector: .views-ui-display-tab-bucket.filter views-ui-filter-operations: id: views-ui-filter-operations plugin: text label: 'Filter actions' - body: 'Add, rearrange or remove filters.' weight: 7 - attributes: - data-class: 'views-ui-display-tab-bucket.filter .dropbutton-widget' + body: 'Add, rearrange or remove filters.' + selector: '.views-ui-display-tab-bucket.filter .dropbutton-widget' views-ui-sorts: id: views-ui-sorts plugin: text label: 'Sort Criteria' - body: 'Control the order in which the results are output. Click on an active sort rule to configure it.' weight: 8 - attributes: - data-class: views-ui-display-tab-bucket.sort + body: 'Control the order in which the results are output. Click on an active sort rule to configure it.' + selector: .views-ui-display-tab-bucket.sort views-ui-sorts-operations: id: views-ui-sorts-operations plugin: text label: 'Sort actions' - body: 'Add, rearrange or remove sorting rules.' weight: 9 - attributes: - data-class: 'views-ui-display-tab-bucket.sort .dropbutton-widget' + body: 'Add, rearrange or remove sorting rules.' + selector: '.views-ui-display-tab-bucket.sort .dropbutton-widget' views-ui-preview: id: views-ui-preview plugin: text label: Preview - body: 'Show a preview of the view output.' weight: 10 - location: left - attributes: - data-id: preview-submit + body: 'Show a preview of the view output.' + selector: '#preview-submit' + position: left-start From fd6dab8f157edfe62cbdc3592c2e004e583e6057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:24:10 -0500 Subject: [PATCH 092/236] Commit self-updates to role config, dependencies + removed obsolete perms --- config/user.role.anonymous.yml | 14 +++++++++- config/user.role.authenticated.yml | 15 ++++++++++- config/user.role.contributor.yml | 26 ++++++++++++++++++- config/user.role.editor.yml | 30 +++++++++++++++++++++- config/user.role.manager.yml | 41 +++++++++++++++++++++++++++--- config/user.role.staff.yml | 4 ++- 6 files changed, 122 insertions(+), 8 deletions(-) diff --git a/config/user.role.anonymous.yml b/config/user.role.anonymous.yml index 701be51..18a6ecf 100644 --- a/config/user.role.anonymous.yml +++ b/config/user.role.anonymous.yml @@ -1,7 +1,19 @@ uuid: 06933293-c58f-46cc-a3dc-682ee2487a4e langcode: en status: true -dependencies: { } +dependencies: + config: + - filter.format.minimalhtml + - filter.format.restricted_html + module: + - coffee + - comment + - comment_notify + - contact + - exclude_node_title + - filter + - media + - system _core: default_config_hash: j5zLMOdJBqC0bMvSdth5UebkprJB8g_2FXHqhfpJzow id: anonymous diff --git a/config/user.role.authenticated.yml b/config/user.role.authenticated.yml index 47b0740..b202fed 100644 --- a/config/user.role.authenticated.yml +++ b/config/user.role.authenticated.yml @@ -1,7 +1,20 @@ uuid: ea73738f-dcd1-47bf-acc1-cef6ce4a994c langcode: en status: true -dependencies: { } +dependencies: + config: + - filter.format.basic_html + - filter.format.minimalhtml + module: + - coffee + - comment + - comment_notify + - contact + - exclude_node_title + - filter + - media + - shortcut + - system _core: default_config_hash: dJ0L2DNSj5q6XVZAGsuVDpJTh5UeYkIPwKrUOOpr8YI id: authenticated diff --git a/config/user.role.contributor.yml b/config/user.role.contributor.yml index beb54f3..1c1d7c2 100644 --- a/config/user.role.contributor.yml +++ b/config/user.role.contributor.yml @@ -1,7 +1,31 @@ uuid: 776bfc2e-b9f7-4d29-9901-0b16cc1117c7 langcode: en status: true -dependencies: { } +dependencies: + config: + - filter.format.markdown + - filter.format.minimalhtml + - filter.format.minimalhtmltitle + - node.type.action + - node.type.article + - node.type.blog + - node.type.campaign + - node.type.event + - node.type.page + - node.type.people + - node.type.resource + - taxonomy.vocabulary.tags + module: + - comment + - contextual + - exclude_node_title + - filter + - honeypot + - node + - quickedit + - system + - taxonomy + - ui_patterns_library _core: default_config_hash: wx_SmNDtHorXJ90rDiwqo6EvHgyvz6_SZFsFO77cdvY id: contributor diff --git a/config/user.role.editor.yml b/config/user.role.editor.yml index 7338868..d8a1079 100644 --- a/config/user.role.editor.yml +++ b/config/user.role.editor.yml @@ -1,7 +1,35 @@ uuid: 1fe46dd5-36af-4e04-a2da-3c0a87dfe1ec langcode: en status: true -dependencies: { } +dependencies: + config: + - filter.format.full_html + - filter.format.markdown + - filter.format.minimalhtml + - filter.format.minimalhtmltitle + - filter.format.restricted_html + - node.type.blog + - node.type.event + - taxonomy.vocabulary.people_type + - taxonomy.vocabulary.resource_type + - taxonomy.vocabulary.services + - taxonomy.vocabulary.tags + - taxonomy.vocabulary.technologies + - taxonomy.vocabulary.topics + module: + - comment + - contextual + - exclude_node_title + - file + - filter + - honeypot + - node + - path + - quickedit + - system + - taxonomy + - tour + - ui_patterns_library _core: default_config_hash: rlOWgxSj7Nc4dVgLS2xaxjHVZNv9u9Csoy8JavNvygc id: editor diff --git a/config/user.role.manager.yml b/config/user.role.manager.yml index 45897dc..63d8b31 100644 --- a/config/user.role.manager.yml +++ b/config/user.role.manager.yml @@ -1,7 +1,44 @@ uuid: 80d06ad4-b65b-41a3-b986-cf07f19402f6 langcode: en status: true -dependencies: { } +dependencies: + config: + - filter.format.full_html + - filter.format.markdown + - filter.format.minimalhtml + - filter.format.minimalhtmltitle + - filter.format.restricted_html + - node.type.blog + - node.type.event + - taxonomy.vocabulary.people_type + - taxonomy.vocabulary.resource_type + - taxonomy.vocabulary.services + - taxonomy.vocabulary.tags + - taxonomy.vocabulary.technologies + - taxonomy.vocabulary.topics + module: + - admin_toolbar_search + - block + - block_visibility_groups + - comment + - config_perms + - contact + - contextual + - exclude_node_title + - file + - filter + - group + - honeypot + - metatag + - node + - path + - quickedit + - redirect + - system + - taxonomy + - tour + - ui_patterns_library + - webform _core: default_config_hash: p1SmYFXVP1KLKKQI-wkTYJ2dVCvR7HgO7SL3BAKTyTE id: manager @@ -31,7 +68,6 @@ permissions: - 'administer block visibility groups' - 'administer blocks' - 'administer comments' - - 'administer eu cookie compliance popup' - 'administer meta tags' - 'administer nodes' - 'administer redirect settings' @@ -63,7 +99,6 @@ permissions: - 'delete terms in topics' - 'edit any event content' - 'edit any webform' - - 'edit gdpr_checklist checklistapi checklist' - 'edit terms in people_type' - 'edit terms in resource_type' - 'edit terms in services' diff --git a/config/user.role.staff.yml b/config/user.role.staff.yml index c82065d..a744df9 100644 --- a/config/user.role.staff.yml +++ b/config/user.role.staff.yml @@ -1,7 +1,9 @@ uuid: 7216ebcf-5eda-4c34-b429-eb665469567b langcode: en status: true -dependencies: { } +dependencies: + module: + - honeypot id: staff label: Staff weight: 8 From 3672b57fa525beb7e90a69f0fa4e3853e3e7b652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:24:33 -0500 Subject: [PATCH 093/236] Commit unexpected self-update of dependency to views admin people --- config/views.view.user_admin_people.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/views.view.user_admin_people.yml b/config/views.view.user_admin_people.yml index 226532b..32b453f 100644 --- a/config/views.view.user_admin_people.yml +++ b/config/views.view.user_admin_people.yml @@ -3,6 +3,7 @@ langcode: en status: true dependencies: module: + - role_delegation - user _core: default_config_hash: wTJRNzsLVTenCALONNlVfgm_pBOlqucSPuVFLOD56ck From d0da91842af47d0373db108bf3c8cd9a9196aab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:25:10 -0500 Subject: [PATCH 094/236] Commit modules uninstalled by Drutopia in D9 --- config/core.extension.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/core.extension.yml b/config/core.extension.yml index 6f3ec6c..c1604c4 100644 --- a/config/core.extension.yml +++ b/config/core.extension.yml @@ -11,7 +11,6 @@ module: antibot: 0 automated_cron: 0 autosave_form: 0 - better_normalizers: 0 block: 0 block_content: 0 block_visibility_groups: 0 @@ -43,7 +42,6 @@ module: datetime: 0 datetime_range: 0 dblog: 0 - default_content: 0 diff: 0 dropdown_language: 0 drutopia_action: 0 From c03173697d65ef904d5d85191100ca168de66124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:29:17 -0500 Subject: [PATCH 095/236] Commit config snapshot after D9 upgrades --- ....config_sync.module.better_normalizers.yml | 11 --- ...shot.config_sync.module.comment_notify.yml | 22 +++--- ...hot.config_sync.module.default_content.yml | 11 --- ...t.snapshot.config_sync.module.honeypot.yml | 4 +- ...pshot.snapshot.config_sync.module.user.yml | 74 +++++++++---------- ...ot.snapshot.config_sync.module.webform.yml | 2 +- ...shot.snapshot.config_sync.theme.classy.yml | 11 --- 7 files changed, 51 insertions(+), 84 deletions(-) delete mode 100644 config/config_snapshot.snapshot.config_sync.module.better_normalizers.yml delete mode 100644 config/config_snapshot.snapshot.config_sync.module.default_content.yml delete mode 100644 config/config_snapshot.snapshot.config_sync.theme.classy.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.better_normalizers.yml b/config/config_snapshot.snapshot.config_sync.module.better_normalizers.yml deleted file mode 100644 index cb8a8f8..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.better_normalizers.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: a9942b62-3fd9-4d0d-8cfb-fff14dcdc863 -langcode: en -status: true -dependencies: - module: - - better_normalizers -id: config_sync.module.better_normalizers -snapshotSet: config_sync -extensionType: module -extensionName: better_normalizers -items: { } diff --git a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml index bb55b73..45c4679 100644 --- a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml +++ b/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml @@ -26,43 +26,43 @@ items: subject: '[site:name] :: new comment on [node:title]' body: | Hi [comment-subscribed:author], - + [comment:author] has commented on: "[node:title]" - + ---- [comment:title] [comment:body] ---- - + You can view the comment at the following url [comment:url] - + You can stop receiving emails when someone replies to this post, by going to [comment-subscribed:unsubscribe-url] - + You can set up auto-following feature for all future posts by creating your own user with a few clicks here [site:login-url] - + -- [site:name] team [site:url] entity_author: subject: '[site:name] :: new comment for your post' body: | Hi [node:author], - + You have received a comment on: "[node:title]" - + ---- [comment:title] [comment:body] ---- - + You can view the comment at the following url [comment:url] - + You will receive emails like this for all replies to your posts. You can disable this by logging in and changing the settings on your user account at [node:author:edit-url]. - + -- [site:name] team [site:url] diff --git a/config/config_snapshot.snapshot.config_sync.module.default_content.yml b/config/config_snapshot.snapshot.config_sync.module.default_content.yml deleted file mode 100644 index f4f8484..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.default_content.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: d99c8ad0-01f3-4001-a044-bf8f406d5d1d -langcode: en -status: true -dependencies: - module: - - default_content -id: config_sync.module.default_content -snapshotSet: config_sync -extensionType: module -extensionName: default_content -items: { } diff --git a/config/config_snapshot.snapshot.config_sync.module.honeypot.yml b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml index f2e9152..6cccb2f 100644 --- a/config/config_snapshot.snapshot.config_sync.module.honeypot.yml +++ b/config/config_snapshot.snapshot.config_sync.module.honeypot.yml @@ -48,7 +48,7 @@ items: weight: -10 body: | Congratulations on installing Honeypot on your site! With just a few clicks, you can have your site well-protected against automated spam bots. - + Click Next to be guided through this configuration page. location: top protect-all-forms: @@ -60,7 +60,7 @@ items: data-id: edit-protect-all-forms body: | Protecting all the forms is the easiest way to quickly cut down on spam on your site, but doing this disables Drupal's caching for every page where a form is displayed. - + Note: If you have the honeypot time limit enabled, this option may cause issues with Drupal Commerce product forms or similarly-sparse forms that are able to be completed in a very short time. location: bottom log-blocked-form-submissions: diff --git a/config/config_snapshot.snapshot.config_sync.module.user.yml b/config/config_snapshot.snapshot.config_sync.module.user.yml index 36274cd..50eb706 100644 --- a/config/config_snapshot.snapshot.config_sync.module.user.yml +++ b/config/config_snapshot.snapshot.config_sync.module.user.yml @@ -124,114 +124,114 @@ items: 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 diff --git a/config/config_snapshot.snapshot.config_sync.module.webform.yml b/config/config_snapshot.snapshot.config_sync.module.webform.yml index 5587a1d..ee2c24b 100644 --- a/config/config_snapshot.snapshot.config_sync.module.webform.yml +++ b/config/config_snapshot.snapshot.config_sync.module.webform.yml @@ -3441,7 +3441,7 @@ items: default_body_text: | Submitted on [webform_submission:created] Submitted by: [webform_submission:user] - + Submitted values are: [webform_submission:values] default_body_html: | diff --git a/config/config_snapshot.snapshot.config_sync.theme.classy.yml b/config/config_snapshot.snapshot.config_sync.theme.classy.yml deleted file mode 100644 index 07ed98f..0000000 --- a/config/config_snapshot.snapshot.config_sync.theme.classy.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: 3ea8a42d-c2b2-4536-8336-a88800609710 -langcode: en -status: true -dependencies: - theme: - - classy -id: config_sync.theme.classy -snapshotSet: config_sync -extensionType: theme -extensionName: classy -items: { } From f465929ca6930752cf63c3635146687351cd3b01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:50:25 -0500 Subject: [PATCH 096/236] Bring in database copy script by Keegan & Chris for Portside Naively changing names for agaric live and test on Elizabeth, but not yet using variables that could be grabbed from .env file --- scripts/copy_live_db.sh | 108 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100755 scripts/copy_live_db.sh diff --git a/scripts/copy_live_db.sh b/scripts/copy_live_db.sh new file mode 100755 index 0000000..4f8a30b --- /dev/null +++ b/scripts/copy_live_db.sh @@ -0,0 +1,108 @@ +#!/bin/bash +set -euo pipefail +# Confirmed with echo `pwd` that as long as we use via composer it's always in +# /var/www/html (aka the project root). +proj_dir="$(cd $(dirname ${0})/../ && pwd)" # Parent of this script folder. +[ "$proj_dir" != "/var/www/html" ] && { echo "Script running from unexpected path - are you running within ddev, as you should?"; exit 1; } +local_backup="$(date +%Y%m%dT%H%M%S)_pre_pull.sql" +[ ! -d /var/www/html/backups ] && mkdir /var/www/html/backups || true + +verbose="" +backup="false" +sync="false" +target="local" + +while [ $# -gt 0 ] +do + case $1 + in + -t|--target) + target=$2 + shift 2 + ;; + + -b|--backup) + backup="true" + shift 1 + ;; + + -v|--verbose) + verbose="-v" + shift 1 + ;; + + -s|--sync) + sync="true" + shift 1 + ;; + + *) + echo "The arguments to use are" + echo "-t|--target {local|test}: The target to load the database to" + echo "-b|--backup: Indicate that a new backup should be made of the live database" + echo "-v|--verbose: Wordier output" + echo "-s|--sync: syncs files from live site" + exit 1 + ;; + esac +done + +if [ "$backup" = "true" ]; then + echo "Backing up live database..." + live_backup="prod_$(date +%Y%m%dT%H%M%S).sql" + remote_drush="/home/agaric_live/site/vendor/drush/drush/drush -r /home/agaric_Live/site/web $verbose" + ssh_cmd="$remote_drush sql-dump --gzip --structure-tables-key=common --result-file=~/backups/$live_backup" + ssh agaric_live@elizabeth.mayfirst.org $ssh_cmd + live_backup="${live_backup}.gz" +else + echo "Identifying the most recent live database backup..." + live_backup=`ssh agaric_live@elizabeth.org "ls -1t ~/backups/prod*.sql.gz | head -n1 | xargs -n1 basename"` +fi + +if [ "$target" = "local" ]; then + echo "Copying the database file from live to local..." + scp agaric_live@elizabeth.mayfirst.org:~/backups/${live_backup} /var/www/html/backups + + echo "Backing up local database to backups/${local_backup}..." + drush sql-dump > /var/www/html/backups/${local_backup} + + echo "Dropping local database..." + drush -y sql-drop + + echo "Unzipping live database..." + gzip -d -f /var/www/html/backups/${live_backup} + + echo "Importing the database copied from live..." + drush sqlc < /var/www/html/backups/${live_backup%.*} + + if [ "$sync" = "true" ]; then + echo "Pulling files from live into local..." + drush -y rsync @live:%files @self:%files + fi + +elif [ "$target" = "test" ]; then + remote_drush="/home/agaric_test/vendor/drush/drush/drush -r /home/agaric_test/site/web $verbose" + ssh agaric_test@elizabeth.mayfirst.org "${remote_drush} status > /dev/null" || (echo "SSH connection to ${target} or drush status failed - have you set up the key, and does site exist?"; exit 1) + ssh_cmd="scp ~/backups/${live_backup} agaric_test@localhost:~/backups" + ssh agaric_live@elizabeth.mayfirst.org ${ssh_cmd} + + echo "Backing up test database..." + ssh agaric_test@elizabeth.mayfirst.org "${remote_drush} sql-dump > ~/backups/${local_backup}" + + echo "Dropping test database..." + drush @test -y sql-drop + + echo "Unzipping live database..." + ssh_cmd="gzip -d -f ~/backups/${live_backup}" + ssh agaric_test@elizabeth.mayfirst.org "${ssh_cmd}" + + echo "Loading live database into test..." + ssh agaric_test@elizabeth.mayfirst.org "${remote_drush} sqlc < ~/backups/${live_backup%.*}" + + if [ "$sync" = "true" ]; then + echo "Pulling files from live into test..." + drush -y rsync @live:%files @test:%files + fi +fi + +echo "Done" From f5ef2ef668aee6f32ecfeec18766e5d3934549e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:56:28 -0500 Subject: [PATCH 097/236] Use standard location for Drush --- scripts/copy_live_db.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/copy_live_db.sh b/scripts/copy_live_db.sh index 4f8a30b..094b0fc 100755 --- a/scripts/copy_live_db.sh +++ b/scripts/copy_live_db.sh @@ -50,7 +50,7 @@ done if [ "$backup" = "true" ]; then echo "Backing up live database..." live_backup="prod_$(date +%Y%m%dT%H%M%S).sql" - remote_drush="/home/agaric_live/site/vendor/drush/drush/drush -r /home/agaric_Live/site/web $verbose" + remote_drush="/home/agaric_live/site/vendor/bin/drush -r /home/agaric_Live/site/web $verbose" ssh_cmd="$remote_drush sql-dump --gzip --structure-tables-key=common --result-file=~/backups/$live_backup" ssh agaric_live@elizabeth.mayfirst.org $ssh_cmd live_backup="${live_backup}.gz" @@ -81,7 +81,7 @@ if [ "$target" = "local" ]; then fi elif [ "$target" = "test" ]; then - remote_drush="/home/agaric_test/vendor/drush/drush/drush -r /home/agaric_test/site/web $verbose" + remote_drush="/home/agaric_test/vendor/bin/drush -r /home/agaric_test/site/web $verbose" ssh agaric_test@elizabeth.mayfirst.org "${remote_drush} status > /dev/null" || (echo "SSH connection to ${target} or drush status failed - have you set up the key, and does site exist?"; exit 1) ssh_cmd="scp ~/backups/${live_backup} agaric_test@localhost:~/backups" ssh agaric_live@elizabeth.mayfirst.org ${ssh_cmd} From 8ba651139e6e57d5e0bef2249c62ffd87eef97fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 21:58:19 -0500 Subject: [PATCH 098/236] Fix silly capital L typo --- scripts/copy_live_db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy_live_db.sh b/scripts/copy_live_db.sh index 094b0fc..3f4a759 100755 --- a/scripts/copy_live_db.sh +++ b/scripts/copy_live_db.sh @@ -50,7 +50,7 @@ done if [ "$backup" = "true" ]; then echo "Backing up live database..." live_backup="prod_$(date +%Y%m%dT%H%M%S).sql" - remote_drush="/home/agaric_live/site/vendor/bin/drush -r /home/agaric_Live/site/web $verbose" + remote_drush="/home/agaric_live/site/vendor/bin/drush -r /home/agaric_live/site/web $verbose" ssh_cmd="$remote_drush sql-dump --gzip --structure-tables-key=common --result-file=~/backups/$live_backup" ssh agaric_live@elizabeth.mayfirst.org $ssh_cmd live_backup="${live_backup}.gz" From 0ee0fbf1518c616dfa13804997713359584d2e2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Sun, 6 Mar 2022 22:06:28 -0500 Subject: [PATCH 099/236] Fix another typo in my modified script but still no go keys not set up for direct test/live talk here --- scripts/copy_live_db.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/copy_live_db.sh b/scripts/copy_live_db.sh index 3f4a759..dba49c1 100755 --- a/scripts/copy_live_db.sh +++ b/scripts/copy_live_db.sh @@ -81,7 +81,7 @@ if [ "$target" = "local" ]; then fi elif [ "$target" = "test" ]; then - remote_drush="/home/agaric_test/vendor/bin/drush -r /home/agaric_test/site/web $verbose" + remote_drush="/home/agaric_test/site/vendor/bin/drush -r /home/agaric_test/site/web $verbose" ssh agaric_test@elizabeth.mayfirst.org "${remote_drush} status > /dev/null" || (echo "SSH connection to ${target} or drush status failed - have you set up the key, and does site exist?"; exit 1) ssh_cmd="scp ~/backups/${live_backup} agaric_test@localhost:~/backups" ssh agaric_live@elizabeth.mayfirst.org ${ssh_cmd} From f65e0fa37216aefe11051c42a2db99c86c69e81c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Mon, 7 Mar 2022 12:53:56 -0500 Subject: [PATCH 100/236] Close loop on removing multiline config (uninstalled on live, removed from codebase) Because it is a core feature now (almost, not quite, as good as the module but the module is not supported in 9) --- config/core.extension.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/config/core.extension.yml b/config/core.extension.yml index c1604c4..701bdac 100644 --- a/config/core.extension.yml +++ b/config/core.extension.yml @@ -114,7 +114,6 @@ module: migrate_tools: 0 minimalhtml: 0 minimalhtmltitle: 0 - multiline_config: 0 node: 0 options: 0 page_cache: 0 From 0188a3f7616c4f83de0bad264ac742ce8166885c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Mon, 7 Mar 2022 12:57:34 -0500 Subject: [PATCH 101/236] Remove multiline config from config snapshot also --- ...t.snapshot.config_sync.module.multiline_config.yml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 config/config_snapshot.snapshot.config_sync.module.multiline_config.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.multiline_config.yml b/config/config_snapshot.snapshot.config_sync.module.multiline_config.yml deleted file mode 100644 index de1c5bc..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.multiline_config.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: e82700a4-9185-45a0-bb6c-ed90b564ad7e -langcode: en -status: true -dependencies: - module: - - multiline_config -id: config_sync.module.multiline_config -snapshotSet: config_sync -extensionType: module -extensionName: multiline_config -items: { } From 6e4d748ca7e6f2244fe340d92f6e6b32254b7bfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 06:56:10 -0500 Subject: [PATCH 102/236] Install commonmark (haha not so easy read below) Wow. Remove migrate upgrade, upgrade migrate tools, so can go to drush 11, which allows the same version of dot-access-data that commonmark does, at least if it is explicitly specified. --- composer.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 4d52b35..4ff813d 100644 --- a/composer.json +++ b/composer.json @@ -34,16 +34,17 @@ "require": { "composer/installers": "^1.9", "cweagans/composer-patches": "^1.7", + "dflydev/dot-access-data": "^3.0", "drupal/allowed_formats": "^1.1", "drupal/antibot": "^1.2", "drupal/backup_migrate": "^5", "drupal/block_class": "^1.3", - "drupal/ckeditorheight": "^1.3", "drupal/ckeditor_markdown": "^1.3", + "drupal/ckeditorheight": "^1.3", "drupal/classitup": "^1", - "drupal/convert_bundles": "^1.0@alpha", "drupal/coffee": "1.x-dev", "drupal/comment_notify": "dev-1.x", + "drupal/convert_bundles": "^1.0@alpha", "drupal/core-composer-scaffold": "^9", "drupal/core-recommended": "^9", "drupal/csp": "^1.13", @@ -80,8 +81,7 @@ "drupal/microformats": "^2", "drupal/migrate_plus": "^5", "drupal/migrate_source_csv": "^3", - "drupal/migrate_tools": "^4.1", - "drupal/migrate_upgrade": "^3", + "drupal/migrate_tools": "^5.1", "drupal/mimemail": "^1.0@alpha", "drupal/minimalhtml": "^1.1", "drupal/node_view_permissions": "^1.4", @@ -108,16 +108,17 @@ "drupal/textarea_widget_for_text": "^1.1", "drupal/trim": "^1.0", "drupal/twigsuggest": "^1", + "drupal/ui_patterns": "^1.0@RC", "drupal/urllogin": "^2", "drupal/view_unpublished": "^1.0", - "drupal/ui_patterns": "^1.0@RC", "drupal/viewsreference": "^1.2", "drupal/webform": "^6.0", "drupal/webform_mailchimp": "^5.4", "drupal/weight": "^3.3", "drupal/wysiwyg_linebreaks": "^1.10", - "drush/drush": "^10", + "drush/drush": "^11.0", "drutopia/drutopia": "dev-8.x-1.x", + "league/commonmark": "^2.2", "vlucas/phpdotenv": "^5.1", "webflo/drupal-finder": "^1.2" }, From 71b9c510491b2294f18b980ed37ede9841d178f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 06:58:23 -0500 Subject: [PATCH 103/236] Commit updated composer lock file --- composer.lock | 1221 ++++++++++++++++++++++++++++++++++--------------- 1 file changed, 857 insertions(+), 364 deletions(-) diff --git a/composer.lock b/composer.lock index b11bee3..68f4c8a 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2722f747f07abe94c9f426dbe6be81e0", + "content-hash": "b4305e48968e12a62c9330e83076887e", "packages": [ { "name": "albertofem/rsync-lib", @@ -285,27 +285,40 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "1.33.1", + "version": "2.5.1", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388" + "reference": "cd3912e25e20bb12b6dce8d522793f3abd71ab8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388", - "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/cd3912e25e20bb12b6dce8d522793f3abd71ab8c", + "reference": "cd3912e25e20bb12b6dce8d522793f3abd71ab8c", "shasum": "" }, "require": { "ext-json": "*", - "php": ">=5.5.9", - "symfony/console": "^3.4 || ^4.0", - "symfony/filesystem": "^2.7 || ^3.4 || ^4.0", - "twig/twig": "^1.41 || ^2.12" + "php": ">=7.4", + "psr/log": "^1.1 || ^2.0", + "symfony/console": "^4.4.15 || ^5.1", + "symfony/filesystem": "^4.4 || ^5.1 || ^6", + "symfony/polyfill-php80": "^1.23", + "symfony/string": "^5.1 || ^6", + "twig/twig": "^2.14.11 || ^3.1" }, "conflict": { - "drush/drush": "< 10.3.2" + "squizlabs/php_codesniffer": "<3.6" + }, + "require-dev": { + "chi-teck/drupal-coder-extension": "^1.2", + "drupal/coder": "^8.3.14", + "friendsoftwig/twigcs": "^5.0", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.4", + "squizlabs/php_codesniffer": "^3.5", + "symfony/var-dumper": "^5.2", + "symfony/yaml": "^5.2" }, "bin": [ "bin/dcg" @@ -313,13 +326,10 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { - "files": [ - "src/bootstrap.php" - ], "psr-4": { "DrupalCodeGenerator\\": "src" } @@ -331,9 +341,9 @@ "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/1.33.1" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.5.1" }, - "time": "2020-12-05T05:59:11+00:00" + "time": "2022-02-24T10:39:38+00:00" }, { "name": "cocur/slugify", @@ -757,65 +767,40 @@ }, { "name": "consolidation/config", - "version": "1.2.1", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/config.git", - "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1" + "reference": "0c15841b2bf60d9af1ce29884673e7d9d50c3b75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", - "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", + "url": "https://api.github.com/repos/consolidation/config/zipball/0c15841b2bf60d9af1ce29884673e7d9d50c3b75", + "reference": "0c15841b2bf60d9af1ce29884673e7d9d50c3b75", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "grasmash/expander": "^1", - "php": ">=5.4.0" + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "grasmash/expander": "^2.0.1", + "php": ">=7.1.3", + "symfony/event-dispatcher": "^4 || ^5 || ^6" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", - "php-coveralls/php-coveralls": "^1", - "phpunit/phpunit": "^5", - "squizlabs/php_codesniffer": "2.*", - "symfony/console": "^2.5|^3|^4", - "symfony/yaml": "^2.8.11|^3|^4" + "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": { - "scenarios": { - "symfony4": { - "require-dev": { - "symfony/console": "^4.0" - }, - "config": { - "platform": { - "php": "7.1.3" - } - } - }, - "symfony2": { - "require-dev": { - "symfony/console": "^2.8", - "symfony/event-dispatcher": "^2.8", - "phpunit/phpunit": "^4.8.36" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.4.8" - } - } - } - }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -836,57 +821,37 @@ "description": "Provide configuration services for a commandline tool.", "support": { "issues": "https://github.com/consolidation/config/issues", - "source": "https://github.com/consolidation/config/tree/master" + "source": "https://github.com/consolidation/config/tree/2.1.0" }, - "time": "2019-03-03T19:37:04+00:00" + "time": "2022-02-24T00:32:42+00:00" }, { "name": "consolidation/filter-via-dot-access-data", - "version": "1.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/consolidation/filter-via-dot-access-data.git", - "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6" + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6", - "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6", + "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", - "php": ">=5.5.0" + "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", + "php": ">=7.1.3" }, "require-dev": { - "consolidation/robo": "^1.2.3", - "g1a/composer-test-scenarios": "^3", - "knplabs/github-api": "^2.7", - "php-coveralls/php-coveralls": "^1", - "php-http/guzzle6-adapter": "^1.1", - "phpunit/phpunit": "^5", - "squizlabs/php_codesniffer": "^2.8", - "symfony/console": "^2.8|^3|^4" + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "scenarios": { - "phpunit5": { - "require-dev": { - "phpunit/phpunit": "^5.7.27" - }, - "remove": [ - "php-coveralls/php-coveralls" - ], - "config": { - "platform": { - "php": "5.6.33" - } - } - } - }, "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -906,9 +871,9 @@ ], "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/1.0.0" + "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2" }, - "time": "2019-01-18T06:05:07+00:00" + "time": "2021-12-30T03:56:08+00:00" }, { "name": "consolidation/log", @@ -1023,51 +988,49 @@ }, { "name": "consolidation/robo", - "version": "2.2.2", + "version": "3.0.10", "source": { "type": "git", - "url": "https://github.com/consolidation/Robo.git", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c" + "url": "https://github.com/consolidation/robo.git", + "reference": "206bbe23b34081a36bfefc4de2abbc1abcd29ef4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c", + "url": "https://api.github.com/repos/consolidation/robo/zipball/206bbe23b34081a36bfefc4de2abbc1abcd29ef4", + "reference": "206bbe23b34081a36bfefc4de2abbc1abcd29ef4", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.2.1", - "consolidation/config": "^1.2.1|^2", - "consolidation/log": "^1.1.1|^2.0.1", - "consolidation/output-formatters": "^4.1.1", - "consolidation/self-update": "^1.2", - "league/container": "^2.4.1", + "consolidation/annotated-command": "^4.3", + "consolidation/config": "^1.2.1 || ^2.0.1", + "consolidation/log": "^1.1.1 || ^2.0.2", + "consolidation/output-formatters": "^4.1.2", + "consolidation/self-update": "^2.0", + "league/container": "^3.3.1 || ^4.0", "php": ">=7.1.3", - "symfony/console": "^4.4.11|^5", - "symfony/event-dispatcher": "^4.4.11|^5", - "symfony/filesystem": "^4.4.11|^5", - "symfony/finder": "^4.4.11|^5", - "symfony/process": "^4.4.11|^5", - "symfony/yaml": "^4.0 || ^5.0" + "symfony/console": "^4.4.19 || ^5 || ^6", + "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6", + "symfony/filesystem": "^4.4.9 || ^5 || ^6", + "symfony/finder": "^4.4.9 || ^5 || ^6", + "symfony/process": "^4.4.9 || ^5 || ^6", + "symfony/yaml": "^4.4 || ^5 || ^6" }, "conflict": { "codegyre/robo": "*" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "php-coveralls/php-coveralls": "^2.2", - "phpdocumentor/reflection-docblock": "^4.3.2", - "phpunit/phpunit": "^6.5.14", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": "^7.5.20 || ^8", + "squizlabs/php_codesniffer": "^3.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { - "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", "natxet/cssmin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." + "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" @@ -1117,29 +1080,30 @@ ], "description": "Modern task runner", "support": { - "issues": "https://github.com/consolidation/Robo/issues", - "source": "https://github.com/consolidation/Robo/tree/2.2.2" + "issues": "https://github.com/consolidation/robo/issues", + "source": "https://github.com/consolidation/robo/tree/3.0.10" }, - "time": "2020-12-18T22:09:18+00:00" + "time": "2022-02-21T17:19:14+00:00" }, { "name": "consolidation/self-update", - "version": "1.2.0", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" + "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/8a64bdd8daf5faa8e85f56534dd99caf928164b3", + "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3", "shasum": "" }, "require": { + "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4|^5", - "symfony/filesystem": "^2.5|^3|^4|^5" + "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", + "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" }, "bin": [ "scripts/release" @@ -1147,7 +1111,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -1172,9 +1136,9 @@ "description": "Provides a self:update command for Symfony Console applications.", "support": { "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/1.2.0" + "source": "https://github.com/consolidation/self-update/tree/2.0.5" }, - "time": "2020-04-13T02:49:20+00:00" + "time": "2022-02-09T22:44:24+00:00" }, { "name": "consolidation/site-alias", @@ -1292,42 +1256,6 @@ }, "time": "2022-02-19T04:09:55+00:00" }, - { - "name": "container-interop/container-interop", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "shasum": "" - }, - "require": { - "psr/container": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "support": { - "issues": "https://github.com/container-interop/container-interop/issues", - "source": "https://github.com/container-interop/container-interop/tree/master" - }, - "abandoned": "psr/container", - "time": "2017-02-14T19:40:03+00:00" - }, { "name": "cweagans/composer-patches", "version": "1.7.2", @@ -1441,30 +1369,37 @@ }, { "name": "dflydev/dot-access-data", - "version": "v1.1.0", + "version": "v3.0.1", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a" + "reference": "0992cc19268b259a39e86f296da5f0677841f42c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a", - "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c", + "reference": "0992cc19268b259a39e86f296da5f0677841f42c", "shasum": "" }, "require": { - "php": ">=5.3.2" + "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": "^3.14" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "3.x-dev" } }, "autoload": { - "psr-0": { - "Dflydev\\DotAccessData": "src" + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1486,6 +1421,11 @@ "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.", @@ -1498,9 +1438,9 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master" + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1" }, - "time": "2017-01-20T21:14:22+00:00" + "time": "2021-08-13T13:06:58+00:00" }, { "name": "dg/twitter-php", @@ -9565,98 +9505,35 @@ }, { "name": "drupal/migrate_tools", - "version": "4.5.0", + "version": "5.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "8.x-4.5" + "reference": "8.x-5.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip", - "reference": "8.x-4.5", - "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca" + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-5.1.zip", + "reference": "8.x-5.1", + "shasum": "2c1a9d35d318a0e1de30a99fbf64bedd4e65cee1" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/migrate_plus": "^4 || ^5" - }, - "require-dev": { - "drupal/migrate_plus": "4.x-dev", - "drupal/migrate_source_csv": "^2.2", - "drush/drush": "^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-4.5", - "datestamp": "1574693285", - "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": "drupalspoons", - "homepage": "https://www.drupal.org/user/3647684" - }, - { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, - { - "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": "http://cgit.drupalcode.org/migrate_tools", - "issues": "http://drupal.org/project/migrate_tools", - "irc": "irc://irc.freenode.org/drupal-migrate" - } - }, - { - "name": "drupal/migrate_upgrade", - "version": "3.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_upgrade.git", - "reference": "8.x-3.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "f7be28c9fa9e2c56db24fafaf4e9cd6815582aed" - }, - "require": { - "drupal/core": "^8 || ^9", - "drupal/migrate_plus": "^4 || ^5", - "drush/drush": "^8 || ^9 || ^10", - "php": ">7.1" - }, - "require-dev": { + "drupal/core": "^9.1", "drupal/migrate_plus": "^5", + "php": ">=7.1" + }, + "require-dev": { + "drupal/migrate_source_csv": "^3.0", "drush/drush": "^10" }, + "suggest": { + "drush/drush": "^9 || ^10" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1588260599", + "version": "8.x-5.1", + "datestamp": "1640378500", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9682,13 +9559,17 @@ "name": "Lucas Hedding", "homepage": "https://www.drupal.org/u/heddn", "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" } ], - "description": "Drush support for direct upgrades from older Drupal versions.", - "homepage": "https://www.drupal.org/project/migrate_upgrade", + "description": "Tools to assist in developing and running migrations.", + "homepage": "http://drupal.org/project/migrate_tools", "support": { - "source": "https://git.drupalcode.org/project/migrate_upgrade", - "issues": "https://www.drupal.org/project/issues/migrate_upgrade", + "source": "https://git.drupalcode.org/project/migrate_tools", + "issues": "https://www.drupal.org/project/issues/migrate_tools", "slack": "#migrate" } }, @@ -12910,50 +12791,57 @@ }, { "name": "drush/drush", - "version": "10.3.6", + "version": "11.0.6", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a" + "reference": "5c0f0ec9a659557d4fe6fd5dc72ca26dab73e1ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/fc985a95c6010e04891a2dbcf3f39984b8c9ef0a", - "reference": "fc985a95c6010e04891a2dbcf3f39984b8c9ef0a", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/5c0f0ec9a659557d4fe6fd5dc72ca26dab73e1ac", + "reference": "5c0f0ec9a659557d4fe6fd5dc72ca26dab73e1ac", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^1.32.1", + "chi-teck/drupal-code-generator": "^2.4", "composer/semver": "^1.4 || ^3", - "consolidation/config": "^1.2", - "consolidation/filter-via-dot-access-data": "^1", - "consolidation/robo": "^1.4.11 || ^2", - "consolidation/site-alias": "^3.0.0@stable", - "consolidation/site-process": "^2.1 || ^4", + "consolidation/annotated-command": "^4.5", + "consolidation/config": "^2", + "consolidation/filter-via-dot-access-data": "^2", + "consolidation/robo": "^3.0.9", + "consolidation/site-alias": "^3.1.3", + "consolidation/site-process": "^4.1.3 || ^5", + "enlightn/security-checker": "^1", "ext-dom": "*", - "grasmash/yaml-expander": "^1.1.1", "guzzlehttp/guzzle": "^6.3 || ^7.0", - "league/container": "~2", - "php": ">=7.1.3", - "psr/log": "~1.0", - "psy/psysh": "~0.6", - "symfony/event-dispatcher": "^3.4 || ^4.0", - "symfony/finder": "^3.4 || ^4.0 || ^5", - "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", - "symfony/yaml": "^3.4 || ^4.0", + "league/container": "^3.4 || ^4", + "php": ">=7.4", + "psy/psysh": "~0.11", + "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0", + "symfony/finder": "^4.0 || ^5 || ^6", + "symfony/polyfill-php80": "^1.23", + "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0", + "symfony/yaml": "^4.0 || ^5.0 || ^6.0", "webflo/drupal-finder": "^1.2", "webmozart/path-util": "^2.1.0" }, + "conflict": { + "drupal/core": "< 9.2", + "drupal/migrate_run": "*", + "drupal/migrate_tools": "<= 5" + }, "require-dev": { "composer/installers": "^1.7", "cweagans/composer-patches": "~1.0", "david-garcia/phpwhois": "4.3.0", - "drupal/alinks": "1.0.0", - "drupal/core-recommended": "^8.8", - "lox/xhprof": "dev-master", - "phpunit/phpunit": "^4.8.36 || ^6.1", - "squizlabs/php_codesniffer": "^2.7 || ^3", - "vlucas/phpdotenv": "^2.4" + "drupal/core-recommended": "^9 || ^10", + "drupal/semver_example": "2.3.0", + "phpunit/phpunit": ">=7.5.20", + "rector/rector": "^0.12", + "squizlabs/php_codesniffer": "^3.6", + "vlucas/phpdotenv": "^2.4", + "yoast/phpunit-polyfills": "^0.2.0" }, "bin": [ "drush" @@ -12989,8 +12877,7 @@ }, "autoload": { "psr-4": { - "Drush\\": "src/", - "Drush\\Internal\\": "src/internal-forks" + "Drush\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -13038,7 +12925,7 @@ "irc": "irc://irc.freenode.org/drush", "issues": "https://github.com/drush-ops/drush/issues", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/10.3.6" + "source": "https://github.com/drush-ops/drush/tree/11.0.6" }, "funding": [ { @@ -13046,7 +12933,7 @@ "type": "github" } ], - "time": "2020-11-11T04:36:51+00:00" + "time": "2022-03-06T12:27:12+00:00" }, { "name": "drutopia/drutopia", @@ -13208,6 +13095,72 @@ ], "time": "2021-10-11T09:18:27+00:00" }, + { + "name": "enlightn/security-checker", + "version": "v1.10.0", + "source": { + "type": "git", + "url": "https://github.com/enlightn/security-checker.git", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", + "shasum": "" + }, + "require": { + "ext-json": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.6", + "symfony/console": "^3.4|^4|^5|^6", + "symfony/finder": "^3|^4|^5|^6", + "symfony/process": "^3.4|^4|^5|^6", + "symfony/yaml": "^3.4|^4|^5|^6" + }, + "require-dev": { + "ext-zip": "*", + "friendsofphp/php-cs-fixer": "^2.18|^3.0", + "phpunit/phpunit": "^5.5|^6|^7|^8|^9" + }, + "bin": [ + "security-checker" + ], + "type": "library", + "autoload": { + "psr-4": { + "Enlightn\\SecurityChecker\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paras Malhotra", + "email": "paras@laravel-enlightn.com" + }, + { + "name": "Miguel Piedrafita", + "email": "soy@miguelpiedrafita.com" + } + ], + "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.", + "keywords": [ + "package", + "php", + "scanner", + "security", + "security advisories", + "vulnerability scanner" + ], + "support": { + "issues": "https://github.com/enlightn/security-checker/issues", + "source": "https://github.com/enlightn/security-checker/tree/v1.10.0" + }, + "time": "2022-02-21T22:40:16+00:00" + }, { "name": "ezyang/htmlpurifier", "version": "v4.14.0", @@ -13364,27 +13317,28 @@ }, { "name": "grasmash/expander", - "version": "1.0.0", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" + "reference": "f4df21d01d1fbda38269cca89e3dbb6ba223da7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f", - "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "url": "https://api.github.com/repos/grasmash/expander/zipball/f4df21d01d1fbda38269cca89e3dbb6ba223da7f", + "reference": "f4df21d01d1fbda38269cca89e3dbb6ba223da7f", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4" + "dflydev/dot-access-data": "^3.0.0", + "php": ">=5.6", + "psr/log": "^1 | ^2" }, "require-dev": { "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^4|^5.5.4", - "satooshi/php-coveralls": "^1.0.2|dev-master", - "squizlabs/php_codesniffer": "^2.7" + "php-coveralls/php-coveralls": "^2.0", + "phpunit/phpunit": "^6.0 || ^8.0 || ^9", + "squizlabs/php_codesniffer": "^2.7 || ^3.3" }, "type": "library", "extra": { @@ -13409,61 +13363,9 @@ "description": "Expands internal property references in PHP arrays file.", "support": { "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/master" + "source": "https://github.com/grasmash/expander/tree/2.0.2" }, - "time": "2017-12-21T22:14:55+00:00" - }, - { - "name": "grasmash/yaml-expander", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://github.com/grasmash/yaml-expander.git", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", - "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", - "shasum": "" - }, - "require": { - "dflydev/dot-access-data": "^1.1.0", - "php": ">=5.4", - "symfony/yaml": "^2.8.11|^3|^4" - }, - "require-dev": { - "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^4.8|^5.5.4", - "satooshi/php-coveralls": "^1.0.2|dev-master", - "squizlabs/php_codesniffer": "^2.7" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Grasmash\\YamlExpander\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Matthew Grasmick" - } - ], - "description": "Expands internal property references in a yaml file.", - "support": { - "issues": "https://github.com/grasmash/yaml-expander/issues", - "source": "https://github.com/grasmash/yaml-expander/tree/master" - }, - "time": "2017-12-16T16:06:03+00:00" + "time": "2022-02-24T03:58:20+00:00" }, { "name": "guzzlehttp/guzzle", @@ -14397,38 +14299,230 @@ "time": "2021-09-28T19:18:28+00:00" }, { - "name": "league/container", - "version": "2.5.0", + "name": "league/commonmark", + "version": "2.2.3", "source": { "type": "git", - "url": "https://github.com/thephpleague/container.git", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3" + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "47b015bc4e50fd4438c1ffef6139a1fb65d2ab71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/47b015bc4e50fd4438c1ffef6139a1fb65d2ab71", + "reference": "47b015bc4e50fd4438c1ffef6139a1fb65d2ab71", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "php": "^5.4 || ^7.0 || ^8.0" + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.15" + }, + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.30.0", + "commonmark/commonmark.js": "0.30.0", + "composer/package-versions-deprecated": "^1.8", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4", + "phpstan/phpstan": "^0.12.88 || ^1.0.0", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.3-dev" + } + }, + "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/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "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-02-26T21:24:45+00:00" + }, + { + "name": "league/config", + "version": "v1.1.1", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/config.git", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.90", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.2-dev" + } + }, + "autoload": { + "psr-4": { + "League\\Config\\": "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": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "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" + } + ], + "time": "2021-08-14T12:15:32+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": { - "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.36", - "scrutinizer/ocular": "^1.3", - "squizlabs/php_codesniffer": "^3.5" + "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" } @@ -14445,8 +14539,7 @@ "authors": [ { "name": "Phil Bennett", - "email": "philipobenito@gmail.com", - "homepage": "http://www.philipobenito.com", + "email": "mail@philbennett.co.uk", "role": "Developer" } ], @@ -14463,7 +14556,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/2.5.0" + "source": "https://github.com/thephpleague/container/tree/4.2.0" }, "funding": [ { @@ -14471,7 +14564,7 @@ "type": "github" } ], - "time": "2021-02-22T09:20:06+00:00" + "time": "2021-11-16T10:29:06+00:00" }, { "name": "league/csv", @@ -14843,6 +14936,153 @@ }, "time": "2016-07-25T17:07:32+00:00" }, + { + "name": "nette/schema", + "version": "v1.2.2", + "source": { + "type": "git", + "url": "https://github.com/nette/schema.git", + "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", + "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", + "shasum": "" + }, + "require": { + "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", + "php": ">=7.1 <8.2" + }, + "require-dev": { + "nette/tester": "^2.3 || ^2.4", + "phpstan/phpstan-nette": "^0.12", + "tracy/tracy": "^2.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], + "support": { + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.2.2" + }, + "time": "2021-10-15T11:40:02+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.7", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99", + "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.2" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^1.0", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.7" + }, + "time": "2022-01-24T11:29:14+00:00" + }, { "name": "nikic/php-parser", "version": "v4.13.2", @@ -15957,6 +16197,56 @@ }, "time": "2021-03-05T17:36:06+00:00" }, + { + "name": "psr/event-dispatcher", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\EventDispatcher\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "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-factory", "version": "1.0.1", @@ -17772,6 +18062,87 @@ ], "time": "2021-05-27T09:27:20+00:00" }, + { + "name": "symfony/polyfill-intl-grapheme", + "version": "v1.25.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-grapheme.git", + "reference": "81b86b50cf841a64252b439e738e97f4a34e2783" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783", + "reference": "81b86b50cf841a64252b439e738e97f4a34e2783", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.23-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.25.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": "2021-11-23T21:10:46+00:00" + }, { "name": "symfony/polyfill-intl-idn", "version": "v1.23.0", @@ -18677,6 +19048,92 @@ ], "time": "2021-11-04T16:48:04+00:00" }, + { + "name": "symfony/string", + "version": "v5.4.3", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/92043b7d8383e48104e411bc9434b260dbeb5a10", + "reference": "92043b7d8383e48104e411bc9434b260dbeb5a10", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "~1.15" + }, + "conflict": { + "symfony/translation-contracts": ">=3.0" + }, + "require-dev": { + "symfony/error-handler": "^4.4|^5.0|^6.0", + "symfony/http-client": "^4.4|^5.0|^6.0", + "symfony/translation-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0|^6.0" + }, + "type": "library", + "autoload": { + "files": [ + "Resources/functions.php" + ], + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/string/tree/v5.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": "2022-01-02T09:53:40+00:00" + }, { "name": "symfony/translation", "version": "v4.4.34", @@ -19963,6 +20420,42 @@ }, "time": "2020-01-14T16:39:13+00:00" }, + { + "name": "container-interop/container-interop", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/container-interop/container-interop.git", + "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", + "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", + "shasum": "" + }, + "require": { + "psr/container": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Interop\\Container\\": "src/Interop/Container/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", + "homepage": "https://github.com/container-interop/container-interop", + "support": { + "issues": "https://github.com/container-interop/container-interop/issues", + "source": "https://github.com/container-interop/container-interop/tree/master" + }, + "abandoned": "psr/container", + "time": "2017-02-14T19:40:03+00:00" + }, { "name": "drupal/upgrade_status", "version": "3.14.0", @@ -20837,9 +21330,9 @@ ], "minimum-stability": "dev", "stability-flags": { - "drupal/convert_bundles": 15, "drupal/coffee": 20, "drupal/comment_notify": 20, + "drupal/convert_bundles": 15, "drupal/customerror": 20, "drupal/drutopia_collection": 20, "drupal/drutopia_core": 20, From 4fb0cf33371c202642f6056fb4e006f667ccd3ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 07:21:30 -0500 Subject: [PATCH 104/236] Use dev version of markdown to fix fatal error Uncaught PHP Exception Drupal\markdown\Exception\MissingVersionException: 'The library 'commonmark' did not not specify a version. If the plugin has no version, it must be explicitly set to '0.0.0'.' at /var/www/html/web/modules/contrib/markdown/src/Plugin/Markdown/InstallablePluginBase.php line 316' Fixed as noted in https://www.drupal.org/project/markdown/issues/3187582#comment-14012913 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4ff813d..ed9bd60 100644 --- a/composer.json +++ b/composer.json @@ -75,7 +75,7 @@ "drupal/link_attributes": "^1.9", "drupal/linkit": "^6", "drupal/mailsystem": "^4.3", - "drupal/markdown": "^3", + "drupal/markdown": "3.0.x-dev@dev", "drupal/menu_link_config": "^1.0@alpha", "drupal/menu_trail_by_path": "^1.1", "drupal/microformats": "^2", From 1ea7dfc2074d8a5e407bbee848e15c4ed98ab47a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 07:21:42 -0500 Subject: [PATCH 105/236] Commit updated composer lock file --- composer.lock | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/composer.lock b/composer.lock index 68f4c8a..69bc848 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b4305e48968e12a62c9330e83076887e", + "content-hash": "4bc00fec18459fc32bcefe63b5542e7c", "packages": [ { "name": "albertofem/rsync-lib", @@ -6913,17 +6913,17 @@ }, { "name": "drupal/environment_indicator", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "4.0.4" + "reference": "4.0.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.4.zip", - "reference": "4.0.4", - "shasum": "37cb19ca432c29a2351947fb59fc1271ff98dce3" + "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.5.zip", + "reference": "4.0.5", + "shasum": "1900f65220783c8eef13c710befff8d12633f36e" }, "require": { "drupal/core": "^8.8 || ^9" @@ -6931,8 +6931,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.4", - "datestamp": "1644420669", + "version": "4.0.5", + "datestamp": "1646688932", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8896,17 +8896,11 @@ }, { "name": "drupal/markdown", - "version": "3.0.0-rc2", + "version": "dev-3.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/markdown.git", - "reference": "3.0.0-rc2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/markdown-3.0.0-rc2.zip", - "reference": "3.0.0-rc2", - "shasum": "ccbb84b03ce1f5d2fdb8511595dde0980653845f" + "reference": "b63aa95c3ac7b95116515d2de391693542b30c81" }, "require": { "composer/semver": "^1.0 || ^2.0 || ^3.0", @@ -8918,12 +8912,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-3.0.x": "3.0.x-dev" + }, "drupal": { - "version": "3.0.0-rc2", - "datestamp": "1639560570", + "version": "3.0.0-rc2+1-dev", + "datestamp": "1642456079", "security-coverage": { "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "message": "Dev releases are not covered by Drupal security advisories." } }, "drush": { @@ -21338,6 +21335,7 @@ "drupal/drutopia_core": 20, "drupal/drutopia_paragraph_title": 20, "drupal/footnotes": 20, + "drupal/markdown": 20, "drupal/menu_link_config": 15, "drupal/mimemail": 15, "drupal/notfoundpassthrough": 20, From 89bb55e2a1ae3aec4ad9b0eac4945a243f798916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 07:55:08 -0500 Subject: [PATCH 106/236] Dropping down to commonmark 1.0 to fix even more fatal issue https://www.drupal.org/project/markdown/issues/3268341 --- composer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index ed9bd60..61f42bb 100644 --- a/composer.json +++ b/composer.json @@ -34,7 +34,6 @@ "require": { "composer/installers": "^1.9", "cweagans/composer-patches": "^1.7", - "dflydev/dot-access-data": "^3.0", "drupal/allowed_formats": "^1.1", "drupal/antibot": "^1.2", "drupal/backup_migrate": "^5", @@ -75,7 +74,7 @@ "drupal/link_attributes": "^1.9", "drupal/linkit": "^6", "drupal/mailsystem": "^4.3", - "drupal/markdown": "3.0.x-dev@dev", + "drupal/markdown": "^3.0@RC", "drupal/menu_link_config": "^1.0@alpha", "drupal/menu_trail_by_path": "^1.1", "drupal/microformats": "^2", @@ -118,7 +117,7 @@ "drupal/wysiwyg_linebreaks": "^1.10", "drush/drush": "^11.0", "drutopia/drutopia": "dev-8.x-1.x", - "league/commonmark": "^2.2", + "league/commonmark": "^1.0", "vlucas/phpdotenv": "^5.1", "webflo/drupal-finder": "^1.2" }, From 1350ce3fe517be13a9f185e23308ed3a43da33bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 07:55:21 -0500 Subject: [PATCH 107/236] Commit updated composer lock file --- composer.lock | 357 +++++--------------------------------------------- 1 file changed, 35 insertions(+), 322 deletions(-) diff --git a/composer.lock b/composer.lock index 69bc848..7367ecc 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4bc00fec18459fc32bcefe63b5542e7c", + "content-hash": "6026b6f25c5ba696f1642047e193d732", "packages": [ { "name": "albertofem/rsync-lib", @@ -8896,11 +8896,17 @@ }, { "name": "drupal/markdown", - "version": "dev-3.0.x", + "version": "3.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/markdown.git", - "reference": "b63aa95c3ac7b95116515d2de391693542b30c81" + "reference": "3.0.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/markdown-3.0.0-rc2.zip", + "reference": "3.0.0-rc2", + "shasum": "ccbb84b03ce1f5d2fdb8511595dde0980653845f" }, "require": { "composer/semver": "^1.0 || ^2.0 || ^3.0", @@ -8912,15 +8918,12 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-3.0.x": "3.0.x-dev" - }, "drupal": { - "version": "3.0.0-rc2+1-dev", - "datestamp": "1642456079", + "version": "3.0.0-rc2", + "datestamp": "1639560570", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } }, "drush": { @@ -14297,52 +14300,42 @@ }, { "name": "league/commonmark", - "version": "2.2.3", + "version": "1.6.7", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "47b015bc4e50fd4438c1ffef6139a1fb65d2ab71" + "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/47b015bc4e50fd4438c1ffef6139a1fb65d2ab71", - "reference": "47b015bc4e50fd4438c1ffef6139a1fb65d2ab71", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b", + "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b", "shasum": "" }, "require": { "ext-mbstring": "*", - "league/config": "^1.1.1", - "php": "^7.4 || ^8.0", - "psr/event-dispatcher": "^1.0", - "symfony/deprecation-contracts": "^2.1 || ^3.0", - "symfony/polyfill-php80": "^1.15" + "php": "^7.1 || ^8.0" + }, + "conflict": { + "scrutinizer/ocular": "1.7.*" }, "require-dev": { - "cebe/markdown": "^1.0", - "commonmark/cmark": "0.30.0", - "commonmark/commonmark.js": "0.30.0", - "composer/package-versions-deprecated": "^1.8", - "erusev/parsedown": "^1.0", + "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", - "phpstan/phpstan": "^0.12.88 || ^1.0.0", - "phpunit/phpunit": "^9.5.5", - "scrutinizer/ocular": "^1.8.1", - "symfony/finder": "^5.3", - "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0", - "unleashedtech/php-coding-standard": "^3.1", - "vimeo/psalm": "^4.7.3" - }, - "suggest": { - "symfony/yaml": "v2.3+ required if using the Front Matter extension" + "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", - "extra": { - "branch-alias": { - "dev-main": "2.3-dev" - } - }, "autoload": { "psr-4": { "League\\CommonMark\\": "src" @@ -14360,7 +14353,7 @@ "role": "Lead Developer" } ], - "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)", "homepage": "https://commonmark.thephpleague.com", "keywords": [ "commonmark", @@ -14374,7 +14367,6 @@ ], "support": { "docs": "https://commonmark.thephpleague.com/", - "forum": "https://github.com/thephpleague/commonmark/discussions", "issues": "https://github.com/thephpleague/commonmark/issues", "rss": "https://github.com/thephpleague/commonmark/releases.atom", "source": "https://github.com/thephpleague/commonmark" @@ -14397,89 +14389,7 @@ "type": "tidelift" } ], - "time": "2022-02-26T21:24:45+00:00" - }, - { - "name": "league/config", - "version": "v1.1.1", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/config.git", - "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/config/zipball/a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", - "reference": "a9d39eeeb6cc49d10a6e6c36f22c4c1f4a767f3e", - "shasum": "" - }, - "require": { - "dflydev/dot-access-data": "^3.0.1", - "nette/schema": "^1.2", - "php": "^7.4 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^0.12.90", - "phpunit/phpunit": "^9.5.5", - "scrutinizer/ocular": "^1.8.1", - "unleashedtech/php-coding-standard": "^3.1", - "vimeo/psalm": "^4.7.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.2-dev" - } - }, - "autoload": { - "psr-4": { - "League\\Config\\": "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": "Define configuration arrays with strict schemas and access values with dot notation", - "homepage": "https://config.thephpleague.com", - "keywords": [ - "array", - "config", - "configuration", - "dot", - "dot-access", - "nested", - "schema" - ], - "support": { - "docs": "https://config.thephpleague.com/", - "issues": "https://github.com/thephpleague/config/issues", - "rss": "https://github.com/thephpleague/config/releases.atom", - "source": "https://github.com/thephpleague/config" - }, - "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" - } - ], - "time": "2021-08-14T12:15:32+00:00" + "time": "2022-01-13T17:18:13+00:00" }, { "name": "league/container", @@ -14933,153 +14843,6 @@ }, "time": "2016-07-25T17:07:32+00:00" }, - { - "name": "nette/schema", - "version": "v1.2.2", - "source": { - "type": "git", - "url": "https://github.com/nette/schema.git", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/9a39cef03a5b34c7de64f551538cbba05c2be5df", - "reference": "9a39cef03a5b34c7de64f551538cbba05c2be5df", - "shasum": "" - }, - "require": { - "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0", - "php": ">=7.1 <8.2" - }, - "require-dev": { - "nette/tester": "^2.3 || ^2.4", - "phpstan/phpstan-nette": "^0.12", - "tracy/tracy": "^2.7" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "📐 Nette Schema: validating data structures against a given Schema.", - "homepage": "https://nette.org", - "keywords": [ - "config", - "nette" - ], - "support": { - "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.2.2" - }, - "time": "2021-10-15T11:40:02+00:00" - }, - { - "name": "nette/utils", - "version": "v3.2.7", - "source": { - "type": "git", - "url": "https://github.com/nette/utils.git", - "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/0af4e3de4df9f1543534beab255ccf459e7a2c99", - "reference": "0af4e3de4df9f1543534beab255ccf459e7a2c99", - "shasum": "" - }, - "require": { - "php": ">=7.2 <8.2" - }, - "conflict": { - "nette/di": "<3.0.6" - }, - "require-dev": { - "nette/tester": "~2.0", - "phpstan/phpstan": "^1.0", - "tracy/tracy": "^2.3" - }, - "suggest": { - "ext-gd": "to use Image", - "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", - "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", - "ext-json": "to use Nette\\Utils\\Json", - "ext-mbstring": "to use Strings::lower() etc...", - "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", - "ext-xml": "to use Strings::length() etc. when mbstring is not available" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", - "homepage": "https://nette.org", - "keywords": [ - "array", - "core", - "datetime", - "images", - "json", - "nette", - "paginator", - "password", - "slugify", - "string", - "unicode", - "utf-8", - "utility", - "validation" - ], - "support": { - "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.7" - }, - "time": "2022-01-24T11:29:14+00:00" - }, { "name": "nikic/php-parser", "version": "v4.13.2", @@ -16194,56 +15957,6 @@ }, "time": "2021-03-05T17:36:06+00:00" }, - { - "name": "psr/event-dispatcher", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/event-dispatcher.git", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", - "shasum": "" - }, - "require": { - "php": ">=7.2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\EventDispatcher\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "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-factory", "version": "1.0.1", @@ -21335,7 +21048,7 @@ "drupal/drutopia_core": 20, "drupal/drutopia_paragraph_title": 20, "drupal/footnotes": 20, - "drupal/markdown": 20, + "drupal/markdown": 5, "drupal/menu_link_config": 15, "drupal/mimemail": 15, "drupal/notfoundpassthrough": 20, From 1dd4ff625e5ca5ce10ea8200f41c2880d4104667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 07:55:57 -0500 Subject: [PATCH 108/236] Add explicit markdown configuration w/ no changes --- config/filter.format.markdown.yml | 19 ++++++- config/markdown.parser.commonmark.yml | 79 +++++++++++++++++++++++++++ 2 files changed, 97 insertions(+), 1 deletion(-) create mode 100644 config/markdown.parser.commonmark.yml diff --git a/config/filter.format.markdown.yml b/config/filter.format.markdown.yml index ba36668..a879552 100644 --- a/config/filter.format.markdown.yml +++ b/config/filter.format.markdown.yml @@ -14,4 +14,21 @@ filters: status: true weight: 0 settings: - markdown_library: commonmark + 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/markdown.parser.commonmark.yml b/config/markdown.parser.commonmark.yml new file mode 100644 index 0000000..55901fc --- /dev/null +++ b/config/markdown.parser.commonmark.yml @@ -0,0 +1,79 @@ +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 From 26a8aaa09745b393ea896571f77f74ca58f4298f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 09:41:58 -0500 Subject: [PATCH 109/236] Enable hidden bridgy mastodon return indicator --- config/core.entity_view_display.node.blog.full.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config/core.entity_view_display.node.blog.full.yml b/config/core.entity_view_display.node.blog.full.yml index 930dcec..1189fbe 100644 --- a/config/core.entity_view_display.node.blog.full.yml +++ b/config/core.entity_view_display.node.blog.full.yml @@ -74,6 +74,11 @@ content: ds_limit: '' weight: 2 region: content + indieweb_bridgypublishmastodon: + settings: { } + third_party_settings: { } + weight: 6 + region: content indieweb_bridgypublishtwitter: settings: { } third_party_settings: { } @@ -82,7 +87,7 @@ content: indieweb_syndication: settings: { } third_party_settings: { } - weight: 6 + weight: 7 region: content hidden: body: true @@ -91,3 +96,4 @@ hidden: field_summary: true langcode: true links: true + search_api_excerpt: true From aa14d306649af22c2a087f6de67ea2967a44829c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 09:52:47 -0500 Subject: [PATCH 110/236] Set webmentions to run on cron --- config/indieweb_webmention.settings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/indieweb_webmention.settings.yml b/config/indieweb_webmention.settings.yml index b5b55f8..f9b0f16 100644 --- a/config/indieweb_webmention.settings.yml +++ b/config/indieweb_webmention.settings.yml @@ -18,7 +18,7 @@ syndication_targets: "Twitter (bridgy)|https://brid.gy/publish/twitter|1\r\nMast bridgy_back_link: always send_custom_url: false send_link_fields: '' -send_webmention_handler: disabled +send_webmention_handler: cron send_log_response: true send_comment_webmention_field: indieweb_webmention send_comment_permission_fields: true From 40735b8b8baaf8e93ddd52073c75df047d407b54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 8 Mar 2022 15:43:26 -0500 Subject: [PATCH 111/236] Configure basic HTML input format to NOT use markdown at all Was considering doing this anyway because switching between the Markdown WYSIWYG and regular CKEditor could really screw up formatting, but after the upgrade of the Markdown module (which provides the underlying Markdown capability that CKEditor Markdown uses, apparently) it absolutely destroyed every port of content that was using the Basic HTML input format, in the way described way back in this old comment on the upgrade issue, https://www.drupal.org/project/markdown/issues/3103679#comment-14289153 Anyway this configuration change fixed the major problem of the text being output with no HTML formatting whatsoever. Ref #227 --- config/editor.editor.basic_html.yml | 8 ++------ config/filter.format.basic_html.yml | 16 ++++------------ 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/config/editor.editor.basic_html.yml b/config/editor.editor.basic_html.yml index 1b10fb7..c7d76e8 100644 --- a/config/editor.editor.basic_html.yml +++ b/config/editor.editor.basic_html.yml @@ -42,18 +42,14 @@ settings: - name: Tools items: - - Markdown - Source - ShowBlocks - Maximize plugins: - stylescombo: - styles: | - p.subtitle.is-mono.is-4|Mono subtitle - p.title.is-5.is-spaced|Small title - p.subtitle.is-6|Small subtitle 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" linebreaks: method: force image_upload: diff --git a/config/filter.format.basic_html.yml b/config/filter.format.basic_html.yml index 56faf06..b30c3fc 100644 --- a/config/filter.format.basic_html.yml +++ b/config/filter.format.basic_html.yml @@ -4,7 +4,6 @@ status: true dependencies: module: - editor - - markdown _core: default_config_hash: 73bBl0mQ4I5Md9_FoI1V9MErX_I6ykC9gNKwLqb80Ko name: 'Basic HTML' @@ -17,7 +16,7 @@ filters: status: true weight: -42 settings: - allowed_html: '