diff --git a/drupal/.ddev/config.yaml b/drupal/.ddev/config.yaml index c455a6c..66e60e2 100644 --- a/drupal/.ddev/config.yaml +++ b/drupal/.ddev/config.yaml @@ -1,6 +1,6 @@ -name: drupal +name: social type: drupal9 -docroot: web +docroot: html php_version: "7.4" webserver_type: nginx-fpm router_http_port: "80" @@ -82,7 +82,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 diff --git a/drupal/.gitignore b/drupal/.gitignore index 4763289..fc656f9 100644 --- a/drupal/.gitignore +++ b/drupal/.gitignore @@ -3,21 +3,21 @@ bin/ drush/contrib/ keys/*.key vendor/ -web/core/ -web/modules/contrib/ -web/themes/contrib/ -web/profiles/contrib/ -web/libraries/ +html/core/ +html/modules/contrib/ +html/themes/contrib/ +html/profiles/contrib/ +html/libraries/ # Ignore sensitive information -web/sites/*/settings.local.php +html/sites/*/settings.local.php # Ignore Drupal's file directory -web/sites/*/files/ -!web/sites/default/files/.gitkeep +html/sites/*/files/ +!html/sites/default/files/.gitkeep # Ignore SimpleTest multi-site environment. -web/sites/simpletest +html/sites/simpletest # Ignore environment specific files. .env diff --git a/drupal/composer.json b/drupal/composer.json index 62131ce..b8c3252 100644 --- a/drupal/composer.json +++ b/drupal/composer.json @@ -1,85 +1,77 @@ { - "name": "drupal/recommended-project", - "description": "Project template for Drupal 9 projects with a relocated document root", + "name": "decipher/druxt_social", + "description": "Drupal Social backend for Druxt Social example project.", "type": "project", - "license": "GPL-2.0-or-later", - "homepage": "https://www.drupal.org/project/drupal", - "support": { - "docs": "https://www.drupal.org/docs/user_guide/en/index.html", - "chat": "https://www.drupal.org/node/314178" + "license": "GPL-2.0+", + "minimum-stability": "dev", + "prefer-stable": true, + "require": { + "goalgorilla/open_social": "~11.3.5", + "php": "^7.4", + "monolog/monolog": "^2.3.5", + "drush/drush": "*", + "drupal/tome": "^1.7", + "drupal-tome/tome_drush": "dev-master" }, "repositories": [ { - "type": "vcs", - "url": "https://github.com/realityloop/tome_drush" + "type": "composer", + "url": "https://packages.drupal.org/8" }, { "type": "composer", - "url": "https://packages.drupal.org/8" + "url": "https://asset-packagist.org" } ], - "require": { - "composer/installers": "2.1.1", - "drupal-tome/tome_drush": "dev-feature/3-drush_11", - "drupal/core-composer-scaffold": "9.4.4", - "drupal/core-project-message": "9.4.4", - "drupal/core-recommended": "9.4.4", - "drupal/druxt": "1.1.1", - "drupal/tome": "^1.7", - "drush/drush": "^11.1" - }, - "require-dev": { - "drupal/core-dev": "9.4.4" - }, - "conflict": { - "drupal/drupal": "*" - }, - "minimum-stability": "dev", - "prefer-stable": true, - "config": { - "sort-packages": true, - "allow-plugins": { - "composer/installers": true, - "drupal/core-composer-scaffold": true, - "drupal/core-project-message": true, - "dealerdirect/phpcodesniffer-composer-installer": true - } - }, "extra": { "drupal-scaffold": { "locations": { - "web-root": "web/" + "web-root": "html/" } }, + "installer-types": [ + "bower-asset", + "npm-asset" + ], "installer-paths": { - "web/core": ["type:drupal-core"], - "web/libraries/{$name}": ["type:drupal-library"], - "web/modules/contrib/{$name}": ["type:drupal-module"], - "web/profiles/contrib/{$name}": ["type:drupal-profile"], - "web/themes/contrib/{$name}": ["type:drupal-theme"], - "drush/Commands/contrib/{$name}": ["type:drupal-drush"], - "web/modules/custom/{$name}": ["type:drupal-custom-module"], - "web/profiles/custom/{$name}": ["type:drupal-custom-profile"], - "web/themes/custom/{$name}": ["type:drupal-custom-theme"] - }, - "drupal-core-project-message": { - "include-keys": ["homepage", "support"], - "post-create-project-cmd-message": [ - " ", - " Congratulations, you’ve installed the Drupal codebase ", - " from the drupal/recommended-project template! ", - " ", - "", - "Next steps:", - - " * Install the site: https://www.drupal.org/docs/8/install", - " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html", - " * Get support: https://www.drupal.org/support", - " * Get involved with the Drupal community:", - " https://www.drupal.org/getting-involved", - " * Remove the plugin that prints this message:", - " composer remove drupal/core-project-message" + "html/core": [ + "drupal/core" + ], + "html/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "html/profiles/contrib/social": [ + "goalgorilla/open_social" + ], + "html/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "html/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "html/libraries/{$name}": [ + "type:drupal-library", + "type:bower-asset", + "type:npm-asset" + ], + "drush/contrib/{$name}": [ + "type:drupal-drush" ] + }, + "enable-patching": true, + "patchLevel": { + "drupal/core": "-p2" + } + }, + "config": { + "allow-plugins": { + "composer/installers": true, + "cweagans/composer-patches": true, + "drupal/core-composer-scaffold": true, + "oomphinc/composer-installers-extender": true, + "zaporylie/composer-drupal-optimizations": true, + "dealerdirect/phpcodesniffer-composer-installer": true, + "drupal/core-project-message": true } } } diff --git a/drupal/composer.lock b/drupal/composer.lock index 3438af3..de2887f 100644 --- a/drupal/composer.lock +++ b/drupal/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": "5dc1939290ca80dc01aa3d8ce77447e3", + "content-hash": "423480eb4af5927f0f481b9e391e2824", "packages": [ { "name": "asm89/stack-cors", @@ -62,42 +62,47 @@ }, "time": "2019-12-24T22:41:47+00:00" }, + { + "name": "bower-asset/lazysizes", + "version": "5.3.1", + "source": { + "type": "git", + "url": "git@github.com:aFarkas/lazysizes.git", + "reference": "81cf774c6a7f4d8f7f3909e225a65d8acb10cb20" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aFarkas/lazysizes/zipball/81cf774c6a7f4d8f7f3909e225a65d8acb10cb20", + "reference": "81cf774c6a7f4d8f7f3909e225a65d8acb10cb20" + }, + "type": "bower-asset", + "license": [ + "MIT" + ] + }, { "name": "chi-teck/drupal-code-generator", - "version": "2.5.3", + "version": "1.33.1", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "a49f29b0fe6b6c87fa7dc8979589ce8794c4d655" + "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/a49f29b0fe6b6c87fa7dc8979589ce8794c4d655", - "reference": "a49f29b0fe6b6c87fa7dc8979589ce8794c4d655", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/5f814e980b6f9cf1ca8c74cc9385c3d81090d388", + "reference": "5f814e980b6f9cf1ca8c74cc9385c3d81090d388", "shasum": "" }, "require": { "ext-json": "*", - "php": ">=7.4", - "psr/log": "^1.1 || ^2.0 || ^3.0", - "symfony/console": "^4.4.15 || ^5.1 || ^6.0", - "symfony/filesystem": "^4.4 || ^5.1 || ^6", - "symfony/polyfill-php80": "^1.23", - "symfony/string": "^5.1 || ^6", - "twig/twig": "^2.14.11 || ^3.1" + "php": ">=5.5.9", + "symfony/console": "^3.4 || ^4.0", + "symfony/filesystem": "^2.7 || ^3.4 || ^4.0", + "twig/twig": "^1.41 || ^2.12" }, "conflict": { - "squizlabs/php_codesniffer": "<3.6" - }, - "require-dev": { - "chi-teck/drupal-coder-extension": "^1.2", - "drupal/coder": "^8.3.14", - "friendsoftwig/twigcs": "dev-master", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.4", - "squizlabs/php_codesniffer": "^3.5", - "symfony/var-dumper": "^5.2 || ^6.0", - "symfony/yaml": "^5.2 || ^6.0" + "drush/drush": "< 10.3.2" }, "bin": [ "bin/dcg" @@ -105,10 +110,13 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { + "files": [ + "src/bootstrap.php" + ], "psr-4": { "DrupalCodeGenerator\\": "src" } @@ -120,9 +128,149 @@ "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/2.5.3" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/1.33.1" + }, + "time": "2020-12-05T05:59:11+00:00" + }, + { + "name": "commerceguys/addressing", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/commerceguys/addressing.git", + "reference": "566febd56ca71e31dd383b014c4e1bec680507bf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/566febd56ca71e31dd383b014c4e1bec680507bf", + "reference": "566febd56ca71e31dd383b014c4e1bec680507bf", + "shasum": "" + }, + "require": { + "doctrine/collections": "~1.0", + "php": ">=7.3" + }, + "require-dev": { + "ext-json": "*", + "mikey179/vfsstream": "1.*", + "phpunit/phpunit": "^9.5", + "squizlabs/php_codesniffer": "3.*", + "symfony/validator": "^4.4 || ^5.4" + }, + "suggest": { + "symfony/validator": "to validate addresses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "CommerceGuys\\Addressing\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bojan Zivanovic" + }, + { + "name": "Damien Tournoud" + } + ], + "description": "Addressing library powered by CLDR and Google's address data.", + "keywords": [ + "address", + "internationalization", + "localization", + "postal" + ], + "support": { + "issues": "https://github.com/commerceguys/addressing/issues", + "source": "https://github.com/commerceguys/addressing/tree/v1.3.0" + }, + "time": "2022-04-08T13:06:51+00:00" + }, + { + "name": "composer/ca-bundle", + "version": "1.3.3", + "source": { + "type": "git", + "url": "https://github.com/composer/ca-bundle.git", + "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c", + "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.55", + "psr/log": "^1.0", + "symfony/phpunit-bridge": "^4.2 || ^5", + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\CaBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "keywords": [ + "cabundle", + "cacert", + "certificate", + "ssl", + "tls" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.3.3" }, - "time": "2022-03-31T17:15:11+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": "2022-07-20T07:14:26+00:00" }, { "name": "composer/installers", @@ -270,23 +418,23 @@ }, { "name": "composer/semver", - "version": "3.3.2", + "version": "3.2.5", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" + "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", + "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9", + "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9", "shasum": "" }, "require": { "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpstan/phpstan": "^1.4", + "phpstan/phpstan": "^0.12.54", "symfony/phpunit-bridge": "^4.2 || ^5" }, "type": "library", @@ -331,7 +479,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.2" + "source": "https://github.com/composer/semver/tree/3.2.5" }, "funding": [ { @@ -347,7 +495,7 @@ "type": "tidelift" } ], - "time": "2022-04-01T19:23:25+00:00" + "time": "2021-05-24T12:41:47+00:00" }, { "name": "consolidation/annotated-command", @@ -407,40 +555,65 @@ }, { "name": "consolidation/config", - "version": "2.1.1", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/consolidation/config.git", - "reference": "dae810c162f0e799ea3f35cc2f40b0797b6e4d26" + "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/dae810c162f0e799ea3f35cc2f40b0797b6e4d26", - "reference": "dae810c162f0e799ea3f35cc2f40b0797b6e4d26", + "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", + "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", - "grasmash/expander": "^2.0.1", - "php": ">=7.1.3", - "symfony/event-dispatcher": "^4 || ^5 || ^6" + "dflydev/dot-access-data": "^1.1.0", + "grasmash/expander": "^1", + "php": ">=5.4.0" }, "require-dev": { - "ext-json": "*", - "phpunit/phpunit": ">=7.5.20", - "squizlabs/php_codesniffer": "^3", - "symfony/console": "^4 || ^5 || ^6", - "symfony/yaml": "^4 || ^5 || ^6", - "yoast/phpunit-polyfills": "^1" + "g1a/composer-test-scenarios": "^3", + "php-coveralls/php-coveralls": "^1", + "phpunit/phpunit": "^5", + "squizlabs/php_codesniffer": "2.*", + "symfony/console": "^2.5|^3|^4", + "symfony/yaml": "^2.8.11|^3|^4" }, "suggest": { - "symfony/event-dispatcher": "Required to inject configuration into Command options", "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" }, "type": "library", "extra": { + "scenarios": { + "symfony4": { + "require-dev": { + "symfony/console": "^4.0" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony2": { + "require-dev": { + "symfony/console": "^2.8", + "symfony/event-dispatcher": "^2.8", + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + } + } + }, "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -461,37 +634,57 @@ "description": "Provide configuration services for a commandline tool.", "support": { "issues": "https://github.com/consolidation/config/issues", - "source": "https://github.com/consolidation/config/tree/2.1.1" + "source": "https://github.com/consolidation/config/tree/master" }, - "time": "2022-06-22T19:59:34+00:00" + "time": "2019-03-03T19:37:04+00:00" }, { "name": "consolidation/filter-via-dot-access-data", - "version": "2.0.2", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/consolidation/filter-via-dot-access-data.git", - "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" + "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", - "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", + "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6", + "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", - "php": ">=7.1.3" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.5.0" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "consolidation/robo": "^1.2.3", + "g1a/composer-test-scenarios": "^3", + "knplabs/github-api": "^2.7", + "php-coveralls/php-coveralls": "^1", + "php-http/guzzle6-adapter": "^1.1", + "phpunit/phpunit": "^5", + "squizlabs/php_codesniffer": "^2.8", + "symfony/console": "^2.8|^3|^4" }, "type": "library", "extra": { + "scenarios": { + "phpunit5": { + "require-dev": { + "phpunit/phpunit": "^5.7.27" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.6.33" + } + } + } + }, "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -511,9 +704,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/2.0.2" + "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/1.0.0" }, - "time": "2021-12-30T03:56:08+00:00" + "time": "2019-01-18T06:05:07+00:00" }, { "name": "consolidation/log", @@ -897,38 +1090,79 @@ "time": "2022-02-19T04:09:55+00:00" }, { - "name": "dflydev/dot-access-data", - "version": "v3.0.1", + "name": "cweagans/composer-patches", + "version": "1.7.2", "source": { "type": "git", - "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "0992cc19268b259a39e86f296da5f0677841f42c" + "url": "https://github.com/cweagans/composer-patches.git", + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c", - "reference": "0992cc19268b259a39e86f296da5f0677841f42c", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e9969cfc0796e6dea9b4e52f77f18e1065212871", + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3.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" + "composer/composer": "~1.0 || ~2.0", + "phpunit/phpunit": "~4.6" + }, + "type": "composer-plugin", + "extra": { + "class": "cweagans\\Composer\\Patches" + }, + "autoload": { + "psr-4": { + "cweagans\\Composer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Cameron Eagans", + "email": "me@cweagans.net" + } + ], + "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.2" + }, + "time": "2022-01-25T19:21:20+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a", + "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "1.0-dev" } }, "autoload": { - "psr-4": { - "Dflydev\\DotAccessData\\": "src/" + "psr-0": { + "Dflydev\\DotAccessData": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -950,11 +1184,6 @@ "name": "Carlos Frutos", "email": "carlos@kiwing.it", "homepage": "https://github.com/cfrutos" - }, - { - "name": "Colin O'Dell", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com" } ], "description": "Given a deep data structure, access data by dot notation.", @@ -967,22 +1196,22 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1" + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master" }, - "time": "2021-08-13T13:06:58+00:00" + "time": "2017-01-20T21:14:22+00:00" }, { "name": "doctrine/annotations", - "version": "1.13.3", + "version": "1.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "648b0343343565c4a056bfc8392201385e8d89f0" + "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0", - "reference": "648b0343343565c4a056bfc8392201385e8d89f0", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f", + "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f", "shasum": "" }, "require": { @@ -994,10 +1223,9 @@ "require-dev": { "doctrine/cache": "^1.11 || ^2.0", "doctrine/coding-standard": "^6.0 || ^8.1", - "phpstan/phpstan": "^1.4.10 || ^1.8.0", + "phpstan/phpstan": "^0.12.20", "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5", - "symfony/cache": "^4.4 || ^5.2", - "vimeo/psalm": "^4.10" + "symfony/cache": "^4.4 || ^5.2" }, "type": "library", "autoload": { @@ -1040,37 +1268,37 @@ ], "support": { "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.13.3" + "source": "https://github.com/doctrine/annotations/tree/1.13.1" }, - "time": "2022-07-02T10:48:51+00:00" + "time": "2021-05-16T18:07:53+00:00" }, { - "name": "doctrine/lexer", - "version": "1.2.3", + "name": "doctrine/collections", + "version": "1.6.8", "source": { "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229" + "url": "https://github.com/doctrine/collections.git", + "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229", - "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229", + "url": "https://api.github.com/repos/doctrine/collections/zipball/1958a744696c6bb3bb0d28db2611dc11610e78af", + "reference": "1958a744696c6bb3bb0d28db2611dc11610e78af", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^7.1.3 || ^8.0" }, "require-dev": { "doctrine/coding-standard": "^9.0", - "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.11" + "phpstan/phpstan": "^0.12", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", + "vimeo/psalm": "^4.2.1" }, "type": "library", "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "notification-url": "https://packagist.org/downloads/", @@ -1086,52 +1314,125 @@ "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" } ], - "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", - "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", "keywords": [ - "annotations", - "docblock", - "lexer", - "parser", + "array", + "collections", + "iterators", "php" ], "support": { - "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/1.2.3" + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.6.8" }, - "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": "2021-08-10T18:51:53+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "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": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", + "keywords": [ + "annotations", + "docblock", + "lexer", + "parser", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" } ], - "time": "2022-02-28T11:07:21+00:00" + "time": "2020-05-25T17:44:05+00:00" }, { "name": "doctrine/reflection", - "version": "1.2.3", + "version": "1.2.2", "source": { "type": "git", "url": "https://github.com/doctrine/reflection.git", - "reference": "1034e5e71f89978b80f9c1570e7226f6c3b9b6fb" + "reference": "fa587178be682efe90d005e3a322590d6ebb59a5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/reflection/zipball/1034e5e71f89978b80f9c1570e7226f6c3b9b6fb", - "reference": "1034e5e71f89978b80f9c1570e7226f6c3b9b6fb", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/fa587178be682efe90d005e3a322590d6ebb59a5", + "reference": "fa587178be682efe90d005e3a322590d6ebb59a5", "shasum": "" }, "require": { @@ -1143,13 +1444,18 @@ "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^9", - "doctrine/common": "^3.3", - "phpstan/phpstan": "^1.4.10", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" + "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" @@ -1193,29 +1499,31 @@ ], "support": { "issues": "https://github.com/doctrine/reflection/issues", - "source": "https://github.com/doctrine/reflection/tree/1.2.3" + "source": "https://github.com/doctrine/reflection/tree/1.2.2" }, "abandoned": "roave/better-reflection", - "time": "2022-05-31T18:46:25+00:00" + "time": "2020-10-27T21:46:55+00:00" }, { "name": "drupal-tome/tome_drush", - "version": "dev-feature/3-drush_11", + "version": "dev-master", "source": { "type": "git", - "url": "https://github.com/Realityloop/tome_drush.git", - "reference": "997b0d1fc8f6441a8f17aee6584415a2b4dd37f1" + "url": "https://github.com/drupal-tome/tome_drush.git", + "reference": "e74e97a4f05952f527c748b4af19d2e2c461aedb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Realityloop/tome_drush/zipball/997b0d1fc8f6441a8f17aee6584415a2b4dd37f1", - "reference": "997b0d1fc8f6441a8f17aee6584415a2b4dd37f1", + "url": "https://api.github.com/repos/drupal-tome/tome_drush/zipball/e74e97a4f05952f527c748b4af19d2e2c461aedb", + "reference": "e74e97a4f05952f527c748b4af19d2e2c461aedb", "shasum": "" }, "require": { "drush/drush": "^9.6.0 || ^10.0 || ^11.0" }, + "default-branch": true, "type": "drupal-drush", + "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], @@ -1227,357 +1535,197 @@ ], "description": "Contains global Drush commands for initializing and installing Tome.", "support": { - "source": "https://github.com/Realityloop/tome_drush/tree/feature/3-drush_11" + "issues": "https://github.com/drupal-tome/tome_drush/issues", + "source": "https://github.com/drupal-tome/tome_drush/tree/master" }, - "time": "2022-02-18T03:17:30+00:00" + "time": "2022-02-18T06:20:45+00:00" }, { - "name": "drupal/core", - "version": "9.4.4", + "name": "drupal/address", + "version": "1.10.0", "source": { "type": "git", - "url": "https://github.com/drupal/core.git", - "reference": "7522be4ba7f6c1f0b09b7fb37a657d7a50b36f44" + "url": "https://git.drupalcode.org/project/address.git", + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/7522be4ba7f6c1f0b09b7fb37a657d7a50b36f44", - "reference": "7522be4ba7f6c1f0b09b7fb37a657d7a50b36f44", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "bbe61eb51da9d9b2a7ab247f90426836eb9b6f25" }, "require": { - "asm89/stack-cors": "^1.3", - "composer/semver": "^3.3", - "doctrine/annotations": "^1.13", - "doctrine/reflection": "^1.2", - "egulias/email-validator": "^2.1.22|^3.2", - "ext-date": "*", - "ext-dom": "*", - "ext-filter": "*", - "ext-gd": "*", - "ext-hash": "*", - "ext-json": "*", - "ext-pcre": "*", - "ext-pdo": "*", - "ext-session": "*", - "ext-simplexml": "*", - "ext-spl": "*", - "ext-tokenizer": "*", - "ext-xml": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "laminas/laminas-diactoros": "^2.11", - "laminas/laminas-feed": "^2.17", - "masterminds/html5": "^2.7", - "pear/archive_tar": "^1.4.14", - "php": ">=7.3.0", - "psr/log": "^1.1", - "stack/builder": "^1.0", - "symfony-cmf/routing": "^2.3", - "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.25", - "symfony/polyfill-php80": "^1.25", - "symfony/process": "^4.4", - "symfony/psr-http-message-bridge": "^2.1", - "symfony/routing": "^4.4", - "symfony/serializer": "^4.4", - "symfony/translation": "^4.4", - "symfony/validator": "^4.4", - "symfony/yaml": "^4.4.19", - "twig/twig": "^2.15", - "typo3/phar-stream-wrapper": "^3.1.3" + "commerceguys/addressing": "^1.2.0", + "drupal/core": "^9.2 || ^10", + "php": "^7.3 || ^8.0" }, - "conflict": { - "drush/drush": "<8.1.10", - "symfony/http-foundation": "4.4.42" + "require-dev": { + "drupal/token": "^1.0" }, - "type": "drupal-core", + "type": "drupal-module", "extra": { - "drupal-scaffold": { - "file-mapping": { - "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", - "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", - "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", - "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", - "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", - "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", - "[web-root]/.htaccess": "assets/scaffold/files/htaccess", - "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", - "[web-root]/index.php": "assets/scaffold/files/index.php", - "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", - "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", - "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", - "[web-root]/update.php": "assets/scaffold/files/update.php", - "[web-root]/web.config": "assets/scaffold/files/web.config", - "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", - "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", - "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", - "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", - "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", - "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", - "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", - "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", - "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" + "drupal": { + "version": "8.x-1.10", + "datestamp": "1643715226", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, - "autoload": { - "files": [ - "includes/bootstrap.inc", - "includes/guzzle_php81_shim.php" - ], - "psr-4": { - "Drupal\\Core\\": "lib/Drupal/Core", - "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver", - "Drupal\\Component\\": "lib/Drupal/Component" - }, - "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/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" - ] - }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0-or-later" ], - "description": "Drupal is an open source content management platform powering millions of websites and applications.", + "authors": [ + { + "name": "Centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "dww", + "homepage": "https://www.drupal.org/user/46549" + }, + { + "name": "googletorp", + "homepage": "https://www.drupal.org/user/386230" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "rszrama", + "homepage": "https://www.drupal.org/user/49344" + } + ], + "description": "Provides functionality for storing, validating and displaying international postal addresses.", + "homepage": "http://drupal.org/project/address", "support": { - "source": "https://github.com/drupal/core/tree/9.4.4" - }, - "time": "2022-07-28T19:27:35+00:00" + "source": "https://git.drupalcode.org/project/address" + } }, { - "name": "drupal/core-composer-scaffold", - "version": "9.4.4", + "name": "drupal/admin_toolbar", + "version": "3.1.0", "source": { "type": "git", - "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "5f37a9e4008b34e3e4f6bb34ce0b3f7e5ec8984f" + "url": "https://git.drupalcode.org/project/admin_toolbar.git", + "reference": "3.1.0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/5f37a9e4008b34e3e4f6bb34ce0b3f7e5ec8984f", - "reference": "5f37a9e4008b34e3e4f6bb34ce0b3f7e5ec8984f", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.1.0.zip", + "reference": "3.1.0", + "shasum": "7b596d7de04faca747ba3e5216c2e819aae71f40" }, "require": { - "composer-plugin-api": "^1 || ^2", - "php": ">=7.3.0" - }, - "conflict": { - "drupal-composer/drupal-scaffold": "*" + "drupal/core": "^8.8.0 || ^9.0 || ^10.0" }, "require-dev": { - "composer/composer": "^1.8@stable" + "drupal/admin_toolbar_tools": "*" }, - "type": "composer-plugin", + "type": "drupal-module", "extra": { - "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin", - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Drupal\\Composer\\Plugin\\Scaffold\\": "" + "drupal": { + "version": "3.1.0", + "datestamp": "1643742891", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0-or-later" ], - "description": "A flexible Composer project scaffold builder.", - "homepage": "https://www.drupal.org/project/drupal", + "authors": [ + { + "name": "Wilfrid Roze (eme)", + "homepage": "https://www.drupal.org/u/eme", + "role": "Maintainer" + }, + { + "name": "Romain Jarraud (romainj)", + "homepage": "https://www.drupal.org/u/romainj", + "role": "Maintainer" + }, + { + "name": "Adrian Cid Almaguer (adriancid)", + "homepage": "https://www.drupal.org/u/adriancid", + "email": "adriancid@gmail.com", + "role": "Maintainer" + }, + { + "name": "Mohamed Anis Taktak (matio89)", + "homepage": "https://www.drupal.org/u/matio89", + "role": "Maintainer" + }, + { + "name": "matio89", + "homepage": "https://www.drupal.org/user/2320090" + }, + { + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" + }, + { + "name": "romainj", + "homepage": "https://www.drupal.org/user/370706" + } + ], + "description": "Provides a drop-down menu interface to the core Drupal Toolbar.", + "homepage": "http://drupal.org/project/admin_toolbar", "keywords": [ - "drupal" + "Drupal", + "Toolbar" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/9.4.4" - }, - "time": "2022-06-19T16:14:23+00:00" + "source": "https://git.drupalcode.org/project/admin_toolbar", + "issues": "https://www.drupal.org/project/issues/admin_toolbar" + } }, { - "name": "drupal/core-project-message", - "version": "9.4.4", + "name": "drupal/advancedqueue", + "version": "1.0.0-rc3", "source": { "type": "git", - "url": "https://github.com/drupal/core-project-message.git", - "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c" + "url": "https://git.drupalcode.org/project/advancedqueue.git", + "reference": "8.x-1.0-rc3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-project-message/zipball/5dfa0b75a057caf6542be67f61e7531c737db48c", - "reference": "5dfa0b75a057caf6542be67f61e7531c737db48c", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/advancedqueue-8.x-1.0-rc3.zip", + "reference": "8.x-1.0-rc3", + "shasum": "0cb4472faa142b565740350bbd34f09686b5b56d" }, "require": { - "composer-plugin-api": "^1.1 || ^2", - "php": ">=7.3.0" + "drupal/core": "^8.7.7 || ^9" }, - "type": "composer-plugin", + "type": "drupal-module", "extra": { - "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin" - }, - "autoload": { - "psr-4": { - "Drupal\\Composer\\Plugin\\ProjectMessage\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Adds a message after Composer installation.", - "homepage": "https://www.drupal.org/project/drupal", - "keywords": [ - "drupal" - ], - "support": { - "source": "https://github.com/drupal/core-project-message/tree/9.4.4" - }, - "time": "2022-02-24T17:40:53+00:00" - }, - { - "name": "drupal/core-recommended", - "version": "9.4.4", - "source": { - "type": "git", - "url": "https://github.com/drupal/core-recommended.git", - "reference": "e0cb3cb6aac8ff9f23f2d1f37e69626e42d03781" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/e0cb3cb6aac8ff9f23f2d1f37e69626e42d03781", - "reference": "e0cb3cb6aac8ff9f23f2d1f37e69626e42d03781", - "shasum": "" - }, - "require": { - "asm89/stack-cors": "~1.3.0", - "composer/semver": "~3.3.2", - "doctrine/annotations": "~1.13.2", - "doctrine/lexer": "~1.2.3", - "doctrine/reflection": "~1.2.3", - "drupal/core": "9.4.4", - "egulias/email-validator": "~3.2", - "guzzlehttp/guzzle": "~6.5.8", - "guzzlehttp/promises": "~1.5.1", - "guzzlehttp/psr7": "~1.9.0", - "laminas/laminas-diactoros": "~2.11.1", - "laminas/laminas-escaper": "~2.9.0", - "laminas/laminas-feed": "~2.17.0", - "laminas/laminas-stdlib": "~3.7.1", - "masterminds/html5": "~2.7.5", - "pear/archive_tar": "~1.4.14", - "pear/console_getopt": "~v1.4.3", - "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.4", - "ralouphie/getallheaders": "~3.0.3", - "stack/builder": "~v1.0.6", - "symfony-cmf/routing": "~2.3.4", - "symfony/console": "~v4.4.42", - "symfony/debug": "~v4.4.41", - "symfony/dependency-injection": "~v4.4.42", - "symfony/deprecation-contracts": "~v2.5.1", - "symfony/error-handler": "~v4.4.41", - "symfony/event-dispatcher": "~v4.4.42", - "symfony/event-dispatcher-contracts": "~v1.1.12", - "symfony/http-client-contracts": "~v2.5.1", - "symfony/http-foundation": "~v4.4.41", - "symfony/http-kernel": "~v4.4.42", - "symfony/mime": "~v5.4.9", - "symfony/polyfill-ctype": "~v1.25.0", - "symfony/polyfill-iconv": "~v1.25.0", - "symfony/polyfill-intl-idn": "~v1.25.0", - "symfony/polyfill-intl-normalizer": "~v1.25.0", - "symfony/polyfill-mbstring": "~v1.25.0", - "symfony/polyfill-php80": "~v1.25.0", - "symfony/process": "~v4.4.41", - "symfony/psr-http-message-bridge": "~v2.1.2", - "symfony/routing": "~v4.4.41", - "symfony/serializer": "~v4.4.42", - "symfony/service-contracts": "~v2.5.1", - "symfony/translation": "~v4.4.41", - "symfony/translation-contracts": "~v2.5.1", - "symfony/validator": "~v4.4.41", - "symfony/var-dumper": "~v5.4.9", - "symfony/yaml": "~v4.4.37", - "twig/twig": "~v2.15.1", - "typo3/phar-stream-wrapper": "~v3.1.7" - }, - "conflict": { - "webflo/drupal-core-strict": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", - "support": { - "source": "https://github.com/drupal/core-recommended/tree/9.4.4" - }, - "time": "2022-07-28T19:27:35+00:00" - }, - { - "name": "drupal/decoupled_router", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/decoupled_router.git", - "reference": "2.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/decoupled_router-2.0.3.zip", - "reference": "2.0.3", - "shasum": "3e494c9d76c55d2f29eedffd1ab0c68c7224be27" - }, - "require": { - "drupal/core": "^8.8 || ^9" - }, - "require-dev": { - "drupal/redirect": "^1.0@beta" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1631977518", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } + "drupal": { + "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", "license": [ @@ -1585,53 +1733,85 @@ ], "authors": [ { - "name": "Mateu Aguiló Bosch", - "homepage": "https://www.drupal.org/user/103796", - "email": "mateu.aguilo.bosch@gmail.com" + "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": "e0ipso", - "homepage": "https://www.drupal.org/user/550110" + "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 an endpoint that will help you resolve path aliases and redirects for entity related routes.", - "homepage": "https://www.drupal.org/project/decoupled_router", + "description": "Provides a better Queue API.", + "homepage": "https://www.drupal.org/project/advancedqueue", "support": { - "source": "https://git.drupalcode.org/project/decoupled_router" + "source": "https://git.drupalcode.org/project/advancedqueue" } }, { - "name": "drupal/druxt", - "version": "1.1.1", + "name": "drupal/ajax_comments", + "version": "1.0.0-beta4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/druxt.git", - "reference": "1.1.1" + "url": "https://git.drupalcode.org/project/ajax_comments.git", + "reference": "8.x-1.0-beta4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/druxt-1.1.1.zip", - "reference": "1.1.1", - "shasum": "8307ff2a84de13257e926b722b6f3cd54c5304e2" + "url": "https://ftp.drupal.org/files/projects/ajax_comments-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "ddf3d6a37094df2f2d85ff1b859165d62cf1f756" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/decoupled_router": "^2.0", - "drupal/jsonapi_menu_items": "^1.0.0", - "drupal/jsonapi_views": "^1.0@beta" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.1", - "datestamp": "1635120618", + "version": "8.x-1.0-beta4", + "datestamp": "1623155032", "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." } } }, @@ -1641,43 +1821,66 @@ ], "authors": [ { - "name": "Stuart Clark", - "homepage": "https://www.drupal.org/user/103796", - "email": "stuart@realityloop.com" + "name": "acouch", + "homepage": "https://www.drupal.org/user/151868" + }, + { + "name": "danmuzyka", + "homepage": "https://www.drupal.org/user/48685" + }, + { + "name": "formatC'vt", + "homepage": "https://www.drupal.org/user/1853874" + }, + { + "name": "muschpusch", + "homepage": "https://www.drupal.org/user/257634" + }, + { + "name": "neochief", + "homepage": "https://www.drupal.org/user/233667" + }, + { + "name": "qzmenko", + "homepage": "https://www.drupal.org/user/3220037" + }, + { + "name": "rjbrown99", + "homepage": "https://www.drupal.org/user/367845" } ], - "description": "A bridge between frameworks, Drupal in the back, Nuxt.js in the front.", - "homepage": "https://www.drupal.org/project/druxt", + "description": "Module makes comments load without a page refresh via AJAX", + "homepage": "https://www.drupal.org/project/ajax_comments", "support": { - "source": "https://git.drupalcode.org/project/druxt" + "source": "https://git.drupalcode.org/project/ajax_comments" } }, { - "name": "drupal/jsonapi_menu_items", - "version": "1.2.1", + "name": "drupal/better_exposed_filters", + "version": "5.0.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/jsonapi_menu_items.git", - "reference": "1.2.1" + "url": "https://git.drupalcode.org/project/better_exposed_filters.git", + "reference": "8.x-5.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jsonapi_menu_items-1.2.1.zip", - "reference": "1.2.1", - "shasum": "18c52b3a67e58b7b1d28ae5e6d9972e97f30d0ee" + "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-8.x-5.0.zip", + "reference": "8.x-5.0", + "shasum": "ef575591af202b5c6867841ce58e1f447455e502" }, "require": { "drupal/core": "^8.8 || ^9", - "drupal/jsonapi_resources": "^1.0" - }, - "require-dev": { - "drupal/jsonapi_hypermedia": "^1.6" + "drupal/jquery_ui": "^1.4", + "drupal/jquery_ui_datepicker": "^1.0", + "drupal/jquery_ui_slider": "^1.1", + "drupal/jquery_ui_touch_punch": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.2.1", - "datestamp": "1619993273", + "version": "8.x-5.0", + "datestamp": "1634748760", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1690,111 +1893,123 @@ ], "authors": [ { - "name": "Deciphered", - "homepage": "https://www.drupal.org/user/103796" + "name": "Mike Keran", + "homepage": "https://www.drupal.org/u/mikeker" }, { - "name": "acbramley", - "homepage": "https://www.drupal.org/user/1036766" + "name": "Martin Keereman", + "homepage": "https://www.drupal.org/u/etroid" }, { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/u/neslee-canil-pinto" }, { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" + "name": "jkopel", + "homepage": "https://www.drupal.org/user/66207" + }, + { + "name": "mikeker", + "homepage": "https://www.drupal.org/user/192273" + }, + { + "name": "rlhawk", + "homepage": "https://www.drupal.org/user/352283" } ], - "description": "Adds a JSON API resource for menu items.", - "homepage": "https://github.com/Realityloop/jsonapi_menu_items", - "keywords": [ - "Drupal", - "JSON API" - ], + "description": "Replaces the Views default single- or multi-select boxes with more advanced options.", + "homepage": "https://www.drupal.org/project/better_exposed_filters", "support": { - "source": "https://git.drupalcode.org/project/jsonapi_menu_items" + "source": "https://git.drupalcode.org/project/better_exposed_filters", + "issues": "https://www.drupal.org/project/issues/better_exposed_filters" } }, { - "name": "drupal/jsonapi_resources", - "version": "1.0.0-beta4", + "name": "drupal/block_field", + "version": "1.0.0-rc1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/jsonapi_resources.git", - "reference": "8.x-1.0-beta4" + "url": "https://git.drupalcode.org/project/block_field.git", + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jsonapi_resources-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "7cef08a40333a854112bc1763c6d4f3a52198604" + "url": "https://ftp.drupal.org/files/projects/block_field-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "a366cb012ece9987404168a4570c79f701e7819a" }, "require": { - "drupal/core": "^8.8 || ^9.0" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1608428207", + "version": "8.x-1.0-rc1", + "datestamp": "1588279781", "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." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "API-First Initiative", - "homepage": "https://www.drupal.org/user/3616626" + "name": "acbramley", + "homepage": "https://www.drupal.org/user/1036766" + }, + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "gabesullice", - "homepage": "https://www.drupal.org/user/2287430" + "name": "fenstrat", + "homepage": "https://www.drupal.org/user/362649" }, { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" + "name": "jrockowitz", + "homepage": "https://www.drupal.org/user/371407" + }, + { + "name": "michaellander", + "homepage": "https://www.drupal.org/user/636494" + }, + { + "name": "paulocs", + "homepage": "https://www.drupal.org/user/3640109" } ], - "description": "This module let's you define custom resources at routes of your choice that use existing resource types.", - "homepage": "https://www.drupal.org/project/jsonapi_resources", - "keywords": [ - "Drupal", - "JSON API" - ], + "description": "Provides a field that allows a content entity to create and configure custom block instances.", + "homepage": "https://www.drupal.org/project/block_field", "support": { - "source": "https://git.drupalcode.org/project/jsonapi_resources" + "source": "https://git.drupalcode.org/project/block_field" } }, { - "name": "drupal/jsonapi_views", - "version": "1.0.0", + "name": "drupal/bootstrap", + "version": "3.23.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/jsonapi_views.git", - "reference": "8.x-1.0" + "url": "https://git.drupalcode.org/project/bootstrap.git", + "reference": "8.x-3.23" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jsonapi_views-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "e28c0030b279348dbe0247d3a8ce58b50972a024" + "url": "https://ftp.drupal.org/files/projects/bootstrap-8.x-3.23.zip", + "reference": "8.x-3.23", + "shasum": "9849be667cc678a91ad29f77c2baea2cf16878bc" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/jsonapi_resources": "^1.0" + "drupal/core": "^8 || ^9" }, - "type": "drupal-module", + "type": "drupal-theme", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1633070688", + "version": "8.x-3.23", + "datestamp": "1592175762", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1807,57 +2022,52 @@ ], "authors": [ { - "name": "Deciphered", - "homepage": "https://www.drupal.org/user/103796" + "name": "Mark Carver (markcarver)", + "homepage": "https://www.drupal.org/u/markcarver", + "role": "Maintainer" + }, + { + "name": "John McCormick (neardark)", + "homepage": "https://www.drupal.org/u/neardark", + "role": "Co-maintainer" }, { - "name": "pixelwhip", - "homepage": "https://www.drupal.org/user/275292" + "name": "Fabiano Sant'Ana (wundo)", + "homepage": "https://www.drupal.org/u/wundo", + "role": "Co-maintainer" } ], - "description": "This module creates custom JSON:API resources from Views.", - "homepage": "https://www.drupal.org/project/jsonapi_views", - "keywords": [ - "Drupal", - "JSON:API" - ], + "description": "Built to use Bootstrap, a sleek, intuitive, and powerful front-end framework for faster and easier web development.", + "homepage": "https://www.drupal.org/project/bootstrap", "support": { - "source": "https://git.drupalcode.org/project/jsonapi_views" + "source": "https://git.drupalcode.org/project/bootstrap", + "docs": "https://drupal-bootstrap.org", + "issues": "https://www.drupal.org/project/issues/bootstrap", + "irc": "irc://irc.freenode.org/drupal-bootstrap" } }, { - "name": "drupal/tome", + "name": "drupal/config_update", "version": "1.7.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/tome.git", + "url": "https://git.drupalcode.org/project/config_update.git", "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/tome-8.x-1.7.zip", + "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip", "reference": "8.x-1.7", - "shasum": "be2486b47330e4c5641ad57b509285ed8aa53982" + "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968" }, "require": { - "drupal/core": "^8 || ^9", - "drupal/tome_static": "*", - "drupal/tome_sync": "*" - }, - "require-dev": { - "drupal/ctools": "*", - "drupal/pathauto": "*", - "drupal/redirect": "*", - "drupal/token": "*", - "drupal/tome_base": "*", - "drupal/tome_static": "*", - "drupal/tome_sync": "*" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { "version": "8.x-1.7", - "datestamp": "1650988449", + "datestamp": "1586355587", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1870,71 +2080,433 @@ ], "authors": [ { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" + "name": "Pasqualle", + "homepage": "https://www.drupal.org/user/80733" }, { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" + "name": "codebymikey", + "homepage": "https://www.drupal.org/user/3573206" } ], - "description": "Everything you need to do everything statically.", - "homepage": "https://www.drupal.org/project/tome", + "description": "Provides basic revert and update functionality for other modules", + "homepage": "https://www.drupal.org/project/config_update", "support": { - "source": "https://git.drupalcode.org/project/tome" + "source": "https://git.drupalcode.org/project/config_update" } }, { - "name": "drupal/tome_base", - "version": "1.7.0", + "name": "drupal/core", + "version": "9.2.21", + "source": { + "type": "git", + "url": "https://github.com/drupal/core.git", + "reference": "49770254d6c7e65709b02db74c0e4e0c5964b6b8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core/zipball/49770254d6c7e65709b02db74c0e4e0c5964b6b8", + "reference": "49770254d6c7e65709b02db74c0e4e0c5964b6b8", + "shasum": "" + }, "require": { - "drupal/core": "^8 || ^9", - "drupal/tome": "^1" + "asm89/stack-cors": "^1.1", + "composer/semver": "^3.0", + "doctrine/annotations": "^1.12", + "doctrine/reflection": "^1.1", + "egulias/email-validator": "^2.0", + "ext-date": "*", + "ext-dom": "*", + "ext-filter": "*", + "ext-gd": "*", + "ext-hash": "*", + "ext-json": "*", + "ext-pcre": "*", + "ext-pdo": "*", + "ext-session": "*", + "ext-simplexml": "*", + "ext-spl": "*", + "ext-tokenizer": "*", + "ext-xml": "*", + "guzzlehttp/guzzle": "^6.5.7", + "laminas/laminas-diactoros": "^2.1", + "laminas/laminas-feed": "^2.12", + "masterminds/html5": "^2.1", + "pear/archive_tar": "^1.4.14", + "php": ">=7.3.0", + "psr/log": "^1.0", + "stack/builder": "^1.0", + "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.3.0", + "symfony/polyfill-iconv": "^1.0", + "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" }, - "type": "metapackage", + "conflict": { + "drush/drush": "<8.1.10" + }, + "replace": { + "drupal/action": "self.version", + "drupal/aggregator": "self.version", + "drupal/automated_cron": "self.version", + "drupal/ban": "self.version", + "drupal/bartik": "self.version", + "drupal/basic_auth": "self.version", + "drupal/big_pipe": "self.version", + "drupal/block": "self.version", + "drupal/block_content": "self.version", + "drupal/book": "self.version", + "drupal/breakpoint": "self.version", + "drupal/ckeditor": "self.version", + "drupal/claro": "self.version", + "drupal/classy": "self.version", + "drupal/color": "self.version", + "drupal/comment": "self.version", + "drupal/config": "self.version", + "drupal/config_translation": "self.version", + "drupal/contact": "self.version", + "drupal/content_moderation": "self.version", + "drupal/content_translation": "self.version", + "drupal/contextual": "self.version", + "drupal/core-annotation": "self.version", + "drupal/core-assertion": "self.version", + "drupal/core-bridge": "self.version", + "drupal/core-class-finder": "self.version", + "drupal/core-datetime": "self.version", + "drupal/core-dependency-injection": "self.version", + "drupal/core-diff": "self.version", + "drupal/core-discovery": "self.version", + "drupal/core-event-dispatcher": "self.version", + "drupal/core-file-cache": "self.version", + "drupal/core-file-security": "self.version", + "drupal/core-filesystem": "self.version", + "drupal/core-front-matter": "self.version", + "drupal/core-gettext": "self.version", + "drupal/core-graph": "self.version", + "drupal/core-http-foundation": "self.version", + "drupal/core-php-storage": "self.version", + "drupal/core-plugin": "self.version", + "drupal/core-proxy-builder": "self.version", + "drupal/core-render": "self.version", + "drupal/core-serialization": "self.version", + "drupal/core-transliteration": "self.version", + "drupal/core-utility": "self.version", + "drupal/core-uuid": "self.version", + "drupal/core-version": "self.version", + "drupal/datetime": "self.version", + "drupal/datetime_range": "self.version", + "drupal/dblog": "self.version", + "drupal/dynamic_page_cache": "self.version", + "drupal/editor": "self.version", + "drupal/entity_reference": "self.version", + "drupal/field": "self.version", + "drupal/field_layout": "self.version", + "drupal/field_ui": "self.version", + "drupal/file": "self.version", + "drupal/filter": "self.version", + "drupal/forum": "self.version", + "drupal/hal": "self.version", + "drupal/help": "self.version", + "drupal/help_topics": "self.version", + "drupal/history": "self.version", + "drupal/image": "self.version", + "drupal/inline_form_errors": "self.version", + "drupal/jsonapi": "self.version", + "drupal/language": "self.version", + "drupal/layout_builder": "self.version", + "drupal/layout_discovery": "self.version", + "drupal/link": "self.version", + "drupal/locale": "self.version", + "drupal/media": "self.version", + "drupal/media_library": "self.version", + "drupal/menu_link_content": "self.version", + "drupal/menu_ui": "self.version", + "drupal/migrate": "self.version", + "drupal/migrate_drupal": "self.version", + "drupal/migrate_drupal_multilingual": "self.version", + "drupal/migrate_drupal_ui": "self.version", + "drupal/minimal": "self.version", + "drupal/node": "self.version", + "drupal/olivero": "self.version", + "drupal/options": "self.version", + "drupal/page_cache": "self.version", + "drupal/path": "self.version", + "drupal/path_alias": "self.version", + "drupal/quickedit": "self.version", + "drupal/rdf": "self.version", + "drupal/responsive_image": "self.version", + "drupal/rest": "self.version", + "drupal/search": "self.version", + "drupal/serialization": "self.version", + "drupal/settings_tray": "self.version", + "drupal/seven": "self.version", + "drupal/shortcut": "self.version", + "drupal/standard": "self.version", + "drupal/stark": "self.version", + "drupal/statistics": "self.version", + "drupal/syslog": "self.version", + "drupal/system": "self.version", + "drupal/taxonomy": "self.version", + "drupal/telephone": "self.version", + "drupal/text": "self.version", + "drupal/toolbar": "self.version", + "drupal/tour": "self.version", + "drupal/tracker": "self.version", + "drupal/update": "self.version", + "drupal/user": "self.version", + "drupal/views": "self.version", + "drupal/views_ui": "self.version", + "drupal/workflows": "self.version", + "drupal/workspaces": "self.version" + }, + "type": "drupal-core", "extra": { - "drupal": { - "version": "8.x-1.7", - "datestamp": "1650988449", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "drupal-scaffold": { + "file-mapping": { + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", + "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", + "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", + "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", + "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", + "[web-root]/.htaccess": "assets/scaffold/files/htaccess", + "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", + "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", + "[web-root]/update.php": "assets/scaffold/files/update.php", + "[web-root]/web.config": "assets/scaffold/files/web.config", + "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", + "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", + "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", + "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" } } }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" + "autoload": { + "files": [ + "includes/bootstrap.inc" + ], + "psr-4": { + "Drupal\\Core\\": "lib/Drupal/Core", + "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver", + "Drupal\\Component\\": "lib/Drupal/Component" }, - { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" - } + "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" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" ], - "description": "Contains shared services and traits between Tome Sync and Tome Static.", - "homepage": "https://www.drupal.org/project/tome", + "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://git.drupalcode.org/project/tome" - } + "source": "https://github.com/drupal/core/tree/9.2.21" + }, + "time": "2022-06-10T19:08:36+00:00" }, { - "name": "drupal/tome_static", - "version": "1.7.0", + "name": "drupal/core-composer-scaffold", + "version": "9.2.21", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-composer-scaffold.git", + "reference": "3c9efe8e154acc2cadb86b51733be55556677b0b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/3c9efe8e154acc2cadb86b51733be55556677b0b", + "reference": "3c9efe8e154acc2cadb86b51733be55556677b0b", + "shasum": "" + }, "require": { - "drupal/core": "^8 || ^9", - "drupal/tome": "^1", - "drupal/tome_base": "*" + "composer-plugin-api": "^1 || ^2", + "php": ">=7.3.0" + }, + "conflict": { + "drupal-composer/drupal-scaffold": "*" + }, + "require-dev": { + "composer/composer": "^1.8@stable" + }, + "type": "composer-plugin", + "extra": { + "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin", + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Drupal\\Composer\\Plugin\\Scaffold\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "A flexible Composer project scaffold builder.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ], + "support": { + "source": "https://github.com/drupal/core-composer-scaffold/tree/9.2.21" + }, + "time": "2021-08-24T12:04:07+00:00" + }, + { + "name": "drupal/core-recommended", + "version": "9.2.21", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-recommended.git", + "reference": "50e4e9ccbc6152cec8870fabd58bbdbaa3643e2d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/50e4e9ccbc6152cec8870fabd58bbdbaa3643e2d", + "reference": "50e4e9ccbc6152cec8870fabd58bbdbaa3643e2d", + "shasum": "" + }, + "require": { + "asm89/stack-cors": "1.3.0", + "composer/semver": "3.2.5", + "doctrine/annotations": "1.13.1", + "doctrine/lexer": "1.2.1", + "doctrine/reflection": "1.2.2", + "drupal/core": "9.2.21", + "egulias/email-validator": "2.1.25", + "guzzlehttp/guzzle": "6.5.7", + "guzzlehttp/promises": "1.4.1", + "guzzlehttp/psr7": "1.8.5", + "laminas/laminas-diactoros": "2.6.0", + "laminas/laminas-escaper": "2.7.0", + "laminas/laminas-feed": "2.14.1", + "laminas/laminas-stdlib": "3.3.1", + "laminas/laminas-zendframework-bridge": "1.2.0", + "masterminds/html5": "2.7.4", + "pear/archive_tar": "1.4.14", + "pear/console_getopt": "v1.4.3", + "pear/pear-core-minimal": "v1.10.10", + "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.4", + "ralouphie/getallheaders": "3.0.3", + "stack/builder": "v1.0.6", + "symfony-cmf/routing": "2.3.3", + "symfony/console": "v4.4.25", + "symfony/debug": "v4.4.25", + "symfony/dependency-injection": "v4.4.25", + "symfony/deprecation-contracts": "v2.4.0", + "symfony/error-handler": "v4.4.25", + "symfony/event-dispatcher": "v4.4.25", + "symfony/event-dispatcher-contracts": "v1.1.9", + "symfony/http-client-contracts": "v2.4.0", + "symfony/http-foundation": "v4.4.25", + "symfony/http-kernel": "v4.4.25", + "symfony/mime": "v5.3.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.0", + "symfony/polyfill-php80": "v1.23.0", + "symfony/process": "v4.4.25", + "symfony/psr-http-message-bridge": "v2.1.0", + "symfony/routing": "v4.4.25", + "symfony/serializer": "v4.4.35", + "symfony/service-contracts": "v2.4.0", + "symfony/translation": "v4.4.25", + "symfony/translation-contracts": "v2.4.0", + "symfony/validator": "v4.4.25", + "symfony/var-dumper": "v5.3.0", + "symfony/yaml": "v4.4.25", + "twig/twig": "v2.14.11", + "typo3/phar-stream-wrapper": "v3.1.6" + }, + "conflict": { + "webflo/drupal-core-strict": "*" }, "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", + "support": { + "source": "https://github.com/drupal/core-recommended/tree/9.2.21" + }, + "time": "2022-06-10T19:08:36+00:00" + }, + { + "name": "drupal/crop", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/crop.git", + "reference": "8.x-2.2" + }, + "dist": { + "type": "zip", + "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" + }, + "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1650988449", + "version": "8.x-2.2", + "datestamp": "1645187494", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1943,37 +2515,60 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" }, { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "woprrr", + "homepage": "https://www.drupal.org/user/858604" } ], - "description": "Exports an entire Drupal site to static HTML.", - "homepage": "https://www.drupal.org/project/tome", + "description": "Provides storage and API for image crops.", + "homepage": "https://www.drupal.org/project/crop", "support": { - "source": "https://git.drupalcode.org/project/tome" + "source": "https://git.drupalcode.org/project/crop", + "issues": "https://www.drupal.org/project/issues/crop" } }, { - "name": "drupal/tome_sync", - "version": "1.7.0", + "name": "drupal/csv_serialization", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/csv_serialization.git", + "reference": "8.x-2.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "3531383a6926a4ed761be56553997c2a937449ac" + }, "require": { "drupal/core": "^8 || ^9", - "drupal/tome": "^1", - "drupal/tome_base": "*" + "league/csv": "^9.1" }, - "type": "metapackage", + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", + "drupal/coder": "^8.3" + }, + "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1650988449", + "version": "8.x-2.0", + "datestamp": "1612801962", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1986,3268 +2581,4203 @@ ], "authors": [ { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" - }, - { - "name": "samuel.mortenson", - "homepage": "https://www.drupal.org/user/2582268" + "name": "Matthew Grasmick", + "homepage": "https://www.drupal.org/user/455714" } ], - "description": "Allows Drupal to installed from flat files and keeps content in sync.", - "homepage": "https://www.drupal.org/project/tome", + "description": "Provides CSV as a serialization format.", + "homepage": "https://www.drupal.org/project/csv_serialization", "support": { - "source": "https://git.drupalcode.org/project/tome" + "source": "http://cgit.drupalcode.org/csv_serialization", + "issues": "https://www.drupal.org/project/issues/csv_serialization" } }, { - "name": "drush/drush", - "version": "11.1.1", + "name": "drupal/ctools", + "version": "3.7.0", "source": { "type": "git", - "url": "https://github.com/drush-ops/drush.git", - "reference": "5ee249f4e511d65c099e86317719fb3a15370e6b" + "url": "https://git.drupalcode.org/project/ctools.git", + "reference": "8.x-3.7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/5ee249f4e511d65c099e86317719fb3a15370e6b", - "reference": "5ee249f4e511d65c099e86317719fb3a15370e6b", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.7.zip", + "reference": "8.x-3.7", + "shasum": "b11c0981a1d2ab3cc9e8e614a337d8e2a2a70c0e" }, "require": { - "chi-teck/drupal-code-generator": "^2.4", - "composer/semver": "^1.4 || ^3", - "consolidation/annotated-command": "^4.5.3", - "consolidation/config": "^2", - "consolidation/filter-via-dot-access-data": "^2", - "consolidation/robo": "^3.0.9 || ^4.0.0-alpha1", - "consolidation/site-alias": "^3.1.3", - "consolidation/site-process": "^4.1.3 || ^5", - "enlightn/security-checker": "^1", - "ext-dom": "*", - "guzzlehttp/guzzle": "^6.5 || ^7.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/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" + "drupal/core": "^8.8 || ^9" }, - "bin": [ - "drush" - ], - "type": "library", + "type": "drupal-module", "extra": { - "installer-paths": { - "sut/core": [ - "type:drupal-core" - ], - "sut/libraries/{$name}": [ - "type:drupal-library" - ], - "sut/modules/unish/{$name}": [ - "drupal/devel" - ], - "sut/themes/unish/{$name}": [ - "drupal/empty_theme" - ], - "sut/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "sut/profiles/contrib/{$name}": [ - "type:drupal-profile" - ], - "sut/themes/contrib/{$name}": [ - "type:drupal-theme" - ], - "sut/drush/contrib/{$name}": [ - "type:drupal-drush" - ] - } - }, - "autoload": { - "psr-4": { - "Drush\\": "src/" + "drupal": { + "version": "8.x-3.7", + "datestamp": "1623860918", + "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://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0-or-later" ], "authors": [ { - "name": "Moshe Weitzman", - "email": "weitzman@tejasa.com" + "name": "Kris Vanderwater (EclipseGc)", + "homepage": "https://www.drupal.org/u/eclipsegc", + "role": "Maintainer" }, { - "name": "Owen Barton", - "email": "drupal@owenbarton.com" + "name": "Jakob Perry (japerry)", + "homepage": "https://www.drupal.org/u/japerry", + "role": "Maintainer" }, { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Tim Plunkett (tim.plunkett)", + "homepage": "https://www.drupal.org/u/timplunkett", + "role": "Maintainer" }, { - "name": "Jonathan Araña Cruz", - "email": "jonhattan@faita.net" + "name": "James Gilliland (neclimdul)", + "homepage": "https://www.drupal.org/u/neclimdul", + "role": "Maintainer" }, { - "name": "Jonathan Hedstrom", - "email": "jhedstrom@gmail.com" + "name": "Daniel Wehner (dawehner)", + "homepage": "https://www.drupal.org/u/dawehner", + "role": "Maintainer" }, { - "name": "Christopher Gervais", - "email": "chris@ergonlogic.com" + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" }, { - "name": "Dave Reid", - "email": "dave@davereid.net" + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" }, { - "name": "Damian Lee", - "email": "damiankloip@googlemail.com" + "name": "neclimdul", + "homepage": "https://www.drupal.org/user/48673" + }, + { + "name": "sdboyer", + "homepage": "https://www.drupal.org/user/146719" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" } ], - "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", + "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.", + "homepage": "https://www.drupal.org/project/ctools", "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/11.1.1" - }, - "funding": [ - { - "url": "https://github.com/weitzman", - "type": "github" - } - ], - "time": "2022-07-12T16:08:05+00:00" + "source": "https://git.drupalcode.org/project/ctools", + "issues": "https://www.drupal.org/project/issues/ctools" + } }, { - "name": "egulias/email-validator", - "version": "3.2.1", + "name": "drupal/data_policy", + "version": "2.0.0-beta1", "source": { "type": "git", - "url": "https://github.com/egulias/EmailValidator.git", - "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715" + "url": "https://git.drupalcode.org/project/data_policy.git", + "reference": "2.0.0-beta1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/f88dcf4b14af14a98ad96b14b2b317969eab6715", - "reference": "f88dcf4b14af14a98ad96b14b2b317969eab6715", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/data_policy-2.0.0-beta1.zip", + "reference": "2.0.0-beta1", + "shasum": "129396ff0b07e0fd9ac2a30c7ac2a31739615a7f" }, "require": { - "doctrine/lexer": "^1.2", - "php": ">=7.2", - "symfony/polyfill-intl-idn": "^1.15" + "drupal/core": "^9.2" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^8.5.8|^9.3.3", - "vimeo/psalm": "^4" + "drupal/csv_serialization": "*", + "drupal/views_bulk_operations": "*" }, - "suggest": { - "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" - }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "3.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Egulias\\EmailValidator\\": "src" + "drupal": { + "version": "2.0.0-beta1", + "datestamp": "1639646314", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Eduardo Gulias Davis" + "name": "Kingdutch", + "homepage": "https://www.drupal.org/user/1868952" + }, + { + "name": "Open Social", + "homepage": "https://www.drupal.org/user/272162" + }, + { + "name": "bojan_dev", + "homepage": "https://www.drupal.org/user/2801849" + }, + { + "name": "bramtenhove", + "homepage": "https://www.drupal.org/user/1549848" + }, + { + "name": "chmez", + "homepage": "https://www.drupal.org/user/3071411" + }, + { + "name": "navneet0693", + "homepage": "https://www.drupal.org/user/3200545" + }, + { + "name": "tbsiqueira", + "homepage": "https://www.drupal.org/user/2822445" } ], - "description": "A library for validating emails against several RFCs", - "homepage": "https://github.com/egulias/EmailValidator", + "description": "Create data policies and track user agreements as well as informing users.", + "homepage": "https://drupal.org/project/data_policy", "keywords": [ - "email", - "emailvalidation", - "emailvalidator", - "validation", - "validator" + "Data policy", + "Drupal", + "GDPR" ], "support": { - "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/3.2.1" - }, - "funding": [ - { - "url": "https://github.com/egulias", - "type": "github" - } - ], - "time": "2022-06-18T20:57:19+00:00" + "source": "https://git.drupalcode.org/project/data_policy" + } }, { - "name": "enlightn/security-checker", - "version": "v1.10.0", + "name": "drupal/dynamic_entity_reference", + "version": "1.12.0", "source": { "type": "git", - "url": "https://github.com/enlightn/security-checker.git", - "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" + "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", - "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "ee0423f07d962ccd1c1116ac81de3e96f28ac89a" }, "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" + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { - "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^2.18|^3.0", - "phpunit/phpunit": "^5.5|^6|^7|^8|^9" + "drupal/diff": "1.x-dev" }, - "bin": [ - "security-checker" - ], - "type": "library", - "autoload": { - "psr-4": { - "Enlightn\\SecurityChecker\\": "src" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.12", + "datestamp": "1620309082", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Paras Malhotra", - "email": "paras@laravel-enlightn.com" + "name": "Lee Rowlands", + "homepage": "https://www.drupal.org/u/larowlan", + "role": "Maintainer" }, { - "name": "Miguel Piedrafita", - "email": "soy@miguelpiedrafita.com" + "name": "Jibran Ijaz", + "homepage": "https://www.drupal.org/u/jibran", + "role": "Maintainer" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" } ], - "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.", - "keywords": [ - "package", - "php", - "scanner", - "security", - "security advisories", - "vulnerability scanner" - ], + "description": "Provides a field that allows an entity-reference field to reference more than one entity type.", + "homepage": "http://drupal.org/project/dynamic_entity_reference", "support": { - "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" + "source": "http://cgit.drupalcode.org/dynamic_entity_reference", + "issues": "http://drupal.org/project/dynamic_entity_reference", + "irc": "irc://irc.freenode.org/drupal-contribute" + } }, { - "name": "grasmash/expander", - "version": "2.0.3", + "name": "drupal/editor_advanced_link", + "version": "2.0.0", "source": { "type": "git", - "url": "https://github.com/grasmash/expander.git", - "reference": "b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e" + "url": "https://git.drupalcode.org/project/editor_advanced_link.git", + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e", - "reference": "b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.0.0.zip", + "reference": "2.0.0", + "shasum": "db9469ffc073ab0b350296c86069441882ba2147" }, "require": { - "dflydev/dot-access-data": "^3.0.0", - "php": ">=7.1", - "psr/log": "^1 | ^2 | ^3" - }, - "require-dev": { - "greg-1-anderson/composer-test-scenarios": "^1", - "phpunit/phpunit": "^6.0 || ^8.0 || ^9", - "squizlabs/php_codesniffer": "^2.7 || ^3.3" + "drupal/core": "^9.2" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Grasmash\\Expander\\": "src/" + "drupal": { + "version": "2.0.0", + "datestamp": "1624528083", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Matthew Grasmick" + "name": "DuaelFr", + "homepage": "https://www.drupal.org/user/931394" } ], - "description": "Expands internal property references in PHP arrays file.", + "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": { - "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/2.0.3" - }, - "time": "2022-04-25T22:17:46+00:00" + "source": "https://git.drupalcode.org/project/editor_advanced_link" + } }, { - "name": "guzzlehttp/guzzle", - "version": "6.5.8", + "name": "drupal/embed", + "version": "1.5.0", "source": { "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981" + "url": "https://git.drupalcode.org/project/embed.git", + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981", - "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "88a447329d16988459e82392443e96d441d651b2" }, "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.9", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.17" - }, - "require-dev": { - "ext-curl": "*", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" + "drupal/core": "^8.7.7 || ^9" }, - "suggest": { - "psr/log": "Required for using the Log middleware" - }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "6.5-dev" - } - }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\": "src/" + "drupal": { + "version": "8.x-1.5", + "datestamp": "1653500382", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "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": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "name": "Jeremy Lindblom", - "email": "jeremeamia@gmail.com", - "homepage": "https://github.com/jeremeamia" + "name": "Devin Carlson", + "homepage": "https://www.drupal.org/user/290182" }, { - "name": "George Mponos", - "email": "gmponos@gmail.com", - "homepage": "https://github.com/gmponos" + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" }, { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" + "name": "cs_shadow", + "homepage": "https://www.drupal.org/user/2828287" }, { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://github.com/sagikazarmark" + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" }, { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" } ], - "description": "Guzzle is a PHP HTTP client library", - "homepage": "http://guzzlephp.org/", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "rest", - "web service" - ], + "description": "Provides a framework for different types of embeds in text editors.", + "homepage": "https://www.drupal.org/project/embed", "support": { - "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/6.5.8" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", - "type": "tidelift" - } - ], - "time": "2022-06-20T22:16:07+00:00" + "source": "https://git.drupalcode.org/project/embed" + } }, { - "name": "guzzlehttp/promises", - "version": "1.5.1", + "name": "drupal/entity", + "version": "1.3.0", "source": { "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da" + "url": "https://git.drupalcode.org/project/entity.git", + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da", - "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d" }, "require": { - "php": ">=5.5" - }, - "require-dev": { - "symfony/phpunit-bridge": "^4.4 || ^5.1" + "drupal/core": "^8.8.2 || ^9" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.5-dev" + "drupal": { + "version": "8.x-1.3", + "datestamp": "1646324539", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" + "name": "TR", + "homepage": "https://www.drupal.org/user/202830" }, { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" }, { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" - } - ], - "description": "Guzzle promises library", - "keywords": [ - "promise" - ], - "support": { - "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.5.1" - }, - "funding": [ + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, { - "url": "https://github.com/GrahamCampbell", - "type": "github" + "name": "dixon_", + "homepage": "https://www.drupal.org/user/239911" }, { - "url": "https://github.com/Nyholm", - "type": "github" + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" }, { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", - "type": "tidelift" + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" } ], - "time": "2021-10-22T20:56:57+00:00" + "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.", + "homepage": "https://www.drupal.org/project/entity", + "support": { + "source": "https://git.drupalcode.org/project/entity", + "issues": "https://www.drupal.org/project/issues/entity" + } }, { - "name": "guzzlehttp/psr7", + "name": "drupal/entity_reference_revisions", "version": "1.9.0", "source": { "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" + "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", - "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "e1c51bdea495eb3b458130d6f0a00c347f5637df" }, "require": { - "php": ">=5.4.0", - "psr/http-message": "~1.0", - "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" - }, - "provide": { - "psr/http-message-implementation": "1.0" + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { - "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" - }, - "suggest": { - "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + "drupal/diff": "1.x-dev" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" + "drupal": { + "version": "8.x-1.9", + "datestamp": "1614805871", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "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": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" }, { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://github.com/sagikazarmark" + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" }, { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" } ], - "description": "PSR-7 message implementation that also provides common utility methods", - "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" - ], + "description": "Entity Reference Revisions", + "homepage": "https://www.drupal.org/project/entity_reference_revisions", "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.9.0" + "source": "https://git.drupalcode.org/project/entity_reference_revisions" + } + }, + { + "name": "drupal/exif_orientation", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/exif_orientation.git", + "reference": "8.x-1.1" }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/exif_orientation-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "9b0e4325092bb9f37a0714c9587fa10823b4a023" + }, + "require": { + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1593659917", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ { - "url": "https://github.com/Nyholm", - "type": "github" + "name": "NickDickinsonWilde", + "homepage": "https://www.drupal.org/user/3094661" }, { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", - "type": "tidelift" + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" } ], - "time": "2022-06-20T21:43:03+00:00" + "description": "Rotates images per their EXIF Orientation", + "homepage": "https://www.drupal.org/project/exif_orientation", + "support": { + "source": "https://git.drupalcode.org/project/exif_orientation" + } }, { - "name": "laminas/laminas-diactoros", - "version": "2.11.3", + "name": "drupal/field_group", + "version": "3.2.0", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "1f97b0c52eafd108e09c76d6b29d83ef4a855f76" + "url": "https://git.drupalcode.org/project/field_group.git", + "reference": "8.x-3.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/1f97b0c52eafd108e09c76d6b29d83ef4a855f76", - "reference": "1f97b0c52eafd108e09c76d6b29d83ef4a855f76", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "2020bbfe40f6ba43bc733ae7c8761632572433a0" }, "require": { - "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" + "drupal/core": "^8.8 || ^9" }, "require-dev": { - "ext-curl": "*", - "ext-dom": "*", - "ext-gd": "*", - "ext-libxml": "*", - "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" + "drupal/jquery_ui_accordion": "^1.0" }, - "type": "library", + "type": "drupal-module", "extra": { - "laminas": { - "config-provider": "Laminas\\Diactoros\\ConfigProvider", - "module": "Laminas\\Diactoros" - } - }, - "autoload": { - "files": [ - "src/functions/create_uploaded_file.php", - "src/functions/marshal_headers_from_sapi.php", - "src/functions/marshal_method_from_sapi.php", - "src/functions/marshal_protocol_version_from_sapi.php", - "src/functions/marshal_uri_from_sapi.php", - "src/functions/normalize_server.php", - "src/functions/normalize_uploaded_files.php", - "src/functions/parse_cookie_header.php", - "src/functions/create_uploaded_file.legacy.php", - "src/functions/marshal_headers_from_sapi.legacy.php", - "src/functions/marshal_method_from_sapi.legacy.php", - "src/functions/marshal_protocol_version_from_sapi.legacy.php", - "src/functions/marshal_uri_from_sapi.legacy.php", - "src/functions/normalize_server.legacy.php", - "src/functions/normalize_uploaded_files.legacy.php", - "src/functions/parse_cookie_header.legacy.php" - ], - "psr-4": { - "Laminas\\Diactoros\\": "src/" + "drupal": { + "version": "8.x-3.2", + "datestamp": "1628513585", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" - ], - "description": "PSR HTTP Message implementations", - "homepage": "https://laminas.dev", - "keywords": [ - "http", - "laminas", - "psr", - "psr-17", - "psr-7" + "GPL-2.0-or-later" ], - "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" - }, - "funding": [ + "authors": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "name": "Hydra", + "homepage": "https://www.drupal.org/user/647364" + }, + { + "name": "Stalski", + "homepage": "https://www.drupal.org/user/322618" + }, + { + "name": "jyve", + "homepage": "https://www.drupal.org/user/591438" + }, + { + "name": "nils.destoop", + "homepage": "https://www.drupal.org/user/361625" + }, + { + "name": "swentel", + "homepage": "https://www.drupal.org/user/107403" } ], - "time": "2022-07-06T09:24:53+00:00" + "description": "Provides the field_group module.", + "homepage": "https://www.drupal.org/project/field_group", + "support": { + "source": "https://git.drupalcode.org/project/field_group", + "issues": "https://www.drupal.org/project/issues/field_group" + } }, { - "name": "laminas/laminas-escaper", - "version": "2.9.0", + "name": "drupal/file_mdm", + "version": "2.4.0", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f" + "url": "https://git.drupalcode.org/project/file_mdm.git", + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/891ad70986729e20ed2e86355fcf93c9dc238a5f", - "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "f0611a95417d35e98b7792dfffb569afe8bd6e7c" }, "require": { - "php": "^7.3 || ~8.0.0 || ~8.1.0" - }, - "conflict": { - "zendframework/zend-escaper": "*" + "drupal/core": "^9.2", + "lsolesen/pel": "^0.9.12", + "phenx/php-font-lib": "^0.5.4" }, "require-dev": { - "laminas/laminas-coding-standard": "~2.3.0", - "phpunit/phpunit": "^9.3", - "psalm/plugin-phpunit": "^0.12.2", - "vimeo/psalm": "^3.16" + "drupal/image_effects": "*", + "drupal/vendor_stream_wrapper": "^2", + "fileeye/linuxlibertine-fonts": "^5.3" }, - "suggest": { - "ext-iconv": "*", - "ext-mbstring": "*" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.4", + "datestamp": "1645440700", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Escaper\\": "src/" + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mondrake", + "homepage": "https://www.drupal.org/user/1307444" } + ], + "description": "Provides a service to manage file metadata.", + "homepage": "https://www.drupal.org/project/file_mdm", + "support": { + "source": "https://git.drupalcode.org/project/file_mdm" + } + }, + { + "name": "drupal/file_mdm_exif", + "version": "2.4.0", + "require": { + "drupal/core": "^9.2", + "drupal/file_mdm": "*" }, - "notification-url": "https://packagist.org/downloads/", + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.4", + "datestamp": "1645440700", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" + "GPL-2.0-or-later" ], - "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs", - "homepage": "https://laminas.dev", - "keywords": [ - "escaper", - "laminas" + "authors": [ + { + "name": "mondrake", + "homepage": "https://www.drupal.org/user/1307444" + } ], + "description": "Provides a file metadata plugin for EXIF image information.", + "homepage": "https://www.drupal.org/project/file_mdm", "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" + "source": "https://git.drupalcode.org/project/file_mdm" + } + }, + { + "name": "drupal/file_mdm_font", + "version": "2.4.0", + "require": { + "drupal/core": "^9.2", + "drupal/file_mdm": "*" }, - "funding": [ + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-2.4", + "datestamp": "1645440700", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "name": "mondrake", + "homepage": "https://www.drupal.org/user/1307444" } ], - "time": "2021-09-02T17:10:53+00:00" + "description": "Provides a file metadata plugin for TTF/OTF/WOFF font information.", + "homepage": "https://www.drupal.org/project/file_mdm", + "support": { + "source": "https://git.drupalcode.org/project/file_mdm" + } }, { - "name": "laminas/laminas-feed", - "version": "2.17.0", + "name": "drupal/flag", + "version": "4.0.0-beta3", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-feed.git", - "reference": "1ccb024ea615606ed1d676ba0fa3f22a398f3ac0" + "url": "https://git.drupalcode.org/project/flag.git", + "reference": "8.x-4.0-beta3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/1ccb024ea615606ed1d676ba0fa3f22a398f3ac0", - "reference": "1ccb024ea615606ed1d676ba0fa3f22a398f3ac0", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/flag-8.x-4.0-beta3.zip", + "reference": "8.x-4.0-beta3", + "shasum": "856a4871034955406e111aee2227e716cc8064d6" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "laminas/laminas-escaper": "^2.9", - "laminas/laminas-stdlib": "^3.6", - "php": "^7.3 || ~8.0.0 || ~8.1.0" - }, - "conflict": { - "laminas/laminas-servicemanager": "<3.3", - "zendframework/zend-feed": "*" - }, - "require-dev": { - "laminas/laminas-cache": "^2.7.2", - "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", - "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub", - "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader", - "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations", - "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent", - "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" + "drupal/core": "^8.8 || ^9" }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Feed\\": "src/" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-4.0-beta3", + "datestamp": "1638201553", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" - ], - "description": "provides functionality for consuming RSS and Atom feeds", - "homepage": "https://laminas.dev", - "keywords": [ - "feed", - "laminas" + "GPL-2.0-or-later" ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-feed/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-feed/issues", - "rss": "https://github.com/laminas/laminas-feed/releases.atom", - "source": "https://github.com/laminas/laminas-feed" - }, - "funding": [ + "authors": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "fubhy", + "homepage": "https://www.drupal.org/user/761344" + }, + { + "name": "joachim", + "homepage": "https://www.drupal.org/user/107701" + }, + { + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" + }, + { + "name": "mooffie", + "homepage": "https://www.drupal.org/user/78454" + }, + { + "name": "quicksketch", + "homepage": "https://www.drupal.org/user/35821" + }, + { + "name": "shabana.navas", + "homepage": "https://www.drupal.org/user/1311398" + }, + { + "name": "socketwench", + "homepage": "https://www.drupal.org/user/65793" } ], - "time": "2022-03-24T10:26:04+00:00" + "description": "Create customized flags that users can set on entities.", + "homepage": "https://www.drupal.org/project/flag", + "support": { + "source": "https://git.drupalcode.org/project/flag" + } }, { - "name": "laminas/laminas-stdlib", - "version": "3.7.1", + "name": "drupal/gin", + "version": "3.0.0-alpha37", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "bcd869e2fe88d567800057c1434f2380354fe325" + "url": "https://git.drupalcode.org/project/gin.git", + "reference": "8.x-3.0-alpha37" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/bcd869e2fe88d567800057c1434f2380354fe325", - "reference": "bcd869e2fe88d567800057c1434f2380354fe325", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-alpha37.zip", + "reference": "8.x-3.0-alpha37", + "shasum": "56f7226618f7e45697ee799e5e02c57d79cb3b1a" }, "require": { - "php": "^7.3 || ~8.0.0 || ~8.1.0" - }, - "conflict": { - "zendframework/zend-stdlib": "*" - }, - "require-dev": { - "laminas/laminas-coding-standard": "~2.3.0", - "phpbench/phpbench": "^1.0", - "phpunit/phpunit": "^9.3.7", - "psalm/plugin-phpunit": "^0.16.0", - "vimeo/psalm": "^4.7" + "drupal/core": "^8.8 || ^9 || ^10", + "drupal/gin_toolbar": "^1.0@beta" }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Stdlib\\": "src/" + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "8.x-3.0-alpha37", + "datestamp": "1632767973", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" + "GPL-2.0-or-later" ], - "description": "SPL extensions, array utilities, error handlers, and more", - "homepage": "https://laminas.dev", - "keywords": [ - "laminas", - "stdlib" + "authors": [ + { + "name": "Sascha Eggenberger (saschaeggi)", + "homepage": "https://www.drupal.org/u/saschaeggi", + "role": "Maintainer" + } ], + "description": "For a better Admin and Content Editor Experience.", + "homepage": "https://www.drupal.org/project/gin", "support": { - "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" + "source": "https://git.drupalcode.org/project/gin", + "issues": "https://www.drupal.org/project/issues/gin" }, "funding": [ { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" + "type": "github", + "url": "https://github.com/sponsors/saschaeggi" + }, + { + "type": "other", + "url": "https://paypal.me/saschaeggi" } - ], - "time": "2022-01-21T15:50:46+00:00" + ] }, { - "name": "league/container", - "version": "4.2.0", + "name": "drupal/gin_toolbar", + "version": "1.0.0-beta20", "source": { "type": "git", - "url": "https://github.com/thephpleague/container.git", - "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab" + "url": "https://git.drupalcode.org/project/gin_toolbar.git", + "reference": "8.x-1.0-beta20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab", - "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-beta20.zip", + "reference": "8.x-1.0-beta20", + "shasum": "770d6945de7ae001e3981db83daace610d4db5c4" }, "require": { - "php": "^7.2 || ^8.0", - "psr/container": "^1.1 || ^2.0" - }, - "provide": { - "psr/container-implementation": "^1.0" - }, - "replace": { - "orno/di": "~2.0" - }, - "require-dev": { - "nette/php-generator": "^3.4", - "nikic/php-parser": "^4.10", - "phpstan/phpstan": "^0.12.47", - "phpunit/phpunit": "^8.5.17", - "roave/security-advisories": "dev-latest", - "scrutinizer/ocular": "^1.8", - "squizlabs/php_codesniffer": "^3.6" + "drupal/core": "^8 || ^9 || ^10" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "4.x-dev", - "dev-4.x": "4.x-dev", - "dev-3.x": "3.x-dev", - "dev-2.x": "2.x-dev", - "dev-1.x": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "League\\Container\\": "src" + "drupal": { + "version": "8.x-1.0-beta20", + "datestamp": "1635149692", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0+" ], "authors": [ { - "name": "Phil Bennett", - "email": "mail@philbennett.co.uk", - "role": "Developer" + "name": "Sascha Eggenberger (saschaeggi)", + "homepage": "https://www.drupal.org/u/saschaeggi", + "role": "Maintainer" } ], - "description": "A fast and intuitive dependency injection container.", - "homepage": "https://github.com/thephpleague/container", + "description": "Gin Toolbar for Frontend use", + "homepage": "https://www.drupal.org/project/gin_toolbar", "keywords": [ - "container", - "dependency", - "di", - "injection", - "league", - "provider", - "service" + "Drupal" ], "support": { - "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.0" + "source": "http://cgit.drupalcode.org/gin_toolbar", + "issues": "https://www.drupal.org/project/issues/gin_toolbar" }, "funding": [ { - "url": "https://github.com/philipobenito", - "type": "github" + "type": "github", + "url": "https://github.com/sponsors/saschaeggi" + }, + { + "type": "other", + "url": "https://paypal.me/saschaeggi" } - ], - "time": "2021-11-16T10:29:06+00:00" + ] }, { - "name": "masterminds/html5", - "version": "2.7.5", + "name": "drupal/graphql", + "version": "4.1.0", "source": { "type": "git", - "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab" + "url": "https://git.drupalcode.org/project/graphql.git", + "reference": "8.x-4.1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f640ac1bdddff06ea333a920c95bbad8872429ab", - "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/graphql-8.x-4.1.zip", + "reference": "8.x-4.1", + "shasum": "c37587b95e78b62b099bfee128e0a5d634696335" }, "require": { - "ext-ctype": "*", - "ext-dom": "*", - "ext-libxml": "*", - "php": ">=5.3.0" + "drupal/core": "^8 || ^9", + "drupal/typed_data": "*", + "php": ">=7.2", + "webonyx/graphql-php": "^14.5.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7" + "drupal/node-node": "*" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "2.7-dev" - } - }, - "autoload": { - "psr-4": { - "Masterminds\\": "src" + "drupal": { + "version": "8.x-4.1", + "datestamp": "1631726359", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0+" ], "authors": [ { - "name": "Matt Butcher", - "email": "technosophos@gmail.com" + "name": "fubhy", + "homepage": "https://www.drupal.org/user/761344" }, { - "name": "Matt Farina", - "email": "matt@mattfarina.com" + "name": "hideaway", + "homepage": "https://www.drupal.org/user/741876" }, { - "name": "Asmir Mustafic", - "email": "goetas@gmail.com" + "name": "joaogarin", + "homepage": "https://www.drupal.org/user/612814" + }, + { + "name": "klausi", + "homepage": "https://www.drupal.org/user/262198" + }, + { + "name": "pmelab", + "homepage": "https://www.drupal.org/user/555322" } ], - "description": "An HTML5 parser and serializer.", - "homepage": "http://masterminds.github.io/html5-php", - "keywords": [ - "HTML5", - "dom", - "html", - "parser", - "querypath", - "serializer", - "xml" - ], + "description": "Exposes your Drupal data model through a GraphQL schema.", + "homepage": "http://drupal.org/project/graphql", "support": { - "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.7.5" - }, - "time": "2021-07-01T14:25:37+00:00" + "source": "https://git.drupalcode.org/project/graphql" + } }, { - "name": "nikic/php-parser", - "version": "v4.14.0", + "name": "drupal/group", + "version": "1.4.0", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1" + "url": "https://git.drupalcode.org/project/group.git", + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1", - "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/group-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "385a70f421dc3142c9c91876ac8b35ae3afa107e" }, "require": { - "ext-tokenizer": "*", - "php": ">=7.0" - }, - "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" + "drupal/core": "^8.9 || ^9", + "drupal/entity": "^1.2", + "drupal/variationcache": "^1.0" }, - "bin": [ - "bin/php-parse" - ], - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "4.9-dev" - } - }, - "autoload": { - "psr-4": { - "PhpParser\\": "lib/PhpParser" + "drupal": { + "version": "8.x-1.4", + "datestamp": "1625063515", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Nikita Popov" + "name": "Kristiaan Van den Eynde", + "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", + "role": "Maintainer" } ], - "description": "A PHP parser written in PHP", - "keywords": [ - "parser", - "php" - ], + "description": "This module allows you to group users, content and other entities", + "homepage": "http://drupal.org/project/group", "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0" - }, - "time": "2022-05-31T20:59:12+00:00" + "source": "https://git.drupalcode.org/project/group", + "issues": "https://drupal.org/project/issues/group" + } }, { - "name": "pear/archive_tar", - "version": "1.4.14", + "name": "drupal/image_effects", + "version": "3.2.0", "source": { "type": "git", - "url": "https://github.com/pear/Archive_Tar.git", - "reference": "4d761c5334c790e45ef3245f0864b8955c562caa" + "url": "https://git.drupalcode.org/project/image_effects.git", + "reference": "8.x-3.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa", - "reference": "4d761c5334c790e45ef3245f0864b8955c562caa", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/image_effects-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "c45e2b9493758183813aac3807a16be5872f0caa" }, "require": { - "pear/pear-core-minimal": "^1.10.0alpha2", - "php": ">=5.2.0" + "drupal/core": "^9.2", + "drupal/file_mdm_exif": "^2.2", + "drupal/file_mdm_font": "^2.2" }, - "require-dev": { - "phpunit/phpunit": "*" + "conflict": { + "drupal/imagemagick": "<3", + "drupal/jquery_colorpicker": "<2" }, - "suggest": { - "ext-bz2": "Bz2 compression support.", - "ext-xz": "Lzma2 compression support.", - "ext-zlib": "Gzip compression support." + "require-dev": { + "drupal/imagemagick": "^3.3", + "drupal/jquery_colorpicker": "^2", + "drupal/vendor_stream_wrapper": "^1 | ^2", + "fileeye/linuxlibertine-fonts": "^5.3" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.4.x-dev" - } - }, - "autoload": { - "psr-0": { - "Archive_Tar": "" + "drupal": { + "version": "8.x-3.2", + "datestamp": "1639923532", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "./" - ], + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Vincent Blavet", - "email": "vincent@phpconcept.net" - }, - { - "name": "Greg Beaver", - "email": "greg@chiaraquartet.net" + "name": "mondrake", + "homepage": "https://www.drupal.org/user/1307444" }, { - "name": "Michiel Rook", - "email": "mrook@php.net" + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" } ], - "description": "Tar file management class with compression support (gzip, bzip2, lzma2)", - "homepage": "https://github.com/pear/Archive_Tar", - "keywords": [ - "archive", - "tar" - ], + "description": "Provides effects and operations for the Image API.", + "homepage": "https://www.drupal.org/project/image_effects", "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", - "source": "https://github.com/pear/Archive_Tar" - }, - "funding": [ - { - "url": "https://github.com/mrook", - "type": "github" - }, - { - "url": "https://www.patreon.com/michielrook", - "type": "patreon" - } - ], - "time": "2021-07-20T13:53:39+00:00" + "source": "https://git.drupalcode.org/project/image_effects" + } }, { - "name": "pear/console_getopt", - "version": "v1.4.3", + "name": "drupal/image_widget_crop", + "version": "2.3.0", "source": { "type": "git", - "url": "https://github.com/pear/Console_Getopt.git", - "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0" + "url": "https://git.drupalcode.org/project/image_widget_crop.git", + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0", - "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/image_widget_crop-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "20f9e98bd6503699576ada6f4fd4c9fd06686361" }, - "type": "library", - "autoload": { - "psr-0": { - "Console": "./" + "require": { + "drupal/core": "^8 || ^9", + "drupal/crop": "^1.0 || ^2.0" + }, + "require-dev": { + "drupal/crop": "*", + "drupal/ctools": "3.x-dev", + "drupal/entity_browser": "1.x-dev", + "drupal/file_entity": "*", + "drupal/inline_entity_form": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.3", + "datestamp": "1585408029", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "./" - ], + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-2-Clause" + "GPL-2.0+" ], "authors": [ { - "name": "Andrei Zmievski", - "email": "andrei@php.net", - "role": "Lead" + "name": "Alexandre Mallet", + "homepage": "https://github.com/woprrr", + "role": "Maintainer" }, { - "name": "Stig Bakken", - "email": "stig@php.net", - "role": "Developer" + "name": "Drupal media CI", + "homepage": "https://www.drupal.org/user/3057985" }, { - "name": "Greg Beaver", - "email": "cellog@php.net", - "role": "Helper" + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "woprrr", + "homepage": "https://www.drupal.org/user/858604" } ], - "description": "More info available on: http://pear.php.net/package/Console_Getopt", + "description": "Provides an interface for using the features of the Crop API.", + "homepage": "https://www.drupal.org/project/image_widget_crop", + "keywords": [ + "Crop", + "Drupal", + "Drupal Media" + ], "support": { - "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" + "source": "https://www.drupal.org/project/image_widget_crop", + "issues": "https://www.drupal.org/project/issues/image_widget_crop", + "irc": "irc://irc.freenode.org/drupal-contribute" + } }, { - "name": "pear/pear-core-minimal", - "version": "v1.10.11", + "name": "drupal/jquery_ui", + "version": "1.4.0", "source": { "type": "git", - "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d" + "url": "https://git.drupalcode.org/project/jquery_ui.git", + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/68d0d32ada737153b7e93b8d3c710ebe70ac867d", - "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe" }, "require": { - "pear/console_getopt": "~1.4", - "pear/pear_exception": "~1.0" - }, - "replace": { - "rsky/pear-core-min": "self.version" + "drupal/core": "^8 || ^9" }, - "type": "library", - "autoload": { - "psr-0": { - "": "src/" + "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://packagist.org/downloads/", - "include-path": [ - "src/" - ], + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-3-Clause" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Christian Weiske", - "email": "cweiske@php.net", - "role": "Lead" + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "jjeff", + "homepage": "https://www.drupal.org/user/17190" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "litwol", + "homepage": "https://www.drupal.org/user/78134" + }, + { + "name": "mfb", + "homepage": "https://www.drupal.org/user/12302" + }, + { + "name": "mfer", + "homepage": "https://www.drupal.org/user/25701" + }, + { + "name": "mikelutz", + "homepage": "https://www.drupal.org/user/2972409" + }, + { + "name": "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": "Minimal set of PEAR core files to be used as composer dependency", + "description": "Provides jQuery UI library.", + "homepage": "https://www.drupal.org/project/jquery_ui", "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", - "source": "https://github.com/pear/pear-core-minimal" - }, - "time": "2021-08-10T22:31:03+00:00" + "source": "https://git.drupalcode.org/project/jquery_ui" + } }, { - "name": "pear/pear_exception", - "version": "v1.0.2", + "name": "drupal/jquery_ui_accordion", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/pear/PEAR_Exception.git", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" + "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "988a3da3b0bc3042e2f42fd20e401272f8369bbd" }, "require": { - "php": ">=5.2.0" - }, - "require-dev": { - "phpunit/phpunit": "<9" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" }, - "type": "class", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" + "drupal": { + "version": "8.x-1.1", + "datestamp": "1584106477", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "autoload": { - "classmap": [ - "PEAR/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "." - ], + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "BSD-2-Clause" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Helgi Thormar", - "email": "dufuz@php.net" + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" }, { - "name": "Greg Beaver", - "email": "cellog@php.net" + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" } ], - "description": "The PEAR Exception base class.", - "homepage": "https://github.com/pear/PEAR_Exception", - "keywords": [ - "exception" - ], + "description": "Provides jQuery UI Accordion library.", + "homepage": "https://www.drupal.org/project/jquery_ui_accordion", "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", - "source": "https://github.com/pear/PEAR_Exception" - }, - "time": "2021-03-21T15:43:46+00:00" + "source": "https://git.drupalcode.org/project/jquery_ui_accordion" + } }, { - "name": "psr/cache", - "version": "1.0.1", + "name": "drupal/jquery_ui_datepicker", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" + "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", - "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "19ffa245970ee4e9d908fa0c5d0761f567e487bb" }, "require": { - "php": ">=5.3.0" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" + "drupal": { + "version": "8.x-1.2", + "datestamp": "1642614454", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Andrei Ivnitskii", + "homepage": "https://www.drupal.org/u/ivnish", + "role": "Maintainer" + }, + { + "name": "ivnish", + "homepage": "https://www.drupal.org/user/3547706" + }, + { + "name": "jrockowitz", + "homepage": "https://www.drupal.org/user/371407" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" } ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ], + "description": "Provides jQuery UI Datepicker library.", + "homepage": "https://www.drupal.org/project/jquery_ui_datepicker", "support": { - "source": "https://github.com/php-fig/cache/tree/master" - }, - "time": "2016-08-06T20:24:11+00:00" + "source": "https://git.drupalcode.org/project/jquery_ui_datepicker", + "issues": "https://www.drupal.org/project/issues/jquery_ui_datepicker" + } }, { - "name": "psr/container", - "version": "1.1.2", + "name": "drupal/jquery_ui_slider", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea" + "url": "https://git.drupalcode.org/project/jquery_ui_slider.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea", - "reference": "513e0666f7216c7459170d56df27dfcefe1689ea", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "79b90cf60d45fc33ffdaa84bb2d6563f78a7d3d1" }, "require": { - "php": ">=7.4.0" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" }, - "type": "library", - "autoload": { - "psr-4": { - "Psr\\Container\\": "src/" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1584107817", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "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": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", - "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" - ], + "description": "Provides jQuery UI Slider library.", + "homepage": "https://www.drupal.org/project/jquery_ui_slider", "support": { - "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/1.1.2" - }, - "time": "2021-11-05T16:50:12+00:00" + "source": "https://git.drupalcode.org/project/jquery_ui_slider" + } }, { - "name": "psr/http-factory", + "name": "drupal/jquery_ui_touch_punch", "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/php-fig/http-factory.git", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git", + "reference": "1.0.1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.0.1.zip", + "reference": "1.0.1", + "shasum": "b43aad846b3c5a9501fb15f356144ff1e6bb2e24" }, "require": { - "php": ">=7.0.0", - "psr/http-message": "^1.0" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "^1.0", + "politsin/jquery-ui-touch-punch": "^1.0" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" + "drupal": { + "version": "1.0.1", + "datestamp": "1654879041", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Naveen Valecha", + "homepage": "https://drupal.org/u/naveenvalecha", + "role": "Maintainer" } ], - "description": "Common interfaces for PSR-7 HTTP message factories", + "description": "Provides jQuery UI Touch Punch library.", + "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch", "keywords": [ - "factory", - "http", - "message", - "psr", - "psr-17", - "psr-7", - "request", - "response" + "Drupal", + "jquery_ui_touch_punch" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/master" - }, - "time": "2019-04-30T12:38:16+00:00" + "source": "https://www.drupal.org/project/jquery_ui_touch_punch", + "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch" + } }, { - "name": "psr/http-message", - "version": "1.0.1", + "name": "drupal/lazy", + "version": "3.11.0", "source": { "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + "url": "https://git.drupalcode.org/project/lazy.git", + "reference": "8.x-3.11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", - "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/lazy-8.x-3.11.zip", + "reference": "8.x-3.11", + "shasum": "199429ec56d55d7709312f1844e2202d57b0e836" }, "require": { - "php": ">=5.3.0" + "drupal/core": "^8.8 || ^9", + "ext-json": "*" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } + "suggest": { + "bower-asset/lazysizes": "Lazysizes is a required library for the Lazy module. Must be installed to '/libraries/lazysizes' folder." }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.11", + "datestamp": "1643593568", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Osman Gormus", + "homepage": "https://www.drupal.org/u/osman", + "role": "Maintainer" } ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", + "description": "This module enables lazy-loading images and iframes via text-filters and image-fields. Requires lazysizes library.", + "homepage": "https://www.drupal.org/project/lazy", "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" + "Drupal", + "Lazy-load", + "bLazy", + "lazy", + "lazyload", + "performance" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/master" - }, - "time": "2016-08-06T14:39:51+00:00" + "source": "https://git.drupalcode.org/project/lazy", + "issues": "https://www.drupal.org/project/issues/lazy" + } }, { - "name": "psr/log", - "version": "1.1.4", + "name": "drupal/like_and_dislike", + "version": "1.0.0-beta2", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + "url": "https://git.drupalcode.org/project/like_and_dislike.git", + "reference": "8.x-1.0-beta2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", - "reference": "d49695b909c3b7628b6289db5479a1c204601f11", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/like_and_dislike-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "ea6bf35c0d0980d6410a72df703880f56e1cd48b" }, "require": { - "php": ">=5.3.0" + "drupal/core": "^8.7.7 || ^9.0", + "drupal/votingapi": "^3.0" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" + "drupal": { + "version": "8.x-1.0-beta2", + "datestamp": "1608659080", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Adrian Cid Almaguer (adriancid)", + "homepage": "https://www.drupal.org/u/adriancid", + "email": "adriancid@gmail.com", + "role": "Maintainer" + }, + { + "name": "Sascha Grossenbacher (Berdir)", + "homepage": "https://www.drupal.org/u/berdir", + "role": "Maintainer" + }, + { + "name": "Pedro Rocha (pedrorocha)", + "homepage": "https://www.drupal.org/u/pedrorocha", + "role": "Maintainer" } ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", + "description": "Enable like and dislike widgets and statistics", + "homepage": "https://drupal.org/project/like_and_dislike", "keywords": [ - "log", - "psr", - "psr-3" + "Dislike", + "Drupal", + "Like", + "Votes" ], "support": { - "source": "https://github.com/php-fig/log/tree/1.1.4" - }, - "time": "2021-05-03T11:20:27+00:00" + "source": "https://cgit.drupalcode.org/like_and_dislike", + "issues": "https://drupal.org/project/issues/like_and_dislike" + } }, { - "name": "psy/psysh", - "version": "v0.11.7", + "name": "drupal/mailsystem", + "version": "4.4.0", "source": { "type": "git", - "url": "https://github.com/bobthecow/psysh.git", - "reference": "77fc7270031fbc28f9a7bea31385da5c4855cb7a" + "url": "https://git.drupalcode.org/project/mailsystem.git", + "reference": "8.x-4.4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/77fc7270031fbc28f9a7bea31385da5c4855cb7a", - "reference": "77fc7270031fbc28f9a7bea31385da5c4855cb7a", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.4.zip", + "reference": "8.x-4.4", + "shasum": "49b2e9efd090cdb4a282c7638b1c76d6723c47b6" }, "require": { - "ext-json": "*", - "ext-tokenizer": "*", - "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" - }, - "suggest": { - "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", - "ext-pdo-sqlite": "The doc command requires SQLite to work.", - "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", - "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." + "drupal/core": "^9 || ^10" }, - "bin": [ - "bin/psysh" - ], - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-main": "0.11.x-dev" - } - }, - "autoload": { - "files": [ - "src/functions.php" - ], - "psr-4": { - "Psy\\": "src/" + "drupal": { + "version": "8.x-4.4", + "datestamp": "1657576306", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Les Lim", + "homepage": "https://www.drupal.org/user/84263" + }, + { + "name": "Manuel Garcia", + "homepage": "https://www.drupal.org/user/213194" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + }, + { + "name": "Nafes", + "homepage": "https://www.drupal.org/user/2489926" + }, + { + "name": "pillarsdotnet", + "homepage": "https://www.drupal.org/user/36148" } ], - "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", - "keywords": [ - "REPL", - "console", - "interactive", - "shell" - ], + "description": "Mail System", + "homepage": "https://www.drupal.org/project/mailsystem", "support": { - "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.11.7" - }, - "time": "2022-07-07T13:49:11+00:00" + "source": "https://git.drupalcode.org/project/mailsystem" + } }, { - "name": "ralouphie/getallheaders", - "version": "3.0.3", + "name": "drupal/message", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" + "url": "https://git.drupalcode.org/project/message.git", + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/message-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "f1494d8c482840b01f8d1dcc4ed572d5844a3873" }, "require": { - "php": ">=5.6" + "drupal/core": "^8 || ^9" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" + "drupal/token": "*" }, - "type": "library", - "autoload": { - "files": [ - "src/getallheaders.php" - ] + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1607017386", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0+" ], "authors": [ { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" + "name": "Grayside", + "homepage": "https://www.drupal.org/user/346868" + }, + { + "name": "RoySegall", + "homepage": "https://www.drupal.org/user/1812910" + }, + { + "name": "amitaibu", + "homepage": "https://www.drupal.org/user/57511" + }, + { + "name": "itamar", + "homepage": "https://www.drupal.org/user/1757910" + }, + { + "name": "jhedstrom", + "homepage": "https://www.drupal.org/user/208732" } ], - "description": "A polyfill for getallheaders.", + "description": "Message", + "homepage": "https://www.drupal.org/project/message", "support": { - "issues": "https://github.com/ralouphie/getallheaders/issues", - "source": "https://github.com/ralouphie/getallheaders/tree/develop" - }, - "time": "2019-03-08T08:55:37+00:00" + "source": "https://git.drupalcode.org/project/message" + } }, { - "name": "stack/builder", - "version": "v1.0.6", + "name": "drupal/message_notify", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/stackphp/builder.git", - "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c" + "url": "https://git.drupalcode.org/project/message_notify.git", + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", - "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/message_notify-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "10e91b84c817ef2c21590d273487c5259d1e7a6c" }, "require": { - "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" + "drupal/core": "^8 || ^9", + "drupal/message": "~1.0" }, "require-dev": { - "phpunit/phpunit": "~8.0", - "symfony/routing": "^5.0" + "drupal/message": "*", + "drupal/message_example": "*" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "psr-0": { - "Stack": "src" + "drupal": { + "version": "8.x-1.2", + "datestamp": "1603382083", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0+" ], "authors": [ { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" + "name": "RoySegall", + "homepage": "https://www.drupal.org/user/1812910" + }, + { + "name": "amitaibu", + "homepage": "https://www.drupal.org/user/57511" + }, + { + "name": "jhedstrom", + "homepage": "https://www.drupal.org/user/208732" } ], - "description": "Builder for stack middleware based on HttpKernelInterface.", - "keywords": [ - "stack" - ], + "description": "Notification framework for the Message module", + "homepage": "https://drupal.org/project/message_notify", "support": { - "issues": "https://github.com/stackphp/builder/issues", - "source": "https://github.com/stackphp/builder/tree/v1.0.6" - }, - "time": "2020-01-30T12:17:27+00:00" + "source": "https://cgit.drupalcode.org/message_notify", + "issues": "https://drupal.org/project/issues/message_notify", + "irc": "irc://irc.freenode.org/drupal" + } }, { - "name": "symfony-cmf/routing", - "version": "2.3.4", + "name": "drupal/metatag", + "version": "1.19.0", "source": { "type": "git", - "url": "https://github.com/symfony-cmf/Routing.git", - "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b" + "url": "https://git.drupalcode.org/project/metatag.git", + "reference": "8.x-1.19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/bbcdf2f6301d740454ba9ebb8adaefd436c36a6b", - "reference": "bbcdf2f6301d740454ba9ebb8adaefd436c36a6b", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.19.zip", + "reference": "8.x-1.19", + "shasum": "d70f59c034e971885ed4969a11bb392f6ab447ee" }, "require": { - "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" + "drupal/core": "^9", + "drupal/token": "^1.0", + "php": ">=7.0" }, "require-dev": { - "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" + "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", + "mpyw/phpunit-patch-serializable-comparison": "*" }, - "suggest": { - "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (^4.4 || ^5.0)" - }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Cmf\\Component\\Routing\\": "src/" + "drupal": { + "version": "8.x-1.19", + "datestamp": "1641496014", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Symfony CMF Community", - "homepage": "https://github.com/symfony-cmf/Routing/contributors" + "name": "See contributors", + "homepage": "https://www.drupal.org/node/640498/committers", + "role": "Developer" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" } ], - "description": "Extends the Symfony routing component for dynamic routes and chaining several routers", - "homepage": "http://cmf.symfony.com", + "description": "Manage meta tags for all entities.", + "homepage": "https://www.drupal.org/project/metatag", "keywords": [ - "database", - "routing" + "Drupal", + "seo" ], "support": { - "issues": "https://github.com/symfony-cmf/Routing/issues", - "source": "https://github.com/symfony-cmf/Routing/tree/2.3.4" - }, - "time": "2021-11-08T16:33:10+00:00" + "source": "https://git.drupalcode.org/project/metatag", + "issues": "https://www.drupal.org/project/issues/metatag", + "docs": "https://www.drupal.org/docs/8/modules/metatag" + } }, { - "name": "symfony/console", - "version": "v4.4.44", + "name": "drupal/override_node_options", + "version": "2.6.0", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "c35fafd7f12ebd6f9e29c95a370df7f1fb171a40" + "url": "https://git.drupalcode.org/project/override_node_options.git", + "reference": "8.x-2.6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/c35fafd7f12ebd6f9e29c95a370df7f1fb171a40", - "reference": "c35fafd7f12ebd6f9e29c95a370df7f1fb171a40", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/override_node_options-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "bb164546d4d40e183a92173e44e7fd75cffdee38" }, "require": { - "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|2.0" - }, - "require-dev": { - "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", - "symfony/event-dispatcher": "", - "symfony/lock": "", - "symfony/process": "" + "drupal/core": "^8 || ^9" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Console\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.6", + "datestamp": "1606950754", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0+" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Oliver Davies", + "homepage": "https://www.drupal.org/user/381388", + "email": "oliver@oliverdavies.uk" } ], - "description": "Eases the creation of beautiful and testable command line interfaces", - "homepage": "https://symfony.com", + "description": "Allows permissions to be set on each node option such as published and authoring information.", + "homepage": "https://www.drupal.org/project/override_node_options", "support": { - "source": "https://github.com/symfony/console/tree/v4.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": "2022-07-20T09:59:04+00:00" + "source": "https://git.drupalcode.org/project/override_node_options" + } }, { - "name": "symfony/debug", - "version": "v4.4.44", + "name": "drupal/paragraphs", + "version": "1.14.0", "source": { "type": "git", - "url": "https://github.com/symfony/debug.git", - "reference": "1a692492190773c5310bc7877cb590c04c2f05be" + "url": "https://git.drupalcode.org/project/paragraphs.git", + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be", - "reference": "1a692492190773c5310bc7877cb590c04c2f05be", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "caa1a945dcfd058c4937c4907743eed970ce14cc" }, "require": { - "php": ">=7.1.3", - "psr/log": "^1|^2|^3" - }, - "conflict": { - "symfony/http-kernel": "<3.4" + "drupal/core": "^9.2", + "drupal/entity_reference_revisions": "~1.3" }, "require-dev": { - "symfony/http-kernel": "^3.4|^4.0|^5.0" + "drupal/block_field": "~1.0", + "drupal/ctools": "3.x-dev", + "drupal/diff": "~1.0", + "drupal/entity_browser": "2.x-dev", + "drupal/entity_usage": "2.x-dev", + "drupal/field_group": "3.x-dev", + "drupal/inline_entity_form": "~1.0", + "drupal/paragraphs-paragraphs_library": "*", + "drupal/replicate": "~1.0", + "drupal/search_api": "1.x-dev", + "drupal/search_api_db": "*" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Debug\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "suggest": { + "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module" }, - "notification-url": "https://packagist.org/downloads/", + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.14", + "datestamp": "1650520869", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools to ease debugging PHP code", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/debug/tree/v4.4.44" - }, - "funding": [ + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Primsi", + "homepage": "https://www.drupal.org/user/282629" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "jstoller", + "homepage": "https://www.drupal.org/user/99012" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" } ], - "abandoned": "symfony/error-handler", - "time": "2022-07-28T16:29:46+00:00" + "description": "Enables the creation of Paragraphs entities.", + "homepage": "https://www.drupal.org/project/paragraphs", + "support": { + "source": "https://git.drupalcode.org/project/paragraphs" + } }, { - "name": "symfony/dependency-injection", - "version": "v4.4.44", + "name": "drupal/pathauto", + "version": "1.9.0", "source": { "type": "git", - "url": "https://github.com/symfony/dependency-injection.git", - "reference": "25502a57182ba1e15da0afd64c975cae4d0a1471" + "url": "https://git.drupalcode.org/project/pathauto.git", + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/25502a57182ba1e15da0afd64c975cae4d0a1471", - "reference": "25502a57182ba1e15da0afd64c975cae4d0a1471", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "f075ebff595c9b8b62333d65ad29020330e0ea9d" }, "require": { - "php": ">=7.1.3", - "psr/container": "^1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1.6|^2" - }, - "conflict": { - "symfony/config": "<4.3|>=5.0", - "symfony/finder": "<3.4", - "symfony/proxy-manager-bridge": "<3.4", - "symfony/yaml": "<4.4.26" - }, - "provide": { - "psr/container-implementation": "1.0", - "symfony/service-implementation": "1.0|2.0" - }, - "require-dev": { - "symfony/config": "^4.3", - "symfony/expression-language": "^3.4|^4.0|^5.0", - "symfony/yaml": "^4.4.26|^5.0" + "drupal/core": "^8.8 || ^9", + "drupal/ctools": "*", + "drupal/token": "*" }, "suggest": { - "symfony/config": "", - "symfony/expression-language": "For using expressions in service container configuration", - "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", - "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", - "symfony/yaml": "" + "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability." }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\DependencyInjection\\": "" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.9", + "datestamp": "1644822949", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } }, - "exclude-from-classmap": [ - "/Tests/" - ] + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "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/v4.4.44" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "Freso", + "homepage": "https://www.drupal.org/user/27504" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" } ], - "time": "2022-07-20T09:59:04+00:00" + "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.", + "homepage": "https://www.drupal.org/project/pathauto", + "support": { + "source": "https://cgit.drupalcode.org/pathauto", + "issues": "https://www.drupal.org/project/issues/pathauto", + "documentation": "https://www.drupal.org/docs/8/modules/pathauto" + } }, { - "name": "symfony/deprecation-contracts", - "version": "v2.5.2", + "name": "drupal/private_message", + "version": "3.0.0-beta2", "source": { "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66" + "url": "https://git.drupalcode.org/project/private_message.git", + "reference": "3.0.0-beta2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66", - "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/private_message-3.0.0-beta2.zip", + "reference": "3.0.0-beta2", + "shasum": "218e3d1e1eaba4103fbf16136e86b009ac512a91" }, "require": { + "drupal/core": "^8.8.0 || ^9.0", + "drupal/message": "^1.0", + "drupal/message_notify": "^1.0", "php": ">=7.1" }, - "type": "library", + "require-dev": { + "drupal/message_notify": "*" + }, + "suggest": { + "drush/drush": "^9 || ^10" + }, + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-main": "2.5-dev" + "drupal": { + "version": "3.0.0-beta2", + "datestamp": "1645433297", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } } }, - "autoload": { - "files": [ - "function.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Jay Friendly (Jaypan)", + "homepage": "https://www.jaypan.com", + "role": "Maintainer" }, { - "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.2" - }, - "funding": [ + "name": "anmolgoyal74", + "homepage": "https://www.drupal.org/user/3560428" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "artem_sylchuk", + "homepage": "https://www.drupal.org/user/2511902" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "edutrul", + "homepage": "https://www.drupal.org/user/1621444" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "phjou", + "homepage": "https://www.drupal.org/user/3344054" } ], - "time": "2022-01-02T09:53:40+00:00" + "description": "A private message system for users to send messages to each other.", + "homepage": "https://drupal.org/project/private_message", + "support": { + "source": "https://git.drupalcode.org/project/private_message", + "issues": "https://drupal.org/project/issues/private_message" + } }, { - "name": "symfony/error-handler", - "version": "v4.4.44", + "name": "drupal/profile", + "version": "1.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/error-handler.git", - "reference": "be731658121ef2d8be88f3a1ec938148a9237291" + "url": "https://git.drupalcode.org/project/profile.git", + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291", - "reference": "be731658121ef2d8be88f3a1ec938148a9237291", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "e2f0b76ae0cfb312259a956f7140cec261e543b1" }, "require": { - "php": ">=7.1.3", - "psr/log": "^1|^2|^3", - "symfony/debug": "^4.4.5", - "symfony/var-dumper": "^4.4|^5.0" + "drupal/core": "^8.8 || ^9", + "drupal/entity": "^1.0-rc2" }, "require-dev": { - "symfony/http-kernel": "^4.4|^5.0", - "symfony/serializer": "^4.4|^5.0" + "drupal/token": "^1.7" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\ErrorHandler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.3", + "datestamp": "1628099894", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" }, { - "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.44" - }, - "funding": [ + "name": "daggerhart", + "homepage": "https://www.drupal.org/user/167806" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "pcambra", + "homepage": "https://www.drupal.org/user/122101" } ], - "time": "2022-07-28T16:29:46+00:00" + "description": "Provides configurable user profiles.", + "homepage": "http://drupal.org/project/profile", + "support": { + "source": "https://git.drupalcode.org/project/profile" + } }, { - "name": "symfony/event-dispatcher", - "version": "v4.4.44", + "name": "drupal/r4032login", + "version": "2.1.1", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a" + "url": "https://git.drupalcode.org/project/r4032login.git", + "reference": "2.1.1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a", - "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/r4032login-2.1.1.zip", + "reference": "2.1.1", + "shasum": "48fbf333b70090975cd810b116da40d69cb1299c" }, "require": { - "php": ">=7.1.3", - "symfony/event-dispatcher-contracts": "^1.1", - "symfony/polyfill-php80": "^1.16" + "drupal/core": "^9" }, - "conflict": { - "symfony/dependency-injection": "<3.4" + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.1", + "datestamp": "1648949481", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "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", - "autoload": { - "psr-4": { - "Symfony\\Component\\EventDispatcher\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Bevan", + "homepage": "https://www.drupal.org/user/49989" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44" - }, - "funding": [ + "name": "Grayle", + "homepage": "https://www.drupal.org/user/3145497" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Nixou", + "homepage": "https://www.drupal.org/user/2304734" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "Sk8erPeter", + "homepage": "https://www.drupal.org/user/1441344" + }, + { + "name": "bdone", + "homepage": "https://www.drupal.org/user/687670" + }, + { + "name": "deekayen", + "homepage": "https://www.drupal.org/user/972" + }, + { + "name": "lotyrin", + "homepage": "https://www.drupal.org/user/216580" + }, + { + "name": "ms2011", + "homepage": "https://www.drupal.org/user/108440" + }, + { + "name": "pwolanin", + "homepage": "https://www.drupal.org/user/49851" + }, + { + "name": "shrop", + "homepage": "https://www.drupal.org/user/14767" } ], - "time": "2022-07-20T09:59:04+00:00" + "description": "Redirect anonymous users from 403 Access Denied pages to the /user/login page.", + "homepage": "https://www.drupal.org/project/r4032login", + "support": { + "source": "https://git.drupalcode.org/project/r4032login" + } }, { - "name": "symfony/event-dispatcher-contracts", - "version": "v1.1.13", + "name": "drupal/redirect", + "version": "1.7.0", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e" + "url": "https://git.drupalcode.org/project/redirect.git", + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e", - "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "013b2541a5ef0cf423a3caa1ae89cc5866504877" }, "require": { - "php": ">=7.1.3" - }, - "suggest": { - "psr/event-dispatcher": "", - "symfony/event-dispatcher-implementation": "" + "drupal/core": "^8.8 || ^9" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-main": "1.1-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" + "drupal": { + "version": "8.x-1.7", + "datestamp": "1639380488", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "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.13" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "pifagor", + "homepage": "https://www.drupal.org/user/2375692" } ], - "time": "2022-01-02T09:41:36+00:00" + "description": "Allows users to redirect from old URLs to new URLs.", + "homepage": "https://www.drupal.org/project/redirect", + "support": { + "source": "https://git.drupalcode.org/project/redirect" + } }, { - "name": "symfony/filesystem", - "version": "v4.4.42", + "name": "drupal/role_delegation", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" + "url": "https://git.drupalcode.org/project/role_delegation.git", + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", - "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.16" + "drupal/core": "^9.2 || ^10" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Filesystem\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.2", + "datestamp": "1644487627", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Jeroen Tubex", + "homepage": "https://www.drupal.org/u/jeroent", + "role": "Maintainer" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "benjy", + "homepage": "https://www.drupal.org/user/1852732" } ], - "description": "Provides basic utilities for the filesystem", - "homepage": "https://symfony.com", + "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.", + "homepage": "http://drupal.org/project/role_delegation", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.42" - }, - "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-05-20T08:49:14+00:00" + "source": "https://git.drupalcode.org/project/role_delegation", + "issues": "http://drupal.org/project/role_delegation" + } }, { - "name": "symfony/finder", - "version": "v4.4.44", + "name": "drupal/search_api", + "version": "1.23.0", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "66bd787edb5e42ff59d3523f623895af05043e4f" + "url": "https://git.drupalcode.org/project/search_api.git", + "reference": "8.x-1.23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f", - "reference": "66bd787edb5e42ff59d3523f623895af05043e4f", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip", + "reference": "8.x-1.23", + "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "drupal/core": "^8.8 || ^9" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Finder\\": "" + "conflict": { + "drupal/search_api_solr": "2.* || 3.0 || 3.1" + }, + "require-dev": { + "drupal/language_fallback_fix": "@dev", + "drupal/search_api_autocomplete": "@dev", + "drupal/search_api_db": "*" + }, + "suggest": { + "drupal/facets": "Adds the ability to create faceted searches.", + "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.", + "drupal/search_api_solr": "Adds support for using Apache Solr as a backend." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.23", + "datestamp": "1642935837", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } }, - "exclude-from-classmap": [ - "/Tests/" - ] + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Finds files and directories via an intuitive fluent interface", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/finder/tree/v4.4.44" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Thomas Seidl", + "homepage": "https://www.drupal.org/u/drunken-monkey" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "Nick Veenhof", + "homepage": "https://www.drupal.org/u/nick_vh" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/790418/committers" } ], - "time": "2022-07-29T07:35:46+00:00" + "description": "Provides a generic framework for modules offering search capabilities.", + "homepage": "https://www.drupal.org/project/search_api", + "support": { + "source": "https://git.drupalcode.org/project/search_api", + "issues": "https://www.drupal.org/project/issues/search_api", + "irc": "irc://irc.freenode.org/drupal-search-api" + } }, { - "name": "symfony/http-client-contracts", - "version": "v2.5.2", + "name": "drupal/select2", + "version": "1.13.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70" + "url": "https://git.drupalcode.org/project/select2.git", + "reference": "8.x-1.13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", - "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/select2-8.x-1.13.zip", + "reference": "8.x-1.13", + "shasum": "c02f8591104310a6395788c33e44dfab5ec6a2c1" }, "require": { - "php": ">=7.2.5" + "drupal/core": "^8.8 || ^9" }, - "suggest": { - "symfony/http-client-implementation": "" + "require-dev": { + "drupal/better_exposed_filters": "^5.0", + "drupal/facets": "^1.5", + "drupal/form_options_attributes": "^1.2", + "drupal/search_api": "^1.17" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "drupal": { + "version": "8.x-1.13", + "datestamp": "1614609946", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\HttpClient\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Christian Fritsch", + "homepage": "https://www.drupal.org/user/2103716", + "email": "christian.fritsch@burda.com" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "thunderbot", + "homepage": "https://www.drupal.org/user/3511180" } ], - "description": "Generic abstractions related to HTTP clients", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], + "description": "Integration with the select2 JavaScript library.", + "homepage": "https://www.drupal.org/project/select2", "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2" - }, - "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-04-12T15:48:08+00:00" + "source": "https://git.drupalcode.org/project/select2" + } }, { - "name": "symfony/http-foundation", - "version": "v4.4.44", + "name": "drupal/shariff", + "version": "1.7.0", "source": { "type": "git", - "url": "https://github.com/symfony/http-foundation.git", - "reference": "9bc83c2f78949fc64503134a3139a7b055890d06" + "url": "https://git.drupalcode.org/project/shariff.git", + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9bc83c2f78949fc64503134a3139a7b055890d06", - "reference": "9bc83c2f78949fc64503134a3139a7b055890d06", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/shariff-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "ec1ff63201e7694191bacaf82e67258709140776" }, "require": { - "php": ">=7.1.3", - "symfony/mime": "^4.3|^5.0", - "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php80": "^1.16" + "drupal/core": "^8 || ^9" }, - "require-dev": { - "predis/predis": "~1.0", - "symfony/expression-language": "^3.4|^4.0|^5.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\HttpFoundation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.7", + "datestamp": "1600424774", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0+" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Grienauer", + "homepage": "https://www.drupal.org/user/80801" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Defines an object-oriented layer for the HTTP specification", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/http-foundation/tree/v4.4.44" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Nebel54", + "homepage": "https://www.drupal.org/user/1781874" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "criz", + "homepage": "https://www.drupal.org/user/71764" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "sboehlke", + "homepage": "https://www.drupal.org/user/2018454" } ], - "time": "2022-07-20T09:59:04+00:00" + "description": "Integrating Shariff library and providing some options.", + "homepage": "https://www.drupal.org/project/shariff", + "keywords": [ + "Drupal", + "Shariff" + ], + "support": { + "source": "https://drupal.org/project/shariff", + "issues": "https://drupal.org/project/issues/shariff" + } }, { - "name": "symfony/http-kernel", - "version": "v4.4.44", + "name": "drupal/social_tour", + "version": "1.0.0-alpha2", "source": { "type": "git", - "url": "https://github.com/symfony/http-kernel.git", - "reference": "9e444442334fae9637ef3209bc2abddfef49e714" + "url": "https://git.drupalcode.org/project/social_tour.git", + "reference": "1.0.0-alpha2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9e444442334fae9637ef3209bc2abddfef49e714", - "reference": "9e444442334fae9637ef3209bc2abddfef49e714", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/social_tour-1.0.0-alpha2.zip", + "reference": "1.0.0-alpha2", + "shasum": "e54d4546158e222b027d0de208ada49a5bf0bee3" }, "require": { - "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/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|2.0" - }, - "require-dev": { - "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": "" + "drupal/core": "^9" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\HttpKernel\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.0-alpha2", + "datestamp": "1648832308", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Ressinel", + "homepage": "https://www.drupal.org/user/3536075" } ], - "description": "Provides a structured process for converting a Request into a Response", - "homepage": "https://symfony.com", + "description": "The tour specific feature settings for Open Social.", + "homepage": "https://www.drupal.org/project/social_tour", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v4.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": "2022-07-29T12:23:38+00:00" + "source": "https://git.drupalcode.org/project/social_tour" + } }, { - "name": "symfony/mime", - "version": "v5.4.11", + "name": "drupal/socialbase", + "version": "2.2.3", "source": { "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830" + "url": "https://git.drupalcode.org/project/socialbase.git", + "reference": "2.2.3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/3cd175cdcdb6db2e589e837dd46aff41027d9830", - "reference": "3cd175cdcdb6db2e589e837dd46aff41027d9830", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/socialbase-2.2.3.zip", + "reference": "2.2.3", + "shasum": "a769e6bbc768284b87f9820435b6cb6b71bd0c71" }, "require": { - "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" + "drupal/bootstrap": "3.23", + "drupal/core": "^8.8 || ^9" }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Mime\\": "" + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "2.2.3", + "datestamp": "1655793264", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } }, - "exclude-from-classmap": [ - "/Tests/" - ] + "patches": { + "drupal/bootstrap": { + "'Show row weight' text is miissing": "https://www.drupal.org/files/issues/2021-08-24/bootstrap-toggle_undefined-3209773-8.patch" + } + } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Agami4", + "homepage": "https://www.drupal.org/user/3061011" }, { - "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.11" - }, - "funding": [ + "name": "Kingdutch", + "homepage": "https://www.drupal.org/user/1868952" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "navneet0693", + "homepage": "https://www.drupal.org/user/3200545" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "Open Social", + "homepage": "https://www.drupal.org/user/272162" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "Ressinel", + "homepage": "https://www.drupal.org/user/3536075" + }, + { + "name": "robertragas", + "homepage": "https://www.drupal.org/user/2723261" + }, + { + "name": "ronaldtebrake", + "homepage": "https://www.drupal.org/user/2314038" + }, + { + "name": "tbsiqueira", + "homepage": "https://www.drupal.org/user/2822445" } ], - "time": "2022-07-20T11:34:24+00:00" + "description": "Base theme for Open social installations.", + "homepage": "https://www.drupal.org/project/socialbase", + "support": { + "source": "https://git.drupalcode.org/project/socialbase" + } }, { - "name": "symfony/polyfill-ctype", - "version": "v1.25.0", + "name": "drupal/socialblue", + "version": "2.2.4", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "30885182c981ab175d4d034db0f6f469898070ab" + "url": "https://git.drupalcode.org/project/socialblue.git", + "reference": "2.2.4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab", - "reference": "30885182c981ab175d4d034db0f6f469898070ab", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/socialblue-2.2.4.zip", + "reference": "2.2.4", + "shasum": "ff91c7eac3a90ff9ebafada32d5d64d543291e05" }, "require": { - "php": ">=7.1" - }, - "provide": { - "ext-ctype": "*" - }, - "suggest": { - "ext-ctype": "For best performance" + "drupal/core": "^8.8 || ^9", + "drupal/socialbase": "2.2.3" }, - "type": "library", + "type": "drupal-theme", "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\\Ctype\\": "" + "drupal": { + "version": "2.2.4", + "datestamp": "1655793809", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" + "name": "Agami4", + "homepage": "https://www.drupal.org/user/3061011" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], - "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.25.0" - }, - "funding": [ + "name": "Kingdutch", + "homepage": "https://www.drupal.org/user/1868952" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Open Social", + "homepage": "https://www.drupal.org/user/272162" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "Ressinel", + "homepage": "https://www.drupal.org/user/3536075" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "navneet0693", + "homepage": "https://www.drupal.org/user/3200545" + }, + { + "name": "robertragas", + "homepage": "https://www.drupal.org/user/2723261" + }, + { + "name": "ronaldtebrake", + "homepage": "https://www.drupal.org/user/2314038" + }, + { + "name": "tbsiqueira", + "homepage": "https://www.drupal.org/user/2822445" } ], - "time": "2021-10-20T20:35:02+00:00" + "description": "Demo theme for Open social installations.", + "homepage": "https://www.drupal.org/project/socialblue", + "support": { + "source": "https://git.drupalcode.org/project/socialblue" + } }, { - "name": "symfony/polyfill-iconv", - "version": "v1.25.0", + "name": "drupal/swiftmailer", + "version": "2.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40" + "url": "https://git.drupalcode.org/project/swiftmailer.git", + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/f1aed619e28cb077fc83fac8c4c0383578356e40", - "reference": "f1aed619e28cb077fc83fac8c4c0383578356e40", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/swiftmailer-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "54269f7ceb6364e4fb953cf67b52b555d748d09c" }, "require": { - "php": ">=7.1" - }, - "provide": { - "ext-iconv": "*" - }, - "suggest": { - "ext-iconv": "For best performance" + "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": "library", + "type": "drupal-module", "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\\Iconv\\": "" + "drupal": { + "version": "8.x-2.2", + "datestamp": "1639141915", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "AdamPS", + "homepage": "https://www.drupal.org/user/2650563" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Iconv extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "iconv", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.25.0" - }, - "funding": [ + "name": "Anybody", + "homepage": "https://www.drupal.org/user/291091" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "B-Prod", + "homepage": "https://www.drupal.org/user/407852" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "sbrattla", + "homepage": "https://www.drupal.org/user/53422" + }, + { + "name": "webflo", + "homepage": "https://www.drupal.org/user/254778" } ], - "time": "2022-01-04T09:04:05+00:00" + "description": "Swiftmailer", + "homepage": "https://www.drupal.org/project/swiftmailer", + "support": { + "source": "https://git.drupalcode.org/project/swiftmailer" + } }, { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.26.0", + "name": "drupal/token", + "version": "1.10.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "433d05519ce6990bf3530fba6957499d327395c2" + "url": "https://git.drupalcode.org/project/token.git", + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2", - "reference": "433d05519ce6990bf3530fba6957499d327395c2", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "8b81224ab0420221b292e8d3b66d0da726317400" }, "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-intl": "For best performance" + "drupal/core": "^8.8 || ^9" }, - "type": "library", + "type": "drupal-module", "extra": { - "branch-alias": { - "dev-main": "1.26-dev" + "drupal": { + "version": "8.x-1.10", + "datestamp": "1638619775", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" }, { - "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.26.0" - }, - "funding": [ + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" } ], - "time": "2022-05-24T11:49:31+00:00" + "description": "Provides a user interface for the Token API, some missing core tokens.", + "homepage": "https://www.drupal.org/project/token", + "support": { + "source": "https://git.drupalcode.org/project/token" + } }, { - "name": "symfony/polyfill-intl-idn", - "version": "v1.25.0", + "name": "drupal/tome", + "version": "1.7.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "749045c69efb97c70d25d7463abba812e91f3a44" + "url": "https://git.drupalcode.org/project/tome.git", + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/749045c69efb97c70d25d7463abba812e91f3a44", - "reference": "749045c69efb97c70d25d7463abba812e91f3a44", - "shasum": "" + "url": "https://ftp.drupal.org/files/projects/tome-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "be2486b47330e4c5641ad57b509285ed8aa53982" }, "require": { - "php": ">=7.1", - "symfony/polyfill-intl-normalizer": "^1.10", - "symfony/polyfill-php72": "^1.10" + "drupal/core": "^8 || ^9", + "drupal/tome_static": "*", + "drupal/tome_sync": "*" }, - "suggest": { - "ext-intl": "For best performance" + "require-dev": { + "drupal/ctools": "*", + "drupal/pathauto": "*", + "drupal/redirect": "*", + "drupal/token": "*", + "drupal/tome_base": "*", + "drupal/tome_static": "*", + "drupal/tome_sync": "*" }, - "type": "library", + "type": "drupal-module", "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\\Idn\\": "" + "drupal": { + "version": "8.x-1.7", + "datestamp": "1650988449", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } } }, - "notification-url": "https://packagist.org/downloads/", + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" - }, - { - "name": "Trevor Rowbotham", - "email": "trevor.rowbotham@pm.me" + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "samuel.mortenson", + "homepage": "https://www.drupal.org/user/2582268" } ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "idn", - "intl", - "polyfill", - "portable", - "shim" + "description": "Everything you need to do everything statically.", + "homepage": "https://www.drupal.org/project/tome", + "support": { + "source": "https://git.drupalcode.org/project/tome" + } + }, + { + "name": "drupal/tome_base", + "version": "1.7.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/tome": "^1" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.7", + "datestamp": "1650988449", + "security-coverage": { + "status": "covered", + "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" + }, + { + "name": "samuel.mortenson", + "homepage": "https://www.drupal.org/user/2582268" + } + ], + "description": "Contains shared services and traits between Tome Sync and Tome Static.", + "homepage": "https://www.drupal.org/project/tome", + "support": { + "source": "https://git.drupalcode.org/project/tome" + } + }, + { + "name": "drupal/tome_static", + "version": "1.7.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/tome": "^1", + "drupal/tome_base": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.7", + "datestamp": "1650988449", + "security-coverage": { + "status": "covered", + "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" + }, + { + "name": "samuel.mortenson", + "homepage": "https://www.drupal.org/user/2582268" + } + ], + "description": "Exports an entire Drupal site to static HTML.", + "homepage": "https://www.drupal.org/project/tome", + "support": { + "source": "https://git.drupalcode.org/project/tome" + } + }, + { + "name": "drupal/tome_sync", + "version": "1.7.0", + "require": { + "drupal/core": "^8 || ^9", + "drupal/tome": "^1", + "drupal/tome_base": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "8.x-1.7", + "datestamp": "1650988449", + "security-coverage": { + "status": "covered", + "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" + }, + { + "name": "samuel.mortenson", + "homepage": "https://www.drupal.org/user/2582268" + } + ], + "description": "Allows Drupal to installed from flat files and keeps content in sync.", + "homepage": "https://www.drupal.org/project/tome", + "support": { + "source": "https://git.drupalcode.org/project/tome" + } + }, + { + "name": "drupal/typed_data", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/typed_data.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/typed_data-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "73d079f29c7a5679e0db3e28ae888e8cce2f1335" + }, + "require": { + "drupal/core": "^8.8.2 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1635839873", + "security-coverage": { + "status": "not-covered", + "message": "Beta 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-or-later" + ], + "authors": [ + { + "name": "TR", + "homepage": "https://www.drupal.org/user/202830" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + } + ], + "description": "Extends the core Typed Data API with new APIs and features.", + "homepage": "https://www.drupal.org/project/typed_data", + "support": { + "source": "https://git.drupalcode.org/project/typed_data", + "issues": "https://www.drupal.org/project/issues/typed_data" + } + }, + { + "name": "drupal/ultimate_cron", + "version": "2.0.0-alpha5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ultimate_cron.git", + "reference": "8.x-2.0-alpha5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha5.zip", + "reference": "8.x-2.0-alpha5", + "shasum": "0f10464fff29eca89024e7afa5b6d8d07bd52f75" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.0-alpha5", + "datestamp": "1600928948", + "security-coverage": { + "status": "not-covered", + "message": "Alpha 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+" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Dane Powell", + "homepage": "https://www.drupal.org/user/339326" + }, + { + "name": "Primsi", + "homepage": "https://www.drupal.org/user/282629" + }, + { + "name": "arnested", + "homepage": "https://www.drupal.org/user/245635" + }, + { + "name": "gielfeldt", + "homepage": "https://www.drupal.org/user/366993" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + } + ], + "description": "Ultimate cron", + "homepage": "https://www.drupal.org/project/ultimate_cron", + "support": { + "source": "https://git.drupalcode.org/project/ultimate_cron" + } + }, + { + "name": "drupal/update_helper", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/update_helper.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/update_helper-2.0.0.zip", + "reference": "2.0.0", + "shasum": "1c442d26f316f59ae790d126b1148309468e8d78" + }, + "require": { + "chi-teck/drupal-code-generator": "^1.32.0", + "drupal/config_update": "^1.5", + "drupal/core": "^8 || ^9", + "symfony/console": "~3.4.0 || ^4.4" + }, + "require-dev": { + "drupal/checklistapi": "~1.0", + "drush/drush": "~10.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1591777960", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Mladen Todorovic", + "homepage": "https://www.drupal.org/user/157725", + "email": "mladen.todorovic@burda.com" + }, + { + "name": "Christian Fritsch", + "homepage": "https://www.drupal.org/user/2103716", + "email": "christian.fritsch@burda.com" + }, + { + "name": "Daniel Bosen", + "homepage": "https://www.drupal.org/user/404865", + "email": "daniel.bosen@burda.com" + }, + { + "name": "Volker Killesreiter", + "homepage": "https://www.drupal.org/user/3453049", + "email": "killesreiter@burda.com" + }, + { + "name": "thunderbot", + "homepage": "https://www.drupal.org/user/3511180" + } + ], + "description": "This module offers supporting functionalities to make configuration updates easier.", + "homepage": "https://www.drupal.org/project/update_helper", + "support": { + "source": "https://git.drupalcode.org/project/update_helper" + } + }, + { + "name": "drupal/url_embed", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/url_embed.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/url_embed-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "4763b90b59c865a2293c59a15aef1a576e18ab35" + }, + "require": { + "drupal/core": "^8.8 || ^9", + "drupal/embed": "^1.4", + "embed/embed": "^3.4" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1593694012", + "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": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "Devin Carlson", + "homepage": "https://www.drupal.org/user/290182" + }, + { + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" + }, + { + "name": "cs_shadow", + "homepage": "https://www.drupal.org/user/2828287" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + } + ], + "description": "Allows embedding of URLs using the Drupal 8 WYSIWYG or link fields.", + "homepage": "https://www.drupal.org/project/url_embed", + "support": { + "source": "https://git.drupalcode.org/project/url_embed", + "issues": "https://www.drupal.org/project/issues/url_embed", + "irc": "irc://irc.freenode.org/drupal-media" + } + }, + { + "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/views_bulk_operations", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/views_bulk_operations.git", + "reference": "4.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.1.0.zip", + "reference": "4.1.0", + "shasum": "acb6891afda4f973f043155e4f53e1b7d8ffe63d" + }, + "require": { + "drupal/core": "^8.8 || ^9" + }, + "require-dev": { + "drush/drush": "^10" + }, + "suggest": { + "drush/drush": "^9 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.1.0", + "datestamp": "1646055586", + "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": "Marcin Grabias", + "homepage": "https://www.drupal.org/u/graber" + }, + { + "name": "Jon Pugh", + "homepage": "https://www.drupal.org/user/17028" + }, + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "infojunkie", + "homepage": "https://www.drupal.org/user/48424" + }, + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + } + ], + "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.", + "homepage": "https://www.drupal.org/project/views_bulk_operations", + "support": { + "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x", + "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x", + "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo" + } + }, + { + "name": "drupal/views_infinite_scroll", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/views_infinite_scroll.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/views_infinite_scroll-2.0.0.zip", + "reference": "2.0.0", + "shasum": "9e1bc62131c8577609f2b2c520d749ac0a9b4142" + }, + "require": { + "drupal/core": "^9.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1641878549", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Bobík", + "homepage": "https://www.drupal.org/user/123612" + }, + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/user/3580850" + }, + { + "name": "Remon", + "homepage": "https://www.drupal.org/user/143827" + }, + { + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" + } + ], + "description": "A pager which allows an infinite scroll effect for views.", + "homepage": "https://www.drupal.org/project/views_infinite_scroll", + "support": { + "source": "https://git.drupalcode.org/project/views_infinite_scroll" + } + }, + { + "name": "drupal/votingapi", + "version": "3.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/votingapi.git", + "reference": "8.x-3.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/votingapi-8.x-3.0-beta3.zip", + "reference": "8.x-3.0-beta3", + "shasum": "6b5d05f36dc7937a4e2fc676153ccbcf267eda14" + }, + "require": { + "drupal/core": "^8.8.2 || ^9" + }, + "require-dev": { + "drupal/token": "^1.5" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.0-beta3", + "datestamp": "1639528074", + "security-coverage": { + "status": "not-covered", + "message": "Beta 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-or-later" + ], + "authors": [ + { + "name": "TR", + "homepage": "https://www.drupal.org/user/202830" + }, + { + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" + }, + { + "name": "pedrorocha", + "homepage": "https://www.drupal.org/user/218937" + }, + { + "name": "pifagor", + "homepage": "https://www.drupal.org/user/2375692" + }, + { + "name": "torotil", + "homepage": "https://www.drupal.org/user/865256" + } + ], + "description": "Voting API", + "homepage": "https://www.drupal.org/project/votingapi", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/votingapi", + "issues": "https://drupal.org/project/issues/votingapi" + } + }, + { + "name": "drush/drush", + "version": "10.6.2", + "source": { + "type": "git", + "url": "https://github.com/drush-ops/drush.git", + "reference": "0a570a16ec63259eb71195aba5feab532318b337" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337", + "reference": "0a570a16ec63259eb71195aba5feab532318b337", + "shasum": "" + }, + "require": { + "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/robo": "^1.4.11 || ^2 || ^3", + "consolidation/site-alias": "^3.0.0@stable", + "consolidation/site-process": "^2.1 || ^4", + "enlightn/security-checker": "^1", + "ext-dom": "*", + "grasmash/yaml-expander": "^1.1.1", + "guzzlehttp/guzzle": "^6.3 || ^7.0", + "league/container": "^2.5 || ^3.4", + "php": ">=7.1.3", + "psr/log": "~1.0", + "psy/psysh": ">=0.6 <0.11", + "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", + "webflo/drupal-finder": "^1.2", + "webmozart/path-util": "^2.1.0" + }, + "conflict": { + "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", + "phpunit/phpunit": ">=7.5.20", + "squizlabs/php_codesniffer": "^2.7 || ^3", + "vlucas/phpdotenv": "^2.4", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "bin": [ + "drush" + ], + "type": "library", + "extra": { + "installer-paths": { + "sut/core": [ + "type:drupal-core" + ], + "sut/libraries/{$name}": [ + "type:drupal-library" + ], + "sut/modules/unish/{$name}": [ + "drupal/devel" + ], + "sut/themes/unish/{$name}": [ + "drupal/empty_theme" + ], + "sut/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "sut/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "sut/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "sut/drush/contrib/{$name}": [ + "type:drupal-drush" + ] + } + }, + "autoload": { + "psr-4": { + "Drush\\": "src/", + "Drush\\Internal\\": "src/internal-forks" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" + }, + { + "name": "Owen Barton", + "email": "drupal@owenbarton.com" + }, + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + }, + { + "name": "Jonathan Araña Cruz", + "email": "jonhattan@faita.net" + }, + { + "name": "Jonathan Hedstrom", + "email": "jhedstrom@gmail.com" + }, + { + "name": "Christopher Gervais", + "email": "chris@ergonlogic.com" + }, + { + "name": "Dave Reid", + "email": "dave@davereid.net" + }, + { + "name": "Damian Lee", + "email": "damiankloip@googlemail.com" + } ], + "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.", + "homepage": "http://www.drush.org", "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.25.0" + "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/10.6.2" }, "funding": [ { - "url": "https://symfony.com/sponsor", + "url": "https://github.com/weitzman", + "type": "github" + } + ], + "time": "2021-12-15T17:09:54+00:00" + }, + { + "name": "egulias/email-validator", + "version": "2.1.25", + "source": { + "type": "git", + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^1.0.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.10" + }, + "require-dev": { + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" + }, + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Egulias\\EmailValidator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", + "keywords": [ + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2020-12-29T14:50:06+00:00" + }, + { + "name": "embed/embed", + "version": "v3.4.18", + "source": { + "type": "git", + "url": "https://github.com/oscarotero/Embed.git", + "reference": "fe379f61d3ecca7a0824c4bb3839ebe0a1819520" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/oscarotero/Embed/zipball/fe379f61d3ecca7a0824c4bb3839ebe0a1819520", + "reference": "fe379f61d3ecca7a0824c4bb3839ebe0a1819520", + "shasum": "" + }, + "require": { + "composer/ca-bundle": "^1.0", + "ext-curl": "*", + "ext-dom": "*", + "ext-mbstring": "*", + "php": "^5.6|^7.0|^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.0", + "phpunit/phpunit": "^5.7|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Embed\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oscar Otero", + "email": "oom@oscarotero.com", + "homepage": "http://oscarotero.com", + "role": "Developer" + } + ], + "description": "PHP library to retrieve page info using oembed, opengraph, etc", + "homepage": "https://github.com/oscarotero/Embed", + "keywords": [ + "embed", + "embedly", + "oembed", + "opengraph", + "twitter cards" + ], + "support": { + "email": "oom@oscarotero.com", + "issues": "https://github.com/oscarotero/Embed/issues", + "source": "https://github.com/oscarotero/Embed/tree/v3.4.18" + }, + "funding": [ + { + "url": "https://paypal.me/oscarotero", "type": "custom" }, { - "url": "https://github.com/fabpot", + "url": "https://github.com/oscarotero", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "url": "https://www.patreon.com/misteroom", + "type": "patreon" } ], - "time": "2021-09-14T14:02:44+00:00" + "time": "2022-07-15T09:34:07+00:00" }, { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.25.0", + "name": "enlightn/security-checker", + "version": "v1.10.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" + "url": "https://github.com/enlightn/security-checker.git", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", - "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", "shasum": "" }, "require": { - "php": ">=7.1" + "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" }, - "suggest": { - "ext-intl": "For best performance" + "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": "goalgorilla/open_social", + "version": "11.3.6", + "source": { + "type": "git", + "url": "https://github.com/goalgorilla/open_social.git", + "reference": "0f2b98a2b92fb3f59979f5101bebc42bcba70d81" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/goalgorilla/open_social/zipball/0f2b98a2b92fb3f59979f5101bebc42bcba70d81", + "reference": "0f2b98a2b92fb3f59979f5101bebc42bcba70d81", + "shasum": "" + }, + "require": { + "bower-asset/lazysizes": "^5.3", + "composer/installers": "~1.0 || ~2.0", + "cweagans/composer-patches": "^1.6.0", + "drupal/address": "1.10.0", + "drupal/admin_toolbar": "3.1.0", + "drupal/advancedqueue": "1.0.0-rc3", + "drupal/ajax_comments": "1.0-beta4", + "drupal/better_exposed_filters": "5.0.0", + "drupal/block_field": "1.0-rc1", + "drupal/config_update": "1.7", + "drupal/core-composer-scaffold": "~9.2.13", + "drupal/core-recommended": "~9.2.13", + "drupal/crop": "2.2.0", + "drupal/csv_serialization": "2.0", + "drupal/ctools": "3.7", + "drupal/data_policy": "2.0.0-beta1", + "drupal/dynamic_entity_reference": "1.12", + "drupal/editor_advanced_link": "2.0.0", + "drupal/entity": "1.3.0", + "drupal/entity_reference_revisions": "1.9.0", + "drupal/exif_orientation": "1.1", + "drupal/field_group": "3.2.0", + "drupal/flag": "4.0.0-beta3", + "drupal/gin": "3.0.0-alpha37", + "drupal/gin_toolbar": "1.0.0-beta20", + "drupal/graphql": "4.1", + "drupal/group": "1.4", + "drupal/image_effects": "3.2.0", + "drupal/image_widget_crop": "2.3.0", + "drupal/jquery_ui_accordion": "1.1", + "drupal/lazy": "3.11.0", + "drupal/like_and_dislike": "1.0-beta2", + "drupal/message": "1.2", + "drupal/metatag": "1.19.0", + "drupal/override_node_options": "2.6.0", + "drupal/paragraphs": "1.14.0", + "drupal/pathauto": "1.9.0", + "drupal/private_message": "3.0.0-beta2", + "drupal/profile": "1.3", + "drupal/r4032login": "2.1.1", + "drupal/redirect": "1.7.0", + "drupal/role_delegation": "1.2.0", + "drupal/search_api": "1.23.0", + "drupal/select2": "1.13.0", + "drupal/shariff": "1.7", + "drupal/social_tour": "1.0.0-alpha2", + "drupal/socialblue": "2.2.4", + "drupal/swiftmailer": "2.2.0", + "drupal/token": "1.10.0", + "drupal/ultimate_cron": "2.0-alpha5", + "drupal/update_helper": "2.0.0", + "drupal/url_embed": "1.0-beta1", + "drupal/views_bulk_operations": "4.1.0", + "drupal/views_infinite_scroll": "2.0.0", + "drupal/votingapi": "3.0.0-beta3", + "league/csv": "^9.3", + "npm-asset/autosize": "~4.0.2", + "npm-asset/blazy": "~1.8.2", + "npm-asset/bootstrap": "v3.4.1", + "npm-asset/d3": "v3.5.17", + "npm-asset/diff": "^3.5", + "npm-asset/highlight.js": "~9.15.6", + "npm-asset/jquery-ui-touch-punch": "^0.2.3", + "npm-asset/jquery.caret": "^0.3.1", + "npm-asset/morris.js06": "^0.6.6", + "npm-asset/node-waves": "0.7.6", + "npm-asset/photoswipe": "^4.1.2", + "npm-asset/raphael": "v2.2.8", + "npm-asset/react": "^16.7.0", + "npm-asset/react-dom": "^16.7.0", + "npm-asset/select2": "~4.0.5", + "npm-asset/shariff": "^3.0.1", + "npm-asset/slick-carousel": "~1.8.1", + "npm-asset/tablesaw": "~3.1.0", + "oomphinc/composer-installers-extender": "~1.0 || ~2.0", + "php": "^7.4", + "spatie/color": "^1.2", + "swiftmailer/swiftmailer": "6.2.4", + "webonyx/graphql-php": ">=14.5.0" + }, + "replace": { + "drupal/social": "self.version" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "~0.7.1", + "drupal/coder": "^8.3", + "drupal/core-dev": "~9.2.13", + "drupal/devel": "^4.1", + "mglaman/phpstan-drupal": "1.1.14", + "mikey179/vfsstream": "^1.6", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "1.5.7", + "phpstan/phpstan-deprecation-rules": "^1.0" + }, + "type": "drupal-profile", + "extra": { + "enable-patching": true, + "patches": { + "instaclick/php-webdriver": { + "Curl_exec errors on behat (1.4.11)": "https://www.drupal.org/files/issues/2022-03-30/social-instaclick-webdriver-3272386-2.patch" + }, + "embed/embed": { + "Issue #3110341: Embedded Vimeo videos are sometimes blocked when hosted on cloud hosting": "https://www.drupal.org/files/issues/2020-01-31/3110341-vendor-fix-vimeo-adapter.patch" + }, + "drupal/address": { + "Default country value produces missing schema problem": "https://www.drupal.org/files/issues/2019-05-30/default_country_schema_problem-3058288-2.patch" + }, + "drupal/advancedqueue": { + "3248140: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248140-2.patch" + }, + "drupal/ajax_comments": { + "Fix display mode issue": "https://www.drupal.org/files/issues/2021-03-19/ajax_comments-ajax_not_working_when_using_non_default_view_mode-2896916-beta3.patch" + }, + "drupal/bootstrap": { + "Dropdown toggle variable ignored when using links__dropbutton": "https://www.drupal.org/files/issues/2018-12-19/dropdown-without-default-button-3021413-2.patch" + }, + "drupal/coder": { + "Allow class property types instead of @var comments": "https://www.drupal.org/files/issues/2021-09-21/coder-3123282-3.patch" + }, + "drupal/core": { + "Color module html preview optional": "https://www.drupal.org/files/issues/color-optional-html-preview-2844190-2.patch", + "Restrict images to this site blocks image style derivatives": "https://www.drupal.org/files/issues/2019-05-10/2528214-54.patch", + "Optimize getCommentedEntity()": "https://www.drupal.org/files/issues/2018-12-28/2580551-72.patch", + "#states cannot check/uncheck 'radios' and 'checkboxes' elements": "https://www.drupal.org/files/issues/drupal-994360-74-states-checkboxes-checked.patch", + "Multiple usages of FieldPluginBase::getEntity do not check for NULL, leading to WSOD": "https://www.drupal.org/files/issues/2021-01-06/3007424-108.patch", + "Default role id causes issues with validation on VBO": "https://www.drupal.org/files/issues/2018-05-24/2974925-default-rid-config-causes-illegal-error.patch", + "Ensure views exposed form in a form block keeps contextual arguments (Updated)": "https://www.drupal.org/files/issues/2020-06-17/views-exposed-form-block-args-2821962-39-8.9-notest.patch", + "Display Bug when using #states (Forms API) with Ajax Request": "https://www.drupal.org/files/issues/2021-11-05/1091852-150.patch", + "Can't specify the language in TermStorage::loadTree": "https://www.drupal.org/files/issues/2021-08-13/drupal-termstorage-loadTree-lang-3123561-10.patch", + "Issue #3188258: Aggregation queries fail across entity references": "https://www.drupal.org/files/issues/2020-12-18/drupal-3188258-aggregation-across-entity-reference-fail-2.patch", + "Pagination does not work correctly for comment fields that are rendered using #lazy_builder": "https://www.drupal.org/files/issues/2020-12-22/pagination-does-not-work-with-lazy-builder-3189538-2.patch", + "Providing default route value for entity forms is not possible": "https://www.drupal.org/files/issues/2020-12-29/2921093-18.patch", + "Selecting the same day in a date between filter returns no results": "https://www.drupal.org/files/issues/2020-07-06/2842409-15.patch", + "Broken title in modal dialog when title is a render array": "https://www.drupal.org/files/issues/2019-10-21/2663316-76.drupal.Broken-title-in-modal-dialog-when-title-is-a-render-array.patch", + "Post update hook naming convention patch": "https://git.drupalcode.org/project/drupal/-/merge_requests/1215.patch", + "Flood MemoryBackend::events[] key of micro time cannot guarantee uniqueness": "https://www.drupal.org/files/issues/2021-12-12/2910000-33--floodmemorybackend-time-local.patch", + "Issue #3251856: Incorrect typehint for FieldConfig::loadByName": "https://www.drupal.org/files/issues/2021-12-12/drupal9-incorrect_typehint-3251856-7.patch", + "Issue #2998390: Cache is not invalidated when comment deleted": "https://www.drupal.org/files/issues/2022-01-27/2998390-invalidate-cache-on-delete-6.diff", + "Backport of issue SA-CORE-2022-012": "https://www.drupal.org/files/issues/2022-07-20/2022-12-1.patch", + "Backport of issue SA-CORE-2022-013": "https://www.drupal.org/files/issues/2022-07-20/2022-013.patch", + "Backport of issue SA-CORE-2022-014": "https://www.drupal.org/files/issues/2022-07-20/2022-014.patch", + "Backport of issue SA-CORE-2022-015": "https://www.drupal.org/files/issues/2022-07-20/2022-015.patch" + }, + "drupal/config_update": { + "3248161: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248161-3.patch" + }, + "drupal/crop": { + "3248169: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248169-1.patch" + }, + "drupal/ctools": { + "Signature of EventDispatcherInterface::dispatch() has changed": "https://www.drupal.org/files/issues/2021-01-14/3191286-14.patch" + }, + "drupal/dynamic_entity_reference": { + "Errors when new entity types are added (in certain cases)": "https://www.drupal.org/files/issues/2020-05-31/3099176-9.patch", + "Return the same content list after content type is changed": "https://www.drupal.org/files/issues/2021-08-27/dynamic_entity_reference-the_same_content_list-3230158-2.patch" + }, + "drupal/entity": { + "Deprecated notices for EventDispatcher": "https://www.drupal.org/files/issues/2021-10-08/3217876-9.patch" + }, + "drupal/field_group": { + "Undefined property: stdClass::$region in field_group_form_process().": "https://www.drupal.org/files/issues/2020-06-15/3059614-37.patch", + "Remove dependency on jQuery UI Accordion for the accordion field group formatter": "https://www.drupal.org/files/issues/2021-10-16/3154304-2.patch" + }, + "drupal/flag": { + "Add relationship to flagged entities when Flagging is base table": "https://www.drupal.org/files/issues/2021-11-08/2723703-76.patch", + "3248173: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248173-2.patch" + }, + "drupal/graphql": { + "Drupal\\Core\\Plugin\\ContextAwarePluginBase is deprecated in drupal:9.1.0 #1250": "https://github.com/drupal-graphql/graphql/files/7418857/graphql-deprecated-ContextAwarePluginBase.patch.txt", + "Symfony 4.4 event dispatcher parameter order change #1252": "https://patch-diff.githubusercontent.com/raw/drupal-graphql/graphql/pull/1252.diff" + }, + "drupal/gin": { + "Select2 elements do not have a correct styles": "https://www.drupal.org/files/issues/2021-11-01/3246977-ui_improvements_select2_elements-1.patch" + }, + "drupal/group": { + "Add computed field for Group reference": "https://www.drupal.org/files/issues/2021-07-30/group-2718195-58-groups-computed-field.patch", + "Ability to use group tokens in node context": "https://www.drupal.org/files/issues/2021-03-11/group-gnode_tokens-2774827-75.patch", + "Group: Don't try to re-save deleted entities": "https://www.drupal.org/files/issues/2018-11-01/3010896-02.patch", + "Rely on toUrl defaults for Entity url link": "https://www.drupal.org/files/issues/2019-12-04/group-3098675-2.patch", + "Missing config schema for condition.plugin.group_type": "https://www.drupal.org/files/issues/2018-12-14/group-group_type_condition_plugin_config_schema-3020554-2.patch", + "gnode access checks revert for D9 so we dont cause major regression": "https://www.drupal.org/files/issues/2021-11-30/bring-back-node-access-grants-3162511-69.patch" + }, + "drupal/like_and_dislike": { + "As LU+ I can not like any content": "https://www.drupal.org/files/issues/2021-11-10/3247929-like_and_dislike-5.patch" + }, + "drupal/paragraphs": { + "Integrity constraint violation: 1048 Column 'langcode' cannot be null": "https://www.drupal.org/files/issues/2019-07-10/paragraphs-set_langcode_widgets-2901390-29.patch" + }, + "drupal/search_api": { + "Ensure field definition allowed values callbacks are used for field filter callbacks": "https://www.drupal.org/files/issues/2020-06-03/2949022-12--views_filter_options_callback.patch", + "Selecting the same day in a date between filter returns no results": "https://www.drupal.org/files/issues/2021-05-05/date_between_2842409_2_d8.patch", + "3248183: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248183-2.patch" + }, + "drupal/socialbase": { + "Revert: As a user I should receive an email confirmation when I enroll in an event": "https://www.drupal.org/files/issues/2022-06-28/socialbase-revert_accidentally_merged_and_released_changes_when_distro_pr_was_still_open-3273222-17.patch" + }, + "drupal/update_helper": { + "3248189: Symfony 4.4 event dispatcher parameter order change": "https://www.drupal.org/files/issues/2021-11-08/symfony-4-4-event-dispatcher-parameter-order-change-3248189-2.patch" + }, + "drupal/url_embed": { + "Translate dialog title": "https://www.drupal.org/files/issues/2018-03-16/url_embed_translate_dialog_title-2953591-2.patch", + "Improve how the module deals with non-embeddable URLs & WSODs (See: https://www.drupal.org/project/social/issues/2930457#comment-13973067)": "https://www.drupal.org/files/issues/2021-01-22/urlembed-non-embeddable-urls-2761187-opensocial-combined-21.patch", + "Support for Facebook/Instagram API changes - add access token settings": "https://www.drupal.org/files/issues/2021-07-14/url_embed-add-facebook-access-token-config-3177860-opensocial-2.patch" + }, + "drupal/views_infinite_scroll": { + "Headers in table format repeat on load more instead of adding rows (v1.8)": "https://www.drupal.org/files/issues/2021-02-11/2899705-35.patch" + }, + "drupal/redirect": { + "Redirection issue when interface language is different from content language": "https://www.drupal.org/files/issues/2020-06-01/redirect-interface_language_different_from_content_language_2991423-13.patch" + } + } + }, + "autoload": { + "psr-4": { + "Drupal\\social\\": "src", + "Drupal\\social\\Behat\\": "tests/behat/features/bootstrap" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Open Social is a distribution for building social communities and intranets.", + "support": { + "source": "https://github.com/goalgorilla/open_social/tree/11.3.6" + }, + "time": "2022-07-20T20:35:13+00:00" + }, + { + "name": "grasmash/expander", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/grasmash/expander.git", + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "shasum": "" + }, + "require": { + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4" + }, + "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" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.x-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, - "classmap": [ - "Resources/stubs" - ] + "Grasmash\\Expander\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5255,82 +6785,50 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Matthew Grasmick" } ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], + "description": "Expands internal property references in PHP arrays file.", "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.25.0" + "issues": "https://github.com/grasmash/expander/issues", + "source": "https://github.com/grasmash/expander/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": "2021-02-19T12:13:01+00:00" + "time": "2017-12-21T22:14:55+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.25.0", + "name": "grasmash/yaml-expander", + "version": "1.4.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825" + "url": "https://github.com/grasmash/yaml-expander.git", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825", - "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825", + "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "provide": { - "ext-mbstring": "*" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4", + "symfony/yaml": "^2.8.11|^3|^4" }, - "suggest": { - "ext-mbstring": "For best performance" + "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-main": "1.23-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.x-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" + "Grasmash\\YamlExpander\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5339,75 +6837,57 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Matthew Grasmick" } ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], + "description": "Expands internal property references in a yaml file.", "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.25.0" + "issues": "https://github.com/grasmash/yaml-expander/issues", + "source": "https://github.com/grasmash/yaml-expander/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": "2021-11-30T18:21:41+00:00" + "time": "2017-12-16T16:06:03+00:00" }, { - "name": "symfony/polyfill-php72", - "version": "v1.26.0", + "name": "guzzlehttp/guzzle", + "version": "6.5.7", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" + "url": "https://github.com/guzzle/guzzle.git", + "reference": "724562fa861e21a4071c652c8a159934e4f05592" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", - "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/724562fa861e21a4071c652c8a159934e4f05592", + "reference": "724562fa861e21a4071c652c8a159934e4f05592", "shasum": "" }, "require": { - "php": ">=7.1" + "ext-json": "*", + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.6.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.17.0" + }, + "require-dev": { + "ext-curl": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.1" + }, + "suggest": { + "psr/log": "Required for using the Log middleware" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "6.5-dev" } }, "autoload": { "files": [ - "bootstrap.php" + "src/functions_include.php" ], "psr-4": { - "Symfony\\Polyfill\\Php72\\": "" + "GuzzleHttp\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5416,78 +6896,105 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], - "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", - "homepage": "https://symfony.com", + "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "client", + "curl", + "framework", + "http", + "http client", + "rest", + "web service" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/6.5.7" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "url": "https://github.com/fabpot", + "url": "https://github.com/Nyholm", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", "type": "tidelift" } ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2022-06-09T21:36:50+00:00" }, { - "name": "symfony/polyfill-php73", - "version": "v1.26.0", + "name": "guzzlehttp/promises", + "version": "1.4.1", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85" + "url": "https://github.com/guzzle/promises.git", + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85", - "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85", + "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d", + "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=5.5" + }, + "require-dev": { + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.26-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.4-dev" } }, "autoload": { "files": [ - "bootstrap.php" + "src/functions_include.php" ], "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, - "classmap": [ - "Resources/stubs" - ] + "GuzzleHttp\\Promise\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5495,78 +7002,63 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" } ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", - "homepage": "https://symfony.com", + "description": "Guzzle promises library", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "promise" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0" + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.1" }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-05-24T11:49:31+00:00" + "time": "2021-03-07T09:25:29+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.25.0", + "name": "guzzlehttp/psr7", + "version": "1.8.5", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c" + "url": "https://github.com/guzzle/psr7.git", + "reference": "337e3ad8e5716c15f9657bd214d16cc5e69df268" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4407588e0d3f1f52efb65fbe92babe41f37fe50c", - "reference": "4407588e0d3f1f52efb65fbe92babe41f37fe50c", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/337e3ad8e5716c15f9657bd214d16cc5e69df268", + "reference": "337e3ad8e5716c15f9657bd214d16cc5e69df268", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.23-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.7-dev" } }, "autoload": { "files": [ - "bootstrap.php" + "src/functions_include.php" ], "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "classmap": [ - "Resources/stubs" - ] + "GuzzleHttp\\Psr7\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5574,600 +7066,516 @@ ], "authors": [ { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", + "description": "PSR-7 message implementation that also provides common utility methods", "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.25.0" + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.8.5" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "url": "https://github.com/fabpot", + "url": "https://github.com/Nyholm", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", "type": "tidelift" } ], - "time": "2022-03-04T08:16:47+00:00" + "time": "2022-03-20T21:51:18+00:00" }, { - "name": "symfony/process", - "version": "v4.4.44", + "name": "html2text/html2text", + "version": "4.3.1", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2" + "url": "https://github.com/mtibben/html2text.git", + "reference": "61ad68e934066a6f8df29a3d23a6460536d0855c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", - "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2", + "url": "https://api.github.com/repos/mtibben/html2text/zipball/61ad68e934066a6f8df29a3d23a6460536d0855c", + "reference": "61ad68e934066a6f8df29a3d23a6460536d0855c", "shasum": "" }, - "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "require-dev": { + "phpunit/phpunit": "~4" + }, + "suggest": { + "ext-mbstring": "For best performance", + "symfony/polyfill-mbstring": "If you can't install ext-mbstring" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Process\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Html2Text\\": [ + "src/", + "test/" + ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } + "GPL-2.0-or-later" ], - "description": "Executes commands in sub-processes", - "homepage": "https://symfony.com", + "description": "Converts HTML to formatted plain text", "support": { - "source": "https://github.com/symfony/process/tree/v4.4.44" + "issues": "https://github.com/mtibben/html2text/issues", + "source": "https://github.com/mtibben/html2text/tree/4.3.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": "2022-06-27T13:16:42+00:00" + "time": "2020-04-16T23:44:31+00:00" }, { - "name": "symfony/psr-http-message-bridge", - "version": "v2.1.2", + "name": "laminas/laminas-diactoros", + "version": "2.6.0", "source": { "type": "git", - "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34" + "url": "https://github.com/laminas/laminas-diactoros.git", + "reference": "7d2034110ae18afe05050b796a3ee4b3fe177876" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", - "reference": "22b37c8a3f6b5d94e9cdbd88e1270d96e2f97b34", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/7d2034110ae18afe05050b796a3ee4b3fe177876", + "reference": "7d2034110ae18afe05050b796a3ee4b3fe177876", "shasum": "" }, "require": { - "php": ">=7.1", - "psr/http-message": "^1.0", - "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0" + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.3 || ~8.0.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0" }, - "require-dev": { - "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" + "conflict": { + "phpspec/prophecy": "<1.9.0" }, - "suggest": { - "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" }, - "type": "symfony-bridge", + "replace": { + "zendframework/zend-diactoros": "^2.2.1" + }, + "require-dev": { + "ext-curl": "*", + "ext-dom": "*", + "ext-gd": "*", + "ext-libxml": "*", + "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-main": "2.1-dev" + "laminas": { + "config-provider": "Laminas\\Diactoros\\ConfigProvider", + "module": "Laminas\\Diactoros" } }, "autoload": { + "files": [ + "src/functions/create_uploaded_file.php", + "src/functions/marshal_headers_from_sapi.php", + "src/functions/marshal_method_from_sapi.php", + "src/functions/marshal_protocol_version_from_sapi.php", + "src/functions/marshal_uri_from_sapi.php", + "src/functions/normalize_server.php", + "src/functions/normalize_uploaded_files.php", + "src/functions/parse_cookie_header.php", + "src/functions/create_uploaded_file.legacy.php", + "src/functions/marshal_headers_from_sapi.legacy.php", + "src/functions/marshal_method_from_sapi.legacy.php", + "src/functions/marshal_protocol_version_from_sapi.legacy.php", + "src/functions/marshal_uri_from_sapi.legacy.php", + "src/functions/normalize_server.legacy.php", + "src/functions/normalize_uploaded_files.legacy.php", + "src/functions/parse_cookie_header.legacy.php" + ], "psr-4": { - "Symfony\\Bridge\\PsrHttpMessage\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Laminas\\Diactoros\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" - } + "BSD-3-Clause" ], - "description": "PSR HTTP message bridge", - "homepage": "http://symfony.com", + "description": "PSR HTTP Message implementations", + "homepage": "https://laminas.dev", "keywords": [ "http", - "http-message", + "laminas", + "psr", "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/v2.1.2" + "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" }, "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" + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" } ], - "time": "2021-11-05T13:13:39+00:00" + "time": "2021-05-18T14:41:54+00:00" }, { - "name": "symfony/routing", - "version": "v4.4.44", + "name": "laminas/laminas-escaper", + "version": "2.7.0", "source": { "type": "git", - "url": "https://github.com/symfony/routing.git", - "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae" + "url": "https://github.com/laminas/laminas-escaper.git", + "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae", - "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/5e04bc5ae5990b17159d79d331055e2c645e5cc5", + "reference": "5e04bc5ae5990b17159d79d331055e2c645e5cc5", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.3 || ~8.0.0" }, - "conflict": { - "symfony/config": "<4.2", - "symfony/dependency-injection": "<3.4", - "symfony/yaml": "<3.4" + "replace": { + "zendframework/zend-escaper": "^2.6.1" }, "require-dev": { - "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" + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^9.3", + "psalm/plugin-phpunit": "^0.12.2", + "vimeo/psalm": "^3.16" }, "suggest": { - "doctrine/annotations": "For using the annotation loader", - "symfony/config": "For using the all-in-one router or any loader", - "symfony/expression-language": "For using expression matching", - "symfony/http-foundation": "For using a Symfony Request object", - "symfony/yaml": "For using the YAML loader" + "ext-iconv": "*", + "ext-mbstring": "*" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Routing\\": "" - }, - "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" + "Laminas\\Escaper\\": "src/" } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" ], - "description": "Maps an HTTP request to a set of configuration variables", - "homepage": "https://symfony.com", + "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs", + "homepage": "https://laminas.dev", "keywords": [ - "router", - "routing", - "uri", - "url" + "escaper", + "laminas" ], "support": { - "source": "https://github.com/symfony/routing/tree/v4.4.44" + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-escaper/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-escaper/issues", + "rss": "https://github.com/laminas/laminas-escaper/releases.atom", + "source": "https://github.com/laminas/laminas-escaper" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" } ], - "time": "2022-07-20T09:59:04+00:00" + "time": "2020-11-17T21:26:43+00:00" }, { - "name": "symfony/serializer", - "version": "v4.4.44", + "name": "laminas/laminas-feed", + "version": "2.14.1", "source": { "type": "git", - "url": "https://github.com/symfony/serializer.git", - "reference": "375509ca128d3e8b38df92af74814c765571911e" + "url": "https://github.com/laminas/laminas-feed.git", + "reference": "463fdae515fba30633906098c258d3b2c733c15c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/375509ca128d3e8b38df92af74814c765571911e", - "reference": "375509ca128d3e8b38df92af74814c765571911e", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/463fdae515fba30633906098c258d3b2c733c15c", + "reference": "463fdae515fba30633906098c258d3b2c733c15c", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-php80": "^1.16" + "ext-dom": "*", + "ext-libxml": "*", + "laminas/laminas-escaper": "^2.5.2", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.3 || ~8.0.0" }, "conflict": { - "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" + "laminas/laminas-servicemanager": "<3.3" + }, + "replace": { + "zendframework/zend-feed": "^2.12.0" }, "require-dev": { - "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": "^4.4.36|^5.3.13", - "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" + "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": "^3.3", + "laminas/laminas-validator": "^2.10.1", + "phpunit/phpunit": "^9.3", + "psalm/plugin-phpunit": "^0.13.0", + "psr/http-message": "^1.0.1", + "vimeo/psalm": "^4.1" }, "suggest": { - "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.", - "symfony/property-access": "For using the ObjectNormalizer.", - "symfony/property-info": "To deserialize relations.", - "symfony/yaml": "For using the default YAML mapping loader." + "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", + "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub", + "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader", + "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations", + "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent", + "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Serializer\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Laminas\\Feed\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } + "description": "provides functionality for consuming RSS and Atom feeds", + "homepage": "https://laminas.dev", + "keywords": [ + "feed", + "laminas" ], - "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/v4.4.44" + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-feed/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-feed/issues", + "rss": "https://github.com/laminas/laminas-feed/releases.atom", + "source": "https://github.com/laminas/laminas-feed" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" } ], - "time": "2022-07-28T12:55:20+00:00" + "time": "2021-04-01T19:26:09+00:00" }, { - "name": "symfony/service-contracts", - "version": "v2.5.2", + "name": "laminas/laminas-stdlib", + "version": "3.3.1", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c" + "url": "https://github.com/laminas/laminas-stdlib.git", + "reference": "d81c7ffe602ed0e6ecb18691019111c0f4bf1efe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c", - "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/d81c7ffe602ed0e6ecb18691019111c0f4bf1efe", + "reference": "d81c7ffe602ed0e6ecb18691019111c0f4bf1efe", "shasum": "" }, "require": { - "php": ">=7.2.5", - "psr/container": "^1.1", - "symfony/deprecation-contracts": "^2.1|^3" + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^7.3 || ^8.0" }, - "conflict": { - "ext-psr": "<1.1|>=2" + "replace": { + "zendframework/zend-stdlib": "^3.2.1" }, - "suggest": { - "symfony/service-implementation": "" + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "phpbench/phpbench": "^0.17.1", + "phpunit/phpunit": "~9.3.7" }, "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\\": "" + "Laminas\\Stdlib\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } + "BSD-3-Clause" ], - "description": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", + "description": "SPL extensions, array utilities, error handlers, and more", + "homepage": "https://laminas.dev", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "laminas", + "stdlib" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v2.5.2" + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-stdlib/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-stdlib/issues", + "rss": "https://github.com/laminas/laminas-stdlib/releases.atom", + "source": "https://github.com/laminas/laminas-stdlib" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" } ], - "time": "2022-05-30T19:17:29+00:00" + "time": "2020-11-19T20:18:59+00:00" }, { - "name": "symfony/string", - "version": "v5.4.11", + "name": "laminas/laminas-zendframework-bridge", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "5eb661e49ad389e4ae2b6e4df8d783a8a6548322" + "url": "https://github.com/laminas/laminas-zendframework-bridge.git", + "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/5eb661e49ad389e4ae2b6e4df8d783a8a6548322", - "reference": "5eb661e49ad389e4ae2b6e4df8d783a8a6548322", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/6cccbddfcfc742eb02158d6137ca5687d92cee32", + "reference": "6cccbddfcfc742eb02158d6137ca5687d92cee32", "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" + "php": "^7.3 || ^8.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" + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^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": [ - "Resources/functions.php" + "src/autoload.php" ], "psr-4": { - "Symfony\\Component\\String\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Laminas\\ZendFrameworkBridge\\": "src//" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } + "BSD-3-Clause" ], - "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", + "description": "Alias legacy ZF class names to Laminas Project equivalents.", "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" + "ZendFramework", + "autoloading", + "laminas", + "zf" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.4.11" + "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://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "url": "https://funding.communitybridge.org/projects/laminas-project", + "type": "community_bridge" } ], - "time": "2022-07-24T16:15:25+00:00" + "time": "2021-02-25T21:54:58+00:00" }, { - "name": "symfony/translation", - "version": "v4.4.44", + "name": "league/container", + "version": "3.4.1", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "af947fefc306cec6ea5a1f6160c7e305a71f2493" + "url": "https://github.com/thephpleague/container.git", + "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/af947fefc306cec6ea5a1f6160c7e305a71f2493", - "reference": "af947fefc306cec6ea5a1f6160c7e305a71f2493", + "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd", + "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd", "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|^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" + "require": { + "php": "^7.0 || ^8.0", + "psr/container": "^1.0.0" }, - "suggest": { - "psr/log-implementation": "To use logging capability in translator", - "symfony/config": "", - "symfony/yaml": "" + "provide": { + "psr/container-implementation": "^1.0" + }, + "replace": { + "orno/di": "~2.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0 || ^7.0", + "roave/security-advisories": "dev-latest", + "scrutinizer/ocular": "^1.8", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev", + "dev-3.x": "3.x-dev", + "dev-2.x": "2.x-dev", + "dev-1.x": "1.x-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "League\\Container\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6175,68 +7583,79 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Phil Bennett", + "email": "philipobenito@gmail.com", + "homepage": "http://www.philipobenito.com", + "role": "Developer" } ], - "description": "Provides tools to internationalize your application", - "homepage": "https://symfony.com", + "description": "A fast and intuitive dependency injection container.", + "homepage": "https://github.com/thephpleague/container", + "keywords": [ + "container", + "dependency", + "di", + "injection", + "league", + "provider", + "service" + ], "support": { - "source": "https://github.com/symfony/translation/tree/v4.4.44" + "issues": "https://github.com/thephpleague/container/issues", + "source": "https://github.com/thephpleague/container/tree/3.4.1" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/philipobenito", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" } ], - "time": "2022-07-20T09:59:04+00:00" + "time": "2021-07-09T08:23:52+00:00" }, { - "name": "symfony/translation-contracts", - "version": "v2.5.2", + "name": "league/csv", + "version": "9.8.0", "source": { "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe" + "url": "https://github.com/thephpleague/csv.git", + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe", - "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/9d2e0265c5d90f5dd601bc65ff717e05cec19b47", + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47", "shasum": "" }, "require": { - "php": ">=7.2.5" + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "ext-curl": "*", + "ext-dom": "*", + "friendsofphp/php-cs-fixer": "^v3.4.0", + "phpstan/phpstan": "^1.3.0", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.1.0", + "phpunit/phpunit": "^9.5.11" }, "suggest": { - "symfony/translation-implementation": "" + "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-main": "2.5-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "dev-master": "9.x-dev" } }, "autoload": { + "files": [ + "src/functions_include.php" + ], "psr-4": { - "Symfony\\Contracts\\Translation\\": "" + "League\\Csv\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -6245,198 +7664,131 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Ignace Nyamagana Butera", + "email": "nyamsprod@gmail.com", + "homepage": "https://github.com/nyamsprod/", + "role": "Developer" } ], - "description": "Generic abstractions related to translation", - "homepage": "https://symfony.com", + "description": "CSV data manipulation made easy in PHP", + "homepage": "https://csv.thephpleague.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "convert", + "csv", + "export", + "filter", + "import", + "read", + "transform", + "write" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2" + "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://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/sponsors/nyamsprod", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" } ], - "time": "2022-06-27T16:58:25+00:00" + "time": "2022-01-04T00:13:07+00:00" }, { - "name": "symfony/validator", - "version": "v4.4.44", + "name": "lsolesen/pel", + "version": "0.9.12", "source": { "type": "git", - "url": "https://github.com/symfony/validator.git", - "reference": "4b566c8d15f3490b0e72b42dd33ea8d2b4857cb1" + "url": "https://github.com/pel/pel.git", + "reference": "b95fe29cdacf9d36330da277f10910a13648c84c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/4b566c8d15f3490b0e72b42dd33ea8d2b4857cb1", - "reference": "4b566c8d15f3490b0e72b42dd33ea8d2b4857cb1", + "url": "https://api.github.com/repos/pel/pel/zipball/b95fe29cdacf9d36330da277f10910a13648c84c", + "reference": "b95fe29cdacf9d36330da277f10910a13648c84c", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16", - "symfony/translation-contracts": "^1.1|^2" - }, - "conflict": { - "doctrine/lexer": "<1.1", - "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", - "symfony/dependency-injection": "<3.4", - "symfony/http-kernel": "<4.4", - "symfony/intl": "<4.3", - "symfony/translation": ">=5.0", - "symfony/yaml": "<3.4" + "php": ">=7.1.0" }, "require-dev": { - "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.", - "egulias/email-validator": "Strict (RFC compliant) email validation", - "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": "" + "ext-exif": "*", + "ext-gd": "*", + "php-coveralls/php-coveralls": ">2.4", + "squizlabs/php_codesniffer": ">3.5", + "symfony/phpunit-bridge": "^4 || ^5" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Validator\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "lsolesen\\pel\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-2.0" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Lars Olesen", + "email": "lars@intraface.dk", + "homepage": "http://intraface.dk", + "role": "Developer" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Martin Geisler", + "email": "martin@geisler.net", + "homepage": "http://geisler.net", + "role": "Developer" } ], - "description": "Provides tools to validate values", - "homepage": "https://symfony.com", + "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.", + "homepage": "http://pel.github.com/pel/", + "keywords": [ + "exif", + "image" + ], "support": { - "source": "https://github.com/symfony/validator/tree/v4.4.44" + "issues": "https://github.com/pel/pel/issues", + "source": "https://github.com/pel/pel/tree/0.9.12" }, - "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-07-20T09:59:04+00:00" + "time": "2022-02-18T13:20:54+00:00" }, { - "name": "symfony/var-dumper", - "version": "v5.4.11", + "name": "masterminds/html5", + "version": "2.7.4", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "b8f306d7b8ef34fb3db3305be97ba8e088fb4861" + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "9227822783c75406cfe400984b2f095cdf03d417" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b8f306d7b8ef34fb3db3305be97ba8e088fb4861", - "reference": "b8f306d7b8ef34fb3db3305be97ba8e088fb4861", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/9227822783c75406cfe400984b2f095cdf03d417", + "reference": "9227822783c75406cfe400984b2f095cdf03d417", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16" - }, - "conflict": { - "phpunit/phpunit": "<5.4.3", - "symfony/console": "<4.4" + "ext-ctype": "*", + "ext-dom": "*", + "ext-libxml": "*", + "php": ">=5.3.0" }, "require-dev": { - "ext-iconv": "*", - "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).", - "ext-intl": "To show region name in time zone dump", - "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" + "phpunit/phpunit": "^4.8.35" }, - "bin": [ - "Resources/bin/var-dump-server" - ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7-dev" + } + }, "autoload": { - "files": [ - "Resources/functions/dump.php" - ], "psr-4": { - "Symfony\\Component\\VarDumper\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Masterminds\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6444,74 +7796,102 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides mechanisms for walking through any arbitrary PHP variable", - "homepage": "https://symfony.com", - "keywords": [ - "debug", - "dump" - ], - "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.11" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" + "name": "Matt Butcher", + "email": "technosophos@gmail.com" }, { - "url": "https://github.com/fabpot", - "type": "github" + "name": "Matt Farina", + "email": "matt@mattfarina.com" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" } ], - "time": "2022-07-20T13:00:38+00:00" + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", + "keywords": [ + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" + ], + "support": { + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.7.4" + }, + "time": "2020-10-01T13:52:52+00:00" }, { - "name": "symfony/yaml", - "version": "v4.4.44", + "name": "monolog/monolog", + "version": "2.8.0", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "c2b28c10fb3b7ac67bafa7b8f952cd83f35acde2" + "url": "https://github.com/Seldaek/monolog.git", + "reference": "720488632c590286b88b80e62aa3d3d551ad4a50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/c2b28c10fb3b7ac67bafa7b8f952cd83f35acde2", - "reference": "c2b28c10fb3b7ac67bafa7b8f952cd83f35acde2", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50", + "reference": "720488632c590286b88b80e62aa3d3d551ad4a50", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8" + "php": ">=7.2", + "psr/log": "^1.0.1 || ^2.0 || ^3.0" }, - "conflict": { - "symfony/console": "<3.4" + "provide": { + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" }, "require-dev": { - "symfony/console": "^3.4|^4.0|^5.0" + "aws/aws-sdk-php": "^2.4.9 || ^3.0", + "doctrine/couchdb": "~1.0@dev", + "elasticsearch/elasticsearch": "^7 || ^8", + "ext-json": "*", + "graylog2/gelf-php": "^1.4.2", + "guzzlehttp/guzzle": "^7.4", + "guzzlehttp/psr7": "^2.2", + "mongodb/mongodb": "^1.8", + "php-amqplib/php-amqplib": "~2.4 || ^3", + "phpspec/prophecy": "^1.15", + "phpstan/phpstan": "^0.12.91", + "phpunit/phpunit": "^8.5.14", + "predis/predis": "^1.1 || ^2.0", + "rollbar/rollbar": "^1.3 || ^2 || ^3", + "ruflin/elastica": "^7", + "swiftmailer/swiftmailer": "^5.3|^6.0", + "symfony/mailer": "^5.4 || ^6", + "symfony/mime": "^5.4 || ^6" }, "suggest": { - "symfony/console": "For validating YAML files using the lint command" + "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", + "doctrine/couchdb": "Allow sending log messages to a CouchDB server", + "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client", + "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", + "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler", + "ext-mbstring": "Allow to work properly with unicode symbols", + "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)", + "ext-openssl": "Required to send log messages using SSL", + "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)", + "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", + "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", + "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", + "rollbar/rollbar": "Allow sending log messages to Rollbar", + "ruflin/elastica": "Allow sending log messages to an Elastic Search server" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Yaml\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Monolog\\": "src/Monolog" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -6519,71 +7899,68 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } ], - "description": "Loads and dumps YAML files", - "homepage": "https://symfony.com", + "description": "Sends your logs to files, sockets, inboxes, databases and various web services", + "homepage": "https://github.com/Seldaek/monolog", + "keywords": [ + "log", + "logging", + "psr-3" + ], "support": { - "source": "https://github.com/symfony/yaml/tree/v4.4.44" + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/2.8.0" }, "funding": [ { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/Seldaek", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", "type": "tidelift" } ], - "time": "2022-06-27T13:16:42+00:00" + "time": "2022-07-24T11:55:47+00:00" }, { - "name": "twig/twig", - "version": "v2.15.1", + "name": "nikic/php-parser", + "version": "v4.14.0", "source": { "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "3b7cedb2f736899a7dbd0ba3d6da335a015f5cc4" + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/3b7cedb2f736899a7dbd0ba3d6da335a015f5cc4", - "reference": "3b7cedb2f736899a7dbd0ba3d6da335a015f5cc4", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1", + "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php72": "^1.8" + "ext-tokenizer": "*", + "php": ">=7.0" }, "require-dev": { - "psr/container": "^1.0", - "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" }, + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.15-dev" + "dev-master": "4.9-dev" } }, "autoload": { - "psr-0": { - "Twig_": "lib/" - }, "psr-4": { - "Twig\\": "src/" + "PhpParser\\": "lib/PhpParser" } }, "notification-url": "https://packagist.org/downloads/", @@ -6592,175 +7969,436 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" - }, - { - "name": "Twig Team", - "role": "Contributors" - }, - { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" + "name": "Nikita Popov" } ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", + "description": "A PHP parser written in PHP", "keywords": [ - "templating" + "parser", + "php" ], "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v2.15.1" + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0" }, - "funding": [ - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", - "type": "tidelift" - } - ], - "time": "2022-05-17T05:46:24+00:00" + "time": "2022-05-31T20:59:12+00:00" }, { - "name": "typo3/phar-stream-wrapper", - "version": "v3.1.7", - "source": { - "type": "git", - "url": "https://github.com/TYPO3/phar-stream-wrapper.git", - "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c" + "name": "npm-asset/autosize", + "version": "4.0.4", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/autosize/-/autosize-4.0.4.tgz" }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/blazy", + "version": "1.8.2", "dist": { - "type": "zip", - "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c", - "reference": "5cc2f04a4e2f5c7e9cc02a3bdf80fae0f3e11a8c", - "shasum": "" + "type": "tar", + "url": "https://registry.npmjs.org/blazy/-/blazy-1.8.2.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/bootstrap", + "version": "3.4.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/d3", + "version": "3.5.17", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz" + }, + "type": "npm-asset", + "license": [ + "BSD-3-Clause" + ] + }, + { + "name": "npm-asset/diff", + "version": "3.5.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz" + }, + "type": "npm-asset", + "license": [ + "BSD-3-Clause" + ] + }, + { + "name": "npm-asset/eve-raphael", + "version": "0.5.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/eve-raphael/-/eve-raphael-0.5.0.tgz" + }, + "type": "npm-asset" + }, + { + "name": "npm-asset/fortawesome--fontawesome-free", + "version": "5.15.4", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz" + }, + "type": "npm-asset", + "license": [ + "(CC-BY-4.0 AND OFL-1.1 AND MIT)" + ] + }, + { + "name": "npm-asset/highlight.js", + "version": "9.15.10", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz" + }, + "type": "npm-asset", + "license": [ + "BSD-3-Clause" + ] + }, + { + "name": "npm-asset/javascript-natural-sort", + "version": "0.7.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/jquery", + "version": "3.6.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/jquery-ui-touch-punch", + "version": "0.2.3", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/jquery-ui-touch-punch/-/jquery-ui-touch-punch-0.2.3.tgz" + }, + "type": "npm-asset", + "license": [ + "Dual licensed under the MIT or GPL Version 2 licenses." + ] + }, + { + "name": "npm-asset/jquery.caret", + "version": "0.3.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/jquery.caret/-/jquery.caret-0.3.1.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/js-tokens", + "version": "4.0.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/loose-envify", + "version": "1.4.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" }, "require": { - "ext-json": "*", - "php": "^7.0 || ^8.0" + "npm-asset/js-tokens": ">=3.0.0,<4.0.0|>=4.0.0,<5.0.0" }, - "require-dev": { - "ext-xdebug": "*", - "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^5.1" + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/morris.js06", + "version": "0.6.9", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/morris.js06/-/morris.js06-0.6.9.tgz" }, - "suggest": { - "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" + "require": { + "npm-asset/raphael": ">=2.2.7,<3.0.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "v3.x-dev" - } + "type": "npm-asset", + "license": [ + "BSD-2-Clause" + ] + }, + { + "name": "npm-asset/node-waves", + "version": "0.7.6", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/node-waves/-/node-waves-0.7.6.tgz" }, - "autoload": { - "psr-4": { - "TYPO3\\PharStreamWrapper\\": "src/" - } + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/object-assign", + "version": "4.1.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/photoswipe", + "version": "4.1.3", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/photoswipe/-/photoswipe-4.1.3.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/prop-types", + "version": "15.8.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" + }, + "require": { + "npm-asset/loose-envify": ">=1.4.0,<2.0.0", + "npm-asset/object-assign": ">=4.1.1,<5.0.0", + "npm-asset/react-is": ">=16.13.1,<17.0.0" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/raphael", + "version": "2.2.8", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/raphael/-/raphael-2.2.8.tgz" + }, + "require": { + "npm-asset/eve-raphael": "0.5.0" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/react", + "version": "16.14.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/react/-/react-16.14.0.tgz" }, - "notification-url": "https://packagist.org/downloads/", + "require": { + "npm-asset/loose-envify": ">=1.1.0,<2.0.0", + "npm-asset/object-assign": ">=4.1.1,<5.0.0", + "npm-asset/prop-types": ">=15.6.2,<16.0.0" + }, + "type": "npm-asset", "license": [ "MIT" - ], - "description": "Interceptors for PHP's native phar:// stream handling", - "homepage": "https://typo3.org/", - "keywords": [ - "phar", - "php", - "security", - "stream-wrapper" - ], - "support": { - "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues", - "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.7" + ] + }, + { + "name": "npm-asset/react-dom", + "version": "16.14.0", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz" + }, + "require": { + "npm-asset/loose-envify": ">=1.1.0,<2.0.0", + "npm-asset/object-assign": ">=4.1.1,<5.0.0", + "npm-asset/prop-types": ">=15.6.2,<16.0.0", + "npm-asset/scheduler": ">=0.19.1,<0.20.0" }, - "time": "2021-09-20T19:19:13+00:00" + "type": "npm-asset", + "license": [ + "MIT" + ] }, { - "name": "webflo/drupal-finder", - "version": "1.2.2", + "name": "npm-asset/react-is", + "version": "v16.14.0", "source": { "type": "git", - "url": "https://github.com/webflo/drupal-finder.git", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" + "url": "git@github.com:facebook/react.git", + "reference": "4337c1c00609ec8d7ae399c736e9d37bb159fac5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", - "shasum": "" + "url": "https://api.github.com/repos/facebook/react/zipball/4337c1c00609ec8d7ae399c736e9d37bb159fac5", + "reference": "4337c1c00609ec8d7ae399c736e9d37bb159fac5" + }, + "type": "npm-asset" + }, + { + "name": "npm-asset/scheduler", + "version": "0.19.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz" }, "require": { - "ext-json": "*" + "npm-asset/loose-envify": ">=1.1.0,<2.0.0", + "npm-asset/object-assign": ">=4.1.1,<5.0.0" }, - "require-dev": { - "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^4.8" + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/select2", + "version": "4.0.13", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/select2/-/select2-4.0.13.tgz" }, - "type": "library", - "autoload": { - "classmap": [ - "src/DrupalFinder.php" - ] + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/shariff", + "version": "3.2.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/shariff/-/shariff-3.2.1.tgz" }, - "notification-url": "https://packagist.org/downloads/", + "require": { + "npm-asset/fortawesome--fontawesome-free": ">=5.8.2,<6.0.0", + "npm-asset/jquery": ">=3.4.1,<4.0.0" + }, + "type": "npm-asset", "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Florian Weber", - "email": "florian@webflo.org" - } - ], - "description": "Helper class to locate a Drupal installation from a given path.", - "support": { - "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.2.2" + "MIT" + ] + }, + { + "name": "npm-asset/shoestring", + "version": "2.0.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/shoestring/-/shoestring-2.0.1.tgz" }, - "time": "2020-10-27T09:42:17+00:00" + "type": "npm-asset", + "license": [ + "MIT" + ] }, { - "name": "webmozart/assert", - "version": "1.11.0", + "name": "npm-asset/slick-carousel", + "version": "1.8.1", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/slick-carousel/-/slick-carousel-1.8.1.tgz" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "npm-asset/tablesaw", + "version": "3.1.2", + "dist": { + "type": "tar", + "url": "https://registry.npmjs.org/tablesaw/-/tablesaw-3.1.2.tgz" + }, + "require": { + "npm-asset/javascript-natural-sort": ">=0.7.1,<0.8.0", + "npm-asset/shoestring": ">=2.0.0,<3.0.0" + }, + "type": "npm-asset", + "license": [ + "MIT" + ] + }, + { + "name": "oomphinc/composer-installers-extender", + "version": "2.0.1", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/oomphinc/composer-installers-extender.git", + "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/cbf4b6f9a24153b785d09eee755b995ba87bd5f9", + "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "composer-plugin-api": "^1.1 || ^2.0", + "composer/installers": "^1.0 || ^2.0", + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "^8.5.13" + "composer/composer": "^2.0", + "phpunit/phpunit": "^7.2", + "squizlabs/php_codesniffer": "^3.3" }, - "type": "library", + "type": "composer-plugin", "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } + "class": "OomphInc\\ComposerInstallersExtender\\Plugin" }, "autoload": { "psr-4": { - "Webmozart\\Assert\\": "src/" + "OomphInc\\ComposerInstallersExtender\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -6769,482 +8407,370 @@ ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Stephen Beemsterboer", + "email": "stephen@oomphinc.com", + "homepage": "https://github.com/balbuf" + }, + { + "name": "Nathan Dentzau", + "email": "nate@oomphinc.com", + "homepage": "http://oomph.is/ndentzau" } ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], + "description": "Extend the composer/installers plugin to accept any arbitrary package type.", + "homepage": "http://www.oomphinc.com/", "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" + "issues": "https://github.com/oomphinc/composer-installers-extender/issues", + "source": "https://github.com/oomphinc/composer-installers-extender/tree/2.0.1" }, - "time": "2022-06-03T18:03:27+00:00" + "time": "2021-12-15T12:32:42+00:00" }, { - "name": "webmozart/path-util", - "version": "2.3.0", + "name": "pear/archive_tar", + "version": "1.4.14", "source": { "type": "git", - "url": "https://github.com/webmozart/path-util.git", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" + "url": "https://github.com/pear/Archive_Tar.git", + "reference": "4d761c5334c790e45ef3245f0864b8955c562caa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa", + "reference": "4d761c5334c790e45ef3245f0864b8955c562caa", "shasum": "" }, "require": { - "php": ">=5.3.3", - "webmozart/assert": "~1.0" + "pear/pear-core-minimal": "^1.10.0alpha2", + "php": ">=5.2.0" }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpunit/phpunit": "*" + }, + "suggest": { + "ext-bz2": "Bz2 compression support.", + "ext-xz": "Lzma2 compression support.", + "ext-zlib": "Gzip compression support." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { - "psr-4": { - "Webmozart\\PathUtil\\": "src/" + "psr-0": { + "Archive_Tar": "" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Vincent Blavet", + "email": "vincent@phpconcept.net" + }, + { + "name": "Greg Beaver", + "email": "greg@chiaraquartet.net" + }, + { + "name": "Michiel Rook", + "email": "mrook@php.net" } ], - "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "description": "Tar file management class with compression support (gzip, bzip2, lzma2)", + "homepage": "https://github.com/pear/Archive_Tar", + "keywords": [ + "archive", + "tar" + ], "support": { - "issues": "https://github.com/webmozart/path-util/issues", - "source": "https://github.com/webmozart/path-util/tree/2.3.0" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", + "source": "https://github.com/pear/Archive_Tar" }, - "abandoned": "symfony/filesystem", - "time": "2015-12-17T08:42:14+00:00" - } - ], - "packages-dev": [ + "funding": [ + { + "url": "https://github.com/mrook", + "type": "github" + }, + { + "url": "https://www.patreon.com/michielrook", + "type": "patreon" + } + ], + "time": "2021-07-20T13:53:39+00:00" + }, { - "name": "behat/mink", - "version": "v1.10.0", + "name": "pear/console_getopt", + "version": "v1.4.3", "source": { "type": "git", - "url": "https://github.com/minkphp/Mink.git", - "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5" + "url": "https://github.com/pear/Console_Getopt.git", + "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/19e58905632e7cfdc5b2bafb9b950a3521af32c5", - "reference": "19e58905632e7cfdc5b2bafb9b950a3521af32c5", + "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0", + "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0", "shasum": "" }, - "require": { - "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0", - "symfony/phpunit-bridge": "^5.4 || ^6.0" - }, - "suggest": { - "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", - "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", - "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)", - "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" - }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { - "psr-4": { - "Behat\\Mink\\": "src/" + "psr-0": { + "Console": "./" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Andrei Zmievski", + "email": "andrei@php.net", + "role": "Lead" + }, + { + "name": "Stig Bakken", + "email": "stig@php.net", + "role": "Developer" + }, + { + "name": "Greg Beaver", + "email": "cellog@php.net", + "role": "Helper" } ], - "description": "Browser controller/emulator abstraction for PHP", - "homepage": "https://mink.behat.org/", - "keywords": [ - "browser", - "testing", - "web" - ], + "description": "More info available on: http://pear.php.net/package/Console_Getopt", "support": { - "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.10.0" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt", + "source": "https://github.com/pear/Console_Getopt" }, - "time": "2022-03-28T14:22:43+00:00" + "time": "2019-11-20T18:27:48+00:00" }, { - "name": "behat/mink-selenium2-driver", - "version": "v1.6.0", + "name": "pear/pear-core-minimal", + "version": "v1.10.10", "source": { "type": "git", - "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "e5f8421654930da725499fb92983e6948c6f973e" + "url": "https://github.com/pear/pear-core-minimal.git", + "reference": "625a3c429d9b2c1546438679074cac1b089116a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", - "reference": "e5f8421654930da725499fb92983e6948c6f973e", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7", + "reference": "625a3c429d9b2c1546438679074cac1b089116a7", "shasum": "" }, "require": { - "behat/mink": "^1.9@dev", - "ext-json": "*", - "instaclick/php-webdriver": "^1.4", - "php": ">=7.2" - }, - "require-dev": { - "mink/driver-testsuite": "dev-master", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0" + "pear/console_getopt": "~1.4", + "pear/pear_exception": "~1.0" }, - "type": "mink-driver", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } + "replace": { + "rsky/pear-core-min": "self.version" }, + "type": "library", "autoload": { - "psr-4": { - "Behat\\Mink\\Driver\\": "src/" + "psr-0": { + "": "src/" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "src/" + ], "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Pete Otaqui", - "email": "pete@otaqui.com", - "homepage": "https://github.com/pete-otaqui" - }, - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Christian Weiske", + "email": "cweiske@php.net", + "role": "Lead" } ], - "description": "Selenium2 (WebDriver) driver for Mink framework", - "homepage": "https://mink.behat.org/", - "keywords": [ - "ajax", - "browser", - "javascript", - "selenium", - "testing", - "webdriver" - ], + "description": "Minimal set of PEAR core files to be used as composer dependency", "support": { - "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", + "source": "https://github.com/pear/pear-core-minimal" }, - "time": "2022-03-28T14:55:17+00:00" + "time": "2019-11-19T19:00:24+00:00" }, { - "name": "composer/ca-bundle", - "version": "1.3.3", + "name": "pear/pear_exception", + "version": "v1.0.2", "source": { "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c" + "url": "https://github.com/pear/PEAR_Exception.git", + "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c", - "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", + "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", "shasum": "" }, "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": ">=5.2.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.55", - "psr/log": "^1.0", - "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "phpunit/phpunit": "<9" }, - "type": "library", + "type": "class", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "Composer\\CaBundle\\": "src" - } + "classmap": [ + "PEAR/" + ] }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "." + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Helgi Thormar", + "email": "dufuz@php.net" + }, + { + "name": "Greg Beaver", + "email": "cellog@php.net" } ], - "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "description": "The PEAR Exception base class.", + "homepage": "https://github.com/pear/PEAR_Exception", "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" + "exception" ], "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.3" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", + "source": "https://github.com/pear/PEAR_Exception" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-07-20T07:14:26+00:00" + "time": "2021-03-21T15:43:46+00:00" }, { - "name": "composer/composer", - "version": "2.2.17", + "name": "phenx/php-font-lib", + "version": "0.5.4", "source": { "type": "git", - "url": "https://github.com/composer/composer.git", - "reference": "a8ab5070fb99396e4710baee286478ad697724c2" + "url": "https://github.com/dompdf/php-font-lib.git", + "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/a8ab5070fb99396e4710baee286478ad697724c2", - "reference": "a8ab5070fb99396e4710baee286478ad697724c2", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4", + "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4", "shasum": "" }, "require": { - "composer/ca-bundle": "^1.0", - "composer/metadata-minifier": "^1.0", - "composer/pcre": "^1.0", - "composer/semver": "^3.0", - "composer/spdx-licenses": "^1.2", - "composer/xdebug-handler": "^2.0 || ^3.0", - "justinrainbow/json-schema": "^5.2.11", - "php": "^5.3.2 || ^7.0 || ^8.0", - "psr/log": "^1.0 || ^2.0", - "react/promise": "^1.2 || ^2.7", - "seld/jsonlint": "^1.4", - "seld/phar-utils": "^1.0", - "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0", - "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", - "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0", - "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0" + "ext-mbstring": "*" }, "require-dev": { - "phpspec/prophecy": "^1.10", - "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0" - }, - "suggest": { - "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", - "ext-zip": "Enabling the zip extension allows you to unzip archives", - "ext-zlib": "Allow gzip compression of HTTP requests" + "symfony/phpunit-bridge": "^3 || ^4 || ^5" }, - "bin": [ - "bin/composer" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-main": "2.2-dev" - } - }, "autoload": { "psr-4": { - "Composer\\": "src/Composer" + "FontLib\\": "src/FontLib" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "LGPL-3.0" ], "authors": [ { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "https://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" + "name": "Fabien Ménager", + "email": "fabien.menager@gmail.com" } ], - "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", - "homepage": "https://getcomposer.org/", - "keywords": [ - "autoload", - "dependency", - "package" - ], + "description": "A library to read, parse, export and make subsets of different types of font files.", + "homepage": "https://github.com/PhenX/php-font-lib", "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.17" + "issues": "https://github.com/dompdf/php-font-lib/issues", + "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-07-13T13:27:38+00:00" + "time": "2021-12-17T19:44:54+00:00" }, { - "name": "composer/metadata-minifier", - "version": "1.0.0", + "name": "politsin/jquery-ui-touch-punch", + "version": "1.0", "source": { "type": "git", - "url": "https://github.com/composer/metadata-minifier.git", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207" + "url": "https://github.com/politsin/jquery-ui-touch-punch.git", + "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd", + "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd", "shasum": "" }, - "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "composer/composer": "^2", - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\MetadataMinifier\\": "src" - } - }, + "type": "drupal-library", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Dave Furfero", + "email": "furf@furf.com" } ], - "description": "Small utility library that handles metadata minification and expansion.", + "description": "Extension to jQuery UI for mobile touch event support.", + "homepage": "http://touchpunch.furf.com/", "keywords": [ - "composer", - "compression" + "gestures", + "mobile", + "touch" ], "support": { - "issues": "https://github.com/composer/metadata-minifier/issues", - "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues", + "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.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-04-07T13:37:33+00:00" + "time": "2020-12-15T10:26:18+00:00" }, { - "name": "composer/pcre", + "name": "psr/cache", "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560" + "url": "https://github.com/php-fig/cache.git", + "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560", - "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560", + "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", + "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^1.3", - "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^4.2 || ^5" + "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" + "Psr\\Cache\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -7253,68 +8779,42 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "description": "Common interface for caching libraries", "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" + "cache", + "psr", + "psr-6" ], "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/1.0.1" + "source": "https://github.com/php-fig/cache/tree/master" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-01-21T20:24:37+00:00" + "time": "2016-08-06T20:24:11+00:00" }, { - "name": "composer/spdx-licenses", - "version": "1.5.7", + "name": "psr/container", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/composer/spdx-licenses.git", - "reference": "c848241796da2abf65837d51dce1fae55a960149" + "url": "https://github.com/php-fig/container.git", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", - "reference": "c848241796da2abf65837d51dce1fae55a960149", + "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf", + "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" + "php": ">=7.2.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Composer\\Spdx\\": "src" + "Psr\\Container\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -7323,76 +8823,52 @@ ], "authors": [ { - "name": "Nils Adermann", - "email": "naderman@naderman.de", - "homepage": "http://www.naderman.de" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - }, - { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "SPDX licenses list and validation library.", + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", "keywords": [ - "license", - "spdx", - "validator" + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" ], "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-05-23T07:37:50+00:00" + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/1.1.1" + }, + "time": "2021-03-05T17:36:06+00:00" }, { - "name": "composer/xdebug-handler", - "version": "3.0.3", + "name": "psr/http-factory", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "ced299686f41dce890debac69273b47ffe98a40c" + "url": "https://github.com/php-fig/http-factory.git", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", - "reference": "ced299686f41dce890debac69273b47ffe98a40c", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", "shasum": "" }, "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" - }, - "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^6.0" + "php": ">=7.0.0", + "psr/http-message": "^1.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { "psr-4": { - "Composer\\XdebugHandler\\": "src" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -7401,67 +8877,52 @@ ], "authors": [ { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Restarts a process without Xdebug.", + "description": "Common interfaces for PSR-7 HTTP message factories", "keywords": [ - "Xdebug", - "performance" + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" ], "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" + "source": "https://github.com/php-fig/http-factory/tree/master" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2022-02-25T21:32:43+00:00" + "time": "2019-04-30T12:38:16+00:00" }, { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.7.2", + "name": "psr/http-message", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3", - "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" - }, - "require-dev": { - "composer/composer": "*", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0" + "php": ">=5.3.0" }, - "type": "composer-plugin", + "type": "library", "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + "branch-alias": { + "dev-master": "1.0.x-dev" + } }, "autoload": { "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -7470,73 +8931,51 @@ ], "authors": [ { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" - }, - { - "name": "Contributors", - "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcbf", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" ], "support": { - "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", - "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + "source": "https://github.com/php-fig/http-message/tree/master" }, - "time": "2022-02-04T12:51:07+00:00" + "time": "2016-08-06T14:39:51+00:00" }, { - "name": "doctrine/instantiator", - "version": "1.4.1", + "name": "psr/log", + "version": "1.1.4", "source": { "type": "git", - "url": "https://github.com/doctrine/instantiator.git", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc" + "url": "https://github.com/php-fig/log.git", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc", - "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "doctrine/coding-standard": "^9", - "ext-pdo": "*", - "ext-phar": "*", - "phpbench/phpbench": "^0.16 || ^1", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-phpunit": "^1", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "vimeo/psalm": "^4.22" + "php": ">=5.3.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -7545,243 +8984,165 @@ ], "authors": [ { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "homepage": "https://ocramius.github.io/" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ - "constructor", - "instantiate" + "log", + "psr", + "psr-3" ], "support": { - "issues": "https://github.com/doctrine/instantiator/issues", - "source": "https://github.com/doctrine/instantiator/tree/1.4.1" + "source": "https://github.com/php-fig/log/tree/1.1.4" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", - "type": "tidelift" - } - ], - "time": "2022-03-03T08:28:38+00:00" + "time": "2021-05-03T11:20:27+00:00" }, { - "name": "drupal/coder", - "version": "8.3.15", + "name": "psy/psysh", + "version": "v0.10.12", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/coder.git", - "reference": "0cfad3a21f1168bdc3030ae73351c31f88abba74" + "url": "https://github.com/bobthecow/psysh.git", + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d", + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d", + "shasum": "" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", - "ext-mbstring": "*", - "php": ">=7.1", - "sirbrillig/phpcs-variable-analysis": "^2.10", - "slevomat/coding-standard": "^7.0", - "squizlabs/php_codesniffer": "^3.6.0", - "symfony/yaml": ">=2.0.5" + "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" }, "require-dev": { - "phpstan/phpstan": "^1.4.9", - "phpunit/phpunit": "^7.0 || ^8.0" + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "3.17.*" + }, + "suggest": { + "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", + "ext-pdo-sqlite": "The doc command requires SQLite to work.", + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", + "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." + }, + "bin": [ + "bin/psysh" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "0.10.x-dev" + } }, - "type": "phpcodesniffer-standard", "autoload": { + "files": [ + "src/functions.php" + ], "psr-4": { - "Drupal\\": "coder_sniffer/Drupal/", - "DrupalPractice\\": "coder_sniffer/DrupalPractice/" + "Psy\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], - "description": "Coder is a library to review Drupal code.", - "homepage": "https://www.drupal.org/project/coder", - "keywords": [ - "code review", - "phpcs", - "standards" + "authors": [ + { + "name": "Justin Hileman", + "email": "justin@justinhileman.info", + "homepage": "http://justinhileman.com" + } ], - "support": { - "issues": "https://www.drupal.org/project/issues/coder", - "source": "https://www.drupal.org/project/coder" - }, - "time": "2022-04-02T17:56:30+00:00" - }, - { - "name": "drupal/core-dev", - "version": "9.4.4", - "source": { - "type": "git", - "url": "https://github.com/drupal/core-dev.git", - "reference": "72ddd684df05fc22e97d42ddba5fb6c5ee9f9b29" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/72ddd684df05fc22e97d42ddba5fb6c5ee9f9b29", - "reference": "72ddd684df05fc22e97d42ddba5fb6c5ee9f9b29", - "shasum": "" - }, - "require": { - "behat/mink": "^1.8", - "behat/mink-selenium2-driver": "^1.4", - "composer/composer": "^2.2.12", - "drupal/coder": "^8.3.10", - "easyrdf/easyrdf": "^0.9 || ^1.0", - "friends-of-behat/mink-browserkit-driver": "^1.4", - "instaclick/php-webdriver": "^1.4.1", - "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.6.8", - "phpspec/prophecy": "^1.12", - "phpunit/phpunit": "^8.5.14 || ^9", - "symfony/browser-kit": "^4.4", - "symfony/css-selector": "^4.4", - "symfony/dom-crawler": "^4.4 !=4.4.5", - "symfony/error-handler": "^4.4", - "symfony/filesystem": "^4.4", - "symfony/finder": "^4.4", - "symfony/lock": "^4.4", - "symfony/phpunit-bridge": "^5.4", - "symfony/var-dumper": "^5.4" - }, - "conflict": { - "webflo/drupal-core-require-dev": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" + "description": "An interactive shell for modern PHP.", + "homepage": "http://psysh.org", + "keywords": [ + "REPL", + "console", + "interactive", + "shell" ], - "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "source": "https://github.com/drupal/core-dev/tree/9.4.4" + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.10.12" }, - "time": "2022-04-14T00:37:13+00:00" + "time": "2021-11-30T14:05:36+00:00" }, { - "name": "easyrdf/easyrdf", - "version": "1.1.1", + "name": "ralouphie/getallheaders", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/easyrdf/easyrdf.git", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64" + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "ext-pcre": "*", - "ext-xmlreader": "*", - "lib-libxml": "*", - "php": ">=7.1.0" + "php": ">=5.6" }, "require-dev": { - "code-lts/doctum": "^5", - "ml/json-ld": "~1.0", - "phpunit/phpunit": "^7", - "semsol/arc2": "^2.4", - "squizlabs/php_codesniffer": "3.*", - "zendframework/zend-http": "~2.3" - }, - "suggest": { - "ml/json-ld": "~1.0", - "semsol/arc2": "~2.2" + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, "type": "library", "autoload": { - "psr-4": { - "EasyRdf\\": "lib" - } + "files": [ + "src/getallheaders.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nicholas Humfrey", - "email": "njh@aelius.com", - "homepage": "http://www.aelius.com/njh/", - "role": "Developer" - }, - { - "name": "Alexey Zakhlestin", - "email": "indeyets@gmail.com", - "homepage": "http://indeyets.ru/", - "role": "Developer" + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" } ], - "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" - ], + "description": "A polyfill for getallheaders.", "support": { - "forum": "http://groups.google.com/group/easyrdf/", - "issues": "http://github.com/easyrdf/easyrdf/issues", - "source": "https://github.com/easyrdf/easyrdf/tree/1.1.1" + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" }, - "time": "2020-12-02T08:47:31+00:00" + "time": "2019-03-08T08:55:37+00:00" }, { - "name": "friends-of-behat/mink-browserkit-driver", - "version": "v1.6.1", + "name": "spatie/color", + "version": "1.5.2", "source": { "type": "git", - "url": "https://github.com/FriendsOfBehat/MinkBrowserKitDriver.git", - "reference": "b3c29f18fe20487846e4c2733b066ec5e47f4f76" + "url": "https://github.com/spatie/color.git", + "reference": "d6e9b2766d8e24aab835e414248728762bd63530" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfBehat/MinkBrowserKitDriver/zipball/b3c29f18fe20487846e4c2733b066ec5e47f4f76", - "reference": "b3c29f18fe20487846e4c2733b066ec5e47f4f76", + "url": "https://api.github.com/repos/spatie/color/zipball/d6e9b2766d8e24aab835e414248728762bd63530", + "reference": "d6e9b2766d8e24aab835e414248728762bd63530", "shasum": "" }, "require": { - "behat/mink": "^1.7", - "php": "^7.4|^8.0", - "symfony/browser-kit": "^4.4|^5.0|^6.0", - "symfony/dom-crawler": "^4.4|^5.0|^6.0" - }, - "replace": { - "behat/mink-browserkit-driver": "self.version" + "php": "^7.3|^8.0" }, "require-dev": { - "friends-of-behat/mink-driver-testsuite": "dev-master", - "symfony/http-kernel": "^4.4|^5.0|^6.0" - }, - "type": "mink-driver", - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } + "phpunit/phpunit": "^6.5||^9.0" }, + "type": "library", "autoload": { "psr-4": { - "Behat\\Mink\\Driver\\": "src/" + "Spatie\\Color\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -7790,122 +9151,124 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Sebastian De Deyne", + "email": "sebastian@spatie.be", + "homepage": "https://spatie.be", + "role": "Developer" } ], - "description": "Symfony2 BrowserKit driver for Mink framework", - "homepage": "http://mink.behat.org/", + "description": "A little library to handle color conversions", + "homepage": "https://github.com/spatie/color", "keywords": [ - "Mink", - "Symfony2", - "browser", - "testing" + "color", + "conversion", + "rgb", + "spatie" ], "support": { - "source": "https://github.com/FriendsOfBehat/MinkBrowserKitDriver/tree/v1.6.1" + "issues": "https://github.com/spatie/color/issues", + "source": "https://github.com/spatie/color/tree/1.5.2" }, - "time": "2021-12-13T10:41:57+00:00" + "funding": [ + { + "url": "https://github.com/spatie", + "type": "github" + } + ], + "time": "2022-06-24T21:50:06+00:00" }, { - "name": "instaclick/php-webdriver", - "version": "1.4.14", + "name": "stack/builder", + "version": "v1.0.6", "source": { "type": "git", - "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "200b8df772b74d604bebf25ef42ad6f8ee6380a9" + "url": "https://github.com/stackphp/builder.git", + "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/200b8df772b74d604bebf25ef42ad6f8ee6380a9", - "reference": "200b8df772b74d604bebf25ef42ad6f8ee6380a9", + "url": "https://api.github.com/repos/stackphp/builder/zipball/a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", + "reference": "a4faaa6f532c6086bc66c29e1bc6c29593e1ca7c", "shasum": "" }, "require": { - "ext-curl": "*", - "php": ">=5.3.2" + "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": { - "phpunit/phpunit": "^8.5 || ^9.5", - "satooshi/php-coveralls": "^1.0 || ^2.0" + "phpunit/phpunit": "~8.0", + "symfony/routing": "^5.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.0-dev" } }, "autoload": { "psr-0": { - "WebDriver": "lib/" + "Stack": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], - "authors": [ - { - "name": "Justin Bishop", - "email": "jubishop@gmail.com", - "role": "Developer" - }, + "authors": [ { - "name": "Anthon Pang", - "email": "apang@softwaredevelopment.ca", - "role": "Fork Maintainer" + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" } ], - "description": "PHP WebDriver for Selenium 2", - "homepage": "http://instaclick.com/", + "description": "Builder for stack middleware based on HttpKernelInterface.", "keywords": [ - "browser", - "selenium", - "webdriver", - "webtest" + "stack" ], "support": { - "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.14" + "issues": "https://github.com/stackphp/builder/issues", + "source": "https://github.com/stackphp/builder/tree/v1.0.6" }, - "time": "2022-04-19T02:06:59+00:00" + "time": "2020-01-30T12:17:27+00:00" }, { - "name": "justinrainbow/json-schema", - "version": "5.2.12", + "name": "swiftmailer/swiftmailer", + "version": "v6.2.4", "source": { "type": "git", - "url": "https://github.com/justinrainbow/json-schema.git", - "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60" + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60", - "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e", + "reference": "56f0ab23f54c4ccbb0d5dcc67ff8552e0c98d59e", "shasum": "" }, "require": { - "php": ">=5.3.3" + "egulias/email-validator": "^2.0", + "php": ">=7.0.0", + "symfony/polyfill-iconv": "^1.0", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", - "json-schema/json-schema-test-suite": "1.2.0", - "phpunit/phpunit": "^4.8.35" + "mockery/mockery": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.0" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses" }, - "bin": [ - "bin/validate-json" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0.x-dev" + "dev-master": "6.2-dev" } }, "autoload": { - "psr-4": { - "JsonSchema\\": "src/JsonSchema/" - } + "files": [ + "lib/swift_required.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -7913,282 +9276,288 @@ ], "authors": [ { - "name": "Bruno Prieto Reis", - "email": "bruno.p.reis@gmail.com" - }, - { - "name": "Justin Rainbow", - "email": "justin.rainbow@gmail.com" - }, - { - "name": "Igor Wiedler", - "email": "igor@wiedler.ch" + "name": "Chris Corbyn" }, { - "name": "Robert Schönthal", - "email": "seroscho@googlemail.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], - "description": "A library to validate a json schema.", - "homepage": "https://github.com/justinrainbow/json-schema", + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", "keywords": [ - "json", - "schema" + "email", + "mail", + "mailer" ], "support": { - "issues": "https://github.com/justinrainbow/json-schema/issues", - "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12" + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.4" }, - "time": "2022-04-13T08:02:27+00:00" + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer", + "type": "tidelift" + } + ], + "abandoned": "symfony/mailer", + "time": "2020-12-08T18:02:06+00:00" }, { - "name": "mikey179/vfsstream", - "version": "v1.6.11", + "name": "symfony-cmf/routing", + "version": "2.3.3", "source": { "type": "git", - "url": "https://github.com/bovigo/vfsStream.git", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f" + "url": "https://github.com/symfony-cmf/Routing.git", + "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", - "reference": "17d16a85e6c26ce1f3e2fa9ceeacdc2855db1e9f", + "url": "https://api.github.com/repos/symfony-cmf/Routing/zipball/3c97e7b7709b313cecfb76d691ad4cc22acbf3f5", + "reference": "3c97e7b7709b313cecfb76d691ad4cc22acbf3f5", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": "^7.2 || ^8.0", + "psr/log": "^1.0", + "symfony/http-kernel": "^4.4 || ^5.0", + "symfony/routing": "^4.4 || ^5.0" }, "require-dev": { - "phpunit/phpunit": "^4.5|^5.0" + "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 (^4.4 || ^5.0)" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { - "psr-0": { - "org\\bovigo\\vfs\\": "src/main/php" + "psr-4": { + "Symfony\\Cmf\\Component\\Routing\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Frank Kleine", - "homepage": "http://frankkleine.de/", - "role": "Developer" + "name": "Symfony CMF Community", + "homepage": "https://github.com/symfony-cmf/Routing/contributors" } ], - "description": "Virtual file system to mock the real file system in unit tests.", - "homepage": "http://vfs.bovigo.org/", + "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/bovigo/vfsStream/issues", - "source": "https://github.com/bovigo/vfsStream/tree/master", - "wiki": "https://github.com/bovigo/vfsStream/wiki" + "issues": "https://github.com/symfony-cmf/Routing/issues", + "source": "https://github.com/symfony-cmf/Routing/tree/2.3.3" }, - "time": "2022-02-23T02:02:42+00:00" + "time": "2020-10-06T10:15:37+00:00" }, { - "name": "myclabs/deep-copy", - "version": "1.11.0", + "name": "symfony/console", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614" + "url": "https://github.com/symfony/console.git", + "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614", - "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614", + "url": "https://api.github.com/repos/symfony/console/zipball/a62acecdf5b50e314a4f305cd01b5282126f3095", + "reference": "a62acecdf5b50e314a4f305cd01b5282126f3095", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/polyfill-php80": "^1.15", + "symfony/service-contracts": "^1.1|^2" }, "conflict": { - "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "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" }, "require-dev": { - "doctrine/collections": "^1.6.8", - "doctrine/common": "^2.13.3 || ^3.2.2", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + "psr/log": "~1.0", + "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", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" }, "type": "library", "autoload": { - "files": [ - "src/DeepCopy/deep_copy.php" - ], "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - } + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } ], + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0" + "source": "https://github.com/symfony/console/tree/v4.4.25" }, "funding": [ { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "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-03-03T13:19:32+00:00" + "time": "2021-05-26T11:20:16+00:00" }, { - "name": "phar-io/manifest", - "version": "2.0.3", + "name": "symfony/css-selector", + "version": "v5.4.11", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53" + "url": "https://github.com/symfony/css-selector.git", + "reference": "c1681789f059ab756001052164726ae88512ae3d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", - "reference": "97803eca37d319dfa7826cc2437fc020857acb53", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/c1681789f059ab756001052164726ae88512ae3d", + "reference": "c1681789f059ab756001052164726ae88512ae3d", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-phar": "*", - "ext-xmlwriter": "*", - "phar-io/version": "^3.0.1", - "php": "^7.2 || ^8.0" + "php": ">=7.2.5", + "symfony/polyfill-php80": "^1.16" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.3" - }, - "time": "2021-07-20T11:28:43+00:00" - }, - { - "name": "phar-io/version", - "version": "3.2.1", - "source": { - "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] + "source": "https://github.com/symfony/css-selector/tree/v5.4.11" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ + "funding": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" + "url": "https://symfony.com/sponsor", + "type": "custom" }, { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" + "url": "https://github.com/fabpot", + "type": "github" }, { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "description": "Library for handling version information and constraints", - "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" - }, - "time": "2022-02-21T01:04:05+00:00" + "time": "2022-06-27T16:58:25+00:00" }, { - "name": "phpdocumentor/reflection-common", - "version": "2.2.0", + "name": "symfony/debug", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + "url": "https://github.com/symfony/debug.git", + "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", - "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "url": "https://api.github.com/repos/symfony/debug/zipball/a8d2d5c94438548bff9f998ca874e202bb29d07f", + "reference": "a8d2d5c94438548bff9f998ca874e202bb29d07f", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=7.1.3", + "psr/log": "~1.0", + "symfony/polyfill-php80": "^1.15" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.x-dev" - } + "conflict": { + "symfony/http-kernel": "<3.4" }, + "require-dev": { + "symfony/http-kernel": "^3.4|^4.0|^5.0" + }, + "type": "library", "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": "src/" - } + "Symfony\\Component\\Debug\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8196,60 +9565,85 @@ ], "authors": [ { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], + "description": "Provides tools to ease debugging PHP code", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", - "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + "source": "https://github.com/symfony/debug/tree/v4.4.25" }, - "time": "2020-06-27T09:03:43+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" + } + ], + "abandoned": "symfony/error-handler", + "time": "2021-05-26T17:39:37+00:00" }, { - "name": "phpdocumentor/reflection-docblock", - "version": "5.3.0", + "name": "symfony/dependency-injection", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170" + "url": "https://github.com/symfony/dependency-injection.git", + "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", - "reference": "622548b623e81ca6d78b721c5e029f4ce664f170", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d", + "reference": "2ed2a0a6c960bf4e2e862ec77b2f2c558b83c64d", "shasum": "" }, "require": { - "ext-filter": "*", - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.2", - "phpdocumentor/type-resolver": "^1.3", - "webmozart/assert": "^1.9.1" + "php": ">=7.1.3", + "psr/container": "^1.0", + "symfony/service-contracts": "^1.1.6|^2" + }, + "conflict": { + "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", + "symfony/service-implementation": "1.0|2.0" + }, + "require-dev": { + "symfony/config": "^4.3", + "symfony/expression-language": "^3.4|^4.0|^5.0", + "symfony/yaml": "^4.4|^5.0" }, - "require-dev": { - "mockery/mockery": "~1.3.2", - "psalm/phar": "^4.8" + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.x-dev" - } - }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } + "Symfony\\Component\\DependencyInjection\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8257,53 +9651,66 @@ ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "description": "Allows you to standardize and centralize the way objects are constructed in your application", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" + "source": "https://github.com/symfony/dependency-injection/tree/v4.4.25" }, - "time": "2021-10-19T17:43:47+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-05-26T17:54:16+00:00" }, { - "name": "phpdocumentor/type-resolver", - "version": "1.6.1", + "name": "symfony/deprecation-contracts", + "version": "v2.4.0", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "77a32518733312af16a44300404e945338981de3" + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3", - "reference": "77a32518733312af16a44300404e945338981de3", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "phpdocumentor/reflection-common": "^2.0" - }, - "require-dev": { - "ext-tokenizer": "*", - "psalm/phar": "^4.8" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev" + "dev-main": "2.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": "src" - } + "files": [ + "function.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8311,52 +9718,68 @@ ], "authors": [ { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "description": "A generic function and convention to trigger deprecation notices", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0" }, - "time": "2022-03-15T21:29:03+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-03-23T23:28:01+00:00" }, { - "name": "phpspec/prophecy", - "version": "v1.15.0", + "name": "symfony/error-handler", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/phpspec/prophecy.git", - "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13" + "url": "https://github.com/symfony/error-handler.git", + "reference": "310a756cec00d29d89a08518405aded046a54a8b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13", - "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/310a756cec00d29d89a08518405aded046a54a8b", + "reference": "310a756cec00d29d89a08518405aded046a54a8b", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.2", - "php": "^7.2 || ~8.0, <8.2", - "phpdocumentor/reflection-docblock": "^5.2", - "sebastian/comparator": "^3.0 || ^4.0", - "sebastian/recursion-context": "^3.0 || ^4.0" + "php": ">=7.1.3", + "psr/log": "~1.0", + "symfony/debug": "^4.4.5", + "symfony/polyfill-php80": "^1.15", + "symfony/var-dumper": "^4.4|^5.0" }, "require-dev": { - "phpspec/phpspec": "^6.0 || ^7.0", - "phpunit/phpunit": "^8.0 || ^9.0" + "symfony/http-kernel": "^4.4|^5.0", + "symfony/serializer": "^4.4|^5.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Prophecy\\": "src/Prophecy" - } + "Symfony\\Component\\ErrorHandler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8364,524 +9787,616 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Marcello Duarte", - "email": "marcello.duarte@gmail.com" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Highly opinionated mocking framework for PHP 5.3+", - "homepage": "https://github.com/phpspec/prophecy", - "keywords": [ - "Double", - "Dummy", - "fake", - "mock", - "spy", - "stub" - ], + "description": "Provides tools to manage errors and ease debugging PHP code", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/phpspec/prophecy/issues", - "source": "https://github.com/phpspec/prophecy/tree/v1.15.0" + "source": "https://github.com/symfony/error-handler/tree/v4.4.25" }, - "time": "2021-12-08T12:19:24+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-05-26T17:39:37+00:00" }, { - "name": "phpstan/phpdoc-parser", - "version": "1.6.4", + "name": "symfony/event-dispatcher", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "135607f9ccc297d6923d49c2bcf309f509413215" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/135607f9ccc297d6923d49c2bcf309f509413215", - "reference": "135607f9ccc297d6923d49c2bcf309f509413215", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/047773e7016e4fd45102cedf4bd2558ae0d0c32f", + "reference": "047773e7016e4fd45102cedf4bd2558ae0d0c32f", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=7.1.3", + "symfony/event-dispatcher-contracts": "^1.1" + }, + "conflict": { + "symfony/dependency-injection": "<3.4" + }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" }, "require-dev": { - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.5", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5", - "symfony/process": "^5.2" + "psr/log": "~1.0", + "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", "autoload": { "psr-4": { - "PHPStan\\PhpDocParser\\": [ - "src/" - ] - } + "Symfony\\Component\\EventDispatcher\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPDoc parser with support for nullable, intersection and generic types", + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.6.4" + "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.25" }, - "time": "2022-06-26T13:09:08+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-05-26T17:39:37+00:00" }, { - "name": "phpunit/php-code-coverage", - "version": "9.2.15", + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.9", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2e9da11878c4202f97915c1cb4bb1ca318a63f5f", - "reference": "2e9da11878c4202f97915c1cb4bb1ca318a63f5f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7", + "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-xmlwriter": "*", - "nikic/php-parser": "^4.13.0", - "php": ">=7.3", - "phpunit/php-file-iterator": "^3.0.3", - "phpunit/php-text-template": "^2.0.2", - "sebastian/code-unit-reverse-lookup": "^2.0.2", - "sebastian/complexity": "^2.0", - "sebastian/environment": "^5.1.2", - "sebastian/lines-of-code": "^1.0.3", - "sebastian/version": "^3.0.1", - "theseer/tokenizer": "^1.2.0" - }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "php": ">=7.1.3" }, "suggest": { - "ext-pcov": "*", - "ext-xdebug": "*" + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "9.2-dev" + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", - "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", "keywords": [ - "coverage", - "testing", - "xunit" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.15" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-03-07T09:28:20+00:00" + "time": "2020-07-06T13:19:58+00:00" }, { - "name": "phpunit/php-file-iterator", - "version": "3.0.6", + "name": "symfony/filesystem", + "version": "v4.4.42", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + "url": "https://github.com/symfony/filesystem.git", + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", - "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", "shasum": "" }, "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php80": "^1.16" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "FilterIterator implementation that filters files based on a list of suffixes.", - "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ - "filesystem", - "iterator" - ], + "description": "Provides basic utilities for the filesystem", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", - "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + "source": "https://github.com/symfony/filesystem/tree/v4.4.42" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-12-02T12:48:52+00:00" + "time": "2022-05-20T08:49:14+00:00" }, { - "name": "phpunit/php-invoker", - "version": "3.1.1", + "name": "symfony/finder", + "version": "v5.4.11", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-invoker.git", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + "url": "https://github.com/symfony/finder.git", + "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", - "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "url": "https://api.github.com/repos/symfony/finder/zipball/7872a66f57caffa2916a584db1aa7f12adc76f8c", + "reference": "7872a66f57caffa2916a584db1aa7f12adc76f8c", "shasum": "" }, "require": { - "php": ">=7.3" - }, - "require-dev": { - "ext-pcntl": "*", - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-pcntl": "*" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php80": "^1.16" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Finder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Invoke callables with a timeout", - "homepage": "https://github.com/sebastianbergmann/php-invoker/", - "keywords": [ - "process" - ], + "description": "Finds files and directories via an intuitive fluent interface", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/php-invoker/issues", - "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + "source": "https://github.com/symfony/finder/tree/v5.4.11" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2020-09-28T05:58:55+00:00" + "time": "2022-07-29T07:37:50+00:00" }, { - "name": "phpunit/php-text-template", - "version": "2.0.4", + "name": "symfony/http-client-contracts", + "version": "v2.4.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-text-template.git", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + "url": "https://github.com/symfony/http-client-contracts.git", + "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", - "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4", + "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.2.5" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "symfony/http-client-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "2.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Symfony\\Contracts\\HttpClient\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Simple template engine.", - "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "description": "Generic abstractions related to HTTP clients", + "homepage": "https://symfony.com", "keywords": [ - "template" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "issues": "https://github.com/sebastianbergmann/php-text-template/issues", - "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T05:33:50+00:00" + "time": "2021-04-11T23:07:08+00:00" }, { - "name": "phpunit/php-timer", - "version": "5.0.3", + "name": "symfony/http-foundation", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + "url": "https://github.com/symfony/http-foundation.git", + "reference": "0c79d5a65ace4fe66e49702658c024a419d2438b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", - "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/0c79d5a65ace4fe66e49702658c024a419d2438b", + "reference": "0c79d5a65ace4fe66e49702658c024a419d2438b", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.1.3", + "symfony/mime": "^4.3|^5.0", + "symfony/polyfill-mbstring": "~1.1", + "symfony/polyfill-php80": "^1.15" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "predis/predis": "~1.0", + "symfony/expression-language": "^3.4|^4.0|^5.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\HttpFoundation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Utility class for timing", - "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ - "timer" - ], + "description": "Defines an object-oriented layer for the HTTP specification", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/php-timer/issues", - "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + "source": "https://github.com/symfony/http-foundation/tree/v4.4.25" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T13:16:10+00:00" + "time": "2021-05-26T11:20:16+00:00" }, { - "name": "phpunit/phpunit", - "version": "9.5.21", + "name": "symfony/http-kernel", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1" + "url": "https://github.com/symfony/http-kernel.git", + "reference": "3795165596fe81a52296b78c9aae938d434069cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e32b76be457de00e83213528f6bb37e2a38fcb1", - "reference": "0e32b76be457de00e83213528f6bb37e2a38fcb1", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3795165596fe81a52296b78c9aae938d434069cc", + "reference": "3795165596fe81a52296b78c9aae938d434069cc", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.3.1", - "ext-dom": "*", - "ext-json": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "ext-xml": "*", - "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.10.1", - "phar-io/manifest": "^2.0.3", - "phar-io/version": "^3.0.2", - "php": ">=7.3", - "phpspec/prophecy": "^1.12.1", - "phpunit/php-code-coverage": "^9.2.13", - "phpunit/php-file-iterator": "^3.0.5", - "phpunit/php-invoker": "^3.1.1", - "phpunit/php-text-template": "^2.0.3", - "phpunit/php-timer": "^5.0.2", - "sebastian/cli-parser": "^1.0.1", - "sebastian/code-unit": "^1.0.6", - "sebastian/comparator": "^4.0.5", - "sebastian/diff": "^4.0.3", - "sebastian/environment": "^5.1.3", - "sebastian/exporter": "^4.0.3", - "sebastian/global-state": "^5.0.1", - "sebastian/object-enumerator": "^4.0.3", - "sebastian/resource-operations": "^3.0.3", - "sebastian/type": "^3.0", - "sebastian/version": "^3.0.2" + "php": ">=7.1.3", + "psr/log": "~1.0", + "symfony/error-handler": "^4.4", + "symfony/event-dispatcher": "^4.4", + "symfony/http-client-contracts": "^1.1|^2", + "symfony/http-foundation": "^4.4|^5.0", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-php73": "^1.9", + "symfony/polyfill-php80": "^1.15" + }, + "conflict": { + "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" }, "require-dev": { - "phpspec/prophecy-phpunit": "^2.0.1" + "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": { - "ext-soap": "*", - "ext-xdebug": "*" + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "" }, - "bin": [ - "phpunit" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "9.5-dev" - } - }, "autoload": { - "files": [ - "src/Framework/Assert/Functions.php" - ], - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\HttpKernel\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "The PHP Unit Testing framework.", - "homepage": "https://phpunit.de/", - "keywords": [ - "phpunit", - "testing", - "xunit" - ], + "description": "Provides a structured process for converting a Request into a Response", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.21" + "source": "https://github.com/symfony/http-kernel/tree/v4.4.25" }, "funding": [ { - "url": "https://phpunit.de/sponsors.html", + "url": "https://symfony.com/sponsor", "type": "custom" }, { - "url": "https://github.com/sebastianbergmann", + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2022-06-19T12:14:25+00:00" + "time": "2021-06-01T07:12:08+00:00" }, { - "name": "react/promise", - "version": "v2.9.0", + "name": "symfony/mime", + "version": "v5.3.0", "source": { "type": "git", - "url": "https://github.com/reactphp/promise.git", - "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910" + "url": "https://github.com/symfony/mime.git", + "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910", - "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910", + "url": "https://api.github.com/repos/symfony/mime/zipball/ed710d297b181f6a7194d8172c9c2423d58e4852", + "reference": "ed710d297b181f6a7194d8172c9c2423d58e4852", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0", + "symfony/polyfill-php80": "^1.15" + }, + "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": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + "egulias/email-validator": "^2.1.10|^3.1", + "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/property-access": "^4.4|^5.1", + "symfony/property-info": "^4.4|^5.1", + "symfony/serializer": "^5.2" }, "type": "library", "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { - "React\\Promise\\": "src/" - } + "Symfony\\Component\\Mime\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8889,1040 +10404,1416 @@ ], "authors": [ { - "name": "Jan Sorgalla", - "email": "jsorgalla@gmail.com", - "homepage": "https://sorgalla.com/" - }, - { - "name": "Christian Lück", - "email": "christian@clue.engineering", - "homepage": "https://clue.engineering/" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "reactphp@ceesjankiewiet.nl", - "homepage": "https://wyrihaximus.net/" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "description": "Allows manipulating MIME messages", + "homepage": "https://symfony.com", "keywords": [ - "promise", - "promises" + "mime", + "mime-type" ], "support": { - "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v2.9.0" + "source": "https://github.com/symfony/mime/tree/v5.3.0" }, "funding": [ { - "url": "https://github.com/WyriHaximus", - "type": "github" + "url": "https://symfony.com/sponsor", + "type": "custom" }, { - "url": "https://github.com/clue", + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2022-02-11T10:27:51+00:00" + "time": "2021-05-26T17:43:10+00:00" }, { - "name": "sebastian/cli-parser", - "version": "1.0.1", + "name": "symfony/polyfill-ctype", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/cli-parser.git", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2", - "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce", + "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.1" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "ext-ctype": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Library for parsing CLI options", - "homepage": "https://github.com/sebastianbergmann/cli-parser", + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], "support": { - "issues": "https://github.com/sebastianbergmann/cli-parser/issues", - "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2020-09-28T06:08:49+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { - "name": "sebastian/code-unit", - "version": "1.0.8", + "name": "symfony/polyfill-iconv", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit.git", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", - "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933", + "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.1" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "ext-iconv": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Collection of value objects that represent the PHP code units", - "homepage": "https://github.com/sebastianbergmann/code-unit", + "description": "Symfony polyfill for the Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ], "support": { - "issues": "https://github.com/sebastianbergmann/code-unit/issues", - "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T13:08:54+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { - "name": "sebastian/code-unit-reverse-lookup", - "version": "2.0.3", + "name": "symfony/polyfill-intl-idn", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", - "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65", + "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Looks up which function or method a line of code belongs to", - "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { - "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", - "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2020-09-28T05:30:19+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { - "name": "sebastian/comparator", - "version": "4.0.6", + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "55f4261989e546dc112258c7a75935a81a7ce382" + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382", - "reference": "55f4261989e546dc112258c7a75935a81a7ce382", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8", + "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/diff": "^4.0", - "sebastian/exporter": "^4.0" + "php": ">=7.1" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "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": [ - "src/" + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides the functionality to compare PHP values for equality", - "homepage": "https://github.com/sebastianbergmann/comparator", + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", "keywords": [ - "comparator", - "compare", - "equality" + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" ], "support": { - "issues": "https://github.com/sebastianbergmann/comparator/issues", - "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T15:49:45+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { - "name": "sebastian/complexity", - "version": "2.0.2", + "name": "symfony/polyfill-mbstring", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/complexity.git", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88", - "reference": "739b35e53379900cc9ac327b2147867b8b6efd88", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1", + "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1", "shasum": "" }, "require": { - "nikic/php-parser": "^4.7", - "php": ">=7.3" + "php": ">=7.1" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "ext-mbstring": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Library for calculating the complexity of PHP code units", - "homepage": "https://github.com/sebastianbergmann/complexity", + "description": "Symfony polyfill for the Mbstring extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "support": { - "issues": "https://github.com/sebastianbergmann/complexity/issues", - "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T15:52:27+00:00" + "time": "2021-05-27T09:27:20+00:00" }, { - "name": "sebastian/diff", - "version": "4.0.4", + "name": "symfony/polyfill-php72", + "version": "v1.26.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2", + "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2", "shasum": "" }, "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.3", - "symfony/process": "^4.2 || ^5" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "1.26-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T13:10:38+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { - "name": "sebastian/environment", - "version": "5.1.4", + "name": "symfony/polyfill-php73", + "version": "v1.26.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/environment.git", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7" + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7", - "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85", + "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85", "shasum": "" }, "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-posix": "*" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.1-dev" + "dev-main": "1.26-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, "classmap": [ - "src/" + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides functionality to handle HHVM/PHP environments", - "homepage": "http://www.github.com/sebastianbergmann/environment", + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", "keywords": [ - "Xdebug", - "environment", - "hhvm" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "issues": "https://github.com/sebastianbergmann/environment/issues", - "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-04-03T09:37:03+00:00" + "time": "2022-05-24T11:49:31+00:00" }, { - "name": "sebastian/exporter", - "version": "4.0.4", + "name": "symfony/polyfill-php80", + "version": "v1.23.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9", - "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0", + "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/recursion-context": "^4.0" - }, - "require-dev": { - "ext-mbstring": "*", - "phpunit/phpunit": "^9.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "1.23-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, "classmap": [ - "src/" + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, - { - "name": "Volker Dusch", - "email": "github@wallbash.com" + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" }, { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides the functionality to export PHP variables for visualization", - "homepage": "https://www.github.com/sebastianbergmann/exporter", + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", "keywords": [ - "export", - "exporter" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "issues": "https://github.com/sebastianbergmann/exporter/issues", - "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-11T14:18:36+00:00" + "time": "2021-02-19T12:13:01+00:00" }, { - "name": "sebastian/global-state", - "version": "5.0.5", + "name": "symfony/process", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" + "url": "https://github.com/symfony/process.git", + "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "url": "https://api.github.com/repos/symfony/process/zipball/cd61e6dd273975c6625316de9d141ebd197f93c9", + "reference": "cd61e6dd273975c6625316de9d141ebd197f93c9", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" - }, - "require-dev": { - "ext-dom": "*", - "phpunit/phpunit": "^9.3" - }, - "suggest": { - "ext-uopz": "*" + "php": ">=7.1.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Process\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Snapshotting of global state", - "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ - "global state" - ], + "description": "Executes commands in sub-processes", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + "source": "https://github.com/symfony/process/tree/v4.4.25" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-14T08:28:10+00:00" + "time": "2021-05-26T11:20:16+00:00" }, { - "name": "sebastian/lines-of-code", - "version": "1.0.3", + "name": "symfony/psr-http-message-bridge", + "version": "v2.1.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/lines-of-code.git", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc" + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc", - "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d", + "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d", "shasum": "" }, "require": { - "nikic/php-parser": "^4.6", - "php": ">=7.3" + "php": ">=7.1", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^4.4 || ^5.0" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "nyholm/psr7": "^1.1", + "psr/log": "^1.1", + "symfony/browser-kit": "^4.4 || ^5.0", + "symfony/config": "^4.4 || ^5.0", + "symfony/event-dispatcher": "^4.4 || ^5.0", + "symfony/framework-bundle": "^4.4 || ^5.0", + "symfony/http-kernel": "^4.4 || ^5.0", + "symfony/phpunit-bridge": "^4.4.19 || ^5.2" }, - "type": "library", + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" + }, + "type": "symfony-bridge", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-main": "2.1-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Bridge\\PsrHttpMessage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" } ], - "description": "Library for counting the lines of code in PHP source code", - "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "description": "PSR HTTP message bridge", + "homepage": "http://symfony.com", + "keywords": [ + "http", + "http-message", + "psr-17", + "psr-7" + ], "support": { - "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", - "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3" + "issues": "https://github.com/symfony/psr-http-message-bridge/issues", + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-11-28T06:42:11+00:00" + "time": "2021-02-17T10:35:25+00:00" }, { - "name": "sebastian/object-enumerator", - "version": "4.0.4", + "name": "symfony/routing", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + "url": "https://github.com/symfony/routing.git", + "reference": "3a3c2f197ad0846ac6413225fc78868ba1c61434" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", - "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "url": "https://api.github.com/repos/symfony/routing/zipball/3a3c2f197ad0846ac6413225fc78868ba1c61434", + "reference": "3a3c2f197ad0846ac6413225fc78868ba1c61434", "shasum": "" }, "require": { - "php": ">=7.3", - "sebastian/object-reflector": "^2.0", - "sebastian/recursion-context": "^4.0" + "php": ">=7.1.3" + }, + "conflict": { + "symfony/config": "<4.2", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" }, "require-dev": { - "phpunit/phpunit": "^9.3" + "doctrine/annotations": "^1.10.4", + "psr/log": "~1.0", + "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" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0-dev" - } + "suggest": { + "doctrine/annotations": "For using the annotation loader", + "symfony/config": "For using the all-in-one router or any loader", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" }, + "type": "library", "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Routing\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Traverses array structures and object graphs to enumerate all referenced objects", - "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "description": "Maps an HTTP request to a set of configuration variables", + "homepage": "https://symfony.com", + "keywords": [ + "router", + "routing", + "uri", + "url" + ], "support": { - "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", - "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + "source": "https://github.com/symfony/routing/tree/v4.4.25" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T13:12:34+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { - "name": "sebastian/object-reflector", - "version": "2.0.4", + "name": "symfony/serializer", + "version": "v4.4.35", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + "url": "https://github.com/symfony/serializer.git", + "reference": "1b2ae02cb1b923987947e013688c51954a80b751" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", - "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "url": "https://api.github.com/repos/symfony/serializer/zipball/1b2ae02cb1b923987947e013688c51954a80b751", + "reference": "1b2ae02cb1b923987947e013688c51954a80b751", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php80": "^1.16" + }, + "conflict": { + "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": { - "phpunit/phpunit": "^9.3" + "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" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0-dev" - } + "suggest": { + "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.", + "symfony/property-access": "For using the ObjectNormalizer.", + "symfony/property-info": "To deserialize relations.", + "symfony/yaml": "For using the default YAML mapping loader." }, + "type": "library", "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Serializer\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Allows reflection of object attributes, including inherited and non-public ones", - "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "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": { - "issues": "https://github.com/sebastianbergmann/object-reflector/issues", - "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + "source": "https://github.com/symfony/serializer/tree/v4.4.35" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T13:14:26+00:00" + "time": "2021-11-24T08:12:42+00:00" }, { - "name": "sebastian/recursion-context", - "version": "4.0.4", + "name": "symfony/service-contracts", + "version": "v2.4.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172" + "url": "https://github.com/symfony/service-contracts.git", + "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172", - "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", + "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.2.5", + "psr/container": "^1.1" }, - "require-dev": { - "phpunit/phpunit": "^9.3" + "suggest": { + "symfony/service-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-main": "2.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Adam Harvey", - "email": "aharvey@php.net" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides functionality to recursively process PHP variables", - "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], "support": { - "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4" + "source": "https://github.com/symfony/service-contracts/tree/v2.4.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-10-26T13:17:30+00:00" + "time": "2021-04-01T10:43:52+00:00" }, { - "name": "sebastian/resource-operations", - "version": "3.0.3", + "name": "symfony/translation", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/resource-operations.git", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8" + "url": "https://github.com/symfony/translation.git", + "reference": "dfe132c5c6d89f90ce7f961742cc532e9ca16dd4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", - "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8", + "url": "https://api.github.com/repos/symfony/translation/zipball/dfe132c5c6d89f90ce7f961742cc532e9ca16dd4", + "reference": "dfe132c5c6d89f90ce7f961742cc532e9ca16dd4", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "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": { - "phpunit/phpunit": "^9.0" + "psr/log": "~1.0", + "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" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" }, + "type": "library", "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Translation\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a list of PHP built-in functions that operate on resources", - "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "description": "Provides tools to internationalize your application", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/resource-operations/issues", - "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3" + "source": "https://github.com/symfony/translation/tree/v4.4.25" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2020-09-28T06:45:17+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { - "name": "sebastian/type", - "version": "3.0.0", + "name": "symfony/translation-contracts", + "version": "v2.4.0", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "95c812666f3e91db75385749fe219c5e494c7f95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b233b84bc4465aff7b57cf1c4bc75c86d00d6dad", - "reference": "b233b84bc4465aff7b57cf1c4bc75c86d00d6dad", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95", + "reference": "95c812666f3e91db75385749fe219c5e494c7f95", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=7.2.5" }, - "require-dev": { - "phpunit/phpunit": "^9.5" + "suggest": { + "symfony/translation-implementation": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-main": "2.4-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/3.0.0" + "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "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-03-15T09:54:48+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { - "name": "sebastian/version", - "version": "3.0.2", + "name": "symfony/validator", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c6c1022351a901512170118436c764e473f6de8c" + "url": "https://github.com/symfony/validator.git", + "reference": "29c14955e8b2e7351aaa11553cb36d4a689b7b11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", - "reference": "c6c1022351a901512170118436c764e473f6de8c", + "url": "https://api.github.com/repos/symfony/validator/zipball/29c14955e8b2e7351aaa11553cb36d4a689b7b11", + "reference": "29c14955e8b2e7351aaa11553cb36d4a689b7b11", "shasum": "" }, - "require": { - "php": ">=7.3" + "require": { + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", + "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.4", + "symfony/http-kernel": "<4.4", + "symfony/intl": "<4.3", + "symfony/translation": ">=5.0", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "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.", + "egulias/email-validator": "Strict (RFC compliant) email validation", + "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.0-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Validator\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", + "description": "Provides tools to validate values", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + "source": "https://github.com/symfony/validator/tree/v4.4.25" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2020-09-28T06:39:44+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { - "name": "seld/jsonlint", - "version": "1.9.0", + "name": "symfony/var-dumper", + "version": "v5.3.0", "source": { "type": "git", - "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "4211420d25eba80712bff236a98960ef68b866b7" + "url": "https://github.com/symfony/var-dumper.git", + "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7", - "reference": "4211420d25eba80712bff236a98960ef68b866b7", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1d3953e627fe4b5f6df503f356b6545ada6351f3", + "reference": "1d3953e627fe4b5f6df503f356b6545ada6351f3", "shasum": "" }, "require": { - "php": "^5.3 || ^7.0 || ^8.0" + "php": ">=7.2.5", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.15" + }, + "conflict": { + "phpunit/phpunit": "<5.4.3", + "symfony/console": "<4.4" }, "require-dev": { - "phpstan/phpstan": "^1.5", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" + "ext-iconv": "*", + "symfony/console": "^4.4|^5.0", + "symfony/process": "^4.4|^5.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).", + "ext-intl": "To show region name in time zone dump", + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" }, "bin": [ - "bin/jsonlint" + "Resources/bin/var-dump-server" ], "type": "library", "autoload": { + "files": [ + "Resources/functions/dump.php" + ], "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -9930,227 +11821,142 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "JSON Linter", + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", "keywords": [ - "json", - "linter", - "parser", - "validator" + "debug", + "dump" ], "support": { - "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0" + "source": "https://github.com/symfony/var-dumper/tree/v5.3.0" }, "funding": [ { - "url": "https://github.com/Seldaek", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2022-04-01T13:37:23+00:00" + "time": "2021-05-27T12:28:50+00:00" }, { - "name": "seld/phar-utils", - "version": "1.2.0", + "name": "symfony/yaml", + "version": "v4.4.25", "source": { "type": "git", - "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee" + "url": "https://github.com/symfony/yaml.git", + "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee", + "url": "https://api.github.com/repos/symfony/yaml/zipball/81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc", + "reference": "81cdac5536925c1c4b7b50aabc9ff6330b9eb5fc", "shasum": "" }, "require": { - "php": ">=5.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Seld\\PharUtils\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "PHAR file format utilities, for when PHP phars you up", - "keywords": [ - "phar" - ], - "support": { - "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0" - }, - "time": "2021-12-10T11:20:11+00:00" - }, - { - "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.4", - "source": { - "type": "git", - "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "e9c99cda31b21ccb4da4c2124b57c8355ddce48e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/e9c99cda31b21ccb4da4c2124b57c8355ddce48e", - "reference": "e9c99cda31b21ccb4da4c2124b57c8355ddce48e", - "shasum": "" + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8" }, - "require": { - "php": ">=5.4.0", - "squizlabs/php_codesniffer": "^3.5.6" + "conflict": { + "symfony/console": "<3.4" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "phpcsstandards/phpcsdevcs": "^1.1", - "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", - "sirbrillig/phpcs-import-detection": "^1.1" + "symfony/console": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" }, - "type": "phpcodesniffer-standard", + "type": "library", "autoload": { "psr-4": { - "VariableAnalysis\\": "VariableAnalysis/" - } + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-2-Clause" + "MIT" ], "authors": [ { - "name": "Sam Graham", - "email": "php-codesniffer-variableanalysis@illusori.co.uk" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Payton Swick", - "email": "payton@foolord.com" - } - ], - "description": "A PHPCS sniff to detect problems with variables.", - "support": { - "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", - "source": "https://github.com/sirbrillig/phpcs-variable-analysis", - "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" - }, - "time": "2022-06-13T13:49:41+00:00" - }, - { - "name": "slevomat/coding-standard", - "version": "7.2.1", - "source": { - "type": "git", - "url": "https://github.com/slevomat/coding-standard.git", - "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/aff06ae7a84e4534bf6f821dc982a93a5d477c90", - "reference": "aff06ae7a84e4534bf6f821dc982a93a5d477c90", - "shasum": "" - }, - "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", - "php": "^7.2 || ^8.0", - "phpstan/phpdoc-parser": "^1.5.1", - "squizlabs/php_codesniffer": "^3.6.2" - }, - "require-dev": { - "phing/phing": "2.17.3", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpstan/phpstan": "1.4.10|1.7.1", - "phpstan/phpstan-deprecation-rules": "1.0.0", - "phpstan/phpstan-phpunit": "1.0.0|1.1.1", - "phpstan/phpstan-strict-rules": "1.2.3", - "phpunit/phpunit": "7.5.20|8.5.21|9.5.20" - }, - "type": "phpcodesniffer-standard", - "extra": { - "branch-alias": { - "dev-master": "7.x-dev" - } - }, - "autoload": { - "psr-4": { - "SlevomatCodingStandard\\": "SlevomatCodingStandard" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" ], - "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/7.2.1" + "source": "https://github.com/symfony/yaml/tree/v4.4.25" }, "funding": [ { - "url": "https://github.com/kukulich", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2022-05-25T10:58:12+00:00" + "time": "2021-05-26T17:39:37+00:00" }, { - "name": "squizlabs/php_codesniffer", - "version": "3.7.1", + "name": "tijsverkoyen/css-to-inline-styles", + "version": "2.2.4", "source": { "type": "git", - "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619" + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619", - "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/da444caae6aca7a19c0c140f68c6182e337d5b1c", + "reference": "da444caae6aca7a19c0c140f68c6182e337d5b1c", "shasum": "" }, "require": { - "ext-simplexml": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": ">=5.4.0" + "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": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10" }, - "bin": [ - "bin/phpcs", - "bin/phpcbf" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "2.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "TijsVerkoyen\\CssToInlineStyles\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -10159,269 +11965,233 @@ ], "authors": [ { - "name": "Greg Sherwood", - "role": "lead" + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" } ], - "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" - ], + "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/squizlabs/PHP_CodeSniffer/issues", - "source": "https://github.com/squizlabs/PHP_CodeSniffer", - "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.4" }, - "time": "2022-06-18T07:21:10+00:00" + "time": "2021-12-08T09:12:39+00:00" }, { - "name": "symfony/browser-kit", - "version": "v4.4.44", + "name": "twig/twig", + "version": "v2.14.11", "source": { "type": "git", - "url": "https://github.com/symfony/browser-kit.git", - "reference": "2a1ff40723ef6b29c8229a860a9c8f815ad7dbbb" + "url": "https://github.com/twigphp/Twig.git", + "reference": "66baa66f29ee30e487e05f1679903e36eb01d727" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2a1ff40723ef6b29c8229a860a9c8f815ad7dbbb", - "reference": "2a1ff40723ef6b29c8229a860a9c8f815ad7dbbb", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/66baa66f29ee30e487e05f1679903e36eb01d727", + "reference": "66baa66f29ee30e487e05f1679903e36eb01d727", "shasum": "" }, "require": { "php": ">=7.1.3", - "symfony/dom-crawler": "^3.4|^4.0|^5.0", - "symfony/polyfill-php80": "^1.16" + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php72": "^1.8" }, "require-dev": { - "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/http-client": "^4.3|^5.0", - "symfony/mime": "^4.3|^5.0", - "symfony/process": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/process": "" + "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": { - "psr-4": { - "Symfony\\Component\\BrowserKit\\": "" + "psr-0": { + "Twig_": "lib/" }, - "exclude-from-classmap": [ - "/Tests/" - ] + "psr-4": { + "Twig\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "email": "fabien@symfony.com", + "homepage": "http://fabien.potencier.org", + "role": "Lead Developer" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Twig Team", + "role": "Contributors" + }, + { + "name": "Armin Ronacher", + "email": "armin.ronacher@active-4.com", + "role": "Project Founder" } ], - "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", - "homepage": "https://symfony.com", + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], "support": { - "source": "https://github.com/symfony/browser-kit/tree/v4.4.44" + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v2.14.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", + "url": "https://tidelift.com/funding/github/packagist/twig/twig", "type": "tidelift" } ], - "time": "2022-07-25T12:56:14+00:00" + "time": "2022-02-04T06:57:25+00:00" }, { - "name": "symfony/css-selector", - "version": "v4.4.44", + "name": "typo3/phar-stream-wrapper", + "version": "v3.1.6", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "bd0a6737e48de45b4b0b7b6fc98c78404ddceaed" + "url": "https://github.com/TYPO3/phar-stream-wrapper.git", + "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/bd0a6737e48de45b4b0b7b6fc98c78404ddceaed", - "reference": "bd0a6737e48de45b4b0b7b6fc98c78404ddceaed", + "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/60131cb573a1e478cfecd34e4ea38e3b31505f75", + "reference": "60131cb573a1e478cfecd34e4ea38e3b31505f75", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-php80": "^1.16" + "ext-json": "*", + "php": "^7.0 || ^8.0" + }, + "require-dev": { + "ext-xdebug": "*", + "phpspec/prophecy": "^1.10", + "symfony/phpunit-bridge": "^5.1" + }, + "suggest": { + "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "v3.x-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "TYPO3\\PharStreamWrapper\\": "src/" + } }, "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": "Interceptors for PHP's native phar:// stream handling", + "homepage": "https://typo3.org/", + "keywords": [ + "phar", + "php", + "security", + "stream-wrapper" ], - "description": "Converts CSS selectors to XPath expressions", - "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v4.4.44" + "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues", + "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/v3.1.6" }, - "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-06-27T13:16:42+00:00" + "time": "2020-11-07T09:06:16+00:00" }, { - "name": "symfony/dom-crawler", - "version": "v4.4.44", + "name": "webflo/drupal-finder", + "version": "1.2.2", "source": { "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "53cee1108a9748682b1268bc1a76a3d6a665ede2" + "url": "https://github.com/webflo/drupal-finder.git", + "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/53cee1108a9748682b1268bc1a76a3d6a665ede2", - "reference": "53cee1108a9748682b1268bc1a76a3d6a665ede2", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", + "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php80": "^1.16" - }, - "conflict": { - "masterminds/html5": "<2.6" + "ext-json": "*" }, "require-dev": { - "masterminds/html5": "^2.6", - "symfony/css-selector": "^3.4|^4.0|^5.0" - }, - "suggest": { - "symfony/css-selector": "" + "mikey179/vfsstream": "^1.6", + "phpunit/phpunit": "^4.8" }, "type": "library", "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "src/DrupalFinder.php" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Florian Weber", + "email": "florian@webflo.org" } ], - "description": "Eases DOM navigation for HTML and XML documents", - "homepage": "https://symfony.com", + "description": "Helper class to locate a Drupal installation from a given path.", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v4.4.44" + "issues": "https://github.com/webflo/drupal-finder/issues", + "source": "https://github.com/webflo/drupal-finder/tree/1.2.2" }, - "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-06-27T13:16:42+00:00" + "time": "2020-10-27T09:42:17+00:00" }, { - "name": "symfony/lock", - "version": "v4.4.40", + "name": "webmozart/assert", + "version": "1.11.0", "source": { "type": "git", - "url": "https://github.com/symfony/lock.git", - "reference": "ec23fb51d9b531f7fcd2279afe5b474e624c2445" + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/ec23fb51d9b531f7fcd2279afe5b474e624c2445", - "reference": "ec23fb51d9b531f7fcd2279afe5b474e624c2445", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "shasum": "" }, "require": { - "php": ">=7.1.3", - "psr/log": "^1|^2|^3", - "symfony/polyfill-php80": "^1.16" + "ext-ctype": "*", + "php": "^7.2 || ^8.0" }, "conflict": { - "doctrine/dbal": "<2.6" + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" }, "require-dev": { - "doctrine/dbal": "^2.6|^3.0", - "predis/predis": "~1.0" + "phpunit/phpunit": "^8.5.13" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Lock\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Webmozart\\Assert\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -10429,90 +12199,54 @@ ], "authors": [ { - "name": "Jérémy Derussé", - "email": "jeremy@derusse.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Creates and manages locks, a mechanism to provide exclusive access to a shared resource", - "homepage": "https://symfony.com", + "description": "Assertions to validate method input/output with nice error messages.", "keywords": [ - "cas", - "flock", - "locking", - "mutex", - "redlock", - "semaphore" + "assert", + "check", + "validate" ], "support": { - "source": "https://github.com/symfony/lock/tree/v4.4.40" + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.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": "2022-03-22T11:09:53+00:00" + "time": "2022-06-03T18:03:27+00:00" }, { - "name": "symfony/phpunit-bridge", - "version": "v5.4.11", + "name": "webmozart/path-util", + "version": "2.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3" + "url": "https://github.com/webmozart/path-util.git", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/31b1549f54b1a1890e725a0c1c8c2de6ef2205b3", - "reference": "31b1549f54b1a1890e725a0c1c8c2de6ef2205b3", + "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", "shasum": "" }, "require": { - "php": ">=7.1.3", - "symfony/deprecation-contracts": "^2.1|^3" - }, - "conflict": { - "phpunit/phpunit": "<7.5|9.1.2" + "php": ">=5.3.3", + "webmozart/assert": "~1.0" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0|^6.0" - }, - "suggest": { - "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" }, - "bin": [ - "bin/simple-phpunit" - ], - "type": "symfony-bridge", + "type": "library", "extra": { - "thanks": { - "name": "phpunit/phpunit", - "url": "https://github.com/sebastianbergmann/phpunit" + "branch-alias": { + "dev-master": "2.3-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Bridge\\PhpUnit\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] + "Webmozart\\PathUtil\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -10520,86 +12254,86 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Provides utilities for PHPUnit, especially user deprecation notices management", - "homepage": "https://symfony.com", + "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.11" + "issues": "https://github.com/webmozart/path-util/issues", + "source": "https://github.com/webmozart/path-util/tree/2.3.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": "2022-07-28T13:33:28+00:00" + "abandoned": "symfony/filesystem", + "time": "2015-12-17T08:42:14+00:00" }, { - "name": "theseer/tokenizer", - "version": "1.2.1", + "name": "webonyx/graphql-php", + "version": "v14.11.6", "source": { "type": "git", - "url": "https://github.com/theseer/tokenizer.git", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" + "url": "https://github.com/webonyx/graphql-php.git", + "reference": "6070542725b61fc7d0654a8a9855303e5e157434" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", - "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/6070542725b61fc7d0654a8a9855303e5e157434", + "reference": "6070542725b61fc7d0654a8a9855303e5e157434", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-tokenizer": "*", - "ext-xmlwriter": "*", - "php": "^7.2 || ^8.0" + "ext-json": "*", + "ext-mbstring": "*", + "php": "^7.1 || ^8" + }, + "require-dev": { + "amphp/amp": "^2.3", + "doctrine/coding-standard": "^6.0", + "nyholm/psr7": "^1.2", + "phpbench/phpbench": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "0.12.82", + "phpstan/phpstan-phpunit": "0.12.18", + "phpstan/phpstan-strict-rules": "0.12.9", + "phpunit/phpunit": "^7.2 || ^8.5", + "psr/http-message": "^1.0", + "react/promise": "2.*", + "simpod/php-coveralls-mirror": "^3.0", + "squizlabs/php_codesniffer": "3.5.4" + }, + "suggest": { + "psr/http-message": "To use standard GraphQL server", + "react/promise": "To leverage async resolving on React PHP platform" }, "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "GraphQL\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], - "authors": [ - { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - } + "description": "A PHP port of GraphQL reference implementation", + "homepage": "https://github.com/webonyx/graphql-php", + "keywords": [ + "api", + "graphql" ], - "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "support": { - "issues": "https://github.com/theseer/tokenizer/issues", - "source": "https://github.com/theseer/tokenizer/tree/1.2.1" + "issues": "https://github.com/webonyx/graphql-php/issues", + "source": "https://github.com/webonyx/graphql-php/tree/v14.11.6" }, "funding": [ { - "url": "https://github.com/theseer", - "type": "github" + "url": "https://opencollective.com/webonyx-graphql-php", + "type": "open_collective" } ], - "time": "2021-07-28T10:34:58+00:00" + "time": "2022-04-13T16:25:32+00:00" } ], + "packages-dev": [], "aliases": [], "minimum-stability": "dev", "stability-flags": { @@ -10607,7 +12341,9 @@ }, "prefer-stable": true, "prefer-lowest": false, - "platform": [], + "platform": { + "php": "^7.4" + }, "platform-dev": [], "plugin-api-version": "2.3.0" } diff --git a/drupal/config/automated_cron.settings.yml b/drupal/config/automated_cron.settings.yml deleted file mode 100644 index 3fc5821..0000000 --- a/drupal/config/automated_cron.settings.yml +++ /dev/null @@ -1,3 +0,0 @@ -_core: - default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs -interval: 10800 diff --git a/drupal/config/block.block.claro_help.yml b/drupal/config/block.block.claro_help.yml deleted file mode 100644 index 376daa6..0000000 --- a/drupal/config/block.block.claro_help.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: c47d1b9e-e97e-4d87-8674-2f5f642d02fd -langcode: en -status: true -dependencies: - module: - - help - theme: - - claro -_core: - default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM -id: claro_help -theme: claro -region: help -weight: 0 -provider: null -plugin: help_block -settings: - id: help_block - label: Help - label_display: '0' - provider: help -visibility: { } diff --git a/drupal/config/block.block.olivero_help.yml b/drupal/config/block.block.olivero_help.yml deleted file mode 100644 index c9886a6..0000000 --- a/drupal/config/block.block.olivero_help.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 80ca64b4-be19-42e2-8075-e4d19d427448 -langcode: en -status: true -dependencies: - module: - - help - theme: - - olivero -_core: - default_config_hash: VfPFqqxfkomud5CO8DUijw85QIl9GIxh_nIxLOYESxg -id: olivero_help -theme: olivero -region: content_above -weight: 0 -provider: null -plugin: help_block -settings: - id: help_block - label: Help - label_display: '0' - provider: help -visibility: { } diff --git a/drupal/config/block.block.olivero_search_form_narrow.yml b/drupal/config/block.block.olivero_search_form_narrow.yml deleted file mode 100644 index e6984ed..0000000 --- a/drupal/config/block.block.olivero_search_form_narrow.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: d14a0c92-2912-47ec-94ed-446d2a6933fd -langcode: en -status: true -dependencies: - module: - - search - theme: - - olivero -_core: - default_config_hash: yEBET0cqDbk8dkWzaJw-8CKft0961VBflsISoSR6Lj8 -id: olivero_search_form_narrow -theme: olivero -region: primary_menu -weight: -4 -provider: null -plugin: search_form_block -settings: - id: search_form_block - label: 'Search form (narrow)' - label_display: '0' - provider: search - page_id: '' -visibility: { } diff --git a/drupal/config/block.block.olivero_search_form_wide.yml b/drupal/config/block.block.olivero_search_form_wide.yml deleted file mode 100644 index 7c3ad08..0000000 --- a/drupal/config/block.block.olivero_search_form_wide.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: e8c19a5d-28c0-419e-914d-3636722d5c20 -langcode: en -status: true -dependencies: - module: - - search - theme: - - olivero -_core: - default_config_hash: imMyHD6LYci0gtXq56qr9ZKGHzbEG9uFydrN5EhKtSU -id: olivero_search_form_wide -theme: olivero -region: secondary_menu -weight: -5 -provider: null -plugin: search_form_block -settings: - id: search_form_block - label: 'Search form (wide)' - label_display: '0' - provider: search - page_id: '' -visibility: { } diff --git a/drupal/config/block.block.olivero_syndicate.yml b/drupal/config/block.block.olivero_syndicate.yml deleted file mode 100644 index 6aa3c65..0000000 --- a/drupal/config/block.block.olivero_syndicate.yml +++ /dev/null @@ -1,23 +0,0 @@ -uuid: 22cfd2dd-595b-4579-b9b6-2763406310ec -langcode: en -status: true -dependencies: - module: - - node - theme: - - olivero -_core: - default_config_hash: 0gq3VPg-_UM69FCCWurLFIrrnIjC2HLKhwo9iQNtcUo -id: olivero_syndicate -theme: olivero -region: social -weight: 0 -provider: null -plugin: node_syndicate_block -settings: - id: node_syndicate_block - label: 'RSS feed' - label_display: '0' - provider: node - block_count: 10 -visibility: { } diff --git a/drupal/config/claro.settings.yml b/drupal/config/claro.settings.yml deleted file mode 100644 index 6bba58b..0000000 --- a/drupal/config/claro.settings.yml +++ /dev/null @@ -1,3 +0,0 @@ -third_party_settings: - shortcut: - module_link: true diff --git a/drupal/config/comment.type.comment.yml b/drupal/config/comment.type.comment.yml deleted file mode 100644 index c703c49..0000000 --- a/drupal/config/comment.type.comment.yml +++ /dev/null @@ -1,10 +0,0 @@ -uuid: e5203da4-680e-4d8e-812d-6347243d7d6b -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA -id: comment -label: 'Default comments' -target_entity_type_id: node -description: 'Allows commenting on content' diff --git a/drupal/config/contact.form.feedback.yml b/drupal/config/contact.form.feedback.yml deleted file mode 100644 index 9faa0f2..0000000 --- a/drupal/config/contact.form.feedback.yml +++ /dev/null @@ -1,14 +0,0 @@ -uuid: c1898ccc-6f77-4306-b8d1-5f0dfa0f10b5 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw -id: feedback -label: 'Website feedback' -recipients: - - admin@example.com -reply: '' -weight: 0 -message: 'Your message has been sent.' -redirect: '' diff --git a/drupal/config/contact.form.personal.yml b/drupal/config/contact.form.personal.yml deleted file mode 100644 index 8c58799..0000000 --- a/drupal/config/contact.form.personal.yml +++ /dev/null @@ -1,13 +0,0 @@ -uuid: fcc8723c-39fb-4cae-abfb-a86fc551aa39 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I -id: personal -label: 'Personal contact form' -recipients: { } -reply: '' -weight: 0 -message: 'Your message has been sent.' -redirect: '' diff --git a/drupal/config/contact.settings.yml b/drupal/config/contact.settings.yml deleted file mode 100644 index 1c949a6..0000000 --- a/drupal/config/contact.settings.yml +++ /dev/null @@ -1,7 +0,0 @@ -_core: - default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8 -default_form: feedback -flood: - limit: 5 - interval: 3600 -user_default_enabled: true diff --git a/drupal/config/core.date_format.olivero_medium.yml b/drupal/config/core.date_format.olivero_medium.yml deleted file mode 100644 index 48d172f..0000000 --- a/drupal/config/core.date_format.olivero_medium.yml +++ /dev/null @@ -1,13 +0,0 @@ -uuid: d6f5e345-79bd-4ba7-ae00-1ef5348c3e5c -langcode: en -status: true -dependencies: - enforced: - theme: - - olivero -_core: - default_config_hash: Mt6cmxUbDZ9XxD6p25WQ8tj3_JcX8ylfcddwZc8gcAE -id: olivero_medium -label: 'Olivero Medium' -locked: false -pattern: 'j F, Y' diff --git a/drupal/config/core.entity_form_display.block_content.basic.default.yml b/drupal/config/core.entity_form_display.block_content.basic.default.yml deleted file mode 100644 index 0a9255e..0000000 --- a/drupal/config/core.entity_form_display.block_content.basic.default.yml +++ /dev/null @@ -1,35 +0,0 @@ -uuid: a0046241-1ee7-4551-8e9c-f794fff3cfdc -langcode: en -status: true -dependencies: - config: - - block_content.type.basic - - field.field.block_content.basic.body - module: - - text -_core: - default_config_hash: jAps3FCxvKecABS_tgExbhCZrBLQB3bNPWw18WjE3ss -id: block_content.basic.default -targetEntityType: block_content -bundle: basic -mode: default -content: - body: - type: text_textarea_with_summary - weight: -4 - region: content - settings: - rows: 9 - summary_rows: 3 - placeholder: '' - show_summary: false - third_party_settings: { } - info: - type: string_textfield - weight: -5 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } -hidden: { } diff --git a/drupal/config/core.entity_form_display.comment.comment.default.yml b/drupal/config/core.entity_form_display.comment.comment.default.yml deleted file mode 100644 index 3f38efb..0000000 --- a/drupal/config/core.entity_form_display.comment.comment.default.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 7a3bf8da-b249-4bc4-b66c-86feef08a160 -langcode: en -status: true -dependencies: - config: - - comment.type.comment - - field.field.comment.comment.comment_body - module: - - text -_core: - default_config_hash: I0Pa0aQvT_jawlPo9oz4FE3h_ickc55dYKTPl6gILes -id: comment.comment.default -targetEntityType: comment -bundle: comment -mode: default -content: - author: - weight: -2 - region: content - comment_body: - type: text_textarea - weight: 11 - region: content - settings: - rows: 5 - placeholder: '' - third_party_settings: { } - subject: - type: string_textfield - weight: 10 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } -hidden: { } diff --git a/drupal/config/core.entity_form_display.node.article.default.yml b/drupal/config/core.entity_form_display.node.article.default.yml deleted file mode 100644 index 7392e41..0000000 --- a/drupal/config/core.entity_form_display.node.article.default.yml +++ /dev/null @@ -1,109 +0,0 @@ -uuid: 2ac831f6-4568-47c3-a339-dda7cb5118ae -langcode: en -status: true -dependencies: - config: - - field.field.node.article.body - - field.field.node.article.comment - - field.field.node.article.field_image - - field.field.node.article.field_tags - - image.style.thumbnail - - node.type.article - module: - - comment - - image - - path - - text -_core: - default_config_hash: Pzq9mzrsfoPf775qgEU_SUbHSro9pv1ga-Euh1Ykd_k -id: node.article.default -targetEntityType: node -bundle: article -mode: default -content: - body: - type: text_textarea_with_summary - weight: 1 - region: content - settings: - rows: 9 - summary_rows: 3 - placeholder: '' - show_summary: false - third_party_settings: { } - comment: - type: comment_default - weight: 20 - region: content - settings: { } - third_party_settings: { } - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - field_image: - type: image_image - weight: 4 - region: content - settings: - progress_indicator: throbber - preview_image_style: thumbnail - third_party_settings: { } - field_tags: - type: entity_reference_autocomplete_tags - weight: 3 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - promote: - type: boolean_checkbox - weight: 15 - region: content - settings: - display_label: true - third_party_settings: { } - status: - type: boolean_checkbox - weight: 120 - region: content - settings: - display_label: true - third_party_settings: { } - sticky: - type: boolean_checkbox - weight: 16 - region: content - settings: - display_label: true - third_party_settings: { } - title: - type: string_textfield - weight: 0 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } -hidden: { } diff --git a/drupal/config/core.entity_form_display.node.page.default.yml b/drupal/config/core.entity_form_display.node.page.default.yml deleted file mode 100644 index 0e133d7..0000000 --- a/drupal/config/core.entity_form_display.node.page.default.yml +++ /dev/null @@ -1,79 +0,0 @@ -uuid: 4b0c576f-5d32-4fea-8afe-12754a14e9cd -langcode: en -status: true -dependencies: - config: - - field.field.node.page.body - - node.type.page - module: - - path - - text -_core: - default_config_hash: SfpLhPExzvR0MgFp0Wp7CrmgEnhcqQ-fXIWFhbf4ue0 -id: node.page.default -targetEntityType: node -bundle: page -mode: default -content: - body: - type: text_textarea_with_summary - weight: 31 - region: content - settings: - rows: 9 - summary_rows: 3 - placeholder: '' - show_summary: false - third_party_settings: { } - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - promote: - type: boolean_checkbox - weight: 15 - region: content - settings: - display_label: true - third_party_settings: { } - status: - type: boolean_checkbox - weight: 120 - region: content - settings: - display_label: true - third_party_settings: { } - sticky: - type: boolean_checkbox - weight: 16 - region: content - settings: - display_label: true - third_party_settings: { } - title: - type: string_textfield - weight: -5 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } -hidden: { } diff --git a/drupal/config/core.entity_form_display.user.user.default.yml b/drupal/config/core.entity_form_display.user.user.default.yml deleted file mode 100644 index a9c0946..0000000 --- a/drupal/config/core.entity_form_display.user.user.default.yml +++ /dev/null @@ -1,38 +0,0 @@ -uuid: 45367f34-273c-45b4-885a-5afa1fa6712c -langcode: en -status: true -dependencies: - config: - - field.field.user.user.user_picture - - image.style.thumbnail - module: - - image - - user -_core: - default_config_hash: FaQ9Ptcpxpg30AtiqRDtl_8zbJArHP1LPfug_s59TOA -id: user.user.default -targetEntityType: user -bundle: user -mode: default -content: - account: - weight: -10 - region: content - contact: - weight: 5 - region: content - language: - weight: 0 - region: content - timezone: - weight: 6 - region: content - user_picture: - type: image_image - weight: -1 - region: content - settings: - progress_indicator: throbber - preview_image_style: thumbnail - third_party_settings: { } -hidden: { } diff --git a/drupal/config/core.entity_view_display.block_content.basic.default.yml b/drupal/config/core.entity_view_display.block_content.basic.default.yml deleted file mode 100644 index 9b7c4ed..0000000 --- a/drupal/config/core.entity_view_display.block_content.basic.default.yml +++ /dev/null @@ -1,24 +0,0 @@ -uuid: ab5d170f-6d4c-4231-91b4-9d403ab5ea37 -langcode: en -status: true -dependencies: - config: - - block_content.type.basic - - field.field.block_content.basic.body - module: - - text -_core: - default_config_hash: hBNNDTFwakREOTa6GGMqN899Iyrii0hInwSJtQ7Kj30 -id: block_content.basic.default -targetEntityType: block_content -bundle: basic -mode: default -content: - body: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 0 - region: content -hidden: { } diff --git a/drupal/config/core.entity_view_display.comment.comment.default.yml b/drupal/config/core.entity_view_display.comment.comment.default.yml deleted file mode 100644 index 5471750..0000000 --- a/drupal/config/core.entity_view_display.comment.comment.default.yml +++ /dev/null @@ -1,27 +0,0 @@ -uuid: 16fa49a5-db79-4c6f-b32b-1f92e61fa947 -langcode: en -status: true -dependencies: - config: - - comment.type.comment - - field.field.comment.comment.comment_body - module: - - text -_core: - default_config_hash: aBQUGsQ46M4048fIlFuTXwl2zV0j2cJX89CTUobh9hA -id: comment.comment.default -targetEntityType: comment -bundle: comment -mode: default -content: - comment_body: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 0 - region: content - links: - weight: 100 - region: content -hidden: { } diff --git a/drupal/config/core.entity_view_display.node.article.default.yml b/drupal/config/core.entity_view_display.node.article.default.yml deleted file mode 100644 index 3ed505b..0000000 --- a/drupal/config/core.entity_view_display.node.article.default.yml +++ /dev/null @@ -1,65 +0,0 @@ -uuid: 363ed6e0-edcb-4640-969e-360a79f67acd -langcode: en -status: true -dependencies: - config: - - core.entity_view_display.comment.comment.default - - field.field.node.article.body - - field.field.node.article.comment - - field.field.node.article.field_image - - field.field.node.article.field_tags - - image.style.wide - - node.type.article - module: - - comment - - image - - text - - user -_core: - default_config_hash: 7fb0j9HnIXfP9ndewzgPPzzeX_SV532wuYpkscrCMCk -id: node.article.default -targetEntityType: node -bundle: article -mode: default -content: - body: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 0 - region: content - comment: - type: comment_default - label: above - settings: - view_mode: default - pager_id: 0 - third_party_settings: { } - weight: 110 - region: content - field_image: - type: image - label: hidden - settings: - image_style: wide - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: -1 - region: content - field_tags: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 10 - region: content - links: - settings: { } - third_party_settings: { } - weight: 100 - region: content -hidden: { } diff --git a/drupal/config/core.entity_view_display.node.article.rss.yml b/drupal/config/core.entity_view_display.node.article.rss.yml deleted file mode 100644 index c79cd7e..0000000 --- a/drupal/config/core.entity_view_display.node.article.rss.yml +++ /dev/null @@ -1,28 +0,0 @@ -uuid: 3290663f-0065-425b-89bd-5124863ac4c3 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.rss - - field.field.node.article.body - - field.field.node.article.comment - - field.field.node.article.field_image - - field.field.node.article.field_tags - - node.type.article - module: - - user -_core: - default_config_hash: 2rIr6K5Q0UQ9khg0zE_CK-PtJH76UL-BDDZcZnZzwCc -id: node.article.rss -targetEntityType: node -bundle: article -mode: rss -content: - links: - weight: 100 - region: content -hidden: - body: true - comment: true - field_image: true - field_tags: true diff --git a/drupal/config/core.entity_view_display.node.article.teaser.yml b/drupal/config/core.entity_view_display.node.article.teaser.yml deleted file mode 100644 index 233157f..0000000 --- a/drupal/config/core.entity_view_display.node.article.teaser.yml +++ /dev/null @@ -1,57 +0,0 @@ -uuid: b0bcbd29-941e-4480-8f2a-5bfff80eeeea -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.teaser - - field.field.node.article.body - - field.field.node.article.comment - - field.field.node.article.field_image - - field.field.node.article.field_tags - - image.style.medium - - node.type.article - module: - - image - - text - - user -_core: - default_config_hash: 83jX5ChAGdMzOxiDA_B1NjgebVMuD8lNVDgClg_QVP8 -id: node.article.teaser -targetEntityType: node -bundle: article -mode: teaser -content: - body: - type: text_summary_or_trimmed - label: hidden - settings: - trim_length: 600 - third_party_settings: { } - weight: 0 - region: content - field_image: - type: image - label: hidden - settings: - image_style: medium - image_link: content - image_loading: - attribute: lazy - third_party_settings: { } - weight: -1 - region: content - field_tags: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 10 - region: content - links: - weight: 100 - region: content -hidden: - comment: true - field_image: true - field_tags: true diff --git a/drupal/config/core.entity_view_display.node.page.default.yml b/drupal/config/core.entity_view_display.node.page.default.yml deleted file mode 100644 index 99617cf..0000000 --- a/drupal/config/core.entity_view_display.node.page.default.yml +++ /dev/null @@ -1,28 +0,0 @@ -uuid: bcb965de-ef80-4bc1-aee1-d6f6be559910 -langcode: en -status: true -dependencies: - config: - - field.field.node.page.body - - node.type.page - module: - - text - - user -_core: - default_config_hash: M_Y8L5tfmhx7DR143E05YyZSpvgil6VFvqcfBWykalg -id: node.page.default -targetEntityType: node -bundle: page -mode: default -content: - body: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 100 - region: content - links: - weight: 101 - region: content -hidden: { } diff --git a/drupal/config/core.entity_view_display.node.page.teaser.yml b/drupal/config/core.entity_view_display.node.page.teaser.yml deleted file mode 100644 index a727084..0000000 --- a/drupal/config/core.entity_view_display.node.page.teaser.yml +++ /dev/null @@ -1,30 +0,0 @@ -uuid: ddec790c-35dc-4b88-8f45-081ea3b19952 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.teaser - - field.field.node.page.body - - node.type.page - module: - - text - - user -_core: - default_config_hash: 8BgdRtLbtQ0F__o0FHSH0Mx5fvXOra9tfT1GmNKbRYw -id: node.page.teaser -targetEntityType: node -bundle: page -mode: teaser -content: - body: - type: text_summary_or_trimmed - label: hidden - settings: - trim_length: 600 - third_party_settings: { } - weight: 100 - region: content - links: - weight: 101 - region: content -hidden: { } diff --git a/drupal/config/core.entity_view_display.user.user.compact.yml b/drupal/config/core.entity_view_display.user.user.compact.yml deleted file mode 100644 index 3141b14..0000000 --- a/drupal/config/core.entity_view_display.user.user.compact.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: ee92d68e-fb0e-4bdd-b90f-4e4e3ec5d3ce -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.user.compact - - field.field.user.user.user_picture - - image.style.thumbnail - module: - - image - - user -_core: - default_config_hash: 00zr_RBdTjPjBGITD3h4c1ESQZimjdVCcHGt1trLqIY -id: user.user.compact -targetEntityType: user -bundle: user -mode: compact -content: - user_picture: - type: image - label: hidden - settings: - image_style: thumbnail - image_link: content - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content -hidden: - member_for: true diff --git a/drupal/config/core.entity_view_display.user.user.default.yml b/drupal/config/core.entity_view_display.user.user.default.yml deleted file mode 100644 index 801926c..0000000 --- a/drupal/config/core.entity_view_display.user.user.default.yml +++ /dev/null @@ -1,32 +0,0 @@ -uuid: 35e83996-8699-4c7d-b02e-57e0676676ed -langcode: en -status: true -dependencies: - config: - - field.field.user.user.user_picture - - image.style.thumbnail - module: - - image - - user -_core: - default_config_hash: mZLyuWM9CQx2ZJVqFGSbzgFnHzudVbHBYmdU256A5Wk -id: user.user.default -targetEntityType: user -bundle: user -mode: default -content: - member_for: - weight: 5 - region: content - user_picture: - type: image - label: hidden - settings: - image_style: thumbnail - image_link: content - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content -hidden: { } diff --git a/drupal/config/core.extension.yml b/drupal/config/core.extension.yml deleted file mode 100644 index 3e45a6f..0000000 --- a/drupal/config/core.extension.yml +++ /dev/null @@ -1,61 +0,0 @@ -_core: - default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc -module: - automated_cron: 0 - big_pipe: 0 - block: 0 - block_content: 0 - breakpoint: 0 - ckeditor: 0 - comment: 0 - config: 0 - contact: 0 - contextual: 0 - datetime: 0 - dblog: 0 - decoupled_router: 0 - druxt: 0 - dynamic_page_cache: 0 - editor: 0 - field: 0 - field_ui: 0 - file: 0 - filter: 0 - help: 0 - history: 0 - image: 0 - jsonapi: 0 - jsonapi_menu_items: 0 - jsonapi_resources: 0 - jsonapi_views: 0 - link: 0 - menu_link_content: 0 - menu_ui: 0 - mysql: 0 - node: 0 - options: 0 - page_cache: 0 - path: 0 - path_alias: 0 - rdf: 0 - search: 0 - serialization: 0 - shortcut: 0 - system: 0 - taxonomy: 0 - text: 0 - tome: 0 - tome_base: 0 - tome_static: 0 - tome_sync: 0 - toolbar: 0 - tour: 0 - update: 0 - user: 0 - views_ui: 0 - views: 10 - standard: 1000 -theme: - olivero: 0 - claro: 0 -profile: standard diff --git a/drupal/config/core.menu.static_menu_link_overrides.yml b/drupal/config/core.menu.static_menu_link_overrides.yml deleted file mode 100644 index eb6e35e..0000000 --- a/drupal/config/core.menu.static_menu_link_overrides.yml +++ /dev/null @@ -1,9 +0,0 @@ -_core: - default_config_hash: CXhei_vpaZk-3f_Mj2cH0YmpK-ZpKHoSzVA3yZrDq0g -definitions: - contact__site_page: - menu_name: footer - parent: '' - weight: 0 - expanded: false - enabled: true diff --git a/drupal/config/dblog.settings.yml b/drupal/config/dblog.settings.yml deleted file mode 100644 index fbd17ea..0000000 --- a/drupal/config/dblog.settings.yml +++ /dev/null @@ -1,3 +0,0 @@ -_core: - default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58 -row_limit: 1000 diff --git a/drupal/config/field.field.block_content.basic.body.yml b/drupal/config/field.field.block_content.basic.body.yml deleted file mode 100644 index ebef1d0..0000000 --- a/drupal/config/field.field.block_content.basic.body.yml +++ /dev/null @@ -1,25 +0,0 @@ -uuid: fe9aef7f-f834-4440-883d-45762ec0cbc1 -langcode: en -status: true -dependencies: - config: - - block_content.type.basic - - field.storage.block_content.body - module: - - text -_core: - default_config_hash: foetbaMhlB6uLc2bn-PESvaPkbuDWj0MEjpQVwQiP-o -id: block_content.basic.body -field_name: body -entity_type: block_content -bundle: basic -label: Body -description: '' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - display_summary: false - required_summary: false -field_type: text_with_summary diff --git a/drupal/config/field.field.node.article.field_tags.yml b/drupal/config/field.field.node.article.field_tags.yml deleted file mode 100644 index 2d4c755..0000000 --- a/drupal/config/field.field.node.article.field_tags.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: 3bec0b34-9805-4291-9b73-731c037c7cfa -langcode: en -status: true -dependencies: - config: - - field.storage.node.field_tags - - node.type.article - - taxonomy.vocabulary.tags -_core: - default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw -id: node.article.field_tags -field_name: field_tags -entity_type: node -bundle: article -label: Tags -description: 'Enter a comma-separated list. For example: Amsterdam, Mexico City, "Cleveland, Ohio"' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - tags: tags - sort: - field: _none - auto_create: true -field_type: entity_reference diff --git a/drupal/config/field.field.user.user.user_picture.yml b/drupal/config/field.field.user.user.user_picture.yml deleted file mode 100644 index 1bcdee9..0000000 --- a/drupal/config/field.field.user.user.user_picture.yml +++ /dev/null @@ -1,40 +0,0 @@ -uuid: f18a2bc8-fc97-487b-89cf-b9e7bc7694bb -langcode: en -status: true -dependencies: - config: - - field.storage.user.user_picture - module: - - image - - user -_core: - default_config_hash: twhm-ZOwSVkUjuLI_pQsaPo_pVLcqFfDmY-ojfqw0yk -id: user.user.user_picture -field_name: user_picture -entity_type: user -bundle: user -label: Picture -description: 'Your virtual face or picture.' -required: false -translatable: true -default_value: { } -default_value_callback: '' -settings: - handler: 'default:file' - handler_settings: { } - file_directory: 'pictures/[date:custom:Y]-[date:custom:m]' - file_extensions: 'png gif jpg jpeg' - max_filesize: '' - max_resolution: '' - min_resolution: '' - alt_field: false - alt_field_required: false - title_field: false - title_field_required: false - default_image: - uuid: null - alt: '' - title: '' - width: null - height: null -field_type: image diff --git a/drupal/config/field_ui.settings.yml b/drupal/config/field_ui.settings.yml deleted file mode 100644 index 365450f..0000000 --- a/drupal/config/field_ui.settings.yml +++ /dev/null @@ -1,3 +0,0 @@ -_core: - default_config_hash: Q1nMi90W6YQxKzZAgJQw7Ag9U4JrsEUwkomF0lhvbIM -field_prefix: field_ diff --git a/drupal/config/filter.format.full_html.yml b/drupal/config/filter.format.full_html.yml deleted file mode 100644 index 7b53917..0000000 --- a/drupal/config/filter.format.full_html.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: b4a4314f-5898-4fd4-91ab-922a262067a6 -langcode: en -status: true -dependencies: - module: - - editor -_core: - default_config_hash: WNeK5FbcY8pXgEpbD_KgRzlF1-5PL3BJXwqaBctPTqw -name: 'Full HTML' -format: full_html -weight: 2 -filters: - filter_align: - id: filter_align - provider: filter - status: true - weight: 8 - settings: { } - filter_caption: - id: filter_caption - provider: filter - status: true - weight: 9 - settings: { } - filter_htmlcorrector: - id: filter_htmlcorrector - provider: filter - status: true - weight: 10 - settings: { } - editor_file_reference: - id: editor_file_reference - provider: editor - status: true - weight: 11 - settings: { } diff --git a/drupal/config/jsonapi.settings.yml b/drupal/config/jsonapi.settings.yml deleted file mode 100644 index 6c6bf6e..0000000 --- a/drupal/config/jsonapi.settings.yml +++ /dev/null @@ -1,7 +0,0 @@ -_core: - default_config_hash: ve5n0mfUSWWZEFldenHnFrpcL1XKTjzTacerxemPPU4 -langcode: en -read_only: true -maintenance_header_retry_seconds: - min: 5 - max: 10 diff --git a/drupal/config/node.type.article.yml b/drupal/config/node.type.article.yml deleted file mode 100644 index 3fdc907..0000000 --- a/drupal/config/node.type.article.yml +++ /dev/null @@ -1,13 +0,0 @@ -uuid: cec81883-41ae-45c6-8d38-a45d1ac0f930 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: AeW1SEDgb1OTQACAWGhzvMknMYAJlcZu0jljfeU3oso -name: Article -type: article -description: 'Use articles for time-sensitive content like news, press releases or blog posts.' -help: '' -new_revision: true -preview_mode: 1 -display_submitted: true diff --git a/drupal/config/node.type.page.yml b/drupal/config/node.type.page.yml deleted file mode 100644 index b2a8ce0..0000000 --- a/drupal/config/node.type.page.yml +++ /dev/null @@ -1,13 +0,0 @@ -uuid: 27e005ab-0c35-4601-aaf0-e699a0e70bc5 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: KuyA4NHPXcmKAjRtwa0vQc2ZcyrUJy6IlS2TAyMNRbc -name: 'Basic page' -type: page -description: 'Use basic pages for your static content, such as an ''About us'' page.' -help: '' -new_revision: true -preview_mode: 1 -display_submitted: false diff --git a/drupal/config/olivero.settings.yml b/drupal/config/olivero.settings.yml deleted file mode 100644 index 13703a6..0000000 --- a/drupal/config/olivero.settings.yml +++ /dev/null @@ -1,16 +0,0 @@ -_core: - default_config_hash: Ylohp6sdrL1dU4v-KcXzXTP-U8BAMgh4NWJA9eGHtO4 -favicon: - use_default: true -features: - comment_user_picture: true - comment_user_verification: true - favicon: true - node_user_picture: false -logo: - use_default: false -third_party_settings: - shortcut: - module_link: true -mobile_menu_all_widths: 0 -site_branding_bg_color: default diff --git a/drupal/config/rdf.mapping.comment.comment.yml b/drupal/config/rdf.mapping.comment.comment.yml deleted file mode 100644 index 7fe44b0..0000000 --- a/drupal/config/rdf.mapping.comment.comment.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 762534af-6956-4a84-bd78-bd3cea0f29b4 -langcode: en -status: true -dependencies: - config: - - comment.type.comment - module: - - comment -_core: - default_config_hash: uETe6XupRGKDForx2MpY0pMOEu6CzGgdCAZZOKkbgmk -id: comment.comment -targetEntityType: comment -bundle: comment -types: - - 'schema:Comment' -fieldMappings: - subject: - properties: - - 'schema:name' - created: - properties: - - 'schema:dateCreated' - datatype_callback: - callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value' - changed: - properties: - - 'schema:dateModified' - datatype_callback: - callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value' - comment_body: - properties: - - 'schema:text' - uid: - properties: - - 'schema:author' - mapping_type: rel diff --git a/drupal/config/rdf.mapping.node.article.yml b/drupal/config/rdf.mapping.node.article.yml deleted file mode 100644 index 48d1dae..0000000 --- a/drupal/config/rdf.mapping.node.article.yml +++ /dev/null @@ -1,52 +0,0 @@ -uuid: 7f596d30-0148-4142-a82e-195d859df7bc -langcode: en -status: true -dependencies: - config: - - node.type.article - module: - - node -_core: - default_config_hash: IdobJe379eDudt7-bXFfJjF7pDqFl-kYxVFtpWrgkro -id: node.article -targetEntityType: node -bundle: article -types: - - 'schema:Article' -fieldMappings: - title: - properties: - - 'schema:name' - created: - properties: - - 'schema:dateCreated' - datatype_callback: - callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value' - changed: - properties: - - 'schema:dateModified' - datatype_callback: - callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value' - body: - properties: - - 'schema:text' - uid: - properties: - - 'schema:author' - comment: - properties: - - 'schema:comment' - mapping_type: rel - comment_count: - properties: - - 'schema:interactionCount' - datatype_callback: - callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount' - arguments: - interaction_type: UserComments - field_image: - properties: - - 'schema:image' - field_tags: - properties: - - 'schema:about' diff --git a/drupal/config/rdf.mapping.node.page.yml b/drupal/config/rdf.mapping.node.page.yml deleted file mode 100644 index 9681987..0000000 --- a/drupal/config/rdf.mapping.node.page.yml +++ /dev/null @@ -1,43 +0,0 @@ -uuid: 396b78ac-15a4-4b14-9f08-731bf5f199ac -langcode: en -status: true -dependencies: - config: - - node.type.page - module: - - node -_core: - default_config_hash: 32LxRnl4Wesvzqyfp7HnD0-U9-wxrLBn76pqY5XGNAE -id: node.page -targetEntityType: node -bundle: page -types: - - 'schema:WebPage' -fieldMappings: - title: - properties: - - 'schema:name' - created: - properties: - - 'schema:dateCreated' - datatype_callback: - callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value' - changed: - properties: - - 'schema:dateModified' - datatype_callback: - callable: 'Drupal\rdf\CommonDataConverter::dateIso8601Value' - body: - properties: - - 'schema:text' - uid: - properties: - - 'schema:author' - mapping_type: rel - comment_count: - properties: - - 'schema:interactionCount' - datatype_callback: - callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount' - arguments: - interaction_type: UserComments diff --git a/drupal/config/rdf.mapping.taxonomy_term.tags.yml b/drupal/config/rdf.mapping.taxonomy_term.tags.yml deleted file mode 100644 index 20cb0cf..0000000 --- a/drupal/config/rdf.mapping.taxonomy_term.tags.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 238810e3-f0a9-42ea-996f-6102d8a53176 -langcode: en -status: true -dependencies: - config: - - taxonomy.vocabulary.tags - module: - - taxonomy -_core: - default_config_hash: o5duwyS1CTHx3tYOZhuu91kspe8VQjQsnwZjAJv9njk -id: taxonomy_term.tags -targetEntityType: taxonomy_term -bundle: tags -types: - - 'schema:Thing' -fieldMappings: - name: - properties: - - 'schema:name' - description: - properties: - - 'schema:description' diff --git a/drupal/config/rdf.mapping.user.user.yml b/drupal/config/rdf.mapping.user.user.yml deleted file mode 100644 index e7580fb..0000000 --- a/drupal/config/rdf.mapping.user.user.yml +++ /dev/null @@ -1,17 +0,0 @@ -uuid: f63c4c79-b808-4846-b0c8-549f402475b7 -langcode: en -status: true -dependencies: - module: - - user -_core: - default_config_hash: TGTlmpYAtXxjtYMFA_A0vosE2c4R5MCQwLviIA5HUM0 -id: user.user -targetEntityType: user -bundle: user -types: - - 'schema:Person' -fieldMappings: - name: - properties: - - 'schema:name' diff --git a/drupal/config/search.page.node_search.yml b/drupal/config/search.page.node_search.yml deleted file mode 100644 index 230ae73..0000000 --- a/drupal/config/search.page.node_search.yml +++ /dev/null @@ -1,15 +0,0 @@ -uuid: 4afc99f4-3339-4c9a-8f3c-7a424c7b323a -langcode: en -status: true -dependencies: - module: - - node -_core: - default_config_hash: 97tvtzGOa8_flb22CzSjgtm_YkiGMHvEBO-6q2K9V_U -id: node_search -label: Content -path: node -weight: -10 -plugin: node_search -configuration: - rankings: { } diff --git a/drupal/config/search.page.user_search.yml b/drupal/config/search.page.user_search.yml deleted file mode 100644 index d1227ed..0000000 --- a/drupal/config/search.page.user_search.yml +++ /dev/null @@ -1,14 +0,0 @@ -uuid: 20ae01dd-5a4d-42bd-a530-add817125d9d -langcode: en -status: true -dependencies: - module: - - user -_core: - default_config_hash: k3aUaZXGDuhkek2TZIee0PApOPTvYZLadziekdyHA5A -id: user_search -label: Users -path: user -weight: 0 -plugin: user_search -configuration: { } diff --git a/drupal/config/search.settings.yml b/drupal/config/search.settings.yml deleted file mode 100644 index f864b47..0000000 --- a/drupal/config/search.settings.yml +++ /dev/null @@ -1,22 +0,0 @@ -_core: - default_config_hash: hvVxL1G-ZCxaq32IZws0YsfuhvaDiQE_np-0g35KjUk -and_or_limit: 7 -default_page: node_search -index: - cron_limit: 100 - overlap_cjk: true - minimum_word_size: 3 - tag_weights: - h1: 25 - h2: 18 - h3: 15 - h4: 14 - h5: 9 - h6: 6 - u: 3 - b: 3 - i: 3 - strong: 3 - em: 3 - a: 10 -logging: false diff --git a/drupal/config/shortcut.set.default.yml b/drupal/config/shortcut.set.default.yml deleted file mode 100644 index 794316d..0000000 --- a/drupal/config/shortcut.set.default.yml +++ /dev/null @@ -1,8 +0,0 @@ -uuid: 2640c39f-7744-40fb-94fb-7d55ea9dfdcd -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: U5VlGjd_SfV0Qm_EfnaynOfc549cNscFAx48JfYoMRI -id: default -label: Default diff --git a/drupal/config/.htaccess b/drupal/config/sync/.htaccess similarity index 100% rename from drupal/config/.htaccess rename to drupal/config/sync/.htaccess diff --git a/drupal/config/sync/activity_send.settings.yml b/drupal/config/sync/activity_send.settings.yml new file mode 100644 index 0000000..69e0d66 --- /dev/null +++ b/drupal/config/sync/activity_send.settings.yml @@ -0,0 +1,3 @@ +activity_send_offline_window: 90 +_core: + default_config_hash: jWTZCDM-hIkwyJG19pms5dS-XgX7wkpx2qdvLidHXzs diff --git a/drupal/config/sync/admin_toolbar.settings.yml b/drupal/config/sync/admin_toolbar.settings.yml new file mode 100644 index 0000000..8f057c3 --- /dev/null +++ b/drupal/config/sync/admin_toolbar.settings.yml @@ -0,0 +1,3 @@ +menu_depth: 4 +_core: + default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI diff --git a/drupal/config/sync/admin_toolbar_tools.settings.yml b/drupal/config/sync/admin_toolbar_tools.settings.yml new file mode 100644 index 0000000..df34ac1 --- /dev/null +++ b/drupal/config/sync/admin_toolbar_tools.settings.yml @@ -0,0 +1,4 @@ +max_bundle_number: 20 +hoverintent_functionality: true +_core: + default_config_hash: KF64Wh_DTqvvcH9nGm0bPcSwuigIFrakaPHHpGqaXiU diff --git a/drupal/config/sync/advancedqueue.advancedqueue_queue.default.yml b/drupal/config/sync/advancedqueue.advancedqueue_queue.default.yml new file mode 100644 index 0000000..d7f3c7e --- /dev/null +++ b/drupal/config/sync/advancedqueue.advancedqueue_queue.default.yml @@ -0,0 +1,14 @@ +uuid: 341c9fea-1b7a-448d-8ff0-4b1ee890cb76 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: mrBML-mSE7gKDkRJdleP7qLpxfldTKlAerb0Bt2MNMA +id: default +label: Default +backend: database +backend_configuration: + lease_time: 300 +processor: cron +processing_time: 90 +locked: false diff --git a/drupal/config/sync/block.block.accountheaderblock.yml b/drupal/config/sync/block.block.accountheaderblock.yml new file mode 100644 index 0000000..10537e7 --- /dev/null +++ b/drupal/config/sync/block.block.accountheaderblock.yml @@ -0,0 +1,33 @@ +uuid: 36b4a00f-46e4-4b69-a9a4-d015be65aedb +langcode: en +status: true +dependencies: + module: + - social_user + - user + theme: + - socialbase +_core: + default_config_hash: hw-7VqRnZaYIFdTMj7oL8DbEVeE5THhXA3aVAxoiAEc +id: accountheaderblock +theme: socialbase +region: header +weight: 2 +provider: null +plugin: account_header_block +settings: + id: account_header_block + label: 'Account header block' + provider: social_user + label_display: '0' + context_mapping: + user: '@user.current_user_context:current_user' +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + administrator: administrator + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.anhomepageheroblock.yml b/drupal/config/sync/block.block.anhomepageheroblock.yml new file mode 100644 index 0000000..d64ca28 --- /dev/null +++ b/drupal/config/sync/block.block.anhomepageheroblock.yml @@ -0,0 +1,41 @@ +uuid: 394e49e5-5815-4a9d-9033-3b54b58ef25a +langcode: en +status: true +dependencies: + content: + - 'block_content:hero_call_to_action_block:8bb9d4bb-f182-4afc-b138-8a4b802824e4' + module: + - block_content + - system + - user + theme: + - socialbase +_core: + default_config_hash: pcTb6xm-0aCxqH5uarK57lAx7Sd4DxRZRrXBkS6-XhI +id: anhomepageheroblock +theme: socialbase +region: hero +weight: -15 +provider: null +plugin: 'block_content:8bb9d4bb-f182-4afc-b138-8a4b802824e4' +settings: + id: 'block_content:8bb9d4bb-f182-4afc-b138-8a4b802824e4' + label: 'AN homepage hero block' + provider: block_content + label_display: '0' + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } + user_role: + id: user_role + roles: + anonymous: anonymous + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/block.block.olivero_account_menu.yml b/drupal/config/sync/block.block.bootstrap_account_menu.yml similarity index 59% rename from drupal/config/block.block.olivero_account_menu.yml rename to drupal/config/sync/block.block.bootstrap_account_menu.yml index 059188c..d73d479 100644 --- a/drupal/config/block.block.olivero_account_menu.yml +++ b/drupal/config/sync/block.block.bootstrap_account_menu.yml @@ -1,4 +1,4 @@ -uuid: eca6ff8f-4bf8-413a-a903-a01f0b27f9f0 +uuid: e1832d8a-c743-4d8f-903f-4e01ebfaf865 langcode: en status: true dependencies: @@ -7,21 +7,21 @@ dependencies: module: - system theme: - - olivero + - bootstrap _core: - default_config_hash: gmxYWWHmgbe0Pnv8y48ZLSLH5mEHejOjAP6RLxUfdzU -id: olivero_account_menu -theme: olivero -region: secondary_menu -weight: -4 + default_config_hash: HrZTblWpMF4fo6BdbBcyHEu5Hp9ds1IZF3FiRd2Q8rU +id: bootstrap_account_menu +theme: bootstrap +region: navigation_collapsible +weight: 11 provider: null plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - label_display: '0' provider: system + label_display: '0' level: 1 - depth: 1 + depth: 2 expand_all_items: false visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_branding.yml b/drupal/config/sync/block.block.bootstrap_branding.yml new file mode 100644 index 0000000..e809d65 --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_branding.yml @@ -0,0 +1,25 @@ +uuid: 4f3a1bdd-6548-4ff8-a94b-a7955c9980bc +langcode: en +status: true +dependencies: + module: + - system + theme: + - bootstrap +_core: + default_config_hash: Cy3vkpYrD1O5JG-BeEnokF0bByHYDEa8CBfWivB4_SQ +id: bootstrap_branding +theme: bootstrap +region: navigation +weight: 0 +provider: null +plugin: system_branding_block +settings: + id: system_branding_block + label: 'Site branding' + provider: system + label_display: '0' + use_site_logo: true + use_site_name: true + use_site_slogan: false +visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_breadcrumbs.yml b/drupal/config/sync/block.block.bootstrap_breadcrumbs.yml new file mode 100644 index 0000000..7572303 --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: c080673e-f759-4485-8e7d-b2d62bffb1d7 +langcode: en +status: true +dependencies: + module: + - system + theme: + - bootstrap +_core: + default_config_hash: wDR9JKEATSWldBjw8du8s3G2zjEYeQf88nlld11hMLo +id: bootstrap_breadcrumbs +theme: bootstrap +region: header +weight: -100 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_content.yml b/drupal/config/sync/block.block.bootstrap_content.yml new file mode 100644 index 0000000..62d132e --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_content.yml @@ -0,0 +1,22 @@ +uuid: 21e2551d-99b8-4193-befa-f6201ebb8e1d +langcode: en +status: true +dependencies: + module: + - system + theme: + - bootstrap +_core: + default_config_hash: fNNLN48MSGSLiqwIFywCuxH2Dk_IxDbaP0kYhg_IPrg +id: bootstrap_content +theme: bootstrap +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_footer.yml b/drupal/config/sync/block.block.bootstrap_footer.yml new file mode 100644 index 0000000..dd9b46b --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_footer.yml @@ -0,0 +1,27 @@ +uuid: 5fa25d71-9acd-45ec-b8e3-9de740ed85d5 +langcode: en +status: true +dependencies: + config: + - system.menu.footer + module: + - system + theme: + - bootstrap +_core: + default_config_hash: 4VDn3bLy009pYlPUWQBHaaGVJu8FPnxNfr2DYrAnNHI +id: bootstrap_footer +theme: bootstrap +region: footer +weight: 0 +provider: null +plugin: 'system_menu_block:footer' +settings: + id: 'system_menu_block:footer' + label: 'Footer menu' + provider: system + label_display: '0' + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/drupal/config/block.block.olivero_primary_admin_actions.yml b/drupal/config/sync/block.block.bootstrap_local_actions.yml similarity index 52% rename from drupal/config/block.block.olivero_primary_admin_actions.yml rename to drupal/config/sync/block.block.bootstrap_local_actions.yml index 050ca97..7dfe95e 100644 --- a/drupal/config/block.block.olivero_primary_admin_actions.yml +++ b/drupal/config/sync/block.block.bootstrap_local_actions.yml @@ -1,20 +1,20 @@ -uuid: 43b29dbc-d49b-4ec8-b649-da8a5ff41f98 +uuid: bece2499-2cd4-41bd-b278-577bb3f2b558 langcode: en status: true dependencies: theme: - - olivero + - bootstrap _core: - default_config_hash: Q9_2whdOj1YIomfvsIfopROW4FT_X5pY0DjdOiOaQ5U -id: olivero_primary_admin_actions -theme: olivero -region: highlighted -weight: -5 + default_config_hash: ffxthelqQF8xcr4GTG4HlaNNsluiHftN0pujmQpW0bQ +id: bootstrap_local_actions +theme: bootstrap +region: header +weight: 20 provider: null plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_local_tasks.yml b/drupal/config/sync/block.block.bootstrap_local_tasks.yml new file mode 100644 index 0000000..b63c970 --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 8835b74f-c048-43c5-9264-c74edc58f423 +langcode: en +status: true +dependencies: + theme: + - bootstrap +_core: + default_config_hash: qHdtze2DZ2mFfaJadxjZz6epm92_SN9SAFY4yJGl8Fo +id: bootstrap_local_tasks +theme: bootstrap +region: header +weight: 10 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: Tabs + provider: core + label_display: '0' + primary: true + secondary: true +visibility: { } diff --git a/drupal/config/block.block.olivero_main_menu.yml b/drupal/config/sync/block.block.bootstrap_main_menu.yml similarity index 56% rename from drupal/config/block.block.olivero_main_menu.yml rename to drupal/config/sync/block.block.bootstrap_main_menu.yml index dfc5ece..ef55aaa 100644 --- a/drupal/config/block.block.olivero_main_menu.yml +++ b/drupal/config/sync/block.block.bootstrap_main_menu.yml @@ -1,4 +1,4 @@ -uuid: ae7e1f56-c45b-4955-be22-7ebe9fbb0877 +uuid: 7460451d-ea3a-4670-9fc2-40510e679c8b langcode: en status: true dependencies: @@ -7,21 +7,21 @@ dependencies: module: - system theme: - - olivero + - bootstrap _core: - default_config_hash: KWAiziL39uEzmOJEql_wbUP2RtqGceL3WM2CfxhMelE -id: olivero_main_menu -theme: olivero -region: primary_menu -weight: 0 + default_config_hash: ERtUwuUKdqiRLiXjBoV7gcIIZgt2IdqWBzqsqtm63w4 +id: bootstrap_main_menu +theme: bootstrap +region: navigation_collapsible +weight: 10 provider: null plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 2 - expand_all_items: true + expand_all_items: false visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_messages.yml b/drupal/config/sync/block.block.bootstrap_messages.yml new file mode 100644 index 0000000..96c20ea --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_messages.yml @@ -0,0 +1,22 @@ +uuid: 2cb681b4-d22b-47ff-9a5e-f88f0224d392 +langcode: en +status: true +dependencies: + module: + - system + theme: + - bootstrap +_core: + default_config_hash: 9RnnTUBcn0WRWXfrGOnId2H0Q31uQUeu_F5TnDxl2yg +id: bootstrap_messages +theme: bootstrap +region: header +weight: -50 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/block.block.olivero_page_title.yml b/drupal/config/sync/block.block.bootstrap_page_title.yml similarity index 51% rename from drupal/config/block.block.olivero_page_title.yml rename to drupal/config/sync/block.block.bootstrap_page_title.yml index e30af34..aeae38f 100644 --- a/drupal/config/block.block.olivero_page_title.yml +++ b/drupal/config/sync/block.block.bootstrap_page_title.yml @@ -1,20 +1,20 @@ -uuid: 5c81648d-cfba-4fa8-ad13-52f6ac337305 +uuid: 105bbc7e-3a1b-44b6-a63f-2a8e97f10539 langcode: en status: true dependencies: theme: - - olivero + - bootstrap _core: - default_config_hash: 6aOgWsNTXjqrDm98TXSAjP6qd2nCijD1xw45MrnbK-Y -id: olivero_page_title -theme: olivero -region: content_above -weight: -5 + default_config_hash: 1TQP4b3ZnlzvIH9bj6cpCz_SyUHdJjLQkZnHpikjjhw +id: bootstrap_page_title +theme: bootstrap +region: header +weight: 0 provider: null plugin: page_title_block settings: id: page_title_block label: 'Page title' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.olivero_powered.yml b/drupal/config/sync/block.block.bootstrap_powered.yml similarity index 56% rename from drupal/config/block.block.olivero_powered.yml rename to drupal/config/sync/block.block.bootstrap_powered.yml index 101e48b..c751202 100644 --- a/drupal/config/block.block.olivero_powered.yml +++ b/drupal/config/sync/block.block.bootstrap_powered.yml @@ -1,22 +1,22 @@ -uuid: 46f5f3dc-7d03-4d0f-8062-aad418bbbe68 +uuid: 905654af-fdc3-448e-ac23-acd3eb2b04ad langcode: en status: true dependencies: module: - system theme: - - olivero + - bootstrap _core: - default_config_hash: eYL19CLDyinGTWYQfBD1DswWzglEotE_kHnHx3AxTXM -id: olivero_powered -theme: olivero -region: footer_bottom -weight: 0 + default_config_hash: iggZSiUKz4mYP1YPJ8SsUfFu79HIgOTt6IDy3Up59aM +id: bootstrap_powered +theme: bootstrap +region: footer +weight: -10 provider: null plugin: system_powered_by_block settings: id: system_powered_by_block label: 'Powered by Drupal' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/sync/block.block.bootstrap_tools.yml b/drupal/config/sync/block.block.bootstrap_tools.yml new file mode 100644 index 0000000..f80bcc5 --- /dev/null +++ b/drupal/config/sync/block.block.bootstrap_tools.yml @@ -0,0 +1,27 @@ +uuid: 455c9ad9-f4e5-48e1-99f4-7cb9e40d2530 +langcode: en +status: true +dependencies: + config: + - system.menu.tools + module: + - system + theme: + - bootstrap +_core: + default_config_hash: SrPItPkAevw9hGX_v5AfsVyw6vkoog7ZVLSJYqwsBHc +id: bootstrap_tools +theme: bootstrap +region: sidebar_second +weight: 0 +provider: null +plugin: 'system_menu_block:tools' +settings: + id: 'system_menu_block:tools' + label: Tools + provider: system + label_display: visible + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/drupal/config/block.block.claro_breadcrumbs.yml b/drupal/config/sync/block.block.claro_breadcrumbs.yml similarity index 74% rename from drupal/config/block.block.claro_breadcrumbs.yml rename to drupal/config/sync/block.block.claro_breadcrumbs.yml index ca98a09..5e55d30 100644 --- a/drupal/config/block.block.claro_breadcrumbs.yml +++ b/drupal/config/sync/block.block.claro_breadcrumbs.yml @@ -1,4 +1,4 @@ -uuid: b2cfea11-0341-4a1e-bd84-9b00607f1236 +uuid: 7b64a77e-f8c5-4432-ac5f-596f127269bf langcode: en status: true dependencies: @@ -7,7 +7,7 @@ dependencies: theme: - claro _core: - default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A + default_config_hash: b6mUaCq5YPapRUABXRHfNTT6fxWIj5lgf0Mg4HaRJ_I id: claro_breadcrumbs theme: claro region: breadcrumb @@ -17,6 +17,6 @@ plugin: system_breadcrumb_block settings: id: system_breadcrumb_block label: Breadcrumbs - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.claro_content.yml b/drupal/config/sync/block.block.claro_content.yml similarity index 73% rename from drupal/config/block.block.claro_content.yml rename to drupal/config/sync/block.block.claro_content.yml index 183181b..b206660 100644 --- a/drupal/config/block.block.claro_content.yml +++ b/drupal/config/sync/block.block.claro_content.yml @@ -1,4 +1,4 @@ -uuid: 233e62d5-cbc5-4406-9d7e-eda9759a4e7c +uuid: aaf6fef2-3fad-425e-9cef-76949780d669 langcode: en status: true dependencies: @@ -7,7 +7,7 @@ dependencies: theme: - claro _core: - default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0 + default_config_hash: QTwkfDaGeBUk6aerktJBDXso4fCsqLTQOuWKXE1xMPU id: claro_content theme: claro region: content @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.claro_local_actions.yml b/drupal/config/sync/block.block.claro_local_actions.yml similarity index 73% rename from drupal/config/block.block.claro_local_actions.yml rename to drupal/config/sync/block.block.claro_local_actions.yml index b90a8b7..693ddf7 100644 --- a/drupal/config/block.block.claro_local_actions.yml +++ b/drupal/config/sync/block.block.claro_local_actions.yml @@ -1,11 +1,11 @@ -uuid: f3117b5f-4cf1-4faf-ae0e-4f77d82db471 +uuid: cad86820-d13a-469b-8c8e-77c2b81a2fa1 langcode: en status: true dependencies: theme: - claro _core: - default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0 + default_config_hash: osZQ9lL2jTdH5am4LJiZ29RaivhzOf6vCpoRy6FZwIE id: claro_local_actions theme: claro region: content @@ -15,6 +15,6 @@ plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.claro_messages.yml b/drupal/config/sync/block.block.claro_messages.yml similarity index 74% rename from drupal/config/block.block.claro_messages.yml rename to drupal/config/sync/block.block.claro_messages.yml index 18e149a..370bef6 100644 --- a/drupal/config/block.block.claro_messages.yml +++ b/drupal/config/sync/block.block.claro_messages.yml @@ -1,4 +1,4 @@ -uuid: 5a7bd102-81bc-42ae-9619-d7c45566efca +uuid: ae8286dc-9c08-4937-9953-95a1ec209f2e langcode: en status: true dependencies: @@ -7,7 +7,7 @@ dependencies: theme: - claro _core: - default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg' + default_config_hash: iIy-YIc9d9s1isAtTIKWDBKd6kd2r6LxoYz_-hkLJco id: claro_messages theme: claro region: highlighted @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.claro_page_title.yml b/drupal/config/sync/block.block.claro_page_title.yml similarity index 71% rename from drupal/config/block.block.claro_page_title.yml rename to drupal/config/sync/block.block.claro_page_title.yml index 7fbf0fc..9756284 100644 --- a/drupal/config/block.block.claro_page_title.yml +++ b/drupal/config/sync/block.block.claro_page_title.yml @@ -1,11 +1,11 @@ -uuid: 6dfdb975-1af0-4231-bf47-7a8452de52b4 +uuid: 8517c8d2-ef80-4472-8f88-39aeee6a2c50 langcode: en status: true dependencies: theme: - claro _core: - default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs + default_config_hash: gfXKmThltk6eewwrjAEaxVPxzPEVHV1UfNjjOUQ5A7g id: claro_page_title theme: claro region: header @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.claro_primary_local_tasks.yml b/drupal/config/sync/block.block.claro_primary_local_tasks.yml similarity index 74% rename from drupal/config/block.block.claro_primary_local_tasks.yml rename to drupal/config/sync/block.block.claro_primary_local_tasks.yml index b7ffbb5..1689cf8 100644 --- a/drupal/config/block.block.claro_primary_local_tasks.yml +++ b/drupal/config/sync/block.block.claro_primary_local_tasks.yml @@ -1,11 +1,11 @@ -uuid: 053569fd-e5b8-4ccb-9c1e-7ded36673cdd +uuid: da27e10c-d0c4-4a58-82c1-13a19febb17f langcode: en status: true dependencies: theme: - claro _core: - default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw + default_config_hash: 7cvXIzw8NabmQCWMPqBz0mvIQZzXUZB3OeOTa5eqbCo id: claro_primary_local_tasks theme: claro region: header @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: 'Primary tabs' - label_display: '0' provider: core + label_display: '0' primary: true secondary: false visibility: { } diff --git a/drupal/config/block.block.claro_secondary_local_tasks.yml b/drupal/config/sync/block.block.claro_secondary_local_tasks.yml similarity index 75% rename from drupal/config/block.block.claro_secondary_local_tasks.yml rename to drupal/config/sync/block.block.claro_secondary_local_tasks.yml index 362a561..c65acd9 100644 --- a/drupal/config/block.block.claro_secondary_local_tasks.yml +++ b/drupal/config/sync/block.block.claro_secondary_local_tasks.yml @@ -1,11 +1,11 @@ -uuid: 5678143c-d8d7-4512-a034-35ba495f687a +uuid: 0269cc4c-31db-40c9-a2d0-f4c63ca75417 langcode: en status: true dependencies: theme: - claro _core: - default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4 + default_config_hash: D_hUB_AW2IvKbVo3lVG-B2KfTsX6xJ-CxfOcRYUnL3E id: claro_secondary_local_tasks theme: claro region: pre_content @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: 'Secondary tabs' - label_display: '0' provider: core + label_display: '0' primary: false secondary: true visibility: { } diff --git a/drupal/config/sync/block.block.event_add_block.yml b/drupal/config/sync/block.block.event_add_block.yml new file mode 100644 index 0000000..c4b1370 --- /dev/null +++ b/drupal/config/sync/block.block.event_add_block.yml @@ -0,0 +1,28 @@ +uuid: 08c0f716-aa7c-4c6a-93be-0dc6f3221ded +langcode: en +status: true +dependencies: + module: + - social_event + - system + theme: + - socialbase +_core: + default_config_hash: Pr90Y2n_TmGQ4hUCpTaWgBPfuAZqIeMOkje54rdZHRI +id: event_add_block +theme: socialbase +region: complementary_top +weight: -99 +provider: null +plugin: event_add_block +settings: + id: event_add_block + label: 'Event add block' + provider: social_event + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.eventrequestsnotification.yml b/drupal/config/sync/block.block.eventrequestsnotification.yml new file mode 100644 index 0000000..951d66d --- /dev/null +++ b/drupal/config/sync/block.block.eventrequestsnotification.yml @@ -0,0 +1,22 @@ +uuid: cfcc6b06-4a1d-4d14-a456-4e7c961c0561 +langcode: en +status: true +dependencies: + module: + - social_event + theme: + - socialbase +_core: + default_config_hash: YzatBYeVihal6WcOj96GRG0JWBI0pmTzIK1pT7LuJGE +id: eventrequestsnotification +theme: socialbase +region: content +weight: -29 +provider: null +plugin: event_requests_notification +settings: + id: event_requests_notification + label: 'Event requests notification' + provider: social_event + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.eventrequestsnotification_2.yml b/drupal/config/sync/block.block.eventrequestsnotification_2.yml new file mode 100644 index 0000000..2a236e5 --- /dev/null +++ b/drupal/config/sync/block.block.eventrequestsnotification_2.yml @@ -0,0 +1,22 @@ +uuid: c0259eb0-62af-4497-a53b-fa831973cbb5 +langcode: en +status: true +dependencies: + module: + - social_event + theme: + - socialblue +_core: + default_config_hash: '-r3I1uYwwGgB1BXWU4J2NqaWRTxcWf0TLNyFRDFdYAk' +id: eventrequestsnotification_2 +theme: socialblue +region: content +weight: -29 +provider: null +plugin: event_requests_notification +settings: + id: event_requests_notification + label: 'Event requests notification' + provider: social_event + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.exposed_form_groups_page_user_groups.yml b/drupal/config/sync/block.block.exposed_form_groups_page_user_groups.yml new file mode 100644 index 0000000..7a756e0 --- /dev/null +++ b/drupal/config/sync/block.block.exposed_form_groups_page_user_groups.yml @@ -0,0 +1,31 @@ +uuid: 6e32eecb-fc6a-48e3-8eb2-d3eeebe4aaf1 +langcode: en +status: true +dependencies: + config: + - views.view.groups + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: gTnvX8FEhcSQw8csSNYUwmqKzt5fhvwtlsiI4O6XVW8 +id: exposed_form_groups_page_user_groups +theme: socialblue +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:groups-page_user_groups' +settings: + id: 'views_exposed_filter_block:groups-page_user_groups' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: '/user/*/groups' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposed_form_newest_groups_page_all_groups.yml b/drupal/config/sync/block.block.exposed_form_newest_groups_page_all_groups.yml new file mode 100644 index 0000000..7cdb802 --- /dev/null +++ b/drupal/config/sync/block.block.exposed_form_newest_groups_page_all_groups.yml @@ -0,0 +1,31 @@ +uuid: 4a9512d2-7fe5-463d-8066-e8cba821c4de +langcode: en +status: true +dependencies: + config: + - views.view.newest_groups + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: 2pIi1KbMaKhE051d8bsREZj0FQG1Hw0HYRY7T7w7uUw +id: exposed_form_newest_groups_page_all_groups +theme: socialblue +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:newest_groups-page_all_groups' +settings: + id: 'views_exposed_filter_block:newest_groups-page_all_groups' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /all-groups + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposed_form_search_content_page_sidebar.yml b/drupal/config/sync/block.block.exposed_form_search_content_page_sidebar.yml new file mode 100644 index 0000000..fd4f785 --- /dev/null +++ b/drupal/config/sync/block.block.exposed_form_search_content_page_sidebar.yml @@ -0,0 +1,31 @@ +uuid: f8612834-f624-4bb3-b9b4-c3ee46a59fc9 +langcode: en +status: true +dependencies: + config: + - views.view.search_content + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: x8Rwei5VZu3TufM3euURcjoQnwf7nn6rNm3EY5mLU-A +id: exposed_form_search_content_page_sidebar +theme: socialbase +region: complementary_top +weight: 3 +provider: null +plugin: 'views_exposed_filter_block:search_content-page' +settings: + id: 'views_exposed_filter_block:search_content-page' + label: '' + provider: views + label_display: visible + views_label: 'Sort and Filter' +visibility: + request_path: + id: request_path + pages: "/search/content\r\n/search/content/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposed_form_search_groups_page_sidebar.yml b/drupal/config/sync/block.block.exposed_form_search_groups_page_sidebar.yml new file mode 100644 index 0000000..864bb2d --- /dev/null +++ b/drupal/config/sync/block.block.exposed_form_search_groups_page_sidebar.yml @@ -0,0 +1,31 @@ +uuid: e423053a-467d-4ed5-9c07-1800bdd2c3e3 +langcode: en +status: true +dependencies: + config: + - views.view.search_groups + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: wffDrUTOGp9BKnp-O5715jCOgZ0V-a0YP0FB2xDS9PA +id: exposed_form_search_groups_page_sidebar +theme: socialbase +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:search_groups-page' +settings: + id: 'views_exposed_filter_block:search_groups-page' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: "/search/groups\r\n/search/groups/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposed_form_search_users_page_sidebar.yml b/drupal/config/sync/block.block.exposed_form_search_users_page_sidebar.yml new file mode 100644 index 0000000..a93b67e --- /dev/null +++ b/drupal/config/sync/block.block.exposed_form_search_users_page_sidebar.yml @@ -0,0 +1,31 @@ +uuid: ebbd2e5d-7206-466e-abd6-d3239467e957 +langcode: en +status: true +dependencies: + config: + - views.view.search_users + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: QP9Hg0-yhZhLEJkRbUl2wVh2TYSV3wGoaKW4ByB3T3s +id: exposed_form_search_users_page_sidebar +theme: socialbase +region: complementary_top +weight: 4 +provider: null +plugin: 'views_exposed_filter_block:search_users-page' +settings: + id: 'views_exposed_filter_block:search_users-page' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: "/search/users\r\n/search/users/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformeventsevents_overview.yml b/drupal/config/sync/block.block.exposedformeventsevents_overview.yml new file mode 100644 index 0000000..70a478a --- /dev/null +++ b/drupal/config/sync/block.block.exposedformeventsevents_overview.yml @@ -0,0 +1,39 @@ +uuid: 154ddda0-b3aa-4d74-95f0-35b0d60a0b5c +langcode: en +status: true +dependencies: + config: + - views.view.events + module: + - system + - user + - views + theme: + - socialbase +_core: + default_config_hash: Cn0bAAItzz-edPQEaPZG_GUOno0k_f6ID-T-iCCnpZQ +id: exposedformeventsevents_overview +theme: socialbase +region: complementary_top +weight: 1 +provider: null +plugin: 'views_exposed_filter_block:events-events_overview' +settings: + id: 'views_exposed_filter_block:events-events_overview' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: '/user/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformfollowingfollowing.yml b/drupal/config/sync/block.block.exposedformfollowingfollowing.yml new file mode 100644 index 0000000..3aee080 --- /dev/null +++ b/drupal/config/sync/block.block.exposedformfollowingfollowing.yml @@ -0,0 +1,31 @@ +uuid: b23f5e7a-7499-4a1b-8e49-fdbda7f5e0db +langcode: en +status: true +dependencies: + config: + - views.view.following + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: E1e2ChYjW2belIX2h1-Y7iAKgGV_ExQNS-PXvmrq5bk +id: exposedformfollowingfollowing +theme: socialblue +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:following-following' +settings: + id: 'views_exposed_filter_block:following-following' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /following + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformgroup_eventspage_group_events.yml b/drupal/config/sync/block.block.exposedformgroup_eventspage_group_events.yml new file mode 100644 index 0000000..aff16e0 --- /dev/null +++ b/drupal/config/sync/block.block.exposedformgroup_eventspage_group_events.yml @@ -0,0 +1,31 @@ +uuid: 5fe01f40-0371-43d8-b021-5dd56e1b4d10 +langcode: en +status: true +dependencies: + config: + - views.view.group_events + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: _Se3YiNuLfZNs5HDfGbGe9QEV_I2-wJEU0Wk8nF9x6c +id: exposedformgroup_eventspage_group_events +theme: socialbase +region: complementary_top +weight: -9 +provider: null +plugin: 'views_exposed_filter_block:group_events-page_group_events' +settings: + id: 'views_exposed_filter_block:group_events-page_group_events' + label: '' + provider: views + label_display: '0' + views_label: Filter +visibility: + request_path: + id: request_path + pages: '/group/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformgroup_topicspage_group_topics.yml b/drupal/config/sync/block.block.exposedformgroup_topicspage_group_topics.yml new file mode 100644 index 0000000..ab1810d --- /dev/null +++ b/drupal/config/sync/block.block.exposedformgroup_topicspage_group_topics.yml @@ -0,0 +1,31 @@ +uuid: df2390c1-1962-4e75-afa7-6114ade2b172 +langcode: en +status: true +dependencies: + config: + - views.view.group_topics + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: b7zPH6uV7hEQx7wnKgTXWQJLHE6y_XZK9l4q9ahhAR0 +id: exposedformgroup_topicspage_group_topics +theme: socialbase +region: complementary_top +weight: -9 +provider: null +plugin: 'views_exposed_filter_block:group_topics-page_group_topics' +settings: + id: 'views_exposed_filter_block:group_topics-page_group_topics' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: '/group/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformlatest_topicspage_latest_topics.yml b/drupal/config/sync/block.block.exposedformlatest_topicspage_latest_topics.yml new file mode 100644 index 0000000..78e53e1 --- /dev/null +++ b/drupal/config/sync/block.block.exposedformlatest_topicspage_latest_topics.yml @@ -0,0 +1,31 @@ +uuid: 8c4beb79-ee85-43ba-9c55-dc3f6a978b19 +langcode: en +status: true +dependencies: + config: + - views.view.latest_topics + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: kMqxltcLhmoj5txHbRyHXOdcggiYPmbTVkGt9E1CZKE +id: exposedformlatest_topicspage_latest_topics +theme: socialbase +region: complementary_top +weight: 1 +provider: null +plugin: 'views_exposed_filter_block:latest_topics-page_latest_topics' +settings: + id: 'views_exposed_filter_block:latest_topics-page_latest_topics' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /all-topics + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformnewest_userspage_newest_users.yml b/drupal/config/sync/block.block.exposedformnewest_userspage_newest_users.yml new file mode 100644 index 0000000..e64495e --- /dev/null +++ b/drupal/config/sync/block.block.exposedformnewest_userspage_newest_users.yml @@ -0,0 +1,31 @@ +uuid: a7eabe4c-03a3-4791-ace9-08a9e2af3928 +langcode: en +status: true +dependencies: + config: + - views.view.newest_users + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: INsRD-naKLpiWzF8GqRzlDzl7_S6UwL0kv250HeOJIs +id: exposedformnewest_userspage_newest_users +theme: socialbase +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:newest_users-page_newest_users' +settings: + id: 'views_exposed_filter_block:newest_users-page_newest_users' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /all-members + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.exposedformupcoming_eventspage_community_events.yml b/drupal/config/sync/block.block.exposedformupcoming_eventspage_community_events.yml new file mode 100644 index 0000000..dd46a4a --- /dev/null +++ b/drupal/config/sync/block.block.exposedformupcoming_eventspage_community_events.yml @@ -0,0 +1,31 @@ +uuid: 926fa898-1da8-4a97-bd30-9e8baa25e239 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: bMyPHJ2HkkWS0GtR2Z29zdWwvV426iXh_Pv9o-RixfQ +id: exposedformupcoming_eventspage_community_events +theme: socialbase +region: complementary_top +weight: 3 +provider: null +plugin: 'views_exposed_filter_block:upcoming_events-page_community_events' +settings: + id: 'views_exposed_filter_block:upcoming_events-page_community_events' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /community-events + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.footer.yml b/drupal/config/sync/block.block.footer.yml new file mode 100644 index 0000000..eef4025 --- /dev/null +++ b/drupal/config/sync/block.block.footer.yml @@ -0,0 +1,27 @@ +uuid: 6bd54ad2-e621-4b39-a0e9-12021a13be8b +langcode: en +status: true +dependencies: + config: + - system.menu.footer + module: + - system + theme: + - socialbase +_core: + default_config_hash: lqe2jxmkLFkRO6MgBW3274S6F9U5Z2kwCEMW-yhsEPA +id: footer +theme: socialbase +region: footer +weight: -23 +provider: null +plugin: 'system_menu_block:footer' +settings: + id: 'system_menu_block:footer' + label: Footer + provider: system + label_display: '0' + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/drupal/config/block.block.olivero_breadcrumbs.yml b/drupal/config/sync/block.block.gin_breadcrumbs.yml similarity index 62% rename from drupal/config/block.block.olivero_breadcrumbs.yml rename to drupal/config/sync/block.block.gin_breadcrumbs.yml index 090e9cd..2f57719 100644 --- a/drupal/config/block.block.olivero_breadcrumbs.yml +++ b/drupal/config/sync/block.block.gin_breadcrumbs.yml @@ -1,15 +1,15 @@ -uuid: 40b36ae1-b698-4bc2-903b-8f9483d3fcc1 +uuid: 4ea12888-2c1a-418b-8cdd-e4097bf834a9 langcode: en status: true dependencies: module: - system theme: - - olivero + - gin _core: - default_config_hash: VhBzWb7lMRtIOg9G7VSw_0uopi-7zXeHq4vXqqV1HFE -id: olivero_breadcrumbs -theme: olivero + default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E +id: gin_breadcrumbs +theme: gin region: breadcrumb weight: 0 provider: null @@ -17,6 +17,6 @@ plugin: system_breadcrumb_block settings: id: system_breadcrumb_block label: Breadcrumbs - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/block.block.olivero_content.yml b/drupal/config/sync/block.block.gin_content.yml similarity index 62% rename from drupal/config/block.block.olivero_content.yml rename to drupal/config/sync/block.block.gin_content.yml index 1018de4..87d9852 100644 --- a/drupal/config/block.block.olivero_content.yml +++ b/drupal/config/sync/block.block.gin_content.yml @@ -1,15 +1,15 @@ -uuid: ec35f876-03d6-44ad-a55a-2e51f1170d16 +uuid: d4a91da0-e49d-41ca-b2d1-2b1850b0036f langcode: en status: true dependencies: module: - system theme: - - olivero + - gin _core: - default_config_hash: erQSEZF2XUjNmgTl0uNRBzmg18ZGXwUcw2FhApoeuHk -id: olivero_content -theme: olivero + default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58 +id: gin_content +theme: gin region: content weight: 0 provider: null @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/sync/block.block.gin_local_actions.yml b/drupal/config/sync/block.block.gin_local_actions.yml new file mode 100644 index 0000000..06997ba --- /dev/null +++ b/drupal/config/sync/block.block.gin_local_actions.yml @@ -0,0 +1,20 @@ +uuid: d66f555a-e3e3-4ce6-8010-ca23fac4f389 +langcode: en +status: true +dependencies: + theme: + - gin +_core: + default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ +id: gin_local_actions +theme: gin +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + provider: core + label_display: '0' +visibility: { } diff --git a/drupal/config/block.block.olivero_messages.yml b/drupal/config/sync/block.block.gin_messages.yml similarity index 60% rename from drupal/config/block.block.olivero_messages.yml rename to drupal/config/sync/block.block.gin_messages.yml index 261a8c7..5dd32a5 100644 --- a/drupal/config/block.block.olivero_messages.yml +++ b/drupal/config/sync/block.block.gin_messages.yml @@ -1,22 +1,22 @@ -uuid: 18029fae-78a2-49d7-a4b4-4cdbace5b18a +uuid: 81afc58a-397b-4c90-8187-c31e5a9c9928 langcode: en status: true dependencies: module: - system theme: - - olivero + - gin _core: - default_config_hash: BZ5tpW7H8X4PVGRm3MImTIHd2tN0eF7zOtp4SpRYUA0 -id: olivero_messages -theme: olivero + default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok +id: gin_messages +theme: gin region: highlighted -weight: -5 +weight: 0 provider: null plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/drupal/config/sync/block.block.gin_page_title.yml b/drupal/config/sync/block.block.gin_page_title.yml new file mode 100644 index 0000000..d3ca1d8 --- /dev/null +++ b/drupal/config/sync/block.block.gin_page_title.yml @@ -0,0 +1,20 @@ +uuid: 7055508b-4e10-4363-a477-669b323c5813 +langcode: en +status: true +dependencies: + theme: + - gin +_core: + default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q +id: gin_page_title +theme: gin +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + provider: core + label_display: '0' +visibility: { } diff --git a/drupal/config/block.block.olivero_primary_local_tasks.yml b/drupal/config/sync/block.block.gin_primary_local_tasks.yml similarity index 54% rename from drupal/config/block.block.olivero_primary_local_tasks.yml rename to drupal/config/sync/block.block.gin_primary_local_tasks.yml index 588dba2..2b8d491 100644 --- a/drupal/config/block.block.olivero_primary_local_tasks.yml +++ b/drupal/config/sync/block.block.gin_primary_local_tasks.yml @@ -1,22 +1,22 @@ -uuid: b326dba5-b573-43ad-9002-fd021a7b6ab8 +uuid: b90f9f45-a325-463b-b870-eb354ebe3684 langcode: en status: true dependencies: theme: - - olivero + - gin _core: - default_config_hash: nGE3EoPQQaQCuqTUtZgw0-KIzmrqdKDzdNQf2JyPUt4 -id: olivero_primary_local_tasks -theme: olivero -region: highlighted -weight: -4 + default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac +id: gin_primary_local_tasks +theme: gin +region: header +weight: 0 provider: null plugin: local_tasks_block settings: id: local_tasks_block label: 'Primary tabs' - label_display: '0' provider: core + label_display: '0' primary: true secondary: false visibility: { } diff --git a/drupal/config/block.block.olivero_secondary_local_tasks.yml b/drupal/config/sync/block.block.gin_secondary_local_tasks.yml similarity index 54% rename from drupal/config/block.block.olivero_secondary_local_tasks.yml rename to drupal/config/sync/block.block.gin_secondary_local_tasks.yml index ee6234e..969870b 100644 --- a/drupal/config/block.block.olivero_secondary_local_tasks.yml +++ b/drupal/config/sync/block.block.gin_secondary_local_tasks.yml @@ -1,22 +1,22 @@ -uuid: 4a906b8f-dba3-4d7a-92e6-cea2f9aba1e9 +uuid: c697ad82-7b84-43fd-b69b-53e518daeed3 langcode: en status: true dependencies: theme: - - olivero + - gin _core: - default_config_hash: ydSxdq7R66I8UMC460rOzlfzvlUL4VRbdwc6z9DWaUI -id: olivero_secondary_local_tasks -theme: olivero -region: highlighted -weight: -2 + default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg +id: gin_secondary_local_tasks +theme: gin +region: pre_content +weight: 0 provider: null plugin: local_tasks_block settings: id: local_tasks_block label: 'Secondary tabs' - label_display: '0' provider: core + label_display: '0' primary: false secondary: true visibility: { } diff --git a/drupal/config/sync/block.block.group_add_block.yml b/drupal/config/sync/block.block.group_add_block.yml new file mode 100644 index 0000000..4d54bea --- /dev/null +++ b/drupal/config/sync/block.block.group_add_block.yml @@ -0,0 +1,28 @@ +uuid: 6e33761b-d2e6-4b25-aa99-057951572be9 +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialbase +_core: + default_config_hash: 88AkZa3Jb0HyTb-lpje9XYFjb1BIc0E-C1sCnWf2gmM +id: group_add_block +theme: socialbase +region: complementary_top +weight: -97 +provider: null +plugin: group_add_block +settings: + id: group_add_block + label: 'Group add block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/groups' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.group_add_event_block.yml b/drupal/config/sync/block.block.group_add_event_block.yml new file mode 100644 index 0000000..ca660f3 --- /dev/null +++ b/drupal/config/sync/block.block.group_add_event_block.yml @@ -0,0 +1,28 @@ +uuid: 02356cad-754a-4e18-b84a-77825db63012 +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialbase +_core: + default_config_hash: IhbFgmf1ELaOBiBsnRl6-AJQEcph8O2pJFdGgRZu43k +id: group_add_event_block +theme: socialbase +region: complementary_top +weight: -96 +provider: null +plugin: group_add_event_block +settings: + id: group_add_event_block + label: 'Group add event block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.group_add_topic_block.yml b/drupal/config/sync/block.block.group_add_topic_block.yml new file mode 100644 index 0000000..accbc64 --- /dev/null +++ b/drupal/config/sync/block.block.group_add_topic_block.yml @@ -0,0 +1,28 @@ +uuid: 4dd4b065-ce89-4cbe-96a0-4f4f9a0355e6 +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialbase +_core: + default_config_hash: gVVKBv0XM0-cDJPAEM_KQ1SvA6lKbXbrRMkkcOWFd8k +id: group_add_topic_block +theme: socialbase +region: complementary_top +weight: -95 +provider: null +plugin: group_add_topic_block +settings: + id: group_add_topic_block + label: 'Group add topic block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.groupheroblock.yml b/drupal/config/sync/block.block.groupheroblock.yml new file mode 100644 index 0000000..2611d61 --- /dev/null +++ b/drupal/config/sync/block.block.groupheroblock.yml @@ -0,0 +1,28 @@ +uuid: 8591241b-b361-4d3e-9d61-628487db8b1a +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialbase +_core: + default_config_hash: 3jiEYU3Kv5u8MNEhix0nSqEL3rE-ogaEpWd2GG-Kj-4 +id: groupheroblock +theme: socialbase +region: hero +weight: null +provider: null +plugin: group_hero_block +settings: + id: group_hero_block + label: 'Group hero block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about\r\n/group/*/events\r\n/group/*/topics\r\n/group/*/members\r\n/group/*/membership\r\n/group/*/content/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.mainnavigation.yml b/drupal/config/sync/block.block.mainnavigation.yml new file mode 100644 index 0000000..1e7c086 --- /dev/null +++ b/drupal/config/sync/block.block.mainnavigation.yml @@ -0,0 +1,27 @@ +uuid: d516025d-f652-4ef2-972e-0c8edadf8032 +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - socialbase +_core: + default_config_hash: lVp1cEY88Sx8XZuLE3N_x5gtsqjQGu5QNvdBcyfGd0s +id: mainnavigation +theme: socialbase +region: header +weight: 4 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main navigation' + provider: system + label_display: '0' + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/drupal/config/sync/block.block.membershipinvitenotification.yml b/drupal/config/sync/block.block.membershipinvitenotification.yml new file mode 100644 index 0000000..68262ac --- /dev/null +++ b/drupal/config/sync/block.block.membershipinvitenotification.yml @@ -0,0 +1,41 @@ +uuid: cd5bc9d8-c479-4164-a8ba-f34c5af3755a +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_invite + module: + - group + - social_group_invite + - system + theme: + - socialblue +_core: + default_config_hash: 1uKBLy5T4uDZjgHzH3zCmgCDxHXfILpFHY1QqqWa9aE +id: membershipinvitenotification +theme: socialblue +region: content +weight: -100 +provider: null +plugin: membership_invite_notification +settings: + id: membership_invite_notification + label: 'Membership invite notification' + provider: social_group_invite + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/edit\r\n/group/*/delete\r\n/group/*/content/*/approve-membership\r\n/group/*/content/*/reject-membership\r\n/group/*/content/*" + negate: true + context_mapping: { } + group_type: + id: group_type + group_types: + closed_group: closed_group + open_group: open_group + public_group: public_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.membershipinvitenotification_2.yml b/drupal/config/sync/block.block.membershipinvitenotification_2.yml new file mode 100644 index 0000000..62ba7c0 --- /dev/null +++ b/drupal/config/sync/block.block.membershipinvitenotification_2.yml @@ -0,0 +1,41 @@ +uuid: de0197fc-d85c-4019-a940-3df517a2b5f9 +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_invite + module: + - group + - social_group_invite + - system + theme: + - socialbase +_core: + default_config_hash: xhf5LkFWBg54w-lMyB7ura-32in-NKkNgcpllC1Fs3Q +id: membershipinvitenotification_2 +theme: socialbase +region: content +weight: -100 +provider: null +plugin: membership_invite_notification +settings: + id: membership_invite_notification + label: 'Membership invite notification' + provider: social_group_invite + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/edit\r\n/group/*/delete\r\n/group/*/content/*/approve-membership\r\n/group/*/content/*/reject-membership\r\n/group/*/content/*" + negate: true + context_mapping: { } + group_type: + id: group_type + group_types: + closed_group: closed_group + open_group: open_group + public_group: public_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.membershipinvitenotification_3.yml b/drupal/config/sync/block.block.membershipinvitenotification_3.yml new file mode 100644 index 0000000..a8cd2e5 --- /dev/null +++ b/drupal/config/sync/block.block.membershipinvitenotification_3.yml @@ -0,0 +1,39 @@ +uuid: 2098eca2-b4ae-489d-9c01-e19cb09763b1 +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_invite + module: + - group + - social_group_invite + - system + theme: + - socialblue +_core: + default_config_hash: F0C_mKczVq7hvDD13A2N3wdS97Eh6llMo5iqTRPQubQ +id: membershipinvitenotification_3 +theme: socialblue +region: content +weight: -100 +provider: null +plugin: membership_invite_notification +settings: + id: membership_invite_notification + label: 'Membership invite notification' + provider: social_group_invite + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/edit\r\n/group/*/delete\r\n/group/*/content/*/approve-membership\r\n/group/*/content/*/reject-membership\r\n/group/*/content/*" + negate: true + context_mapping: { } + group_type: + id: group_type + group_types: + flexible_group: flexible_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.membershipinvitenotification_4.yml b/drupal/config/sync/block.block.membershipinvitenotification_4.yml new file mode 100644 index 0000000..f0297b6 --- /dev/null +++ b/drupal/config/sync/block.block.membershipinvitenotification_4.yml @@ -0,0 +1,39 @@ +uuid: 7b910221-c76d-49da-a915-fad85ee30ff3 +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_invite + module: + - group + - social_group_invite + - system + theme: + - socialbase +_core: + default_config_hash: nzOlnc3XFDT82LZog7DK7wOnJ6o8GcZyHr4C8J97Q4U +id: membershipinvitenotification_4 +theme: socialbase +region: content +weight: -100 +provider: null +plugin: membership_invite_notification +settings: + id: membership_invite_notification + label: 'Membership invite notification' + provider: social_group_invite + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/edit\r\n/group/*/delete\r\n/group/*/content/*/approve-membership\r\n/group/*/content/*/reject-membership\r\n/group/*/content/*" + negate: true + context_mapping: { } + group_type: + id: group_type + group_types: + flexible_group: flexible_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.membershiprequestsnotification.yml b/drupal/config/sync/block.block.membershiprequestsnotification.yml new file mode 100644 index 0000000..ca2b6e9 --- /dev/null +++ b/drupal/config/sync/block.block.membershiprequestsnotification.yml @@ -0,0 +1,41 @@ +uuid: ba04d861-fa75-48cd-8c5c-486dff0c6826 +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_request + module: + - group + - social_group_request + - system + theme: + - socialblue +_core: + default_config_hash: OM6qRShqDgq03LyRqi_wUWg4B__xcBGghfp9OP5OkQc +id: membershiprequestsnotification +theme: socialblue +region: content +weight: -100 +provider: null +plugin: membership_requests_notification +settings: + id: membership_requests_notification + label: 'Membership requests notification' + provider: social_group_request + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/edit\r\n/group/*/delete\r\n/group/*/content/*/approve-membership\r\n/group/*/content/*/reject-membership\r\n/group/*/content/*" + negate: true + context_mapping: { } + group_type: + id: group_type + group_types: + closed_group: closed_group + open_group: open_group + public_group: public_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.membershiprequestsnotification_2.yml b/drupal/config/sync/block.block.membershiprequestsnotification_2.yml new file mode 100644 index 0000000..f22b79b --- /dev/null +++ b/drupal/config/sync/block.block.membershiprequestsnotification_2.yml @@ -0,0 +1,41 @@ +uuid: f8ef29af-0cf5-4ff2-959f-45cae0e84029 +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_request + module: + - group + - social_group_request + - system + theme: + - socialbase +_core: + default_config_hash: yBx31qBGfGBSd7vSMpTaer_ENEzW3H_3dp4EuBb2KFw +id: membershiprequestsnotification_2 +theme: socialbase +region: content +weight: -100 +provider: null +plugin: membership_requests_notification +settings: + id: membership_requests_notification + label: 'Membership requests notification' + provider: social_group_request + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/edit\r\n/group/*/delete\r\n/group/*/content/*/approve-membership\r\n/group/*/content/*/reject-membership\r\n/group/*/content/*" + negate: true + context_mapping: { } + group_type: + id: group_type + group_types: + closed_group: closed_group + open_group: open_group + public_group: public_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.pagetitleblock_content.yml b/drupal/config/sync/block.block.pagetitleblock_content.yml new file mode 100644 index 0000000..3091445 --- /dev/null +++ b/drupal/config/sync/block.block.pagetitleblock_content.yml @@ -0,0 +1,28 @@ +uuid: fd727148-ba26-4263-91af-68eebb462fa2 +langcode: en +status: true +dependencies: + module: + - social_core + - system + theme: + - socialbase +_core: + default_config_hash: XlcqhiFUha2cNLhkfWUo9S0WLJh8joRUeTPi9vujuR8 +id: pagetitleblock_content +theme: socialbase +region: title +weight: 0 +provider: null +plugin: social_page_title_block +settings: + id: social_page_title_block + label: 'Page title block' + provider: social_core + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/search/*' + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.postblock.yml b/drupal/config/sync/block.block.postblock.yml new file mode 100644 index 0000000..e3879fd --- /dev/null +++ b/drupal/config/sync/block.block.postblock.yml @@ -0,0 +1,28 @@ +uuid: de4fbfb1-1864-4b14-850a-4a1a076a07b9 +langcode: en +status: true +dependencies: + module: + - social_post + - system + theme: + - socialbase +_core: + default_config_hash: P48P5vAKh5cdHENgfiw66njirMIylYzdKUN2jOQg00o +id: postblock +theme: socialbase +region: hidden +weight: -7 +provider: null +plugin: post_block +settings: + id: post_block + label: 'Post block' + provider: social_post + label_display: '0' +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.postongroupblock.yml b/drupal/config/sync/block.block.postongroupblock.yml new file mode 100644 index 0000000..548923c --- /dev/null +++ b/drupal/config/sync/block.block.postongroupblock.yml @@ -0,0 +1,28 @@ +uuid: d0d81e32-4b28-41ab-ab50-818164496ac7 +langcode: en +status: true +dependencies: + module: + - social_post + - system + theme: + - socialbase +_core: + default_config_hash: jM4rDaxSleva7mQiyaRj-ESpAcur9wzSXDfeXdGbOjk +id: postongroupblock +theme: socialbase +region: hidden +weight: -9 +provider: null +plugin: post_group_block +settings: + id: post_group_block + label: 'Post on group block' + provider: social_post + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.postonprofileblock.yml b/drupal/config/sync/block.block.postonprofileblock.yml new file mode 100644 index 0000000..5c990a7 --- /dev/null +++ b/drupal/config/sync/block.block.postonprofileblock.yml @@ -0,0 +1,28 @@ +uuid: b26bca97-7a70-4481-9851-e90bcb8dd8fe +langcode: en +status: true +dependencies: + module: + - social_post + - system + theme: + - socialbase +_core: + default_config_hash: b5E5NPiSRKlKRNZcEWgscia7LJXEHE6iMoBAyh0uJRU +id: postonprofileblock +theme: socialbase +region: hidden +weight: -9 +provider: null +plugin: post_profile_block +settings: + id: post_profile_block + label: 'Post on profile block' + provider: social_post + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.profile_hero_block.yml b/drupal/config/sync/block.block.profile_hero_block.yml new file mode 100644 index 0000000..05b06a8 --- /dev/null +++ b/drupal/config/sync/block.block.profile_hero_block.yml @@ -0,0 +1,30 @@ +uuid: 3517a76a-1d44-4649-9f36-9d5bab7b2e07 +langcode: en +status: true +dependencies: + module: + - social_profile + - system + theme: + - socialbase +_core: + default_config_hash: pE5SLEUsVFxhyTg4SI1m2Dc4pZZwBAIpzNSf-kBVECM +id: profile_hero_block +theme: socialbase +region: hero +weight: -15 +provider: null +plugin: profile_hero_block +settings: + id: profile_hero_block + label: 'Profile hero block' + provider: social_profile + label_display: '0' + context_mapping: + user: '@social_user.user_route_context:user' +visibility: + request_path: + id: request_path + pages: "/user\r\n/user/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.search_block_hero.yml b/drupal/config/sync/block.block.search_block_hero.yml new file mode 100644 index 0000000..2a8d1a1 --- /dev/null +++ b/drupal/config/sync/block.block.search_block_hero.yml @@ -0,0 +1,28 @@ +uuid: d8b4af65-5d8f-4553-8421-93892bdab180 +langcode: en +status: true +dependencies: + module: + - social_search + - system + theme: + - socialbase +_core: + default_config_hash: eRDnrgAFbPm0A-OlCOnP1jDf0GEkTK9undIsnA8cSMo +id: search_block_hero +theme: socialbase +region: hero +weight: null +provider: null +plugin: search_hero_block +settings: + id: search_hero_block + label: Search + provider: social_search + label_display: visible +visibility: + request_path: + id: request_path + pages: "/search/content\r\n/search/content/*\r\n/search/users\r\n/search/users/*\r\n/search/groups\r\n/search/groups/*\r\n/search/all\r\n/search/all/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.search_content_block_header.yml b/drupal/config/sync/block.block.search_content_block_header.yml new file mode 100644 index 0000000..5d1171d --- /dev/null +++ b/drupal/config/sync/block.block.search_content_block_header.yml @@ -0,0 +1,22 @@ +uuid: 0e6459ba-7116-4077-9367-4610e8f65902 +langcode: en +status: true +dependencies: + module: + - social_search + theme: + - socialbase +_core: + default_config_hash: pvQzsgFwdFmzMj7xaHs1NOaYjpX5_jTzGls-p69abU0 +id: search_content_block_header +theme: socialbase +region: content_top +weight: -9 +provider: null +plugin: search_content_block +settings: + id: search_content_block + label: 'Search content block' + provider: social_search + label_display: '0' +visibility: { } diff --git a/drupal/config/block.block.olivero_site_branding.yml b/drupal/config/sync/block.block.sitebranding.yml similarity index 65% rename from drupal/config/block.block.olivero_site_branding.yml rename to drupal/config/sync/block.block.sitebranding.yml index 1d06d91..896c804 100644 --- a/drupal/config/block.block.olivero_site_branding.yml +++ b/drupal/config/sync/block.block.sitebranding.yml @@ -1,24 +1,24 @@ -uuid: 0a25a1c2-c3b4-4987-b590-1d7d0f31d6e7 +uuid: c5a43eb7-a646-4e8e-88da-ba3d6d6c95c6 langcode: en status: true dependencies: module: - system theme: - - olivero + - socialbase _core: - default_config_hash: n_nlgjggHVfQt2H__zvLOKB2YtjPDbQ5tHijF9LE1aM -id: olivero_site_branding -theme: olivero + default_config_hash: 38SP4Ez8nO0AVi0dkEYnWt2dFniIz1nylQ2YELfHbq0 +id: sitebranding +theme: socialbase region: header -weight: 0 +weight: 3 provider: null plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - label_display: '0' provider: system + label_display: '0' use_site_logo: true use_site_name: true use_site_slogan: false diff --git a/drupal/config/sync/block.block.socialbase_account_menu.yml b/drupal/config/sync/block.block.socialbase_account_menu.yml new file mode 100644 index 0000000..c20a165 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_account_menu.yml @@ -0,0 +1,35 @@ +uuid: 8a378301-0b73-4bdf-98f4-d4b96c9ee253 +langcode: en +status: true +dependencies: + config: + - system.menu.account + module: + - system + - user + theme: + - socialbase +_core: + default_config_hash: FjC-IqH0cWjvuwop_2gboIQzIzxqD-GEWaSAMnvahT0 +id: socialbase_account_menu +theme: socialbase +region: header +weight: 1 +provider: null +plugin: 'system_menu_block:account' +settings: + id: 'system_menu_block:account' + label: 'User account menu' + provider: system + label_display: '0' + level: 1 + depth: 1 + expand_all_items: false +visibility: + user_role: + id: user_role + roles: + anonymous: anonymous + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.socialbase_breadcrumbs.yml b/drupal/config/sync/block.block.socialbase_breadcrumbs.yml new file mode 100644 index 0000000..d236287 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_breadcrumbs.yml @@ -0,0 +1,31 @@ +uuid: b9f29351-e7b2-4961-b2e5-7834f11d3f6a +langcode: en +status: true +dependencies: + module: + - system + - user + theme: + - socialbase +_core: + default_config_hash: 1u1kT1ArpkmW5wSx_fCG6y4IHGnnRmYQNNh30GOHXQQ +id: socialbase_breadcrumbs +theme: socialbase +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + provider: system + label_display: '0' +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + administrator: administrator + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.socialbase_content.yml b/drupal/config/sync/block.block.socialbase_content.yml new file mode 100644 index 0000000..5058b0b --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_content.yml @@ -0,0 +1,22 @@ +uuid: 8e32f0de-226d-4f4a-a489-1298c225b4b9 +langcode: en +status: true +dependencies: + module: + - system + theme: + - socialbase +_core: + default_config_hash: cJBzSe8tsKTEkQ3KWM0q1o2ONKVqoKQ6m2TSCYQpIsw +id: socialbase_content +theme: socialbase +region: content +weight: -13 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.socialbase_exposedformtopicspage_profile.yml b/drupal/config/sync/block.block.socialbase_exposedformtopicspage_profile.yml new file mode 100644 index 0000000..9adf1a1 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_exposedformtopicspage_profile.yml @@ -0,0 +1,39 @@ +uuid: a79ab998-84e4-47d5-b6b0-84d1020fabfd +langcode: en +status: true +dependencies: + config: + - views.view.topics + module: + - system + - user + - views + theme: + - socialbase +_core: + default_config_hash: ZPwVLWBhxw-Bxk-zSesuK63a8uXbqD_GUoEquIn-Rv4 +id: socialbase_exposedformtopicspage_profile +theme: socialbase +region: complementary_top +weight: 3 +provider: null +plugin: 'views_exposed_filter_block:topics-page_profile' +settings: + id: 'views_exposed_filter_block:topics-page_profile' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: '/user/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialbase_local_actions.yml b/drupal/config/sync/block.block.socialbase_local_actions.yml new file mode 100644 index 0000000..646be35 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_local_actions.yml @@ -0,0 +1,20 @@ +uuid: 29997191-6c06-4d56-a2e3-8f7ff4b8216a +langcode: en +status: true +dependencies: + theme: + - socialbase +_core: + default_config_hash: p5ptEPdCn5SGKsmn9szaZ5cG17TYIZ5U6-YdUuI9c-o +id: socialbase_local_actions +theme: socialbase +region: complementary_top +weight: -18 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + provider: core + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.socialbase_local_tasks.yml b/drupal/config/sync/block.block.socialbase_local_tasks.yml new file mode 100644 index 0000000..8503a40 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_local_tasks.yml @@ -0,0 +1,38 @@ +uuid: 0df197c0-974f-4096-8b37-1baa04cfd278 +langcode: en +status: true +dependencies: + module: + - system + - user + theme: + - socialbase +_core: + default_config_hash: T4-KeiVCp-5V6t594xDGW5IVO6Q7WyFWeEUcjhapnUA +id: socialbase_local_tasks +theme: socialbase +region: secondary_navigation +weight: -6 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: Tabs + provider: core + label_display: '0' + primary: true + secondary: true +visibility: + user_role: + id: user_role + roles: + anonymous: anonymous + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: "/post/*/edit\r\n/post/*/delete\r\n/user/*/edit\r\n/user/*/profile\r\n/group/*/edit" + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialbase_messages.yml b/drupal/config/sync/block.block.socialbase_messages.yml new file mode 100644 index 0000000..a390d03 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_messages.yml @@ -0,0 +1,22 @@ +uuid: 05df24d6-566b-4bca-b165-692aec112d55 +langcode: en +status: true +dependencies: + module: + - system + theme: + - socialbase +_core: + default_config_hash: skAEvDrG6ROzkkvY6AbJcOk-JUuv1al_Tcetvcf7ya0 +id: socialbase_messages +theme: socialbase +region: content +weight: -17 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.socialbase_pagetitleblock.yml b/drupal/config/sync/block.block.socialbase_pagetitleblock.yml new file mode 100644 index 0000000..c5d16e5 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_pagetitleblock.yml @@ -0,0 +1,38 @@ +uuid: f033e937-a643-4f72-81f5-9eb7e1653899 +langcode: en +status: true +dependencies: + module: + - node + - social_core + - system + theme: + - socialbase +_core: + default_config_hash: 8ZB7MAZJFG_7GJae4w5BqiMNTy_cA3Y3_sHAPI89eQg +id: socialbase_pagetitleblock +theme: socialbase +region: hero +weight: -15 +provider: null +plugin: social_page_title_block +settings: + id: social_page_title_block + label: 'Page title for nodes' + provider: social_core + label_display: '0' +visibility: + node_type: + id: node_type + bundles: + event: event + page: page + topic: topic + negate: false + context_mapping: + node: '@node.node_route_context:node' + request_path: + id: request_path + pages: '/node/add/*' + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialbase_pagetitleblock_2.yml b/drupal/config/sync/block.block.socialbase_pagetitleblock_2.yml new file mode 100644 index 0000000..9217eb1 --- /dev/null +++ b/drupal/config/sync/block.block.socialbase_pagetitleblock_2.yml @@ -0,0 +1,28 @@ +uuid: bde38567-b52f-4d4e-8148-29b8e1ee9dcf +langcode: en +status: true +dependencies: + module: + - social_core + - system + theme: + - socialbase +_core: + default_config_hash: LLwcMpJqUG2c10kgs6wCODEZb_9hCSRCmxXJ0ii5V0k +id: socialbase_pagetitleblock_2 +theme: socialbase +region: hero +weight: -20 +provider: null +plugin: social_page_title_block +settings: + id: social_page_title_block + label: 'Page title for enrollments' + provider: social_core + label_display: '0' +visibility: + request_path: + id: request_path + pages: "*/enrollments\r\n*/organisers\r\n*/manage-enrollments\r\n*/all-enrollments" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_account_menu.yml b/drupal/config/sync/block.block.socialblue_account_menu.yml new file mode 100644 index 0000000..7763a67 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_account_menu.yml @@ -0,0 +1,35 @@ +uuid: f55e0ea6-f13c-4f3e-bdb6-e416c40990e8 +langcode: en +status: true +dependencies: + config: + - system.menu.account + module: + - system + - user + theme: + - socialblue +_core: + default_config_hash: B2tojDJyWg4NEUWtwg0U0WoKVUsG4p_4TuBXTIbW3S0 +id: socialblue_account_menu +theme: socialblue +region: header +weight: 1 +provider: null +plugin: 'system_menu_block:account' +settings: + id: 'system_menu_block:account' + label: 'User account menu' + provider: system + label_display: '0' + level: 1 + depth: 1 + expand_all_items: false +visibility: + user_role: + id: user_role + roles: + anonymous: anonymous + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.socialblue_accountheaderblock.yml b/drupal/config/sync/block.block.socialblue_accountheaderblock.yml new file mode 100644 index 0000000..e54bc5d --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_accountheaderblock.yml @@ -0,0 +1,33 @@ +uuid: 5c5f9c61-d31f-4e73-9245-57665c942c05 +langcode: en +status: true +dependencies: + module: + - social_user + - user + theme: + - socialblue +_core: + default_config_hash: '-IhZcKt9IHKiTwXC8sVC0jZ-1XWUKn5g0IsJAfs6O60' +id: socialblue_accountheaderblock +theme: socialblue +region: header +weight: 2 +provider: null +plugin: account_header_block +settings: + id: account_header_block + label: 'Account header block' + provider: social_user + label_display: '0' + context_mapping: + user: '@user.current_user_context:current_user' +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + administrator: administrator + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.socialblue_anhomepageheroblock.yml b/drupal/config/sync/block.block.socialblue_anhomepageheroblock.yml new file mode 100644 index 0000000..6e3432a --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_anhomepageheroblock.yml @@ -0,0 +1,41 @@ +uuid: 81d54343-c6d7-401d-9362-1ac39a59283b +langcode: en +status: true +dependencies: + content: + - 'block_content:hero_call_to_action_block:8bb9d4bb-f182-4afc-b138-8a4b802824e4' + module: + - block_content + - system + - user + theme: + - socialblue +_core: + default_config_hash: _2nk0nU1RIaVO43S8JTkEA9lALoySulaYH_bbsS4j7o +id: socialblue_anhomepageheroblock +theme: socialblue +region: hero +weight: -15 +provider: null +plugin: 'block_content:8bb9d4bb-f182-4afc-b138-8a4b802824e4' +settings: + id: 'block_content:8bb9d4bb-f182-4afc-b138-8a4b802824e4' + label: 'AN homepage hero block' + provider: block_content + label_display: '0' + status: true + info: '' + view_mode: full +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } + user_role: + id: user_role + roles: + anonymous: anonymous + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.socialblue_breadcrumbs.yml b/drupal/config/sync/block.block.socialblue_breadcrumbs.yml new file mode 100644 index 0000000..2e581b4 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_breadcrumbs.yml @@ -0,0 +1,36 @@ +uuid: 449d029e-0c02-487c-aab0-d6548b2c21c2 +langcode: en +status: true +dependencies: + module: + - system + - user + theme: + - socialblue +_core: + default_config_hash: qx5J0OveCBX5suM2zODclnmzFJ_UUC2jWPAiu1VJYU0 +id: socialblue_breadcrumbs +theme: socialblue +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + provider: system + label_display: '0' +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + administrator: administrator + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: "/node/*/all-enrollment-requests\r\n/node/*/all-enrollment-invites" + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_content.yml b/drupal/config/sync/block.block.socialblue_content.yml new file mode 100644 index 0000000..dd804c3 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_content.yml @@ -0,0 +1,22 @@ +uuid: 85cbe1d4-840c-4aaf-a464-549a97941242 +langcode: en +status: true +dependencies: + module: + - system + theme: + - socialblue +_core: + default_config_hash: WQavb4yx5tp3JXnHNNH_B1-tp7ADTvyM3LDxGEuWbMw +id: socialblue_content +theme: socialblue +region: content +weight: -13 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_event_add_block.yml b/drupal/config/sync/block.block.socialblue_event_add_block.yml new file mode 100644 index 0000000..66445ab --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_event_add_block.yml @@ -0,0 +1,28 @@ +uuid: 0d16581f-5330-414a-a976-1a6a73e9c9ed +langcode: en +status: true +dependencies: + module: + - social_event + - system + theme: + - socialblue +_core: + default_config_hash: pOz-j9GCewa6cTdNbFqnt20dPt-rruPLZUcGw22Xc24 +id: socialblue_event_add_block +theme: socialblue +region: complementary_top +weight: -99 +provider: null +plugin: event_add_block +settings: + id: event_add_block + label: 'Event add block' + provider: social_event + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposed_form_search_content_page_sidebar.yml b/drupal/config/sync/block.block.socialblue_exposed_form_search_content_page_sidebar.yml new file mode 100644 index 0000000..bc24efd --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposed_form_search_content_page_sidebar.yml @@ -0,0 +1,31 @@ +uuid: c00ef0d8-4461-4a50-a09a-28f9fde1d078 +langcode: en +status: true +dependencies: + config: + - views.view.search_content + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: QRo3tGvHr084jZ0ZUS31X0Z9_VJcHRdtVG0B6IxLllQ +id: socialblue_exposed_form_search_content_page_sidebar +theme: socialblue +region: complementary_top +weight: 3 +provider: null +plugin: 'views_exposed_filter_block:search_content-page' +settings: + id: 'views_exposed_filter_block:search_content-page' + label: '' + provider: views + label_display: visible + views_label: 'Sort and Filter' +visibility: + request_path: + id: request_path + pages: "/search/content\r\n/search/content/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposed_form_search_groups_page_sidebar.yml b/drupal/config/sync/block.block.socialblue_exposed_form_search_groups_page_sidebar.yml new file mode 100644 index 0000000..6d2d8cd --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposed_form_search_groups_page_sidebar.yml @@ -0,0 +1,31 @@ +uuid: 63f821ec-e049-42f3-8ae9-97f7fcac4b5c +langcode: en +status: true +dependencies: + config: + - views.view.search_groups + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: '-6ABidCJcLgsPywIcsaCBkxqRyntngTLlv_rZynSr58' +id: socialblue_exposed_form_search_groups_page_sidebar +theme: socialblue +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:search_groups-page' +settings: + id: 'views_exposed_filter_block:search_groups-page' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: "/search/groups\r\n/search/groups/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposed_form_search_users_page_sidebar.yml b/drupal/config/sync/block.block.socialblue_exposed_form_search_users_page_sidebar.yml new file mode 100644 index 0000000..033a936 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposed_form_search_users_page_sidebar.yml @@ -0,0 +1,31 @@ +uuid: 91046405-c9c5-4180-b20a-e4384808d2b9 +langcode: en +status: true +dependencies: + config: + - views.view.search_users + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: uenMjym2h_uiKBmwJ9SfUzc5ayms6ucjJQVya-YiZY8 +id: socialblue_exposed_form_search_users_page_sidebar +theme: socialblue +region: complementary_top +weight: 4 +provider: null +plugin: 'views_exposed_filter_block:search_users-page' +settings: + id: 'views_exposed_filter_block:search_users-page' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: "/search/users\r\n/search/users/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformeventsevents_overview.yml b/drupal/config/sync/block.block.socialblue_exposedformeventsevents_overview.yml new file mode 100644 index 0000000..d0f62ee --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformeventsevents_overview.yml @@ -0,0 +1,39 @@ +uuid: 1c3f182b-3c13-4eeb-931e-14e663c9e94c +langcode: en +status: true +dependencies: + config: + - views.view.events + module: + - system + - user + - views + theme: + - socialblue +_core: + default_config_hash: nh5w2HyyMdVmLkORoql-7P8RXgsF_bl26XLi2MFy49w +id: socialblue_exposedformeventsevents_overview +theme: socialblue +region: complementary_top +weight: 1 +provider: null +plugin: 'views_exposed_filter_block:events-events_overview' +settings: + id: 'views_exposed_filter_block:events-events_overview' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: '/user/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformgroup_eventspage_group_events.yml b/drupal/config/sync/block.block.socialblue_exposedformgroup_eventspage_group_events.yml new file mode 100644 index 0000000..e793232 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformgroup_eventspage_group_events.yml @@ -0,0 +1,31 @@ +uuid: cd934e14-3337-4314-8e3f-cc3484a8f4c5 +langcode: en +status: true +dependencies: + config: + - views.view.group_events + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: kMyq_C7u_4IGEVq6D7EJdS_FZvB8Ed37MdJ7x8e900Y +id: socialblue_exposedformgroup_eventspage_group_events +theme: socialblue +region: complementary_top +weight: -9 +provider: null +plugin: 'views_exposed_filter_block:group_events-page_group_events' +settings: + id: 'views_exposed_filter_block:group_events-page_group_events' + label: '' + provider: views + label_display: '0' + views_label: Filter +visibility: + request_path: + id: request_path + pages: '/group/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformgroup_topicspage_group_topics.yml b/drupal/config/sync/block.block.socialblue_exposedformgroup_topicspage_group_topics.yml new file mode 100644 index 0000000..69e3ef9 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformgroup_topicspage_group_topics.yml @@ -0,0 +1,31 @@ +uuid: 33c4ff0e-1594-4a20-96c8-b67024fd1f2e +langcode: en +status: true +dependencies: + config: + - views.view.group_topics + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: awPVKI9tiREex_ehHn3hcHv4yrRbcFMnfHRPJQ1J_9Q +id: socialblue_exposedformgroup_topicspage_group_topics +theme: socialblue +region: complementary_top +weight: -9 +provider: null +plugin: 'views_exposed_filter_block:group_topics-page_group_topics' +settings: + id: 'views_exposed_filter_block:group_topics-page_group_topics' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: '/group/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformlatest_topicspage_latest_topics.yml b/drupal/config/sync/block.block.socialblue_exposedformlatest_topicspage_latest_topics.yml new file mode 100644 index 0000000..f3b825e --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformlatest_topicspage_latest_topics.yml @@ -0,0 +1,31 @@ +uuid: 3ee15936-c1f9-44ac-9a77-3df43489fd9f +langcode: en +status: true +dependencies: + config: + - views.view.latest_topics + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: L8rubYePSHlepkqciU4DySISrjsn9zgkhKrtrMKI4jY +id: socialblue_exposedformlatest_topicspage_latest_topics +theme: socialblue +region: complementary_top +weight: 1 +provider: null +plugin: 'views_exposed_filter_block:latest_topics-page_latest_topics' +settings: + id: 'views_exposed_filter_block:latest_topics-page_latest_topics' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /all-topics + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformnewest_userspage_newest_users.yml b/drupal/config/sync/block.block.socialblue_exposedformnewest_userspage_newest_users.yml new file mode 100644 index 0000000..c6464e9 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformnewest_userspage_newest_users.yml @@ -0,0 +1,31 @@ +uuid: 01efff1c-dad3-4bb2-a543-c7f1723b9fca +langcode: en +status: true +dependencies: + config: + - views.view.newest_users + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: mlWOPUlOqGooxZZ3xfQK8xr6aAILqMahzflnHRtx7Zs +id: socialblue_exposedformnewest_userspage_newest_users +theme: socialblue +region: complementary_top +weight: 0 +provider: null +plugin: 'views_exposed_filter_block:newest_users-page_newest_users' +settings: + id: 'views_exposed_filter_block:newest_users-page_newest_users' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /all-members + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformtopicspage_profile.yml b/drupal/config/sync/block.block.socialblue_exposedformtopicspage_profile.yml new file mode 100644 index 0000000..64f9863 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformtopicspage_profile.yml @@ -0,0 +1,39 @@ +uuid: 1bd0a4d9-f7c8-4983-9a9b-adf8fd40f3b6 +langcode: en +status: true +dependencies: + config: + - views.view.topics + module: + - system + - user + - views + theme: + - socialblue +_core: + default_config_hash: 0MO8kRMzukuFcnRLLugyr7OwKplACfFPLV7582vt5Uc +id: socialblue_exposedformtopicspage_profile +theme: socialblue +region: complementary_top +weight: 3 +provider: null +plugin: 'views_exposed_filter_block:topics-page_profile' +settings: + id: 'views_exposed_filter_block:topics-page_profile' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + user_role: + id: user_role + roles: + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: '/user/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_exposedformupcoming_eventspage_community_events.yml b/drupal/config/sync/block.block.socialblue_exposedformupcoming_eventspage_community_events.yml new file mode 100644 index 0000000..5399a17 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_exposedformupcoming_eventspage_community_events.yml @@ -0,0 +1,31 @@ +uuid: 38bfec7b-e276-4f01-94a0-6b9021c6ba3c +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: oVc0578yoYZdFfQmW3Vrmcf9RFF2MAk5H4T8f22ytyY +id: socialblue_exposedformupcoming_eventspage_community_events +theme: socialblue +region: complementary_top +weight: 3 +provider: null +plugin: 'views_exposed_filter_block:upcoming_events-page_community_events' +settings: + id: 'views_exposed_filter_block:upcoming_events-page_community_events' + label: '' + provider: views + label_display: visible + views_label: Filter +visibility: + request_path: + id: request_path + pages: /community-events + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_footer.yml b/drupal/config/sync/block.block.socialblue_footer.yml new file mode 100644 index 0000000..1e55ae4 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_footer.yml @@ -0,0 +1,27 @@ +uuid: 995c9bf4-719a-4706-9d80-aa071d613da0 +langcode: en +status: true +dependencies: + config: + - system.menu.footer + module: + - system + theme: + - socialblue +_core: + default_config_hash: 7asZviSzAATgkU2DK59oGgKCp_vT02_OfndEBaVTGdk +id: socialblue_footer +theme: socialblue +region: footer +weight: -23 +provider: null +plugin: 'system_menu_block:footer' +settings: + id: 'system_menu_block:footer' + label: Footer + provider: system + label_display: '0' + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_footer_powered.yml b/drupal/config/sync/block.block.socialblue_footer_powered.yml new file mode 100644 index 0000000..12dacc6 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_footer_powered.yml @@ -0,0 +1,29 @@ +uuid: 511981e8-4236-44f8-b55a-7b0417005f6c +langcode: en +status: true +dependencies: + module: + - social_footer + theme: + - socialblue +_core: + default_config_hash: BKYQQdJObLnwcAJCqqvHBV56DM_ofTiaLudz46XM4HA +id: socialblue_footer_powered +theme: socialblue +region: footer +weight: -28 +provider: null +plugin: social_footer_powered_by_block +settings: + id: social_footer_powered_by_block + label: 'Powered by' + provider: social_footer + label_display: '0' + logo: '' + text: + value: "

#MadeToShare

\r\n

by Open Social

\r\n" + format: basic_html + link: + url: 'https://getopensocial.com/' + title: 'Community Engagement Platform Software' +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_group_add_block.yml b/drupal/config/sync/block.block.socialblue_group_add_block.yml new file mode 100644 index 0000000..00c37ee --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_group_add_block.yml @@ -0,0 +1,28 @@ +uuid: f3e2d750-9810-4f10-9703-b40e66276bf8 +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialblue +_core: + default_config_hash: IHLul8E5SE9sMZuhVqP1dBRAQhWE1KTjxgn-m7Q5is0 +id: socialblue_group_add_block +theme: socialblue +region: complementary_top +weight: -97 +provider: null +plugin: group_add_block +settings: + id: group_add_block + label: 'Group add block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/groups' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_group_add_event_block.yml b/drupal/config/sync/block.block.socialblue_group_add_event_block.yml new file mode 100644 index 0000000..c581948 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_group_add_event_block.yml @@ -0,0 +1,28 @@ +uuid: 07e4b239-7173-4269-8bd1-a498bcd2b142 +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialblue +_core: + default_config_hash: 5Fg2sB3MTrqBfLN3IJ1sdZzC8oWGrFozTtYQIhaDJdk +id: socialblue_group_add_event_block +theme: socialblue +region: complementary_top +weight: -96 +provider: null +plugin: group_add_event_block +settings: + id: group_add_event_block + label: 'Group add event block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/events' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_group_add_topic_block.yml b/drupal/config/sync/block.block.socialblue_group_add_topic_block.yml new file mode 100644 index 0000000..10daa5b --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_group_add_topic_block.yml @@ -0,0 +1,28 @@ +uuid: 2a59335c-170e-43c5-8bbc-ca182d8ed988 +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialblue +_core: + default_config_hash: sWMtIp5uGqWUT775wR2MpUCHGbSEBDfEMNThe4Noqfo +id: socialblue_group_add_topic_block +theme: socialblue +region: complementary_top +weight: -95 +provider: null +plugin: group_add_topic_block +settings: + id: group_add_topic_block + label: 'Group add topic block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_group_statistic_block.yml b/drupal/config/sync/block.block.socialblue_group_statistic_block.yml new file mode 100644 index 0000000..37d96db --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_group_statistic_block.yml @@ -0,0 +1,29 @@ +uuid: e4c24f60-a6c7-404a-9e51-b68e293cf96c +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialblue +_core: + default_config_hash: BFY2OSj7iZemS6zLLd2sewKFmrahCDpKbxZCFXdtNJ8 +id: socialblue_group_statistic_block +theme: socialblue +region: complementary_top +weight: -100 +provider: null +plugin: group_statistic_block +settings: + id: group_statistic_block + label: 'Group statistic block' + provider: social_group + label_display: '0' + context_mapping: { } +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about\r\n/group/*/events\r\n/group/*/topics\r\n/group/*/members\r\n/group/*/discussions\r\n/group/*/ideas" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_groupheroblock.yml b/drupal/config/sync/block.block.socialblue_groupheroblock.yml new file mode 100644 index 0000000..296eb50 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_groupheroblock.yml @@ -0,0 +1,28 @@ +uuid: 8e4f256f-01ff-4b36-9121-b233e0065a0c +langcode: en +status: true +dependencies: + module: + - social_group + - system + theme: + - socialblue +_core: + default_config_hash: f6Ksf9342jZNofFmN2HRAElWXSHUQ_80JIBipOam4rM +id: socialblue_groupheroblock +theme: socialblue +region: hero +weight: null +provider: null +plugin: group_hero_block +settings: + id: group_hero_block + label: 'Group hero block' + provider: social_group + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about\r\n/group/*/events\r\n/group/*/topics\r\n/group/*/members\r\n/group/*/membership\r\n/group/*/content/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_local_actions.yml b/drupal/config/sync/block.block.socialblue_local_actions.yml new file mode 100644 index 0000000..2014701 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_local_actions.yml @@ -0,0 +1,27 @@ +uuid: b054bc4c-936d-4dad-9be8-7cb147d1e53d +langcode: en +status: true +dependencies: + module: + - system + theme: + - socialblue +_core: + default_config_hash: NL1397KnWS55ZMZaKh-Y_HhLSct4qIQ70lN7FPdPjSg +id: socialblue_local_actions +theme: socialblue +region: complementary_top +weight: -18 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + provider: core + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/admin/reports/*\r\n/group/*/membership\r\n/group/*/join\r\n/group/*/leave\r\n/group/*/delete\r\n/group/*/content/*\r\n/group/*/invite-members\r\n/node/*/all-enrollments\r\n/node/*/all-enrollment-requests\r\n/node/*/delete\r\n/user/*/edit" + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_local_tasks.yml b/drupal/config/sync/block.block.socialblue_local_tasks.yml new file mode 100644 index 0000000..f4e64d4 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_local_tasks.yml @@ -0,0 +1,38 @@ +uuid: 2bd9572d-8402-40d9-a066-fac41c22c994 +langcode: en +status: true +dependencies: + module: + - system + - user + theme: + - socialblue +_core: + default_config_hash: DI3Pt8FWvvY7-xgU5TxTyM5chclowx82bUbSX3CYgZk +id: socialblue_local_tasks +theme: socialblue +region: secondary_navigation +weight: -6 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: Tabs + provider: core + label_display: '0' + primary: true + secondary: true +visibility: + user_role: + id: user_role + roles: + anonymous: anonymous + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' + request_path: + id: request_path + pages: "/post/*/edit\r\n/post/*/delete\r\n/user/*/edit\r\n/user/*/profile\r\n/group/*/edit" + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_mainnavigation.yml b/drupal/config/sync/block.block.socialblue_mainnavigation.yml new file mode 100644 index 0000000..74a32ce --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_mainnavigation.yml @@ -0,0 +1,27 @@ +uuid: 490f0240-0937-4fd1-aed9-55bcb08e20e8 +langcode: en +status: true +dependencies: + config: + - system.menu.main + module: + - system + theme: + - socialblue +_core: + default_config_hash: G__z_1Sj0z-HowcyDBUlQ4Muwd89CXXhV-r3ZfqeZCA +id: socialblue_mainnavigation +theme: socialblue +region: header +weight: 4 +provider: null +plugin: 'system_menu_block:main' +settings: + id: 'system_menu_block:main' + label: 'Main navigation' + provider: system + label_display: '0' + level: 1 + depth: 0 + expand_all_items: false +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_messages.yml b/drupal/config/sync/block.block.socialblue_messages.yml new file mode 100644 index 0000000..85397ff --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_messages.yml @@ -0,0 +1,22 @@ +uuid: 263641f8-3cb8-4267-ae67-c6555442df8a +langcode: en +status: true +dependencies: + module: + - system + theme: + - socialblue +_core: + default_config_hash: eVKhOL_cct67bmqEqLvJdxLYRhBDWp02t-UrdcJgIrQ +id: socialblue_messages +theme: socialblue +region: content +weight: -17 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + provider: system + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_pagetitleblock.yml b/drupal/config/sync/block.block.socialblue_pagetitleblock.yml new file mode 100644 index 0000000..ac68516 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_pagetitleblock.yml @@ -0,0 +1,38 @@ +uuid: 031f94a2-4fe3-4d53-b614-37957d211ddf +langcode: en +status: true +dependencies: + module: + - node + - social_core + - system + theme: + - socialblue +_core: + default_config_hash: tQ-MDDsFp4RzTuHm5OMu2SjbOtVGMK1rzYhxhYnrsBw +id: socialblue_pagetitleblock +theme: socialblue +region: hero +weight: -15 +provider: null +plugin: social_page_title_block +settings: + id: social_page_title_block + label: 'Page title for nodes' + provider: social_core + label_display: '0' +visibility: + node_type: + id: node_type + bundles: + event: event + page: page + topic: topic + negate: false + context_mapping: + node: '@node.node_route_context:node' + request_path: + id: request_path + pages: "/node/add/*\r\n/node/*/edit\r\n/node/*/delete\r\n/node/*/translations/add/*" + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_pagetitleblock_2.yml b/drupal/config/sync/block.block.socialblue_pagetitleblock_2.yml new file mode 100644 index 0000000..cfa7c2f --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_pagetitleblock_2.yml @@ -0,0 +1,28 @@ +uuid: 546a6617-9647-4c0d-a8bf-55ce8b16d4f1 +langcode: en +status: true +dependencies: + module: + - social_core + - system + theme: + - socialblue +_core: + default_config_hash: L-yGDnhJpWTUZo0pkCchj5d8szzjH7OR8itCWuf4NPQ +id: socialblue_pagetitleblock_2 +theme: socialblue +region: hero +weight: -20 +provider: null +plugin: social_page_title_block +settings: + id: social_page_title_block + label: 'Page title for enrollments' + provider: social_core + label_display: '0' +visibility: + request_path: + id: request_path + pages: "*/enrollments\r\n*/organisers\r\n*/manage-enrollments\r\n*/all-enrollments" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_pagetitleblock_content.yml b/drupal/config/sync/block.block.socialblue_pagetitleblock_content.yml new file mode 100644 index 0000000..9a53c0a --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_pagetitleblock_content.yml @@ -0,0 +1,46 @@ +uuid: 31f25220-91d7-489c-93ca-7f16f2a7a2c6 +langcode: en +status: true +dependencies: + module: + - social_core + - system + theme: + - socialblue +_core: + default_config_hash: yHCG9F_ya0qSUOFA6U3I1rGOC2H7QKYsK3RjZ-YQ1G4 +id: socialblue_pagetitleblock_content +theme: socialblue +region: title +weight: 0 +provider: null +plugin: social_page_title_block +settings: + id: social_page_title_block + label: 'Page title block' + provider: social_core + label_display: '0' +visibility: + request_path: + id: request_path + pages: "/search/*\r\n*/stream\r\n*/events\r\n*/topics\r\n*/groups\r\n*/information\r\n*/members\r\n*/membership\r\n*/about\r\n/data-policy\r\n/data-policy/*" + negate: true + context_mapping: { } + 'entity_bundle:node': + id: 'entity_bundle:node' + bundles: + event: event + page: page + topic: topic + negate: true + context_mapping: + node: '@node.node_route_context:node' + group_type: + id: group_type + group_types: + closed_group: closed_group + open_group: open_group + public_group: public_group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/drupal/config/sync/block.block.socialblue_postblock.yml b/drupal/config/sync/block.block.socialblue_postblock.yml new file mode 100644 index 0000000..e439501 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_postblock.yml @@ -0,0 +1,28 @@ +uuid: 3438e01d-ec95-45e3-802f-8dfac813cfcb +langcode: en +status: true +dependencies: + module: + - social_post + - system + theme: + - socialblue +_core: + default_config_hash: THj7ZZhBJZBZcOYZCN5a2t0IzBvF1cQgKEnXrkyn23I +id: socialblue_postblock +theme: socialblue +region: hidden +weight: -7 +provider: null +plugin: post_block +settings: + id: post_block + label: 'Post block' + provider: social_post + label_display: '0' +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_postongroupblock.yml b/drupal/config/sync/block.block.socialblue_postongroupblock.yml new file mode 100644 index 0000000..4228c61 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_postongroupblock.yml @@ -0,0 +1,28 @@ +uuid: e01c9ced-3416-45ee-8e70-db1f865a0f92 +langcode: en +status: true +dependencies: + module: + - social_post + - system + theme: + - socialblue +_core: + default_config_hash: NYfgZobU2seVo1qPqOzGjLK-vS3C_QIe-wRzb60OeJk +id: socialblue_postongroupblock +theme: socialblue +region: hidden +weight: -9 +provider: null +plugin: post_group_block +settings: + id: post_group_block + label: 'Post on group block' + provider: social_post + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_postonprofileblock.yml b/drupal/config/sync/block.block.socialblue_postonprofileblock.yml new file mode 100644 index 0000000..ad0f0c5 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_postonprofileblock.yml @@ -0,0 +1,28 @@ +uuid: b188ed50-ddfb-48a1-8989-132bc68550f6 +langcode: en +status: true +dependencies: + module: + - social_post + - system + theme: + - socialblue +_core: + default_config_hash: Keolfk9f2yJvo-tVh71uqBoVc2jm2oCVvhvjHciUayA +id: socialblue_postonprofileblock +theme: socialblue +region: hidden +weight: -9 +provider: null +plugin: post_profile_block +settings: + id: post_profile_block + label: 'Post on profile block' + provider: social_post + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_profile_hero_block.yml b/drupal/config/sync/block.block.socialblue_profile_hero_block.yml new file mode 100644 index 0000000..2b48e7a --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_profile_hero_block.yml @@ -0,0 +1,30 @@ +uuid: 37a0f33e-6336-43a5-81e0-f8a42ece76fb +langcode: en +status: true +dependencies: + module: + - social_profile + - system + theme: + - socialblue +_core: + default_config_hash: dJJt3qkQQ6s-ogGKHAbMcPCTlcMIUUF8026kdUtlmho +id: socialblue_profile_hero_block +theme: socialblue +region: hero +weight: -15 +provider: null +plugin: profile_hero_block +settings: + id: profile_hero_block + label: 'Profile hero block' + provider: social_profile + label_display: '0' + context_mapping: + user: '@social_user.user_route_context:user' +visibility: + request_path: + id: request_path + pages: "/user\r\n/user/*/stream\r\n/user/*/events\r\n/user/*/topics\r\n/user/*/groups\r\n/user/*/information" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_profile_statistic_block.yml b/drupal/config/sync/block.block.socialblue_profile_statistic_block.yml new file mode 100644 index 0000000..6fc25d7 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_profile_statistic_block.yml @@ -0,0 +1,30 @@ +uuid: e476f3ac-8077-4ca4-a985-4e2b660de564 +langcode: en +status: true +dependencies: + module: + - social_profile + - system + theme: + - socialblue +_core: + default_config_hash: 1-3wpbt9WAgh89uA-61n8vctdXV8ITMl5Q65Pig_MdY +id: socialblue_profile_statistic_block +theme: socialblue +region: complementary_top +weight: -100 +provider: null +plugin: profile_statistic_block +settings: + id: profile_statistic_block + label: 'Profile statistic block' + provider: social_profile + label_display: '0' + context_mapping: + user: '@social_user.user_route_context:user' +visibility: + request_path: + id: request_path + pages: "/user\r\n/user/*/stream\r\n/user/*/events\r\n/user/*/topics\r\n/user/*/groups\r\n/user/*/information\r\n/user/*/discussions\r\n/user/*/ideas\r\n/user/*/challenges" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_search_block_hero.yml b/drupal/config/sync/block.block.socialblue_search_block_hero.yml new file mode 100644 index 0000000..0ce8da7 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_search_block_hero.yml @@ -0,0 +1,28 @@ +uuid: 0fd548d0-2cb8-4540-afd8-df3c80bf8708 +langcode: en +status: true +dependencies: + module: + - social_search + - system + theme: + - socialblue +_core: + default_config_hash: tSS53SEnohp-c3wENp3brzC_nwNRH4DavQ72DYABDQ4 +id: socialblue_search_block_hero +theme: socialblue +region: hero +weight: null +provider: null +plugin: search_hero_block +settings: + id: search_hero_block + label: Search + provider: social_search + label_display: visible +visibility: + request_path: + id: request_path + pages: "/search/content\r\n/search/content/*\r\n/search/users\r\n/search/users/*\r\n/search/groups\r\n/search/groups/*\r\n/search/all\r\n/search/all/*" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_search_content_block_header.yml b/drupal/config/sync/block.block.socialblue_search_content_block_header.yml new file mode 100644 index 0000000..93f45f4 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_search_content_block_header.yml @@ -0,0 +1,22 @@ +uuid: cc7ec65c-7e84-4ef9-9361-5abac7be691d +langcode: en +status: true +dependencies: + module: + - social_search + theme: + - socialblue +_core: + default_config_hash: VQ6q9FRybbWvnB24twPpJ2FYXWgncoYqXetQMbg7Gvs +id: socialblue_search_content_block_header +theme: socialblue +region: content_top +weight: -9 +provider: null +plugin: search_content_block +settings: + id: search_content_block + label: 'Search content block' + provider: social_search + label_display: '0' +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_sitebranding.yml b/drupal/config/sync/block.block.socialblue_sitebranding.yml new file mode 100644 index 0000000..3b9ec5e --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_sitebranding.yml @@ -0,0 +1,25 @@ +uuid: 4d3d1f2b-cb58-476b-9487-fef9ed977ae3 +langcode: en +status: true +dependencies: + module: + - system + theme: + - socialblue +_core: + default_config_hash: nUdhCVU-Y9wjS1Ei29Kt1VN1rLZc6dn0nJQSHJv2Vg8 +id: socialblue_sitebranding +theme: socialblue +region: header +weight: 3 +provider: null +plugin: system_branding_block +settings: + id: system_branding_block + label: 'Site branding' + provider: system + label_display: '0' + use_site_logo: true + use_site_name: true + use_site_slogan: false +visibility: { } diff --git a/drupal/config/sync/block.block.socialblue_topic_add_block.yml b/drupal/config/sync/block.block.socialblue_topic_add_block.yml new file mode 100644 index 0000000..abaf645 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_topic_add_block.yml @@ -0,0 +1,28 @@ +uuid: 5dbd2d03-2758-42fe-a04b-8089591d85d0 +langcode: en +status: true +dependencies: + module: + - social_topic + - system + theme: + - socialblue +_core: + default_config_hash: eiC2CIa5Q7scScFEdXiTwbct8QT61s-7T-Uk8j0HYo4 +id: socialblue_topic_add_block +theme: socialblue +region: complementary_top +weight: -98 +provider: null +plugin: topic_add_block +settings: + id: topic_add_block + label: 'Topic add block' + provider: social_topic + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__activity_stream_block_stream_homepage.yml b/drupal/config/sync/block.block.socialblue_views_block__activity_stream_block_stream_homepage.yml new file mode 100644 index 0000000..9b7f494 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__activity_stream_block_stream_homepage.yml @@ -0,0 +1,33 @@ +uuid: 8a11250d-49c4-433f-a740-d8b83d4f0a6b +langcode: en +status: true +dependencies: + config: + - views.view.activity_stream + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: RymhcPR3B-3uuTJ92k7c0gWRYQVr6wZCa5q4AFJ0C5E +id: socialblue_views_block__activity_stream_block_stream_homepage +theme: socialblue +region: content +weight: null +provider: null +plugin: 'views_block:activity_stream-block_stream_homepage' +settings: + id: 'views_block:activity_stream-block_stream_homepage' + label: '' + provider: views + label_display: '0' + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__activity_stream_group_block_stream_group.yml b/drupal/config/sync/block.block.socialblue_views_block__activity_stream_group_block_stream_group.yml new file mode 100644 index 0000000..046928b --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__activity_stream_group_block_stream_group.yml @@ -0,0 +1,33 @@ +uuid: 58cfdf79-44e5-4533-9c04-bcb855a14d1c +langcode: en +status: true +dependencies: + config: + - views.view.activity_stream_group + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: 3CkEvjilrbSxQIB-0flb0U90exb0vh7gyQJuYWrxvJ8 +id: socialblue_views_block__activity_stream_group_block_stream_group +theme: socialblue +region: content +weight: -9 +provider: null +plugin: 'views_block:activity_stream_group-block_stream_group' +settings: + id: 'views_block:activity_stream_group-block_stream_group' + label: '' + provider: views + label_display: '0' + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/group/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__activity_stream_profile_block_1.yml b/drupal/config/sync/block.block.socialblue_views_block__activity_stream_profile_block_1.yml new file mode 100644 index 0000000..93df5d8 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__activity_stream_profile_block_1.yml @@ -0,0 +1,33 @@ +uuid: ed62a781-9f17-44a4-ba09-5bcb5c04b01f +langcode: en +status: true +dependencies: + config: + - views.view.activity_stream_profile + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: OV9Thne7ds1mIBkVEofkAsFpykpmDEk4eNc7aWoIsnQ +id: socialblue_views_block__activity_stream_profile_block_1 +theme: socialblue +region: content +weight: -9 +provider: null +plugin: 'views_block:activity_stream_profile-block_1' +settings: + id: 'views_block:activity_stream_profile-block_1' + label: '' + provider: views + label_display: '0' + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__event_enrollments_event_enrollments_socialbase.yml b/drupal/config/sync/block.block.socialblue_views_block__event_enrollments_event_enrollments_socialbase.yml new file mode 100644 index 0000000..ee8eaa0 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__event_enrollments_event_enrollments_socialbase.yml @@ -0,0 +1,41 @@ +uuid: 2e332b35-d5cf-470e-87f1-28de12caa61d +langcode: en +status: true +dependencies: + config: + - views.view.event_enrollments + module: + - node + - system + - views + theme: + - socialblue +_core: + default_config_hash: GjdG5NISaPvTi4OssnZmHPFbqY8LjyaEvRlWRWuv-WQ +id: socialblue_views_block__event_enrollments_event_enrollments_socialbase +theme: socialblue +region: complementary_top +weight: -20 +provider: null +plugin: 'views_block:event_enrollments-event_enrollments' +settings: + id: 'views_block:event_enrollments-event_enrollments' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + node_type: + id: node_type + bundles: + event: event + negate: false + context_mapping: + node: '@node.node_route_context:node' + request_path: + id: request_path + pages: "/node/*/edit\r\n/node/*/delete\r\n/node/*/translations*" + negate: true + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__events_block_events_on_profile.yml b/drupal/config/sync/block.block.socialblue_views_block__events_block_events_on_profile.yml new file mode 100644 index 0000000..4e62638 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__events_block_events_on_profile.yml @@ -0,0 +1,33 @@ +uuid: f303c668-fa48-4698-95a1-c8e5f34baf98 +langcode: en +status: true +dependencies: + config: + - views.view.events + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: iFGheRPqpxtxvtlrb49kr6X5xYk27v0WHVYD3L6hkZw +id: socialblue_views_block__events_block_events_on_profile +theme: socialblue +region: complementary_bottom +weight: 1 +provider: null +plugin: 'views_block:events-block_events_on_profile' +settings: + id: 'views_block:events-block_events_on_profile' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__group_members_block_newest_members.yml b/drupal/config/sync/block.block.socialblue_views_block__group_members_block_newest_members.yml new file mode 100644 index 0000000..686f43e --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__group_members_block_newest_members.yml @@ -0,0 +1,33 @@ +uuid: bef8df64-3049-4089-88ab-9585d4fde770 +langcode: en +status: true +dependencies: + config: + - views.view.group_members + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: pDGqBKQ5EIcThRbOxWSoJcqlOh6wDrJaK-_o61A283I +id: socialblue_views_block__group_members_block_newest_members +theme: socialblue +region: complementary_bottom +weight: 5 +provider: null +plugin: 'views_block:group_members-block_newest_members' +settings: + id: 'views_block:group_members-block_newest_members' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__groups_block_user_groups.yml b/drupal/config/sync/block.block.socialblue_views_block__groups_block_user_groups.yml new file mode 100644 index 0000000..7c583ad --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__groups_block_user_groups.yml @@ -0,0 +1,33 @@ +uuid: d3fe61c3-fc69-49da-9e4d-71e1800ffae1 +langcode: en +status: true +dependencies: + config: + - views.view.groups + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: CkJxvoJ7X52KqUuazveJCzB-g9OaveHaZxM7deoydxE +id: socialblue_views_block__groups_block_user_groups +theme: socialblue +region: complementary_bottom +weight: 4 +provider: null +plugin: 'views_block:groups-block_user_groups' +settings: + id: 'views_block:groups-block_user_groups' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__latest_topics_default.yml b/drupal/config/sync/block.block.socialblue_views_block__latest_topics_default.yml new file mode 100644 index 0000000..254d148 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__latest_topics_default.yml @@ -0,0 +1,33 @@ +uuid: 3f8bca7c-0f8d-4ae0-990f-323b92e0406e +langcode: en +status: true +dependencies: + config: + - views.view.latest_topics + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: L0GbzYBp0tvEdRSIZ6uozmaIHK2-g1XxryF-kxttjTQ +id: socialblue_views_block__latest_topics_default +theme: socialblue +region: complementary_bottom +weight: 3 +provider: null +plugin: 'views_block:latest_topics-block_latest_topics' +settings: + id: 'views_block:latest_topics-block_latest_topics' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__latest_topics_group_topics_block.yml b/drupal/config/sync/block.block.socialblue_views_block__latest_topics_group_topics_block.yml new file mode 100644 index 0000000..fc7d37c --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__latest_topics_group_topics_block.yml @@ -0,0 +1,33 @@ +uuid: 2e3906b7-d61f-4bfe-aeb4-69a5e4f98b98 +langcode: en +status: true +dependencies: + config: + - views.view.latest_topics + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: EvCkD77gpygY5UP2Hi6bGX1qjoff05znzcClwPsP8iY +id: socialblue_views_block__latest_topics_group_topics_block +theme: socialblue +region: complementary_bottom +weight: 3 +provider: null +plugin: 'views_block:latest_topics-group_topics_block' +settings: + id: 'views_block:latest_topics-group_topics_block' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__newest_groups_block_newest_groups.yml b/drupal/config/sync/block.block.socialblue_views_block__newest_groups_block_newest_groups.yml new file mode 100644 index 0000000..1ab13fe --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__newest_groups_block_newest_groups.yml @@ -0,0 +1,33 @@ +uuid: c10c43da-b2ec-425a-867a-6223c1484c20 +langcode: en +status: true +dependencies: + config: + - views.view.newest_groups + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: avPLiTLdMEzNvHjIKjuVC9TDVUmKBUwRCUn-ZomoGTo +id: socialblue_views_block__newest_groups_block_newest_groups +theme: socialblue +region: complementary_bottom +weight: 4 +provider: null +plugin: 'views_block:newest_groups-block_newest_groups' +settings: + id: 'views_block:newest_groups-block_newest_groups' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__newest_users_block_newest_users.yml b/drupal/config/sync/block.block.socialblue_views_block__newest_users_block_newest_users.yml new file mode 100644 index 0000000..454ffb1 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__newest_users_block_newest_users.yml @@ -0,0 +1,33 @@ +uuid: 0f16c99d-6223-40fd-97d7-a5bfb42edc25 +langcode: en +status: true +dependencies: + config: + - views.view.newest_users + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: OxzubQJRE2Y9ihgsgasPmuMwHXR42T5ipZi8mAObDGE +id: socialblue_views_block__newest_users_block_newest_users +theme: socialblue +region: complementary_bottom +weight: 5 +provider: null +plugin: 'views_block:newest_users-block_newest_users' +settings: + id: 'views_block:newest_users-block_newest_users' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__topics_block_user_topics.yml b/drupal/config/sync/block.block.socialblue_views_block__topics_block_user_topics.yml new file mode 100644 index 0000000..f1e6d6b --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__topics_block_user_topics.yml @@ -0,0 +1,33 @@ +uuid: a7f68b1c-a682-4fdf-b9fd-6ff5b67e0ef9 +langcode: en +status: true +dependencies: + config: + - views.view.topics + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: Yy_BNByTXbY8nWGFFBwq_s4kiC6XR_8VMjnBtmkoxeA +id: socialblue_views_block__topics_block_user_topics +theme: socialblue +region: complementary_bottom +weight: 3 +provider: null +plugin: 'views_block:topics-block_user_topics' +settings: + id: 'views_block:topics-block_user_topics' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_block_community_events.yml b/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_block_community_events.yml new file mode 100644 index 0000000..c718e43 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_block_community_events.yml @@ -0,0 +1,33 @@ +uuid: 0d7e9f1f-0426-48f8-9a33-661fb1c341b8 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: DbkRKjd999M0Fung9e12mhQ00nRqNUFIvvgqwlKHRhA +id: socialblue_views_block__upcoming_events_block_community_events +theme: socialblue +region: complementary_bottom +weight: 2 +provider: null +plugin: 'views_block:upcoming_events-block_community_events' +settings: + id: 'views_block:upcoming_events-block_community_events' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_block_my_upcoming_events.yml b/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_block_my_upcoming_events.yml new file mode 100644 index 0000000..e7a2f53 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_block_my_upcoming_events.yml @@ -0,0 +1,41 @@ +uuid: f476c760-1f2d-4d64-a22e-199dc2cf77e3 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - user + - views + theme: + - socialblue +_core: + default_config_hash: Q1Mm3jEdn0vzdytLroTsHc0Cg1iQtNPWiLfFJtk3MEs +id: socialblue_views_block__upcoming_events_block_my_upcoming_events +theme: socialblue +region: complementary_bottom +weight: 1 +provider: null +plugin: 'views_block:upcoming_events-block_my_upcoming_events' +settings: + id: 'views_block:upcoming_events-block_my_upcoming_events' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } + user_role: + id: user_role + roles: + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_upcoming_events_group.yml b/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_upcoming_events_group.yml new file mode 100644 index 0000000..31f1bc3 --- /dev/null +++ b/drupal/config/sync/block.block.socialblue_views_block__upcoming_events_upcoming_events_group.yml @@ -0,0 +1,33 @@ +uuid: 929a5147-1c37-4816-9482-c9bf18a0bbc8 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - views + theme: + - socialblue +_core: + default_config_hash: 5ebCasYMYINKifGY18veNANcc2T3_6ouAiB6kUvojco +id: socialblue_views_block__upcoming_events_upcoming_events_group +theme: socialblue +region: complementary_bottom +weight: 2 +provider: null +plugin: 'views_block:upcoming_events-upcoming_events_group' +settings: + id: 'views_block:upcoming_events-upcoming_events_group' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialeventinviteblock.yml b/drupal/config/sync/block.block.socialeventinviteblock.yml new file mode 100644 index 0000000..b0a56fd --- /dev/null +++ b/drupal/config/sync/block.block.socialeventinviteblock.yml @@ -0,0 +1,30 @@ +uuid: 5caacaeb-05f3-47b4-b018-75f35bba08db +langcode: en +status: true +dependencies: + module: + - social_event_invite + - system + theme: + - socialblue +_core: + default_config_hash: y0PwSwCPY4oP9IOp1RFKptUoZ339C9q42Rt3-wSFpfM +id: socialeventinviteblock +theme: socialblue +region: hidden +weight: 0 +provider: null +plugin: social_event_invite_block +settings: + id: social_event_invite_block + label: 'Social Event Invite block' + provider: social_event_invite + label_display: '0' + context_mapping: + node: '@node.node_route_context:node' +visibility: + request_path: + id: request_path + pages: '*/all-enrollments' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.socialinviteactionsblock.yml b/drupal/config/sync/block.block.socialinviteactionsblock.yml new file mode 100644 index 0000000..a2803fd --- /dev/null +++ b/drupal/config/sync/block.block.socialinviteactionsblock.yml @@ -0,0 +1,28 @@ +uuid: e556e9b5-d127-4484-b4da-020da2e33aa9 +langcode: en +status: true +dependencies: + module: + - social_group_invite + - system + theme: + - socialblue +_core: + default_config_hash: gfd9e_J6-ndbvgcg7dMovWH48LaEcnJqO8m7W-AiU_w +id: socialinviteactionsblock +theme: socialblue +region: hidden +weight: 0 +provider: null +plugin: social_invite_actions_block +settings: + id: social_invite_actions_block + label: 'Social Invite Actions block' + provider: social_group_invite + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/group/*/membership' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.topic_add_block.yml b/drupal/config/sync/block.block.topic_add_block.yml new file mode 100644 index 0000000..d5e27ec --- /dev/null +++ b/drupal/config/sync/block.block.topic_add_block.yml @@ -0,0 +1,28 @@ +uuid: 5ffed340-1e00-4182-96fb-527b97694bd0 +langcode: en +status: true +dependencies: + module: + - social_topic + - system + theme: + - socialbase +_core: + default_config_hash: jqoyaPsPUNAwGs_HjofeXbLr4BO8s5c_9VRCmAqacZs +id: topic_add_block +theme: socialbase +region: complementary_top +weight: -98 +provider: null +plugin: topic_add_block +settings: + id: topic_add_block + label: 'Topic add block' + provider: social_topic + label_display: '0' +visibility: + request_path: + id: request_path + pages: '/user/*/topics' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__activity_stream_block_stream_homepage.yml b/drupal/config/sync/block.block.views_block__activity_stream_block_stream_homepage.yml new file mode 100644 index 0000000..3b4b2b8 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__activity_stream_block_stream_homepage.yml @@ -0,0 +1,33 @@ +uuid: 8135fec3-8a51-437c-8827-57c09d4afc14 +langcode: en +status: true +dependencies: + config: + - views.view.activity_stream + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: M8sjUIqGE_duwOkpGycjuQ0ZH5JAZJccpWKQ9VVgjCU +id: views_block__activity_stream_block_stream_homepage +theme: socialbase +region: content +weight: null +provider: null +plugin: 'views_block:activity_stream-block_stream_homepage' +settings: + id: 'views_block:activity_stream-block_stream_homepage' + label: '' + provider: views + label_display: '0' + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__activity_stream_group_block_stream_group.yml b/drupal/config/sync/block.block.views_block__activity_stream_group_block_stream_group.yml new file mode 100644 index 0000000..8285cac --- /dev/null +++ b/drupal/config/sync/block.block.views_block__activity_stream_group_block_stream_group.yml @@ -0,0 +1,33 @@ +uuid: d9323815-7d45-4e60-978f-88a4d0ab21f0 +langcode: en +status: true +dependencies: + config: + - views.view.activity_stream_group + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: m_3okY3vHl4ObyagRpKOltRieKxYCUhBGIFaT4a3HKQ +id: views_block__activity_stream_group_block_stream_group +theme: socialbase +region: content +weight: -9 +provider: null +plugin: 'views_block:activity_stream_group-block_stream_group' +settings: + id: 'views_block:activity_stream_group-block_stream_group' + label: '' + provider: views + label_display: '0' + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/group/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__activity_stream_profile_block_1.yml b/drupal/config/sync/block.block.views_block__activity_stream_profile_block_1.yml new file mode 100644 index 0000000..87849e8 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__activity_stream_profile_block_1.yml @@ -0,0 +1,33 @@ +uuid: 1870483e-f203-403c-9a57-e53312262336 +langcode: en +status: true +dependencies: + config: + - views.view.activity_stream_profile + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: qB56HaN5RVyXpw0ojJVwPpZNe_wP11eW05nYQa4lrcc +id: views_block__activity_stream_profile_block_1 +theme: socialbase +region: content +weight: -9 +provider: null +plugin: 'views_block:activity_stream_profile-block_1' +settings: + id: 'views_block:activity_stream_profile-block_1' + label: '' + provider: views + label_display: '0' + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__event_enrollments_event_enrollments_socialbase.yml b/drupal/config/sync/block.block.views_block__event_enrollments_event_enrollments_socialbase.yml new file mode 100644 index 0000000..398242c --- /dev/null +++ b/drupal/config/sync/block.block.views_block__event_enrollments_event_enrollments_socialbase.yml @@ -0,0 +1,35 @@ +uuid: f9894fbb-c827-4d80-8992-62c977aebf51 +langcode: en +status: true +dependencies: + config: + - views.view.event_enrollments + module: + - node + - views + theme: + - socialbase +_core: + default_config_hash: Uytm_C0GW6HvQiH-AIMay8WQRUTxMaYpfOxCzg20Hf8 +id: views_block__event_enrollments_event_enrollments_socialbase +theme: socialbase +region: complementary_top +weight: -20 +provider: null +plugin: 'views_block:event_enrollments-event_enrollments' +settings: + id: 'views_block:event_enrollments-event_enrollments' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + node_type: + id: node_type + bundles: + event: event + negate: false + context_mapping: + node: '@node.node_route_context:node' diff --git a/drupal/config/sync/block.block.views_block__events_block_events_on_profile.yml b/drupal/config/sync/block.block.views_block__events_block_events_on_profile.yml new file mode 100644 index 0000000..95462a3 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__events_block_events_on_profile.yml @@ -0,0 +1,33 @@ +uuid: 487e6dea-e0c5-4aa7-baa5-3ffa76ed49fc +langcode: en +status: true +dependencies: + config: + - views.view.events + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: ZgUg_9wsWsT3IEg4nEwUirYuh3QiFgrDit54jtVZBQU +id: views_block__events_block_events_on_profile +theme: socialbase +region: complementary_bottom +weight: 1 +provider: null +plugin: 'views_block:events-block_events_on_profile' +settings: + id: 'views_block:events-block_events_on_profile' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__group_managers_block_list_managers.yml b/drupal/config/sync/block.block.views_block__group_managers_block_list_managers.yml new file mode 100644 index 0000000..b7ab634 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__group_managers_block_list_managers.yml @@ -0,0 +1,44 @@ +uuid: f8a1d74d-ab15-4a2a-9831-70dee0866801 +langcode: en +status: true +dependencies: + config: + - views.view.group_managers + module: + - group + - system + - views + theme: + - socialblue +_core: + default_config_hash: 4a6ND-EfIGeJkT9PyuuoPwBovr9vnDac_0sKmv-RrzM +id: views_block__group_managers_block_list_managers +theme: socialblue +region: content +weight: -15 +provider: null +plugin: 'views_block:group_managers-block_list_managers' +settings: + id: 'views_block:group_managers-block_list_managers' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none + context_mapping: { } +visibility: + group_type: + id: group_type + group_types: + closed_group: closed_group + open_group: open_group + public_group: public_group + negate: false + context_mapping: + group: '@group.group_route_context:group' + request_path: + id: request_path + pages: '/group/*/about' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__group_members_block_newest_members.yml b/drupal/config/sync/block.block.views_block__group_members_block_newest_members.yml new file mode 100644 index 0000000..74cde49 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__group_members_block_newest_members.yml @@ -0,0 +1,33 @@ +uuid: 4659be3d-8282-40b5-aeae-ab1a395f25ce +langcode: en +status: true +dependencies: + config: + - views.view.group_members + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: 76RP0CqR2XEpfhzMHuMc30MBGbfL8kvCYzxJ-RbyJ5c +id: views_block__group_members_block_newest_members +theme: socialbase +region: complementary_bottom +weight: 5 +provider: null +plugin: 'views_block:group_members-block_newest_members' +settings: + id: 'views_block:group_members-block_newest_members' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__groups_block_user_groups.yml b/drupal/config/sync/block.block.views_block__groups_block_user_groups.yml new file mode 100644 index 0000000..e5b9978 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__groups_block_user_groups.yml @@ -0,0 +1,33 @@ +uuid: 20646449-e59d-4838-aa28-f1c78b3280a7 +langcode: en +status: true +dependencies: + config: + - views.view.groups + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: qhBZ0et3a-hp1wvR2x_d-6meXyG0pUjn-DL7_yVfh0I +id: views_block__groups_block_user_groups +theme: socialbase +region: complementary_bottom +weight: 4 +provider: null +plugin: 'views_block:groups-block_user_groups' +settings: + id: 'views_block:groups-block_user_groups' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__latest_topics_default.yml b/drupal/config/sync/block.block.views_block__latest_topics_default.yml new file mode 100644 index 0000000..0ab37ab --- /dev/null +++ b/drupal/config/sync/block.block.views_block__latest_topics_default.yml @@ -0,0 +1,33 @@ +uuid: cb79623c-f71f-4be5-ad98-148eaf16c3c4 +langcode: en +status: true +dependencies: + config: + - views.view.latest_topics + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: wmSwdlCOcGaB5p146V6MPX8IFkY7D98dgcgE97Ru9Ro +id: views_block__latest_topics_default +theme: socialbase +region: complementary_bottom +weight: 3 +provider: null +plugin: 'views_block:latest_topics-block_latest_topics' +settings: + id: 'views_block:latest_topics-block_latest_topics' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__latest_topics_group_topics_block.yml b/drupal/config/sync/block.block.views_block__latest_topics_group_topics_block.yml new file mode 100644 index 0000000..03df307 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__latest_topics_group_topics_block.yml @@ -0,0 +1,33 @@ +uuid: 073da6ad-7f54-4356-b931-ac4141683d8b +langcode: en +status: true +dependencies: + config: + - views.view.latest_topics + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: 3nDzpmJ6lvzkCXJWoBR28gJqavSW1cp4VHfpbm2ntRU +id: views_block__latest_topics_group_topics_block +theme: socialbase +region: complementary_bottom +weight: 3 +provider: null +plugin: 'views_block:latest_topics-group_topics_block' +settings: + id: 'views_block:latest_topics-group_topics_block' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__managers_event_managers.yml b/drupal/config/sync/block.block.views_block__managers_event_managers.yml new file mode 100644 index 0000000..f586ddb --- /dev/null +++ b/drupal/config/sync/block.block.views_block__managers_event_managers.yml @@ -0,0 +1,35 @@ +uuid: cba6c572-69a8-45a4-8f34-edbed0bf9cde +langcode: en +status: true +dependencies: + config: + - views.view.managers + module: + - node + - views + theme: + - socialbase +_core: + default_config_hash: ySiR0TuJ7Ge_hLptiPlVqHJupCtwm05QVqICK8GulO0 +id: views_block__managers_event_managers +theme: socialbase +region: complementary_bottom +weight: 0 +provider: null +plugin: 'views_block:managers-event_managers' +settings: + id: 'views_block:managers-event_managers' + label: 'Event Organisers' + provider: views + label_display: visible + views_label: 'Event Organisers' + items_per_page: none + type: none +visibility: + node_type: + id: node_type + bundles: + event: event + negate: false + context_mapping: + node: '@node.node_route_context:node' diff --git a/drupal/config/sync/block.block.views_block__managers_event_managers_2.yml b/drupal/config/sync/block.block.views_block__managers_event_managers_2.yml new file mode 100644 index 0000000..d44f05e --- /dev/null +++ b/drupal/config/sync/block.block.views_block__managers_event_managers_2.yml @@ -0,0 +1,35 @@ +uuid: bf035d6a-d10a-47ba-82d8-3a715ad0fe08 +langcode: en +status: true +dependencies: + config: + - views.view.managers + module: + - node + - views + theme: + - socialblue +_core: + default_config_hash: AoS_Lx-_3hbUb2zJ7Kqbh5TJ_vJ64N3uZiEdxDN28zU +id: views_block__managers_event_managers_2 +theme: socialblue +region: complementary_bottom +weight: 0 +provider: null +plugin: 'views_block:managers-event_managers' +settings: + id: 'views_block:managers-event_managers' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + node_type: + id: node_type + bundles: + event: event + negate: false + context_mapping: + node: '@node.node_route_context:node' diff --git a/drupal/config/sync/block.block.views_block__newest_groups_block_newest_groups.yml b/drupal/config/sync/block.block.views_block__newest_groups_block_newest_groups.yml new file mode 100644 index 0000000..811e979 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__newest_groups_block_newest_groups.yml @@ -0,0 +1,33 @@ +uuid: c08bca87-0df8-4b0c-a5a7-4d56cc1b692f +langcode: en +status: true +dependencies: + config: + - views.view.newest_groups + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: 33T-sP8kwtINWIEnnyE9QQQtQVoLPC2-KGRf1Revxm0 +id: views_block__newest_groups_block_newest_groups +theme: socialbase +region: complementary_bottom +weight: 4 +provider: null +plugin: 'views_block:newest_groups-block_newest_groups' +settings: + id: 'views_block:newest_groups-block_newest_groups' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__newest_users_block_newest_users.yml b/drupal/config/sync/block.block.views_block__newest_users_block_newest_users.yml new file mode 100644 index 0000000..dd7ba1f --- /dev/null +++ b/drupal/config/sync/block.block.views_block__newest_users_block_newest_users.yml @@ -0,0 +1,33 @@ +uuid: b9f09d63-4629-4ac3-a646-163b756e079c +langcode: en +status: true +dependencies: + config: + - views.view.newest_users + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: t4Q_Vg3aGgbsgxCoUdM7l7JFrtcCwPKK92DCCoLt1_A +id: views_block__newest_users_block_newest_users +theme: socialbase +region: complementary_bottom +weight: 5 +provider: null +plugin: 'views_block:newest_users-block_newest_users' +settings: + id: 'views_block:newest_users-block_newest_users' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__topics_block_user_topics.yml b/drupal/config/sync/block.block.views_block__topics_block_user_topics.yml new file mode 100644 index 0000000..22be88e --- /dev/null +++ b/drupal/config/sync/block.block.views_block__topics_block_user_topics.yml @@ -0,0 +1,33 @@ +uuid: 8ca28ce1-213f-4ce3-a541-9ac740e5160d +langcode: en +status: true +dependencies: + config: + - views.view.topics + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: dcYtrAe9juPBhPGx63t0bqdN1KIn-mfaKLAe32rytRU +id: views_block__topics_block_user_topics +theme: socialbase +region: complementary_bottom +weight: 3 +provider: null +plugin: 'views_block:topics-block_user_topics' +settings: + id: 'views_block:topics-block_user_topics' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: '/user/*/stream' + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__upcoming_events_block_community_events.yml b/drupal/config/sync/block.block.views_block__upcoming_events_block_community_events.yml new file mode 100644 index 0000000..41ebb8f --- /dev/null +++ b/drupal/config/sync/block.block.views_block__upcoming_events_block_community_events.yml @@ -0,0 +1,33 @@ +uuid: fd9fb652-74bc-42ce-979e-abea71efea23 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: DhsRn8WT454SdEHtELrgamGJg4EKsaNxe6Pjjd1iVUI +id: views_block__upcoming_events_block_community_events +theme: socialbase +region: complementary_bottom +weight: 2 +provider: null +plugin: 'views_block:upcoming_events-block_community_events' +settings: + id: 'views_block:upcoming_events-block_community_events' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/stream\r\n/explore" + negate: false + context_mapping: { } diff --git a/drupal/config/sync/block.block.views_block__upcoming_events_block_my_upcoming_events.yml b/drupal/config/sync/block.block.views_block__upcoming_events_block_my_upcoming_events.yml new file mode 100644 index 0000000..e956c33 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__upcoming_events_block_my_upcoming_events.yml @@ -0,0 +1,41 @@ +uuid: ad177c10-c656-4eee-a7d8-3e1008156d53 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - user + - views + theme: + - socialbase +_core: + default_config_hash: CE45Zd9jvpHLQaQeVye5zVP8frjxELsp50-kFJhBAlc +id: views_block__upcoming_events_block_my_upcoming_events +theme: socialbase +region: complementary_bottom +weight: 1 +provider: null +plugin: 'views_block:upcoming_events-block_my_upcoming_events' +settings: + id: 'views_block:upcoming_events-block_my_upcoming_events' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: /stream + negate: false + context_mapping: { } + user_role: + id: user_role + roles: + authenticated: authenticated + negate: false + context_mapping: + user: '@user.current_user_context:current_user' diff --git a/drupal/config/sync/block.block.views_block__upcoming_events_upcoming_events_group.yml b/drupal/config/sync/block.block.views_block__upcoming_events_upcoming_events_group.yml new file mode 100644 index 0000000..65c3f19 --- /dev/null +++ b/drupal/config/sync/block.block.views_block__upcoming_events_upcoming_events_group.yml @@ -0,0 +1,33 @@ +uuid: 61bb41ba-7732-4dd5-a477-8b2fd8e25b32 +langcode: en +status: true +dependencies: + config: + - views.view.upcoming_events + module: + - system + - views + theme: + - socialbase +_core: + default_config_hash: 6uEkJZsez1P-LBj-62p4zeddmiC5Oz3M3WfOrQK4JU8 +id: views_block__upcoming_events_upcoming_events_group +theme: socialbase +region: complementary_bottom +weight: 2 +provider: null +plugin: 'views_block:upcoming_events-upcoming_events_group' +settings: + id: 'views_block:upcoming_events-upcoming_events_group' + label: '' + provider: views + label_display: visible + views_label: '' + items_per_page: none + type: none +visibility: + request_path: + id: request_path + pages: "/group/*/stream\r\n/group/*/about" + negate: false + context_mapping: { } diff --git a/drupal/config/block_content.type.basic.yml b/drupal/config/sync/block_content.type.basic.yml similarity index 83% rename from drupal/config/block_content.type.basic.yml rename to drupal/config/sync/block_content.type.basic.yml index 84ee690..ea4edf3 100644 --- a/drupal/config/block_content.type.basic.yml +++ b/drupal/config/sync/block_content.type.basic.yml @@ -1,4 +1,4 @@ -uuid: 3822fe6b-5e43-427a-a699-3364e145b386 +uuid: a33027f4-c86e-4bdb-bffe-496f23a7d48b langcode: en status: true dependencies: { } diff --git a/drupal/config/sync/block_content.type.hero_call_to_action_block.yml b/drupal/config/sync/block_content.type.hero_call_to_action_block.yml new file mode 100644 index 0000000..0513575 --- /dev/null +++ b/drupal/config/sync/block_content.type.hero_call_to_action_block.yml @@ -0,0 +1,10 @@ +uuid: d8a64eb4-cad1-4e78-bbf7-fc57d2a032e7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: XR_f0lfXIV2PJVpU4QEFgePYCLxpxC6QfoA03cGVYDw +id: hero_call_to_action_block +label: 'Hero call to action block' +revision: 0 +description: 'Hero block with a call to action (for example on the AN homepage)' diff --git a/drupal/config/sync/block_content.type.platform_intro.yml b/drupal/config/sync/block_content.type.platform_intro.yml new file mode 100644 index 0000000..dc153a1 --- /dev/null +++ b/drupal/config/sync/block_content.type.platform_intro.yml @@ -0,0 +1,10 @@ +uuid: f20f11fe-665f-44a4-ace0-8b75cc23c959 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 3WJ5HkGqCxmh7dLzdWXBN-PHDQb1TsYDjkTqmMdIptE +id: platform_intro +label: 'Platform introduction' +revision: 0 +description: 'Platform introduction block, meant for use in content regions.' diff --git a/drupal/config/sync/bootstrap.settings.yml b/drupal/config/sync/bootstrap.settings.yml new file mode 100644 index 0000000..ec356ee --- /dev/null +++ b/drupal/config/sync/bootstrap.settings.yml @@ -0,0 +1,18 @@ +schemas: + bootstrap: 8000 +_core: + default_config_hash: 1uFogeFphl0Hg6oVCacZZ8mM_0wMZ7PS_RrmLbK5tf0 +favicon: + mimetype: image/vnd.microsoft.icon + path: '' + url: '' + use_default: true +features: + comment_user_picture: true + comment_user_verification: true + favicon: true + node_user_picture: true +logo: + path: '' + url: '' + use_default: true diff --git a/drupal/config/comment.settings.yml b/drupal/config/sync/comment.settings.yml similarity index 100% rename from drupal/config/comment.settings.yml rename to drupal/config/sync/comment.settings.yml index 5b7ad98..e966828 100644 --- a/drupal/config/comment.settings.yml +++ b/drupal/config/sync/comment.settings.yml @@ -1,3 +1,3 @@ +log_ip_addresses: false _core: default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc -log_ip_addresses: false diff --git a/drupal/config/sync/comment.type.comment.yml b/drupal/config/sync/comment.type.comment.yml new file mode 100644 index 0000000..709df45 --- /dev/null +++ b/drupal/config/sync/comment.type.comment.yml @@ -0,0 +1,10 @@ +uuid: a3927c8d-a0ac-4575-ae18-e79b3267abfb +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hD_X55d0D-MMgKFM6COxkqKRh3Rxu9YOLpgCOPFiRXo +id: comment +label: Comment +target_entity_type_id: node +description: 'Default comment type.' diff --git a/drupal/config/sync/comment.type.post_comment.yml b/drupal/config/sync/comment.type.post_comment.yml new file mode 100644 index 0000000..46287b4 --- /dev/null +++ b/drupal/config/sync/comment.type.post_comment.yml @@ -0,0 +1,10 @@ +uuid: 31e7be93-7328-4b4f-b996-d8e10ceb38c0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: hGHnIBzGy-ezfVmmfzoO6FbC-fhM8_KKG_Ysyae9xtk +id: post_comment +label: 'Post comment' +target_entity_type_id: post +description: 'Comment on a post in the activity streams' diff --git a/drupal/config/sync/core.base_field_override.node.event.promote.yml b/drupal/config/sync/core.base_field_override.node.event.promote.yml new file mode 100644 index 0000000..208ec60 --- /dev/null +++ b/drupal/config/sync/core.base_field_override.node.event.promote.yml @@ -0,0 +1,24 @@ +uuid: 4efbcd0e-a215-438e-a7a3-e1a0c4e73c29 +langcode: en +status: true +dependencies: + config: + - node.type.event +_core: + default_config_hash: 8ZTn-RglIOozpCCJ_n-bfJBCPeQlWRvaMWPjFpw2nYQ +id: node.event.promote +field_name: promote +entity_type: node +bundle: event +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/core.base_field_override.node.page.promote.yml b/drupal/config/sync/core.base_field_override.node.page.promote.yml similarity index 90% rename from drupal/config/core.base_field_override.node.page.promote.yml rename to drupal/config/sync/core.base_field_override.node.page.promote.yml index 3472b7c..8593c59 100644 --- a/drupal/config/core.base_field_override.node.page.promote.yml +++ b/drupal/config/sync/core.base_field_override.node.page.promote.yml @@ -1,4 +1,4 @@ -uuid: d024b421-786c-4508-b8b1-209516c4ac20 +uuid: a51c3a29-c664-4a9f-92ca-4cfbc2a0d50e langcode: en status: true dependencies: diff --git a/drupal/config/sync/core.base_field_override.node.topic.promote.yml b/drupal/config/sync/core.base_field_override.node.topic.promote.yml new file mode 100644 index 0000000..495e1c5 --- /dev/null +++ b/drupal/config/sync/core.base_field_override.node.topic.promote.yml @@ -0,0 +1,24 @@ +uuid: b6d801b7-de46-40fa-ad3a-daa7e9ab74fd +langcode: en +status: true +dependencies: + config: + - node.type.topic +_core: + default_config_hash: 7w8fdz8qR86mEWrTpLV1mMI6vhRjAgGCkukABGM73c0 +id: node.topic.promote +field_name: promote +entity_type: node +bundle: topic +label: 'Promoted to front page' +description: '' +required: false +translatable: true +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/core.date_format.day_month.yml b/drupal/config/sync/core.date_format.day_month.yml new file mode 100644 index 0000000..80bbfef --- /dev/null +++ b/drupal/config/sync/core.date_format.day_month.yml @@ -0,0 +1,10 @@ +uuid: 1e0cd55f-9d09-48b6-8616-8aed3c19a5b0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 3_efTeruTseDKsX25lEwhNav7kRJcb908WGKYAifNTk +id: day_month +label: 'Day Month' +locked: false +pattern: 'j M' diff --git a/drupal/config/sync/core.date_format.day_month_time.yml b/drupal/config/sync/core.date_format.day_month_time.yml new file mode 100644 index 0000000..35c9f60 --- /dev/null +++ b/drupal/config/sync/core.date_format.day_month_time.yml @@ -0,0 +1,10 @@ +uuid: 4fe9629f-d893-412c-8b28-66f78f528ecd +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: dl-Ya4SNTwMX8SiI0S2LSGnCFr4Avni9NnjxaFwy0bo +id: day_month_time +label: 'Day Month Time' +locked: false +pattern: 'j M - H:i' diff --git a/drupal/config/core.date_format.fallback.yml b/drupal/config/sync/core.date_format.fallback.yml similarity index 82% rename from drupal/config/core.date_format.fallback.yml rename to drupal/config/sync/core.date_format.fallback.yml index 7c9e537..c155185 100644 --- a/drupal/config/core.date_format.fallback.yml +++ b/drupal/config/sync/core.date_format.fallback.yml @@ -1,4 +1,4 @@ -uuid: 98aef2e7-660d-4976-8415-0c58c6aa98ee +uuid: 2cf5bac5-cbf9-467a-b4f9-76355f929942 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_date.yml b/drupal/config/sync/core.date_format.html_date.yml similarity index 80% rename from drupal/config/core.date_format.html_date.yml rename to drupal/config/sync/core.date_format.html_date.yml index f7dd327..a683588 100644 --- a/drupal/config/core.date_format.html_date.yml +++ b/drupal/config/sync/core.date_format.html_date.yml @@ -1,4 +1,4 @@ -uuid: 3aeb877b-2e11-4328-8d49-16466af71cea +uuid: 202a6b5a-d2a0-4a20-9728-c399464dfa75 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_datetime.yml b/drupal/config/sync/core.date_format.html_datetime.yml similarity index 82% rename from drupal/config/core.date_format.html_datetime.yml rename to drupal/config/sync/core.date_format.html_datetime.yml index 8b6a19c..ef1bd99 100644 --- a/drupal/config/core.date_format.html_datetime.yml +++ b/drupal/config/sync/core.date_format.html_datetime.yml @@ -1,4 +1,4 @@ -uuid: 4f766dfa-8991-4d9d-b53a-6970feac8e44 +uuid: 645dc2cb-e9e2-4da3-8aa4-772784343531 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_month.yml b/drupal/config/sync/core.date_format.html_month.yml similarity index 80% rename from drupal/config/core.date_format.html_month.yml rename to drupal/config/sync/core.date_format.html_month.yml index 8c1049c..d0b088c 100644 --- a/drupal/config/core.date_format.html_month.yml +++ b/drupal/config/sync/core.date_format.html_month.yml @@ -1,4 +1,4 @@ -uuid: ff9f6004-a736-4e66-9643-caedb7d73a6a +uuid: 322eba1d-9eda-4b7e-a947-f4a6e482cae3 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_time.yml b/drupal/config/sync/core.date_format.html_time.yml similarity index 80% rename from drupal/config/core.date_format.html_time.yml rename to drupal/config/sync/core.date_format.html_time.yml index 6669f6d..1063908 100644 --- a/drupal/config/core.date_format.html_time.yml +++ b/drupal/config/sync/core.date_format.html_time.yml @@ -1,4 +1,4 @@ -uuid: 54827f88-ffd2-453c-bfbb-4d74c8d66703 +uuid: a14ceee7-8e97-4f04-a200-5f748232e129 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_week.yml b/drupal/config/sync/core.date_format.html_week.yml similarity index 80% rename from drupal/config/core.date_format.html_week.yml rename to drupal/config/sync/core.date_format.html_week.yml index e883c9b..78d9fca 100644 --- a/drupal/config/core.date_format.html_week.yml +++ b/drupal/config/sync/core.date_format.html_week.yml @@ -1,4 +1,4 @@ -uuid: faf71fa5-3fca-4564-bf2e-bc0ddde3510d +uuid: 6f9c7729-29cb-4644-8eaa-326de9d3afd0 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_year.yml b/drupal/config/sync/core.date_format.html_year.yml similarity index 80% rename from drupal/config/core.date_format.html_year.yml rename to drupal/config/sync/core.date_format.html_year.yml index 89de4d3..b55f920 100644 --- a/drupal/config/core.date_format.html_year.yml +++ b/drupal/config/sync/core.date_format.html_year.yml @@ -1,4 +1,4 @@ -uuid: 27d82b32-601e-470d-ae56-678d401f6354 +uuid: 8e54c666-8636-4de8-9d99-e4d065b0f391 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.html_yearless_date.yml b/drupal/config/sync/core.date_format.html_yearless_date.yml similarity index 82% rename from drupal/config/core.date_format.html_yearless_date.yml rename to drupal/config/sync/core.date_format.html_yearless_date.yml index 93e5b31..bc757e7 100644 --- a/drupal/config/core.date_format.html_yearless_date.yml +++ b/drupal/config/sync/core.date_format.html_yearless_date.yml @@ -1,4 +1,4 @@ -uuid: 7ce47a3f-0f5c-488a-8cfd-5dba7f81c136 +uuid: f0bfc824-85b9-4cef-8e4b-b5fc197556db langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.long.yml b/drupal/config/sync/core.date_format.long.yml similarity index 82% rename from drupal/config/core.date_format.long.yml rename to drupal/config/sync/core.date_format.long.yml index 210ceeb..065b3ed 100644 --- a/drupal/config/core.date_format.long.yml +++ b/drupal/config/sync/core.date_format.long.yml @@ -1,4 +1,4 @@ -uuid: e023961f-eb22-4d06-9239-26b6da760b21 +uuid: 2c6ab332-bfa0-4146-a4ac-4b917be56db8 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.medium.yml b/drupal/config/sync/core.date_format.medium.yml similarity index 82% rename from drupal/config/core.date_format.medium.yml rename to drupal/config/sync/core.date_format.medium.yml index c110aa4..f12186f 100644 --- a/drupal/config/core.date_format.medium.yml +++ b/drupal/config/sync/core.date_format.medium.yml @@ -1,4 +1,4 @@ -uuid: 59322f8e-1479-4782-9607-eec1ee7856a1 +uuid: 6d5b6188-2f9b-4841-8ad5-53b20c5e1416 langcode: en status: true dependencies: { } diff --git a/drupal/config/core.date_format.short.yml b/drupal/config/sync/core.date_format.short.yml similarity index 81% rename from drupal/config/core.date_format.short.yml rename to drupal/config/sync/core.date_format.short.yml index 0b3e0c2..5331e23 100644 --- a/drupal/config/core.date_format.short.yml +++ b/drupal/config/sync/core.date_format.short.yml @@ -1,4 +1,4 @@ -uuid: 162e1884-9a20-486b-86ac-17b828d5e45f +uuid: 0ea2224f-431f-46a1-a082-b8b365cf2aef langcode: en status: true dependencies: { } diff --git a/drupal/config/sync/core.date_format.social_long_date.yml b/drupal/config/sync/core.date_format.social_long_date.yml new file mode 100644 index 0000000..d68188f --- /dev/null +++ b/drupal/config/sync/core.date_format.social_long_date.yml @@ -0,0 +1,10 @@ +uuid: 41786ca3-6b7d-4cca-b3bf-365292815dc8 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: yn7hJ7aKHaqAB7NobQ5AvSonDaKip1njklGDp6I6yN4 +id: social_long_date +label: 'Social long date' +locked: false +pattern: 'j F Y' diff --git a/drupal/config/sync/core.date_format.social_medium_date.yml b/drupal/config/sync/core.date_format.social_medium_date.yml new file mode 100644 index 0000000..e12cdd6 --- /dev/null +++ b/drupal/config/sync/core.date_format.social_medium_date.yml @@ -0,0 +1,10 @@ +uuid: 2ecf0adf-4c01-46e3-ac75-5e4a06b8fe16 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: Lh0Rvn87J0sp5EpvRKVE43aoS3XVOWriPuVupW0-_As +id: social_medium_date +label: 'Social medium date' +locked: false +pattern: 'j M Y' diff --git a/drupal/config/sync/core.date_format.social_medium_extended_date.yml b/drupal/config/sync/core.date_format.social_medium_extended_date.yml new file mode 100644 index 0000000..eea9569 --- /dev/null +++ b/drupal/config/sync/core.date_format.social_medium_extended_date.yml @@ -0,0 +1,10 @@ +uuid: 6af95a2d-aed1-4a51-b541-1500705f6d69 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: bOLSR3np9VWFHJ5bmOIQVvyJfxKrfRSOle0J97qTQfQ +id: social_medium_extended_date +label: 'Social medium extended date' +locked: false +pattern: 'j M ''y' diff --git a/drupal/config/sync/core.date_format.social_short_date.yml b/drupal/config/sync/core.date_format.social_short_date.yml new file mode 100644 index 0000000..8c6094c --- /dev/null +++ b/drupal/config/sync/core.date_format.social_short_date.yml @@ -0,0 +1,10 @@ +uuid: b50db228-2f21-446a-aae9-f0af3d1d46df +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: 9spt4BeQnJe7BMrbK2twj_p1HZsNVJ4xcixqyPQjkHg +id: social_short_date +label: 'Social short date' +locked: false +pattern: 'j M' diff --git a/drupal/config/sync/core.date_format.social_time.yml b/drupal/config/sync/core.date_format.social_time.yml new file mode 100644 index 0000000..238a23d --- /dev/null +++ b/drupal/config/sync/core.date_format.social_time.yml @@ -0,0 +1,10 @@ +uuid: 31e40b76-97f3-4076-a26b-a0a9413dda1b +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: oNz650PO1orDMqoiW9r-X59cklOJFD8KjFJoHu3h5PA +id: social_time +label: 'Social time' +locked: false +pattern: 'H:i' diff --git a/drupal/config/sync/core.entity_form_display.activity.activity.default.yml b/drupal/config/sync/core.entity_form_display.activity.activity.default.yml new file mode 100644 index 0000000..ad9c232 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.activity.activity.default.yml @@ -0,0 +1,103 @@ +uuid: 2427e313-dc2f-4e77-9218-3d5b1f29bef1 +langcode: en +status: true +dependencies: + config: + - field.field.activity.activity.field_activity_destinations + - field.field.activity.activity.field_activity_entity + - field.field.activity.activity.field_activity_message + - field.field.activity.activity.field_activity_output_text + - field.field.activity.activity.field_activity_recipient_group + - field.field.activity.activity.field_activity_recipient_user + - field.field.activity.activity.field_activity_status + module: + - activity_creator + - dynamic_entity_reference + - text +_core: + default_config_hash: TU7A4d9g6iKCqKodZP77KJ94k8FHhVWYMQU7evAinz8 +id: activity.activity.default +targetEntityType: activity +bundle: activity +mode: default +content: + field_activity_destinations: + weight: 14 + settings: { } + third_party_settings: { } + type: options_select + region: content + field_activity_entity: + weight: 11 + settings: + match_operator: CONTAINS + size: 40 + placeholder: '' + third_party_settings: { } + type: dynamic_entity_reference_default + region: content + field_activity_message: + weight: 17 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete + region: content + field_activity_output_text: + weight: 15 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_activity_recipient_group: + weight: 13 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete + region: content + field_activity_recipient_user: + weight: 12 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + type: entity_reference_autocomplete + region: content + field_activity_status: + weight: 16 + settings: { } + third_party_settings: { } + type: options_select + region: content + langcode: + type: language_select + weight: 10 + settings: { } + third_party_settings: { } + region: content + name: + type: string_textfield + weight: -4 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + user_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: { } diff --git a/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml b/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml new file mode 100644 index 0000000..3c9e18d --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.block_content.basic.default.yml @@ -0,0 +1,36 @@ +uuid: 7bcbbd17-9f55-4b39-89ad-493a8f21538d +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.field.block_content.basic.field_basic_link + - field.field.block_content.basic.field_text_block + module: + - link + - text +_core: + default_config_hash: 1Cz0ChJ3l2b36jhWx3DPc13FlnuHP0Jw5n5_Hzl24u8 +id: block_content.basic.default +targetEntityType: block_content +bundle: basic +mode: default +content: + field_basic_link: + type: link_default + weight: 1 + region: content + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + field_text_block: + type: text_textarea + weight: 0 + region: content + settings: + rows: 5 + placeholder: '' + third_party_settings: { } +hidden: + info: true diff --git a/drupal/config/sync/core.entity_form_display.block_content.hero_call_to_action_block.default.yml b/drupal/config/sync/core.entity_form_display.block_content.hero_call_to_action_block.default.yml new file mode 100644 index 0000000..42b3497 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.block_content.hero_call_to_action_block.default.yml @@ -0,0 +1,59 @@ +uuid: 068423b3-f339-4ffd-837b-83a951913618 +langcode: en +status: true +dependencies: + config: + - block_content.type.hero_call_to_action_block + - field.field.block_content.hero_call_to_action_block.field_call_to_action_link + - field.field.block_content.hero_call_to_action_block.field_hero_image + - field.field.block_content.hero_call_to_action_block.field_text_block + - image.style.social_an_hero + module: + - image_widget_crop + - link + - text +_core: + default_config_hash: KkxvZs-jt05xqKx9mYUXEaFQ0HRs1wr3o8DQNIRN6K0 +id: block_content.hero_call_to_action_block.default +targetEntityType: block_content +bundle: hero_call_to_action_block +mode: default +content: + field_call_to_action_link: + type: link_default + weight: 0 + settings: + placeholder_url: '' + placeholder_title: '' + third_party_settings: { } + region: content + field_hero_image: + type: image_widget_crop + weight: 0 + settings: + show_crop_area: true + show_default_crop: true + preview_image_style: social_an_hero + crop_preview_image_style: crop_thumbnail + crop_list: + - hero_an + progress_indicator: throbber + third_party_settings: { } + region: content + field_text_block: + type: text_textarea + weight: 0 + settings: + placeholder: '' + rows: 5 + third_party_settings: { } + region: content + info: + type: string_textfield + weight: -5 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: { } diff --git a/drupal/config/sync/core.entity_form_display.block_content.platform_intro.default.yml b/drupal/config/sync/core.entity_form_display.block_content.platform_intro.default.yml new file mode 100644 index 0000000..a178a2e --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.block_content.platform_intro.default.yml @@ -0,0 +1,48 @@ +uuid: 87b0ac81-c791-4889-a48e-f6906810ac9b +langcode: en +status: true +dependencies: + config: + - block_content.type.platform_intro + - field.field.block_content.platform_intro.field_text_block + module: + - field_group + - text +third_party_settings: + field_group: + group_block_content: + children: + - field_text_block + parent_name: '' + weight: 0 + label: 'Block content' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true +_core: + default_config_hash: 8TUFmFkJcvfyHRGY8yfnwsKNbxxgLXHZM021Bc1Rs30 +id: block_content.platform_intro.default +targetEntityType: block_content +bundle: platform_intro +mode: default +content: + field_text_block: + type: text_textarea + weight: 2 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + region: content + info: + type: string_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: { } diff --git a/drupal/config/sync/core.entity_form_display.comment.comment.default.yml b/drupal/config/sync/core.entity_form_display.comment.comment.default.yml new file mode 100644 index 0000000..c64a6f1 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.comment.comment.default.yml @@ -0,0 +1,31 @@ +uuid: 601e4108-93e4-4751-95e1-a3361331e7ca +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.field.comment.comment.field_comment_body + - field.field.comment.comment.field_comment_files +_core: + default_config_hash: 3tOK5PxzfojSpjhsO75OfLbAPAo87idRigAPn_ZW_wc +id: comment.comment.default +targetEntityType: comment +bundle: comment +mode: default +content: + author: + weight: 1 + settings: { } + third_party_settings: { } + region: content + field_comment_body: + weight: 0 + settings: + rows: 5 + placeholder: 'Add a comment' + third_party_settings: { } + type: string_textarea + region: content +hidden: + field_comment_files: true + subject: true diff --git a/drupal/config/sync/core.entity_form_display.comment.post_comment.default.yml b/drupal/config/sync/core.entity_form_display.comment.post_comment.default.yml new file mode 100644 index 0000000..942b1b9 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.comment.post_comment.default.yml @@ -0,0 +1,29 @@ +uuid: ac20f8cb-d9eb-4f03-9efc-aac11ab1895b +langcode: en +status: true +dependencies: + config: + - comment.type.post_comment + - field.field.comment.post_comment.field_comment_body +_core: + default_config_hash: nnUo3hAW_J-kEuqqWBEFSm2wzQU48NaKnBCGecPtvK0 +id: comment.post_comment.default +targetEntityType: comment +bundle: post_comment +mode: default +content: + author: + weight: 5 + region: content + settings: { } + third_party_settings: { } + field_comment_body: + weight: 3 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: string_textarea + region: content +hidden: + subject: true diff --git a/drupal/config/sync/core.entity_form_display.event_enrollment.event_enrollment.default.yml b/drupal/config/sync/core.entity_form_display.event_enrollment.event_enrollment.default.yml new file mode 100644 index 0000000..faddfc8 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.event_enrollment.event_enrollment.default.yml @@ -0,0 +1,65 @@ +uuid: 51adb399-1a58-4ca1-aaf5-a23bd17977b1 +langcode: en +status: true +dependencies: + config: + - field.field.event_enrollment.event_enrollment.field_account + - field.field.event_enrollment.event_enrollment.field_email + - field.field.event_enrollment.event_enrollment.field_enrollment_status + - field.field.event_enrollment.event_enrollment.field_event + - field.field.event_enrollment.event_enrollment.field_request_message + - field.field.event_enrollment.event_enrollment.field_request_or_invite_status + module: + - social_event +_core: + default_config_hash: amjHUzEJXPcIaKu7CPlBIfRMdjZ8gmbqcXy56B8yQu8 +id: event_enrollment.event_enrollment.default +targetEntityType: event_enrollment +bundle: event_enrollment +mode: default +content: + field_enrollment_status: + weight: 12 + settings: { } + third_party_settings: { } + type: options_select + region: content + field_event: + weight: 11 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + type: entity_reference_autocomplete + region: content + langcode: + type: language_select + weight: 10 + settings: { } + third_party_settings: { } + region: content + name: + type: string_textfield + weight: -4 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + user_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content +hidden: + field_account: true + field_email: true + field_request_message: true + field_request_or_invite_status: true diff --git a/drupal/config/sync/core.entity_form_display.font.font.default.yml b/drupal/config/sync/core.entity_form_display.font.font.default.yml new file mode 100644 index 0000000..a3376db --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.font.font.default.yml @@ -0,0 +1,40 @@ +uuid: 635629bd-72e7-45a1-9710-eb45fd1cc8de +langcode: en +status: true +dependencies: + config: + - field.field.font.font.field_fallback + - field.field.font.font.field_fonts + module: + - file + - social_font +_core: + default_config_hash: dYzp0RuuEZzmCoZBqPEVxVBOszHFBxBfKimuQSWv8e4 +id: font.font.default +targetEntityType: font +bundle: font +mode: default +content: + field_fallback: + weight: 1 + settings: { } + third_party_settings: { } + type: options_select + region: content + field_fonts: + weight: 2 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + name: + type: string_textfield + weight: 0 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content +hidden: + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.group.closed_group.default.yml b/drupal/config/sync/core.entity_form_display.group.closed_group.default.yml new file mode 100644 index 0000000..74f589b --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group.closed_group.default.yml @@ -0,0 +1,129 @@ +uuid: eccfd07f-5053-42bb-b992-a9837459ee54 +langcode: en +status: true +dependencies: + config: + - field.field.group.closed_group.field_group_address + - field.field.group.closed_group.field_group_description + - field.field.group.closed_group.field_group_image + - field.field.group.closed_group.field_group_location + - group.type.closed_group + - image.style.social_x_large + module: + - address + - field_group + - image_widget_crop + - path + - text +third_party_settings: + field_group: + group_content: + children: + - label + - field_group_description + - field_group_image + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + group_location: + children: + - field_group_location + - field_group_address + parent_name: '' + weight: 4 + label: Location + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + group_settings: + children: + - path + parent_name: '' + weight: 10 + format_type: details + format_settings: + id: '' + classes: social-collapsible-fieldset + open: false + description: '' + required_fields: true + label: Settings + region: content +_core: + default_config_hash: 7YnIfmOoqMmdkOYGCYrLOZDGInxAIEDhegYKfDtXA3E +id: group.closed_group.default +targetEntityType: group +bundle: closed_group +mode: default +content: + field_group_address: + weight: 33 + settings: { } + third_party_settings: { } + type: address_default + region: content + field_group_description: + weight: 2 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_group_image: + weight: 3 + settings: + show_crop_area: true + show_default_crop: true + warn_multiple_usages: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + progress_indicator: throbber + crop_list: + - hero_small + - hero + - teaser + crop_types_required: { } + third_party_settings: { } + type: image_widget_crop + region: content + field_group_location: + weight: 32 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + label: + type: string_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + path: + type: path + weight: 30 + settings: { } + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group.flexible_group.default.yml b/drupal/config/sync/core.entity_form_display.group.flexible_group.default.yml new file mode 100644 index 0000000..5b03f3d --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group.flexible_group.default.yml @@ -0,0 +1,231 @@ +uuid: 1ebec479-9b96-413d-a9d2-946a1af853ea +langcode: en +status: true +dependencies: + config: + - field.field.group.flexible_group.field_flexible_group_visibility + - field.field.group.flexible_group.field_group_address + - field.field.group.flexible_group.field_group_allowed_join_method + - field.field.group.flexible_group.field_group_allowed_visibility + - field.field.group.flexible_group.field_group_description + - field.field.group.flexible_group.field_group_image + - field.field.group.flexible_group.field_group_invite_by_member + - field.field.group.flexible_group.field_group_location + - field.field.group.flexible_group.field_group_posts_enabled + - field.field.group.flexible_group.field_group_type + - group.type.flexible_group + - image.style.social_x_large + module: + - address + - field_group + - image_widget_crop + - path + - social_profile + - text +third_party_settings: + field_group: + group_content: + children: + - field_group_type + - label + - field_group_image + - field_group_description + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + region: content + group_location: + children: + - field_group_location + - field_group_address + parent_name: '' + weight: 3 + label: Location + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + region: content + group_settings: + children: + - path + parent_name: '' + weight: 5 + format_type: details + format_settings: + id: '' + classes: social-collapsible-fieldset + description: '' + required_fields: true + open: false + label: Settings + region: content + group_access_permissions: + children: + - field_flexible_group_visibility + - field_group_allowed_visibility + - field_group_allowed_join_method + format_settings: + classes: '' + description: '' + id: '' + required_fields: true + format_type: fieldset + label: 'Access permissions' + parent_name: '' + region: content + weight: 2 + group_additional_details: + children: { } + format_settings: + classes: social-collapsible-fieldset + description: '' + id: '' + open: false + required_fields: true + format_type: details + label: 'Additional information' + parent_name: '' + region: content + weight: 4 + group_personalisation: + children: + - field_group_posts_enabled + format_settings: + classes: '' + description: '' + id: '' + required_fields: true + format_type: fieldset + label: Personalisation + parent_name: '' + region: content + weight: 1 + group_request_membership: + children: + - allow_request + parent_name: '' + weight: 99 + label: 'Request membership' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: false +_core: + default_config_hash: BUh3_lUyv-eI-Bs5EaPw88kZ_K1lBZfWl2ZaqKZkWIk +id: group.flexible_group.default +targetEntityType: group +bundle: flexible_group +mode: default +content: + allow_request: + type: boolean_checkbox + settings: + display_label: true + weight: 99 + region: content + third_party_settings: { } + field_flexible_group_visibility: + weight: 100 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_group_address: + weight: 6 + settings: { } + third_party_settings: { } + type: address_default + region: content + field_group_allowed_join_method: + weight: 102 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_group_allowed_visibility: + weight: 101 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_group_description: + weight: 103 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_group_image: + weight: 102 + settings: + show_crop_area: true + show_default_crop: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + crop_list: + - hero_small + - hero + - teaser + progress_indicator: throbber + crop_types_required: { } + warn_multiple_usages: true + third_party_settings: { } + type: image_widget_crop + region: content + field_group_location: + weight: 5 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_group_posts_enabled: + weight: 99 + settings: + display_label: true + third_party_settings: { } + type: boolean_checkbox + region: content + field_group_type: + weight: 100 + settings: { } + third_party_settings: { } + type: categorized_options_buttons + region: content + label: + type: string_textfield + weight: 101 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + path: + type: path + weight: 4 + settings: { } + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } +hidden: + field_group_invite_by_member: true + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group.open_group.default.yml b/drupal/config/sync/core.entity_form_display.group.open_group.default.yml new file mode 100644 index 0000000..47e1baf --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group.open_group.default.yml @@ -0,0 +1,129 @@ +uuid: 5b87c3e5-547b-4894-b8e0-4c7439ba2e20 +langcode: en +status: true +dependencies: + config: + - field.field.group.open_group.field_group_address + - field.field.group.open_group.field_group_description + - field.field.group.open_group.field_group_image + - field.field.group.open_group.field_group_location + - group.type.open_group + - image.style.social_x_large + module: + - address + - field_group + - image_widget_crop + - path + - text +third_party_settings: + field_group: + group_content: + children: + - label + - field_group_description + - field_group_image + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + group_location: + children: + - field_group_location + - field_group_address + parent_name: '' + weight: 4 + label: Location + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + group_settings: + children: + - path + parent_name: '' + weight: 10 + format_type: details + format_settings: + id: '' + classes: social-collapsible-fieldset + open: false + description: '' + required_fields: true + label: Settings + region: content +_core: + default_config_hash: 7Yxv_LSOfvR0pPn7bIqZOakLizPGOUHlyTC8WtLGoiE +id: group.open_group.default +targetEntityType: group +bundle: open_group +mode: default +content: + field_group_address: + weight: 33 + settings: { } + third_party_settings: { } + type: address_default + region: content + field_group_description: + weight: 2 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_group_image: + weight: 3 + settings: + show_crop_area: true + show_default_crop: true + warn_multiple_usages: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + progress_indicator: throbber + crop_list: + - hero_small + - hero + - teaser + crop_types_required: { } + third_party_settings: { } + type: image_widget_crop + region: content + field_group_location: + weight: 32 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + label: + type: string_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + path: + type: path + weight: 30 + settings: { } + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group.public_group.default.yml b/drupal/config/sync/core.entity_form_display.group.public_group.default.yml new file mode 100644 index 0000000..0675951 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group.public_group.default.yml @@ -0,0 +1,129 @@ +uuid: 47964358-f758-48dc-9019-4a463a1d4bcb +langcode: en +status: true +dependencies: + config: + - field.field.group.public_group.field_group_address + - field.field.group.public_group.field_group_description + - field.field.group.public_group.field_group_image + - field.field.group.public_group.field_group_location + - group.type.public_group + - image.style.social_x_large + module: + - address + - field_group + - image_widget_crop + - path + - text +third_party_settings: + field_group: + group_content: + children: + - label + - field_group_description + - field_group_image + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + group_location: + children: + - field_group_location + - field_group_address + parent_name: '' + weight: 4 + label: Location + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + group_settings: + children: + - path + parent_name: '' + weight: 10 + format_type: details + format_settings: + id: '' + classes: social-collapsible-fieldset + open: false + description: '' + required_fields: true + label: Settings + region: content +_core: + default_config_hash: nIWgfXpDCGadpIt6eHpbu69qFAtoOLKn2BVXE7reszo +id: group.public_group.default +targetEntityType: group +bundle: public_group +mode: default +content: + field_group_address: + weight: 33 + settings: { } + third_party_settings: { } + type: address_default + region: content + field_group_description: + weight: 2 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_group_image: + weight: 3 + settings: + show_crop_area: true + show_default_crop: true + warn_multiple_usages: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + progress_indicator: throbber + crop_list: + - hero + - hero_small + - teaser + crop_types_required: { } + third_party_settings: { } + type: image_widget_crop + region: content + field_group_location: + weight: 32 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + label: + type: string_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + path: + type: path + weight: 30 + settings: { } + third_party_settings: { } + region: content + status: + type: boolean_checkbox + settings: + display_label: true + weight: 120 + region: content + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.closed_group-group_invitation.default.yml b/drupal/config/sync/core.entity_form_display.group_content.closed_group-group_invitation.default.yml new file mode 100644 index 0000000..e4fa401 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.closed_group-group_invitation.default.yml @@ -0,0 +1,33 @@ +uuid: 886ea340-03b1-4812-8299-3c8c48164ce5 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.closed_group-group_invitation.group_roles + - field.field.group_content.closed_group-group_invitation.invitation_status + - field.field.group_content.closed_group-group_invitation.invitee_mail + - group.content_type.closed_group-group_invitation +id: group_content.closed_group-group_invitation.default +targetEntityType: group_content +bundle: closed_group-group_invitation +mode: default +content: + group_roles: + type: options_buttons + weight: 31 + settings: { } + third_party_settings: { } + region: content + invitee_mail: + type: email_default + weight: -1 + settings: + placeholder: example@example.com + size: 60 + third_party_settings: { } + region: content +hidden: + entity_id: true + invitation_status: true + path: true + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.closed_group-group_membership.default.yml b/drupal/config/sync/core.entity_form_display.group_content.closed_group-group_membership.default.yml new file mode 100644 index 0000000..03514d4 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.closed_group-group_membership.default.yml @@ -0,0 +1,40 @@ +uuid: 0477a0ba-e957-46e7-86d4-e8102a499b7e +langcode: en +status: true +dependencies: + config: + - field.field.group_content.closed_group-group_membership.group_roles + - group.content_type.closed_group-group_membership + module: + - path +_core: + default_config_hash: skZfLjLPv2b6RK5uARuonovZzWoPuz0Itg_ibkFs23w +id: group_content.closed_group-group_membership.default +targetEntityType: group_content +bundle: closed_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + group_roles: + type: options_buttons + weight: 6 + settings: { } + third_party_settings: { } + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.flexible_group-group_invitation.default.yml b/drupal/config/sync/core.entity_form_display.group_content.flexible_group-group_invitation.default.yml new file mode 100644 index 0000000..3749a37 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.flexible_group-group_invitation.default.yml @@ -0,0 +1,33 @@ +uuid: 94802600-cdd2-4514-bcf0-85266700feda +langcode: en +status: true +dependencies: + config: + - field.field.group_content.flexible_group-group_invitation.group_roles + - field.field.group_content.flexible_group-group_invitation.invitation_status + - field.field.group_content.flexible_group-group_invitation.invitee_mail + - group.content_type.flexible_group-group_invitation +id: group_content.flexible_group-group_invitation.default +targetEntityType: group_content +bundle: flexible_group-group_invitation +mode: default +content: + group_roles: + type: options_buttons + weight: 31 + settings: { } + third_party_settings: { } + region: content + invitee_mail: + type: email_default + weight: -1 + settings: + placeholder: example@example.com + size: 60 + third_party_settings: { } + region: content +hidden: + entity_id: true + invitation_status: true + path: true + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.flexible_group-group_membership.default.yml b/drupal/config/sync/core.entity_form_display.group_content.flexible_group-group_membership.default.yml new file mode 100644 index 0000000..051671d --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.flexible_group-group_membership.default.yml @@ -0,0 +1,40 @@ +uuid: fcf63d08-447b-4691-a728-4b1b4a98f720 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.flexible_group-group_membership.group_roles + - group.content_type.flexible_group-group_membership + module: + - path +_core: + default_config_hash: 6Npo8mvkasKMOsAA8mzKpnGGjuu7O85asBPAkAwVNpA +id: group_content.flexible_group-group_membership.default +targetEntityType: group_content +bundle: flexible_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + group_roles: + type: options_buttons + weight: 6 + settings: { } + third_party_settings: { } + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.open_group-group_invitation.default.yml b/drupal/config/sync/core.entity_form_display.group_content.open_group-group_invitation.default.yml new file mode 100644 index 0000000..fcf8d33 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.open_group-group_invitation.default.yml @@ -0,0 +1,33 @@ +uuid: 9b719665-24cd-427a-9850-2c5cca97e793 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.open_group-group_invitation.group_roles + - field.field.group_content.open_group-group_invitation.invitation_status + - field.field.group_content.open_group-group_invitation.invitee_mail + - group.content_type.open_group-group_invitation +id: group_content.open_group-group_invitation.default +targetEntityType: group_content +bundle: open_group-group_invitation +mode: default +content: + group_roles: + type: options_buttons + weight: 31 + settings: { } + third_party_settings: { } + region: content + invitee_mail: + type: email_default + weight: -1 + settings: + placeholder: example@example.com + size: 60 + third_party_settings: { } + region: content +hidden: + entity_id: true + invitation_status: true + path: true + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.open_group-group_membership.default.yml b/drupal/config/sync/core.entity_form_display.group_content.open_group-group_membership.default.yml new file mode 100644 index 0000000..6ed6a18 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.open_group-group_membership.default.yml @@ -0,0 +1,40 @@ +uuid: 917f7439-82e6-4830-a8a0-decc10b17142 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.open_group-group_membership.group_roles + - group.content_type.open_group-group_membership + module: + - path +_core: + default_config_hash: iWov9weqCY859Zqm2ePB3zP1dcxAbXIWBkj59Vso4cE +id: group_content.open_group-group_membership.default +targetEntityType: group_content +bundle: open_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + group_roles: + type: options_buttons + weight: 6 + settings: { } + third_party_settings: { } + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.public_group-group_invitation.default.yml b/drupal/config/sync/core.entity_form_display.group_content.public_group-group_invitation.default.yml new file mode 100644 index 0000000..2e57ff0 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.public_group-group_invitation.default.yml @@ -0,0 +1,33 @@ +uuid: 69e3ebc8-1746-4591-8f78-4713f87521b4 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.public_group-group_invitation.group_roles + - field.field.group_content.public_group-group_invitation.invitation_status + - field.field.group_content.public_group-group_invitation.invitee_mail + - group.content_type.public_group-group_invitation +id: group_content.public_group-group_invitation.default +targetEntityType: group_content +bundle: public_group-group_invitation +mode: default +content: + group_roles: + type: options_buttons + weight: 31 + settings: { } + third_party_settings: { } + region: content + invitee_mail: + type: email_default + weight: -1 + settings: + placeholder: example@example.com + size: 60 + third_party_settings: { } + region: content +hidden: + entity_id: true + invitation_status: true + path: true + uid: true diff --git a/drupal/config/sync/core.entity_form_display.group_content.public_group-group_membership.default.yml b/drupal/config/sync/core.entity_form_display.group_content.public_group-group_membership.default.yml new file mode 100644 index 0000000..c776082 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.group_content.public_group-group_membership.default.yml @@ -0,0 +1,40 @@ +uuid: d2fba876-a5f7-47f4-87e8-1dbdeabef1ab +langcode: en +status: true +dependencies: + config: + - field.field.group_content.public_group-group_membership.group_roles + - group.content_type.public_group-group_membership + module: + - path +_core: + default_config_hash: Jvg0z1vYCWHLmM1dDSF1eQOvj09jaHxNhES5_nFlxs0 +id: group_content.public_group-group_membership.default +targetEntityType: group_content +bundle: public_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + group_roles: + type: options_buttons + weight: 6 + settings: { } + third_party_settings: { } + region: content + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } +hidden: + uid: true diff --git a/drupal/config/sync/core.entity_form_display.node.event.default.yml b/drupal/config/sync/core.entity_form_display.node.event.default.yml new file mode 100644 index 0000000..b685956 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.node.event.default.yml @@ -0,0 +1,323 @@ +uuid: 033bcb47-058b-470d-9c18-00b37974c064 +langcode: en +status: true +dependencies: + config: + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_x_large + - node.type.event + module: + - address + - comment + - datetime + - field_group + - file + - image_widget_crop + - path + - social_group + - text +third_party_settings: + field_group: + group_title_image: + children: + - title + - field_event_image + - body + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + region: hidden + group_date_time: + children: + - field_event_all_day + - field_event_date + - field_event_date_end + parent_name: '' + weight: 1 + label: 'Date & time' + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + region: hidden + group_location: + children: + - field_event_location + - field_event_address + parent_name: '' + weight: 2 + label: Location + format_type: fieldset + format_settings: + description: '' + classes: '' + id: '' + required_fields: true + region: hidden + group_event_visibility: + children: + - groups + - field_content_visibility + - group_enrollment + parent_name: '' + weight: 3 + label: 'Access permissions' + format_type: fieldset + format_settings: + required_fields: true + id: visibility + classes: 'card ' + description: '' + region: hidden + group_attachments: + children: + - field_files + - field_event_managers + - field_event_managers + parent_name: '' + weight: 4 + label: 'Additional information' + format_type: details + format_settings: + required_fields: true + id: attachments + classes: social-collapsible-fieldset + description: '' + open: false + region: hidden + group_enrollment: + children: + - group_enrollment_methods + - field_event_enroll + parent_name: group_event_visibility + weight: 18 + label: Enrollment + format_type: details + format_settings: + required_fields: true + id: enrollment + classes: '' + description: '' + open: false + region: content + group_enrollment_methods: + children: + - field_enroll_method + - field_event_enroll_outside_group + parent_name: group_enrollment + weight: 20 + format_type: details + format_settings: + open: true + classes: enrollment-methods + description: '' + id: '' + required_fields: false + label: 'Enrollment options fieldset' + region: content + group_settings: + children: + - uid + - created + - field_event_comments + - path + - status + format_settings: + classes: social-collapsible-fieldset + description: '' + id: '' + open: false + required_fields: true + format_type: details + label: Settings + parent_name: '' + region: hidden + weight: 20 +_core: + default_config_hash: lSg5_awhHO5dZ6kCxbhppEMZieleB_AwSa-FtYRZzSk +id: node.event.default +targetEntityType: node +bundle: event +mode: default +content: + body: + type: text_textarea_with_summary + weight: 4 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 4 + settings: { } + third_party_settings: { } + region: content + field_content_visibility: + weight: 17 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_enroll_method: + weight: 121 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_event_address: + weight: 14 + settings: { } + third_party_settings: { } + type: address_default + region: content + field_event_all_day: + weight: 9 + settings: + display_label: true + third_party_settings: { } + type: boolean_checkbox + region: content + field_event_comments: + weight: 10 + settings: { } + third_party_settings: { } + type: comment_default + region: content + field_event_date: + weight: 10 + settings: { } + third_party_settings: { } + type: datetime_default + region: content + field_event_date_end: + weight: 11 + settings: { } + third_party_settings: { } + type: datetime_default + region: content + field_event_enroll: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 19 + third_party_settings: { } + field_event_enroll_outside_group: + weight: 123 + settings: + display_label: true + third_party_settings: { } + type: boolean_checkbox + region: content + field_event_image: + weight: 3 + settings: + show_crop_area: true + show_default_crop: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + crop_list: + - hero + - teaser + progress_indicator: throbber + warn_multiple_usages: true + crop_types_required: { } + third_party_settings: { } + type: image_widget_crop + region: content + field_event_location: + weight: 11 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_event_managers: + settings: + match_operator: CONTAINS + placeholder: '' + size: 60 + type: entity_reference_autocomplete + weight: 100 + region: content + third_party_settings: { } + field_files: + weight: 12 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + groups: + type: social_group_selector_widget + settings: { } + weight: 16 + region: content + third_party_settings: { } + path: + type: path + weight: 11 + settings: { } + third_party_settings: { } + region: content + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 120 + third_party_settings: { } + title: + type: string_textfield + weight: 2 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 1 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content +hidden: + field_event_send_invite_by_user: true + promote: true + sticky: true diff --git a/drupal/config/sync/core.entity_form_display.node.page.default.yml b/drupal/config/sync/core.entity_form_display.node.page.default.yml new file mode 100644 index 0000000..444fa98 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.node.page.default.yml @@ -0,0 +1,179 @@ +uuid: 2b624f4b-faf0-4e98-9d3b-ed8e58406a70 +langcode: en +status: true +dependencies: + config: + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_x_large + - node.type.page + module: + - comment + - field_group + - file + - image_widget_crop + - path + - text +third_party_settings: + field_group: + group_page_content: + children: + - title + - field_page_image + - body + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + description: '' + required_fields: true + id: content + classes: 'card ' + region: hidden + group_attachments: + children: + - field_files + parent_name: '' + weight: 3 + label: 'Additional information' + format_type: details + format_settings: + description: '' + required_fields: true + id: attachments + classes: social-collapsible-fieldset + open: false + region: hidden + group_page_visibility: + children: + - field_content_visibility + parent_name: '' + weight: 1 + label: 'Access permissions' + format_type: fieldset + format_settings: + description: '' + required_fields: true + id: visibility + classes: 'card ' + region: hidden + group_settings: + children: + - uid + - created + - field_page_comments + - path + - status + parent_name: '' + weight: 20 + format_type: details + region: hidden + format_settings: + id: '' + classes: social-collapsible-fieldset + description: '' + open: false + required_fields: true + label: Settings +_core: + default_config_hash: ij3waKnGJW6p29PfEQATnOId-hBF8hMNQQuR8IVouD4 +id: node.page.default +targetEntityType: node +bundle: page +mode: default +content: + body: + type: text_textarea_with_summary + weight: 3 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 8 + settings: { } + third_party_settings: { } + region: content + field_content_visibility: + weight: 27 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_files: + weight: 26 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + field_page_comments: + weight: 5 + settings: { } + third_party_settings: { } + type: comment_default + region: content + field_page_image: + weight: 2 + settings: + show_crop_area: true + show_default_crop: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + crop_list: + - hero + - teaser + progress_indicator: throbber + crop_types_required: { } + warn_multiple_usages: true + third_party_settings: { } + type: image_widget_crop + region: content + path: + type: path + weight: 6 + settings: { } + third_party_settings: { } + region: content + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 120 + third_party_settings: { } + title: + type: string_textfield + weight: 1 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 7 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content +hidden: + groups: true + promote: true + sticky: true diff --git a/drupal/config/sync/core.entity_form_display.node.topic.default.yml b/drupal/config/sync/core.entity_form_display.node.topic.default.yml new file mode 100644 index 0000000..dcc86dc --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.node.topic.default.yml @@ -0,0 +1,193 @@ +uuid: 9ac1caaa-b211-4dbf-bbf8-acc723d31575 +langcode: en +status: true +dependencies: + config: + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_x_large + - node.type.topic + module: + - comment + - field_group + - file + - image_widget_crop + - path + - text +third_party_settings: + field_group: + group_topic_content: + children: + - field_topic_type + - title + - field_topic_image + - body + parent_name: '' + weight: 0 + label: 'Basic information' + format_type: fieldset + format_settings: + required_fields: true + id: content + classes: 'card ' + description: '' + region: hidden + group_topic_visibility: + children: + - groups + - field_content_visibility + parent_name: '' + weight: 1 + label: 'Access permissions' + format_type: fieldset + format_settings: + required_fields: true + id: visibility + classes: 'card ' + description: '' + region: hidden + group_attachments: + children: + - field_files + parent_name: '' + weight: 5 + label: 'Additional information' + format_type: details + format_settings: + required_fields: true + id: attachments + classes: social-collapsible-fieldset + description: '' + open: false + region: hidden + group_settings: + children: + - field_topic_comments + - path + - uid + - created + - status + format_settings: + classes: social-collapsible-fieldset + description: '' + id: '' + open: false + required_fields: true + format_type: details + label: Settings + parent_name: '' + region: hidden + weight: 20 +_core: + default_config_hash: ra7HCuCY6V_SiCTq-ifqNORXStAS0jH1tbrlwyqb4E8 +id: node.topic.default +targetEntityType: node +bundle: topic +mode: default +content: + body: + type: text_textarea_with_summary + weight: 4 + settings: + rows: 9 + summary_rows: 3 + placeholder: '' + show_summary: false + third_party_settings: { } + region: content + created: + type: datetime_timestamp + weight: 7 + settings: { } + third_party_settings: { } + region: content + field_content_visibility: + weight: 17 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_files: + weight: 8 + settings: + progress_indicator: throbber + third_party_settings: { } + type: file_generic + region: content + field_topic_comments: + weight: 3 + settings: { } + third_party_settings: { } + type: comment_default + region: content + field_topic_image: + weight: 3 + settings: + show_crop_area: true + show_default_crop: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + crop_list: + - hero + - teaser + progress_indicator: throbber + warn_multiple_usages: true + crop_types_required: { } + third_party_settings: { } + type: image_widget_crop + region: content + field_topic_type: + weight: 1 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + groups: + type: options_select + settings: { } + weight: 16 + region: content + third_party_settings: { } + path: + type: path + weight: 4 + settings: { } + third_party_settings: { } + region: content + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 120 + third_party_settings: { } + title: + type: string_textfield + weight: 2 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + region: content + uid: + type: entity_reference_autocomplete + weight: 6 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + region: content + url_redirects: + weight: 50 + settings: { } + third_party_settings: { } + region: content +hidden: + promote: true + sticky: true diff --git a/drupal/config/sync/core.entity_form_display.post.photo.default.yml b/drupal/config/sync/core.entity_form_display.post.photo.default.yml new file mode 100644 index 0000000..d6cbd94 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.post.photo.default.yml @@ -0,0 +1,59 @@ +uuid: 7ae065b0-02d1-40fe-a234-f3a67ae98344 +langcode: en +status: true +dependencies: + config: + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - dropdown + - image + - text +_core: + default_config_hash: o5eSGMhMR8ByC--m0Tnv-LFpDrWrgNWdd8rPopq6JYs +id: post.photo.default +targetEntityType: post +bundle: photo +mode: default +content: + field_post: + type: text_textarea + weight: 0 + region: content + settings: + rows: 5 + placeholder: 'Say something about these image(s)' + third_party_settings: { } + field_post_image: + weight: 1 + settings: + preview_image_style: social_post_photo + progress_indicator: throbber + third_party_settings: { } + type: image_image + region: content + field_visibility: + type: dropdown_widget_type + weight: 2 + region: content + settings: { } + third_party_settings: { } + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 20 + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + langcode: true + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.post.photo.group.yml b/drupal/config/sync/core.entity_form_display.post.photo.group.yml new file mode 100644 index 0000000..b0b1708 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.post.photo.group.yml @@ -0,0 +1,60 @@ +uuid: afbe0620-b24f-492c-ae46-ea721c0e9970 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.post.group + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - dropdown + - image + - text +_core: + default_config_hash: dFy2XSsiu3GICNkxc4ER36k_65ehVwFX9SNUuOzUV4Q +id: post.photo.group +targetEntityType: post +bundle: photo +mode: group +content: + field_post: + type: text_textarea + weight: 0 + region: content + settings: + rows: 5 + placeholder: 'Say something about these image(s)' + third_party_settings: { } + field_post_image: + weight: 1 + settings: + preview_image_style: social_post_photo + progress_indicator: throbber + third_party_settings: { } + type: image_image + region: content + field_visibility: + type: dropdown_widget_type + weight: 2 + region: content + settings: { } + third_party_settings: { } + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 20 + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + langcode: true + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.post.photo.profile.yml b/drupal/config/sync/core.entity_form_display.post.photo.profile.yml new file mode 100644 index 0000000..c4f90a9 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.post.photo.profile.yml @@ -0,0 +1,60 @@ +uuid: 47204f82-723a-451b-81b2-a7d0fc73be45 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.post.profile + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - dropdown + - image + - text +_core: + default_config_hash: 4ROsDKGj_bcOfeuW9s6po49MOihwvaX-bLa0nXKNtYU +id: post.photo.profile +targetEntityType: post +bundle: photo +mode: profile +content: + field_post: + type: text_textarea + weight: 0 + region: content + settings: + rows: 5 + placeholder: 'Say something about these image(s)' + third_party_settings: { } + field_post_image: + weight: 1 + settings: + preview_image_style: social_post_photo + progress_indicator: throbber + third_party_settings: { } + type: image_image + region: content + field_visibility: + type: dropdown_widget_type + weight: 2 + region: content + settings: { } + third_party_settings: { } + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 20 + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + langcode: true + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.post.post.default.yml b/drupal/config/sync/core.entity_form_display.post.post.default.yml new file mode 100644 index 0000000..1ebed61 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.post.post.default.yml @@ -0,0 +1,48 @@ +uuid: 22456e81-3d52-4aed-a4b7-a7a96254bb4f +langcode: en +status: true +dependencies: + config: + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - dropdown +_core: + default_config_hash: DetPMoKU2Q7vOFGCjoO00gpsfVk-MxIHEWexOXNgbkI +id: post.post.default +targetEntityType: post +bundle: post +mode: default +content: + field_post: + type: string_textarea + weight: 0 + label: hidden + settings: + rows: 5 + placeholder: 'What''s on your mind?' + third_party_settings: { } + region: content + field_visibility: + type: dropdown_widget_type + weight: 1 + settings: { } + third_party_settings: { } + region: content + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 20 + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + langcode: true + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.post.post.group.yml b/drupal/config/sync/core.entity_form_display.post.post.group.yml new file mode 100644 index 0000000..862aebf --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.post.post.group.yml @@ -0,0 +1,49 @@ +uuid: 8e56c386-e147-4e08-8c62-b87de190915e +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.post.group + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - dropdown +_core: + default_config_hash: '-5WM09YiGMF21AtZGs16oNQ_LwVhaGQilD-aog7WnpE' +id: post.post.group +targetEntityType: post +bundle: post +mode: group +content: + field_post: + type: string_textarea + weight: 0 + label: hidden + settings: + rows: 5 + placeholder: 'What''s on your mind?' + third_party_settings: { } + region: content + field_visibility: + type: dropdown_widget_type + weight: 1 + settings: { } + third_party_settings: { } + region: content + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 20 + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + langcode: true + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.post.post.profile.yml b/drupal/config/sync/core.entity_form_display.post.post.profile.yml new file mode 100644 index 0000000..2064165 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.post.post.profile.yml @@ -0,0 +1,48 @@ +uuid: 368567cd-d1f6-4934-978e-56e8d8711aa8 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.post.profile + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - dropdown +_core: + default_config_hash: WU5RP0OlbkLrfULjyeVIbzVODVg_PS3g5tpwmtH06X0 +id: post.post.profile +targetEntityType: post +bundle: post +mode: profile +content: + field_post: + type: string_textarea + weight: 0 + settings: + rows: 5 + placeholder: 'What''s on your mind?' + third_party_settings: { } + region: content + field_visibility: + type: dropdown_widget_type + weight: 1 + settings: { } + third_party_settings: { } + region: content + status: + region: content + settings: + display_label: true + type: boolean_checkbox + weight: 20 + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + langcode: true + user_id: true diff --git a/drupal/config/sync/core.entity_form_display.profile.profile.default.yml b/drupal/config/sync/core.entity_form_display.profile.profile.default.yml new file mode 100644 index 0000000..d994792 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.profile.profile.default.yml @@ -0,0 +1,214 @@ +uuid: 0b485bce-6b2d-4855-a574-c258742e445c +langcode: en +status: true +dependencies: + config: + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_x_large + - profile.type.profile + module: + - address + - field_group + - image_widget_crop + - social_profile + - telephone + - text +third_party_settings: + field_group: + group_profile_names_image: + children: + - field_profile_first_name + - field_profile_last_name + - field_profile_banner_image + - field_profile_image + parent_name: '' + weight: 0 + label: 'Names and profile image' + format_type: fieldset + format_settings: + label: 'Names and profile image' + required_fields: true + id: name + classes: scrollspy + group_profile_funct_organization: + children: + - field_profile_function + - field_profile_organization + parent_name: '' + weight: 1 + label: 'Function and organization' + format_type: fieldset + format_settings: + label: 'Function and organization' + required_fields: true + id: work + classes: scollspy + group_profile_self_intro: + children: + - field_profile_summary + - field_profile_self_introduction + - field_profile_expertise + - field_profile_interests + - field_profile_profile_tag + parent_name: '' + weight: 3 + label: 'Self introduction, expertise and interests' + format_type: fieldset + format_settings: + label: 'Self introduction, expertise and interests' + required_fields: true + id: details + classes: scrollspy + group_profile_contact_info: + children: + - field_profile_phone_number + - field_profile_address + parent_name: '' + weight: 2 + label: 'Phone number and location' + format_type: fieldset + format_settings: + label: 'Phone number and location' + required_fields: true + id: contact + classes: scollspy +_core: + default_config_hash: dM84l8VSWED6wYHp2GXy4DyJO1ESgmLt8IJs62d4Qv4 +id: profile.profile.default +targetEntityType: profile +bundle: profile +mode: default +content: + field_profile_address: + weight: 7 + settings: { } + third_party_settings: { } + type: address_default + region: content + field_profile_banner_image: + weight: 10 + settings: + show_crop_area: true + show_default_crop: true + warn_multiple_usages: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + progress_indicator: throbber + crop_list: + - hero + third_party_settings: { } + type: image_widget_crop + region: content + field_profile_expertise: + weight: 13 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + type: entity_reference_autocomplete_tags + region: content + field_profile_first_name: + weight: 8 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_profile_function: + weight: 16 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_profile_image: + weight: 11 + settings: + show_default_crop: true + preview_image_style: social_x_large + crop_preview_image_style: crop_thumbnail + crop_list: + - profile_large + - teaser + - profile_medium + - profile_small + progress_indicator: throbber + show_crop_area: true + third_party_settings: { } + type: image_widget_crop + region: content + field_profile_interests: + weight: 14 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + match_limit: 10 + third_party_settings: { } + type: entity_reference_autocomplete_tags + region: content + field_profile_last_name: + weight: 9 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_profile_organization: + weight: 17 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_profile_phone_number: + weight: 6 + settings: + placeholder: '' + third_party_settings: { } + type: telephone_default + region: content + field_profile_profile_tag: + weight: 15 + settings: { } + third_party_settings: { } + type: options_buttons + region: content + field_profile_self_introduction: + weight: 12 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_profile_summary: + weight: 11 + settings: + size: 140 + placeholder: '' + third_party_settings: { } + type: social_profile_string_textarea + region: content +hidden: + field_profile_show_email: true + is_default: true diff --git a/drupal/config/sync/core.entity_form_display.queue_storage_entity.email.default.yml b/drupal/config/sync/core.entity_form_display.queue_storage_entity.email.default.yml new file mode 100644 index 0000000..f78f755 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.queue_storage_entity.email.default.yml @@ -0,0 +1,61 @@ +uuid: 41375124-268f-497a-b39d-3043d66c4d9f +langcode: en +status: true +dependencies: + config: + - field.field.queue_storage_entity.email.field_message + - field.field.queue_storage_entity.email.field_reply_to + - field.field.queue_storage_entity.email.field_subject + - social_queue_storage.queue_storage_entity_type.email + module: + - text +_core: + default_config_hash: ws0NPv2gK3R06kvVLUVPQmv_T6Z5zb3PxEeEejhNPrk +id: queue_storage_entity.email.default +targetEntityType: queue_storage_entity +bundle: email +mode: default +content: + field_message: + weight: 8 + settings: + rows: 5 + placeholder: '' + third_party_settings: { } + type: text_textarea + region: content + field_reply_to: + weight: 6 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + field_subject: + weight: 7 + settings: + size: 60 + placeholder: '' + third_party_settings: { } + type: string_textfield + region: content + name: + type: string_textfield + weight: -4 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + user_id: + type: entity_reference_autocomplete + weight: 5 + settings: + match_operator: CONTAINS + size: 60 + placeholder: '' + region: content + third_party_settings: { } +hidden: + finished: true diff --git a/drupal/config/sync/core.entity_form_display.taxonomy_term.group_type.default.yml b/drupal/config/sync/core.entity_form_display.taxonomy_term.group_type.default.yml new file mode 100644 index 0000000..4a766a4 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.taxonomy_term.group_type.default.yml @@ -0,0 +1,53 @@ +uuid: cb3fcceb-c976-49a9-b0fa-9491dc15a09b +langcode: en +status: true +dependencies: + config: + - field.field.taxonomy_term.group_type.field_group_type_icon + - taxonomy.vocabulary.group_type + module: + - path + - text +_core: + default_config_hash: lJbDK2ax2riCWRwB7V5vboV0yZwftVOiM1SQ12R8f7s +id: taxonomy_term.group_type.default +targetEntityType: taxonomy_term +bundle: group_type +mode: default +content: + description: + type: text_textarea + weight: 1 + region: content + settings: + placeholder: '' + rows: 5 + third_party_settings: { } + field_group_type_icon: + weight: 3 + settings: { } + third_party_settings: { } + type: options_select + region: content + name: + type: string_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 2 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 100 + region: content + third_party_settings: { } +hidden: { } diff --git a/drupal/config/sync/core.entity_form_display.taxonomy_term.topic_types.default.yml b/drupal/config/sync/core.entity_form_display.taxonomy_term.topic_types.default.yml new file mode 100644 index 0000000..3564fda --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.taxonomy_term.topic_types.default.yml @@ -0,0 +1,53 @@ +uuid: 75aa8580-9ce7-4527-80ca-06d89e1a8c23 +langcode: en +status: true +dependencies: + config: + - field.field.taxonomy_term.topic_types.field_topic_type_icon + - taxonomy.vocabulary.topic_types + module: + - path + - text +_core: + default_config_hash: 7hMCDgZRKmzW3XhljL3AOzRei9demtib4O_bPFEZBhw +id: taxonomy_term.topic_types.default +targetEntityType: taxonomy_term +bundle: topic_types +mode: default +content: + description: + type: text_textfield + weight: 0 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + field_topic_type_icon: + weight: 31 + settings: { } + third_party_settings: { } + type: options_select + region: content + name: + type: string_textfield + weight: -5 + region: content + settings: + size: 60 + placeholder: '' + third_party_settings: { } + path: + type: path + weight: 30 + region: content + settings: { } + third_party_settings: { } + status: + type: boolean_checkbox + settings: + display_label: true + weight: 100 + region: content + third_party_settings: { } +hidden: { } diff --git a/drupal/config/sync/core.entity_form_display.user.user.default.yml b/drupal/config/sync/core.entity_form_display.user.user.default.yml new file mode 100644 index 0000000..d74e59e --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.user.user.default.yml @@ -0,0 +1,55 @@ +uuid: 1f919d3f-862e-4ed6-b15e-31fc30a40943 +langcode: en +status: true +dependencies: + module: + - field_group + - user +third_party_settings: + field_group: + group_information: + children: + - account + parent_name: '' + weight: 0 + label: 'Account information' + format_type: fieldset + format_settings: + label: 'Account information' + required_fields: true + id: '' + classes: '' + group_locale_settings: + children: + - timezone + parent_name: '' + weight: 1 + format_type: fieldset + format_settings: + id: '' + classes: '' + description: '' + required_fields: true + label: 'Locale settings' +_core: + default_config_hash: 0mN35J6v8iKU1n8sdxYcHbJRLgPRHU9VSIhfbUtu2GQ +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: + account: + weight: 1 + region: content + settings: { } + third_party_settings: { } + timezone: + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + contact: true + groups: true + language: true + profile_profiles: true diff --git a/drupal/config/sync/core.entity_form_display.user.user.register.yml b/drupal/config/sync/core.entity_form_display.user.user.register.yml new file mode 100644 index 0000000..ac12e69 --- /dev/null +++ b/drupal/config/sync/core.entity_form_display.user.user.register.yml @@ -0,0 +1,26 @@ +uuid: 37749063-6afa-4534-a246-b48faa632af5 +langcode: en +status: true +dependencies: + config: + - core.entity_form_mode.user.register + module: + - user +_core: + default_config_hash: 1bG7rDWod_J9bn51L4ZAEOICgTou8Lzaruv8U43qMy8 +id: user.user.register +targetEntityType: user +bundle: user +mode: register +content: + account: + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + contact: true + groups: true + language: true + profile_profiles: true + timezone: true diff --git a/drupal/config/sync/core.entity_form_mode.post.group.yml b/drupal/config/sync/core.entity_form_mode.post.group.yml new file mode 100644 index 0000000..441550e --- /dev/null +++ b/drupal/config/sync/core.entity_form_mode.post.group.yml @@ -0,0 +1,12 @@ +uuid: ddae4c9e-a552-433b-a068-76054b4225dd +langcode: en +status: true +dependencies: + module: + - social_post +_core: + default_config_hash: j1ZT5107i2koTB3Ts1Ql6HJBJTRbgLAlMvNpCsVH2ZA +id: post.group +label: Group +targetEntityType: post +cache: true diff --git a/drupal/config/sync/core.entity_form_mode.post.profile.yml b/drupal/config/sync/core.entity_form_mode.post.profile.yml new file mode 100644 index 0000000..714cf2a --- /dev/null +++ b/drupal/config/sync/core.entity_form_mode.post.profile.yml @@ -0,0 +1,12 @@ +uuid: bf854552-5329-43b6-89ee-e41b154288eb +langcode: en +status: true +dependencies: + module: + - social_post +_core: + default_config_hash: XqND3WmnPUGOb_j_NqRg7_of_gaSstrJ4iIJg3wD9TI +id: post.profile +label: 'Profile of others' +targetEntityType: post +cache: true diff --git a/drupal/config/core.entity_form_mode.user.register.yml b/drupal/config/sync/core.entity_form_mode.user.register.yml similarity index 82% rename from drupal/config/core.entity_form_mode.user.register.yml rename to drupal/config/sync/core.entity_form_mode.user.register.yml index 9cbb273..a84e270 100644 --- a/drupal/config/core.entity_form_mode.user.register.yml +++ b/drupal/config/sync/core.entity_form_mode.user.register.yml @@ -1,4 +1,4 @@ -uuid: f67c9b1e-3d6f-4858-95e1-61dbb646c2ce +uuid: 04004d0d-b5d1-4f75-b8c6-1573ea87cd54 langcode: en status: true dependencies: diff --git a/drupal/config/sync/core.entity_view_display.activity.activity.default.yml b/drupal/config/sync/core.entity_view_display.activity.activity.default.yml new file mode 100644 index 0000000..092fb1d --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.activity.activity.default.yml @@ -0,0 +1,117 @@ +uuid: 4e60ea71-9992-4a63-a5d4-70c747f39cb8 +langcode: en +status: true +dependencies: + config: + - field.field.activity.activity.field_activity_destinations + - field.field.activity.activity.field_activity_entity + - field.field.activity.activity.field_activity_message + - field.field.activity.activity.field_activity_output_text + - field.field.activity.activity.field_activity_recipient_group + - field.field.activity.activity.field_activity_recipient_user + - field.field.activity.activity.field_activity_status + module: + - activity_creator + - dynamic_entity_reference + - text +_core: + default_config_hash: sRAalEAoK4944DDyniVLkPCmArel-CO216YmoCVAtLo +id: activity.activity.default +targetEntityType: activity +bundle: activity +mode: default +content: + field_activity_entity: + weight: 1 + label: hidden + settings: + comment: + view_mode: activity + activity: + view_mode: default + link: false + node: + view_mode: activity + link: false + crop: + view_mode: default + link: false + block_content: + view_mode: default + link: false + menu_link_content: + view_mode: default + link: false + file: + view_mode: default + link: false + flagging: + view_mode: default + link: false + font: + view_mode: default + link: false + group: + view_mode: stream + link: false + group_content: + view_mode: activity + link: false + mentions: + view_mode: default + link: false + message: + view_mode: default + link: false + profile: + view_mode: default + link: false + queue_storage_entity: + view_mode: default + link: false + redirect: + view_mode: default + link: false + search_api_task: + view_mode: default + link: false + taxonomy_term: + view_mode: default + link: false + path_alias: + view_mode: default + link: false + user: + view_mode: default + link: false + event_enrollment: + view_mode: default + link: false + post: + view_mode: activity + third_party_settings: { } + type: dynamic_entity_reference_entity_view + region: content + field_activity_output_text: + type: text_default + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + name: + label: above + type: string + weight: -4 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_activity_destinations: true + field_activity_message: true + field_activity_recipient_group: true + field_activity_recipient_user: true + field_activity_status: true + search_api_excerpt: true + user_id: true diff --git a/drupal/config/sync/core.entity_view_display.activity.activity.featured.yml b/drupal/config/sync/core.entity_view_display.activity.activity.featured.yml new file mode 100644 index 0000000..fe14480 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.activity.activity.featured.yml @@ -0,0 +1,112 @@ +uuid: 477224a9-f718-4e7c-80a4-81da7914fd5f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.activity.featured + - field.field.activity.activity.field_activity_destinations + - field.field.activity.activity.field_activity_entity + - field.field.activity.activity.field_activity_message + - field.field.activity.activity.field_activity_output_text + - field.field.activity.activity.field_activity_recipient_group + - field.field.activity.activity.field_activity_recipient_user + - field.field.activity.activity.field_activity_status + module: + - activity_creator + - dynamic_entity_reference + - text +_core: + default_config_hash: MqpJS57t28pIgnbLFxRG3et2eM_buLHR67fnPTPp8mI +id: activity.activity.featured +targetEntityType: activity +bundle: activity +mode: featured +content: + field_activity_entity: + weight: 1 + label: hidden + settings: + comment: + view_mode: activity + node: + view_mode: featured + crop: + view_mode: default + event_enrollment: + view_mode: default + flagging: + view_mode: default + font: + view_mode: default + group: + view_mode: default + mentions: + view_mode: default + message: + view_mode: default + paragraph: + view_mode: default + phase: + view_mode: default + post: + view_mode: featured + queue_storage_entity: + view_mode: default + search_api_task: + view_mode: default + path_alias: + view_mode: default + vote: + view_mode: default + vote_result: + view_mode: default + activity: + view_mode: default + link: false + block_content: + view_mode: default + link: false + menu_link_content: + view_mode: default + link: false + file: + view_mode: default + link: false + group_content: + view_mode: default + link: false + profile: + view_mode: default + link: false + taxonomy_term: + view_mode: default + link: false + user: + view_mode: default + link: false + third_party_settings: { } + type: dynamic_entity_reference_entity_view + region: content + field_activity_output_text: + type: text_default + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + name: + label: above + type: string + weight: -4 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_activity_destinations: true + field_activity_message: true + field_activity_recipient_group: true + field_activity_recipient_user: true + field_activity_status: true + search_api_excerpt: true + user_id: true diff --git a/drupal/config/sync/core.entity_view_display.activity.activity.notification.yml b/drupal/config/sync/core.entity_view_display.activity.activity.notification.yml new file mode 100644 index 0000000..f325672 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.activity.activity.notification.yml @@ -0,0 +1,47 @@ +uuid: 99e21fb9-39af-4f66-8f1c-4d0edf812652 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.activity.notification + - field.field.activity.activity.field_activity_destinations + - field.field.activity.activity.field_activity_entity + - field.field.activity.activity.field_activity_message + - field.field.activity.activity.field_activity_output_text + - field.field.activity.activity.field_activity_recipient_group + - field.field.activity.activity.field_activity_recipient_user + - field.field.activity.activity.field_activity_status + module: + - activity_creator + - text +_core: + default_config_hash: _PP-WiPTqYhSbjdVpCP7tG1ylK-g8j1kwL5hCCd769A +id: activity.activity.notification +targetEntityType: activity +bundle: activity +mode: notification +content: + field_activity_output_text: + type: text_default + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + name: + label: above + type: string + weight: -4 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_activity_destinations: true + field_activity_entity: true + field_activity_message: true + field_activity_recipient_group: true + field_activity_recipient_user: true + field_activity_status: true + search_api_excerpt: true + user_id: true diff --git a/drupal/config/sync/core.entity_view_display.activity.activity.notification_archive.yml b/drupal/config/sync/core.entity_view_display.activity.activity.notification_archive.yml new file mode 100644 index 0000000..9b18660 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.activity.activity.notification_archive.yml @@ -0,0 +1,47 @@ +uuid: 49bf66ef-200c-475d-a1a7-f0933923c376 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.activity.notification_archive + - field.field.activity.activity.field_activity_destinations + - field.field.activity.activity.field_activity_entity + - field.field.activity.activity.field_activity_message + - field.field.activity.activity.field_activity_output_text + - field.field.activity.activity.field_activity_recipient_group + - field.field.activity.activity.field_activity_recipient_user + - field.field.activity.activity.field_activity_status + module: + - activity_creator + - text +_core: + default_config_hash: tx4bSyJKCIyH-UgPhJ9KMaJQjMQqJEJU1YZpd999QdY +id: activity.activity.notification_archive +targetEntityType: activity +bundle: activity +mode: notification_archive +content: + field_activity_output_text: + type: text_default + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + name: + label: above + type: string + weight: -4 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_activity_destinations: true + field_activity_entity: true + field_activity_message: true + field_activity_recipient_group: true + field_activity_recipient_user: true + field_activity_status: true + search_api_excerpt: true + user_id: true diff --git a/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml b/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml new file mode 100644 index 0000000..04233d8 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.block_content.basic.default.yml @@ -0,0 +1,39 @@ +uuid: b85fff39-9189-487d-8868-dcf5d7f90b5d +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.field.block_content.basic.field_basic_link + - field.field.block_content.basic.field_text_block + module: + - link + - text +_core: + default_config_hash: w3fFpKQRF-5WSLswnfFaOymuSOvseBLeSTBlKQNG3mE +id: block_content.basic.default +targetEntityType: block_content +bundle: basic +mode: default +content: + field_basic_link: + type: link + weight: 1 + region: content + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + field_text_block: + type: text_default + weight: 0 + region: content + label: hidden + settings: { } + third_party_settings: { } +hidden: + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.block_content.hero_call_to_action_block.default.yml b/drupal/config/sync/core.entity_view_display.block_content.hero_call_to_action_block.default.yml new file mode 100644 index 0000000..afc3a2d --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.block_content.hero_call_to_action_block.default.yml @@ -0,0 +1,51 @@ +uuid: 00c77a21-6b01-4489-b0bc-579abaa4d2a2 +langcode: en +status: true +dependencies: + config: + - block_content.type.hero_call_to_action_block + - field.field.block_content.hero_call_to_action_block.field_call_to_action_link + - field.field.block_content.hero_call_to_action_block.field_hero_image + - field.field.block_content.hero_call_to_action_block.field_text_block + - image.style.social_an_hero + module: + - image + - link + - text +_core: + default_config_hash: xcn78jEvv0PMkBHNBl0s4uKp9MlLHs432utlSRAmDMc +id: block_content.hero_call_to_action_block.default +targetEntityType: block_content +bundle: hero_call_to_action_block +mode: default +content: + field_call_to_action_link: + type: link + weight: 2 + label: hidden + settings: + trim_length: 80 + url_only: false + url_plain: false + rel: '' + target: '' + third_party_settings: { } + region: content + field_hero_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_an_hero + image_link: '' + third_party_settings: { } + region: content + field_text_block: + type: text_default + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.block_content.platform_intro.default.yml b/drupal/config/sync/core.entity_view_display.block_content.platform_intro.default.yml new file mode 100644 index 0000000..96e07cb --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.block_content.platform_intro.default.yml @@ -0,0 +1,25 @@ +uuid: 3ddae83a-a3be-4e16-a184-0537dbcd5818 +langcode: en +status: true +dependencies: + config: + - block_content.type.platform_intro + - field.field.block_content.platform_intro.field_text_block + module: + - text +_core: + default_config_hash: Ec4Lz0EcmBPQ7Jfpj0Swo2As0Q1RtZXUStwPYQIVVbE +id: block_content.platform_intro.default +targetEntityType: block_content +bundle: platform_intro +mode: default +content: + field_text_block: + type: text_default + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.comment.comment.activity.yml b/drupal/config/sync/core.entity_view_display.comment.comment.activity.yml new file mode 100644 index 0000000..c44c3d0 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.comment.comment.activity.yml @@ -0,0 +1,38 @@ +uuid: 70b083c1-4cdd-46a6-973a-22f8a044f10e +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - core.entity_view_mode.comment.activity + - field.field.comment.comment.field_comment_body + - field.field.comment.comment.field_comment_files + module: + - text +_core: + default_config_hash: JfWJ_0jsxBNlhVM_DrEYubX0YBWRKwgdVmX-BgzXSpw +id: comment.comment.activity +targetEntityType: comment +bundle: comment +mode: activity +content: + field_comment_body: + weight: 0 + label: above + settings: { } + third_party_settings: { } + type: text_default + region: content + like_and_dislike: + weight: 2 + settings: { } + third_party_settings: { } + region: content + links: + weight: 1 + settings: { } + third_party_settings: { } + region: content +hidden: + field_comment_files: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.comment.comment.activity_comment.yml b/drupal/config/sync/core.entity_view_display.comment.comment.activity_comment.yml new file mode 100644 index 0000000..8012586 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.comment.comment.activity_comment.yml @@ -0,0 +1,39 @@ +uuid: 020322a2-a8b5-4579-b75a-2141155e70d7 +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - core.entity_view_mode.comment.activity_comment + - field.field.comment.comment.field_comment_body + - field.field.comment.comment.field_comment_files + module: + - text +_core: + default_config_hash: zUg1Ds_GEAyGhNHBKKndlcggMrgMkAZikhz-kIOkKzk +id: comment.comment.activity_comment +targetEntityType: comment +bundle: comment +mode: activity_comment +content: + field_comment_body: + weight: 0 + label: hidden + settings: + trim_length: 300 + third_party_settings: { } + type: text_trimmed + region: content + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + links: + weight: 1 + region: content + settings: { } + third_party_settings: { } +hidden: + field_comment_files: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.comment.comment.default.yml b/drupal/config/sync/core.entity_view_display.comment.comment.default.yml new file mode 100644 index 0000000..cda758b --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.comment.comment.default.yml @@ -0,0 +1,37 @@ +uuid: bc28a088-5052-4a16-be2a-a33cc584f5ba +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.field.comment.comment.field_comment_body + - field.field.comment.comment.field_comment_files + module: + - text +_core: + default_config_hash: TRiNIOLp1fn8y1PUIxc4Gp3igg4d-CuPU2a5nzHE9eo +id: comment.comment.default +targetEntityType: comment +bundle: comment +mode: default +content: + field_comment_body: + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + type: text_default + region: content + like_and_dislike: + weight: 3 + settings: { } + third_party_settings: { } + region: content + links: + weight: 2 + settings: { } + third_party_settings: { } + region: content +hidden: + field_comment_files: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.comment.post_comment.default.yml b/drupal/config/sync/core.entity_view_display.comment.post_comment.default.yml new file mode 100644 index 0000000..472eb01 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.comment.post_comment.default.yml @@ -0,0 +1,35 @@ +uuid: 44ca9b81-e136-441c-915e-ca0556951550 +langcode: en +status: true +dependencies: + config: + - comment.type.post_comment + - field.field.comment.post_comment.field_comment_body + module: + - text +_core: + default_config_hash: NANhQIZe6YsNWEd9vP0qi1gObNJFxlpOSBo5Y6DUo10 +id: comment.post_comment.default +targetEntityType: comment +bundle: post_comment +mode: default +content: + field_comment_body: + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + type: text_default + region: content + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + links: + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.event_enrollment.event_enrollment.default.yml b/drupal/config/sync/core.entity_view_display.event_enrollment.event_enrollment.default.yml new file mode 100644 index 0000000..5830e35 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.event_enrollment.event_enrollment.default.yml @@ -0,0 +1,58 @@ +uuid: 48840351-1ed6-41cb-8a21-5a46734374c4 +langcode: en +status: true +dependencies: + config: + - field.field.event_enrollment.event_enrollment.field_account + - field.field.event_enrollment.event_enrollment.field_email + - field.field.event_enrollment.event_enrollment.field_enrollment_status + - field.field.event_enrollment.event_enrollment.field_event + - field.field.event_enrollment.event_enrollment.field_request_message + - field.field.event_enrollment.event_enrollment.field_request_or_invite_status + module: + - options + - social_event + - user +_core: + default_config_hash: uGHIGQBfJTvsxIXE7F9BxubYqW4oGit-jjHrvOHsTXQ +id: event_enrollment.event_enrollment.default +targetEntityType: event_enrollment +bundle: event_enrollment +mode: default +content: + field_enrollment_status: + weight: 2 + label: above + settings: { } + third_party_settings: { } + type: list_default + region: content + field_event: + weight: 1 + label: above + settings: + link: true + third_party_settings: { } + type: entity_reference_label + region: content + name: + label: above + type: string + weight: -4 + settings: + link_to_entity: false + third_party_settings: { } + region: content + user_id: + label: hidden + type: author + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + field_account: true + field_email: true + field_request_message: true + field_request_or_invite_status: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.font.font.default.yml b/drupal/config/sync/core.entity_view_display.font.font.default.yml new file mode 100644 index 0000000..4865d43 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.font.font.default.yml @@ -0,0 +1,49 @@ +uuid: 608e1c7e-5f72-4e13-8dc2-46d9778d300f +langcode: en +status: true +dependencies: + config: + - field.field.font.font.field_fallback + - field.field.font.font.field_fonts + module: + - file + - options + - social_font + - user +_core: + default_config_hash: 1NuPL26R5zoBZ-vVhP-fjP5_78rD48oGQ-F6URLmVMc +id: font.font.default +targetEntityType: font +bundle: font +mode: default +content: + field_fallback: + weight: 2 + label: above + settings: { } + third_party_settings: { } + type: list_default + region: content + field_fonts: + weight: 1 + label: above + settings: { } + third_party_settings: { } + type: file_default + region: content + name: + label: above + type: string + weight: -4 + settings: + link_to_entity: false + third_party_settings: { } + region: content + user_id: + label: hidden + type: author + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: { } diff --git a/drupal/config/sync/core.entity_view_display.group.closed_group.default.yml b/drupal/config/sync/core.entity_view_display.group.closed_group.default.yml new file mode 100644 index 0000000..cfb4068 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.closed_group.default.yml @@ -0,0 +1,39 @@ +uuid: 36412c26-5da0-4b2a-b2a5-b7c1bbe26031 +langcode: en +status: true +dependencies: + config: + - field.field.group.closed_group.field_group_address + - field.field.group.closed_group.field_group_description + - field.field.group.closed_group.field_group_image + - field.field.group.closed_group.field_group_location + - group.type.closed_group +_core: + default_config_hash: h1_JVWOyQwrVZyaJnQckehiP27z0T2dEwaun8wXTITA +id: group.closed_group.default +targetEntityType: group +bundle: closed_group +mode: default +content: + field_group_description: + type: basic_string + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_location: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.closed_group.hero.yml b/drupal/config/sync/core.entity_view_display.group.closed_group.hero.yml new file mode 100644 index 0000000..4d9500f --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.closed_group.hero.yml @@ -0,0 +1,65 @@ +uuid: 9268d2dc-2e06-4418-975f-13c155ce3ff8 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.hero + - field.field.group.closed_group.field_group_address + - field.field.group.closed_group.field_group_description + - field.field.group.closed_group.field_group_image + - field.field.group.closed_group.field_group_location + - group.type.closed_group + - image.style.social_xx_large + module: + - address + - image +_core: + default_config_hash: bhItMh0HIk7GTXwrjf0HD3Yv4Da6SaziRVBe6RP0e0E +id: group.closed_group.hero +targetEntityType: group +bundle: closed_group +mode: hero +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_description: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.closed_group.small_teaser.yml b/drupal/config/sync/core.entity_view_display.group.closed_group.small_teaser.yml new file mode 100644 index 0000000..ca6a059 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.closed_group.small_teaser.yml @@ -0,0 +1,47 @@ +uuid: 9975415f-da72-4e2b-b8db-3de2910df5ed +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.small_teaser + - field.field.group.closed_group.field_group_address + - field.field.group.closed_group.field_group_description + - field.field.group.closed_group.field_group_image + - field.field.group.closed_group.field_group_location + - group.type.closed_group + - image.style.social_medium + module: + - image +_core: + default_config_hash: eUl-1WYD4nrL2ICCJwBJOde1cIENlx0aox43lSUjebg +id: group.closed_group.small_teaser +targetEntityType: group +bundle: closed_group +mode: small_teaser +content: + field_group_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: { } + label: + label: hidden + type: string + weight: 1 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_location: true + flag_mute_group_notifications: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.closed_group.stream.yml b/drupal/config/sync/core.entity_view_display.group.closed_group.stream.yml new file mode 100644 index 0000000..539ab7d --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.closed_group.stream.yml @@ -0,0 +1,29 @@ +uuid: 7ea03db8-cbf0-4173-85cd-0b883c09f23c +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.stream + - field.field.group.closed_group.field_group_address + - field.field.group.closed_group.field_group_description + - field.field.group.closed_group.field_group_image + - field.field.group.closed_group.field_group_location + - group.type.closed_group +_core: + default_config_hash: oVBJjo_sUX4HL8DEdSKPXpokowrJL2bdOufgI0Me70s +id: group.closed_group.stream +targetEntityType: group +bundle: closed_group +mode: stream +content: { } +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_location: true + flag_mute_group_notifications: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.closed_group.teaser.yml b/drupal/config/sync/core.entity_view_display.group.closed_group.teaser.yml new file mode 100644 index 0000000..b5b1988 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.closed_group.teaser.yml @@ -0,0 +1,68 @@ +uuid: 0dea3747-1a4f-48da-aac9-7a9292d92768 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.teaser + - field.field.group.closed_group.field_group_address + - field.field.group.closed_group.field_group_description + - field.field.group.closed_group.field_group_image + - field.field.group.closed_group.field_group_location + - group.type.closed_group + - image.style.social_x_large + module: + - address + - image +_core: + default_config_hash: xydho0ILXc6_rDjbhnRnd0GNeuKC_qaIz70aTN-ZeOk +id: group.closed_group.teaser +targetEntityType: group +bundle: closed_group +mode: teaser +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_description: + type: basic_string + weight: 2 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_address: true + flag_mute_group_notifications: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.flexible_group.default.yml b/drupal/config/sync/core.entity_view_display.group.flexible_group.default.yml new file mode 100644 index 0000000..589d263 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.flexible_group.default.yml @@ -0,0 +1,72 @@ +uuid: 8b1fa3ec-f2eb-47ca-a31e-ae0dbcbadaa1 +langcode: en +status: true +dependencies: + config: + - field.field.group.flexible_group.field_flexible_group_visibility + - field.field.group.flexible_group.field_group_address + - field.field.group.flexible_group.field_group_allowed_join_method + - field.field.group.flexible_group.field_group_allowed_visibility + - field.field.group.flexible_group.field_group_description + - field.field.group.flexible_group.field_group_image + - field.field.group.flexible_group.field_group_invite_by_member + - field.field.group.flexible_group.field_group_location + - field.field.group.flexible_group.field_group_posts_enabled + - field.field.group.flexible_group.field_group_type + - group.type.flexible_group + module: + - options +_core: + default_config_hash: 5ztsT5ELM-3nHO1Tu6Aw2JlFzK42SZv7-hLG-PeryP4 +id: group.flexible_group.default +targetEntityType: group +bundle: flexible_group +mode: default +content: + field_group_allowed_join_method: + weight: 2 + label: above + settings: { } + third_party_settings: { } + type: list_default + region: content + field_group_allowed_visibility: + weight: 1 + label: above + settings: { } + third_party_settings: { } + type: list_default + region: content + field_group_description: + type: basic_string + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_type: + weight: 3 + label: above + settings: + link: true + third_party_settings: { } + type: entity_reference_label + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: + changed: true + created: true + field_flexible_group_visibility: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_invite_by_member: true + field_group_location: true + field_group_posts_enabled: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.flexible_group.hero.yml b/drupal/config/sync/core.entity_view_display.group.flexible_group.hero.yml new file mode 100644 index 0000000..5c6a701 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.flexible_group.hero.yml @@ -0,0 +1,77 @@ +uuid: c015d083-24aa-4642-a0c1-8ae865b44ab6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.hero + - field.field.group.flexible_group.field_flexible_group_visibility + - field.field.group.flexible_group.field_group_address + - field.field.group.flexible_group.field_group_allowed_join_method + - field.field.group.flexible_group.field_group_allowed_visibility + - field.field.group.flexible_group.field_group_description + - field.field.group.flexible_group.field_group_image + - field.field.group.flexible_group.field_group_invite_by_member + - field.field.group.flexible_group.field_group_location + - field.field.group.flexible_group.field_group_posts_enabled + - field.field.group.flexible_group.field_group_type + - group.type.flexible_group + - image.style.social_xx_large + module: + - address + - image +_core: + default_config_hash: _Xavb49ohSQnjvd_ayRoECT5VPo0RfpQW9juHEhTGJA +id: group.flexible_group.hero +targetEntityType: group +bundle: flexible_group +mode: hero +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_flexible_group_visibility: true + field_group_allowed_join_method: true + field_group_allowed_visibility: true + field_group_description: true + field_group_invite_by_member: true + field_group_posts_enabled: true + field_group_type: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.flexible_group.small_teaser.yml b/drupal/config/sync/core.entity_view_display.group.flexible_group.small_teaser.yml new file mode 100644 index 0000000..158f54a --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.flexible_group.small_teaser.yml @@ -0,0 +1,59 @@ +uuid: 0de0df71-d5bf-49b8-9354-b61481c1fcc0 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.small_teaser + - field.field.group.flexible_group.field_flexible_group_visibility + - field.field.group.flexible_group.field_group_address + - field.field.group.flexible_group.field_group_allowed_join_method + - field.field.group.flexible_group.field_group_allowed_visibility + - field.field.group.flexible_group.field_group_description + - field.field.group.flexible_group.field_group_image + - field.field.group.flexible_group.field_group_invite_by_member + - field.field.group.flexible_group.field_group_location + - field.field.group.flexible_group.field_group_posts_enabled + - field.field.group.flexible_group.field_group_type + - group.type.flexible_group + - image.style.social_medium + module: + - image +_core: + default_config_hash: _KWLOx4LZ28kgTYnbD8mOcbThs9wuLR1GRN8-ArPxmM +id: group.flexible_group.small_teaser +targetEntityType: group +bundle: flexible_group +mode: small_teaser +content: + field_group_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: { } + label: + label: hidden + type: string + weight: 1 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_flexible_group_visibility: true + field_group_address: true + field_group_allowed_join_method: true + field_group_allowed_visibility: true + field_group_description: true + field_group_invite_by_member: true + field_group_location: true + field_group_posts_enabled: true + field_group_type: true + flag_mute_group_notifications: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.flexible_group.stream.yml b/drupal/config/sync/core.entity_view_display.group.flexible_group.stream.yml new file mode 100644 index 0000000..085d893 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.flexible_group.stream.yml @@ -0,0 +1,41 @@ +uuid: c45b859e-f17b-45f7-9049-f46c01750220 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.stream + - field.field.group.flexible_group.field_flexible_group_visibility + - field.field.group.flexible_group.field_group_address + - field.field.group.flexible_group.field_group_allowed_join_method + - field.field.group.flexible_group.field_group_allowed_visibility + - field.field.group.flexible_group.field_group_description + - field.field.group.flexible_group.field_group_image + - field.field.group.flexible_group.field_group_invite_by_member + - field.field.group.flexible_group.field_group_location + - field.field.group.flexible_group.field_group_posts_enabled + - field.field.group.flexible_group.field_group_type + - group.type.flexible_group +_core: + default_config_hash: ZP8Z1udUY-WgLoVYc5gCsBKEg4UyTcFFrirTaRB0y-Q +id: group.flexible_group.stream +targetEntityType: group +bundle: flexible_group +mode: stream +content: { } +hidden: + changed: true + created: true + field_flexible_group_visibility: true + field_group_address: true + field_group_allowed_join_method: true + field_group_allowed_visibility: true + field_group_description: true + field_group_image: true + field_group_invite_by_member: true + field_group_location: true + field_group_posts_enabled: true + field_group_type: true + flag_mute_group_notifications: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.flexible_group.teaser.yml b/drupal/config/sync/core.entity_view_display.group.flexible_group.teaser.yml new file mode 100644 index 0000000..b6f081e --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.flexible_group.teaser.yml @@ -0,0 +1,80 @@ +uuid: 444d26f7-879e-411f-8ad5-9858de41089e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.teaser + - field.field.group.flexible_group.field_flexible_group_visibility + - field.field.group.flexible_group.field_group_address + - field.field.group.flexible_group.field_group_allowed_join_method + - field.field.group.flexible_group.field_group_allowed_visibility + - field.field.group.flexible_group.field_group_description + - field.field.group.flexible_group.field_group_image + - field.field.group.flexible_group.field_group_invite_by_member + - field.field.group.flexible_group.field_group_location + - field.field.group.flexible_group.field_group_posts_enabled + - field.field.group.flexible_group.field_group_type + - group.type.flexible_group + - image.style.social_x_large + module: + - address + - image +_core: + default_config_hash: IbpBAdIMRfnpqHKv_QMXCNdd3GKItFQm6ZXFreBilXw +id: group.flexible_group.teaser +targetEntityType: group +bundle: flexible_group +mode: teaser +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_description: + type: basic_string + weight: 2 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_flexible_group_visibility: true + field_group_address: true + field_group_allowed_join_method: true + field_group_allowed_visibility: true + field_group_invite_by_member: true + field_group_posts_enabled: true + field_group_type: true + flag_mute_group_notifications: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.open_group.default.yml b/drupal/config/sync/core.entity_view_display.group.open_group.default.yml new file mode 100644 index 0000000..7bfcddb --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.open_group.default.yml @@ -0,0 +1,39 @@ +uuid: d717c000-730b-43c2-bccd-8199ce483aa6 +langcode: en +status: true +dependencies: + config: + - field.field.group.open_group.field_group_address + - field.field.group.open_group.field_group_description + - field.field.group.open_group.field_group_image + - field.field.group.open_group.field_group_location + - group.type.open_group +_core: + default_config_hash: VacC9u3QAh6sOVlejtpjx0ltY8ec0x0F4TyKLDWlHPQ +id: group.open_group.default +targetEntityType: group +bundle: open_group +mode: default +content: + field_group_description: + type: basic_string + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_location: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.open_group.hero.yml b/drupal/config/sync/core.entity_view_display.group.open_group.hero.yml new file mode 100644 index 0000000..4c446c7 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.open_group.hero.yml @@ -0,0 +1,65 @@ +uuid: 70f971bd-80aa-4351-a1a4-a1d1263a5a43 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.hero + - field.field.group.open_group.field_group_address + - field.field.group.open_group.field_group_description + - field.field.group.open_group.field_group_image + - field.field.group.open_group.field_group_location + - group.type.open_group + - image.style.social_xx_large + module: + - address + - image +_core: + default_config_hash: V5KnVEMhtUQ-cPiIdTRhhoRE0VVMvDhm2ybxJ2ra2Is +id: group.open_group.hero +targetEntityType: group +bundle: open_group +mode: hero +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_description: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.open_group.small_teaser.yml b/drupal/config/sync/core.entity_view_display.group.open_group.small_teaser.yml new file mode 100644 index 0000000..4ac69a5 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.open_group.small_teaser.yml @@ -0,0 +1,48 @@ +uuid: e68633b6-65de-4a1e-bb0e-b196c34d575b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.small_teaser + - field.field.group.open_group.field_group_address + - field.field.group.open_group.field_group_description + - field.field.group.open_group.field_group_image + - field.field.group.open_group.field_group_location + - group.type.open_group + - image.style.social_medium + module: + - image +_core: + default_config_hash: TXKXk4kvVlCmphTWijhWfSKrlqhAWOqtaUHo9-BXWDk +id: group.open_group.small_teaser +targetEntityType: group +bundle: open_group +mode: small_teaser +content: + field_group_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: { } + label: + label: hidden + type: string + weight: 1 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_location: true + flag_mute_group_notifications: true + search_api_excerpt: true + social_tagging: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.open_group.stream.yml b/drupal/config/sync/core.entity_view_display.group.open_group.stream.yml new file mode 100644 index 0000000..9303b8d --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.open_group.stream.yml @@ -0,0 +1,29 @@ +uuid: 7ff9403c-c6cb-47f4-b420-4251173080ee +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.stream + - field.field.group.open_group.field_group_address + - field.field.group.open_group.field_group_description + - field.field.group.open_group.field_group_image + - field.field.group.open_group.field_group_location + - group.type.open_group +_core: + default_config_hash: Q4Un_yGSCj3p-ncJRBsUaj8zEep4bz041RznmmDCspw +id: group.open_group.stream +targetEntityType: group +bundle: open_group +mode: stream +content: { } +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_location: true + flag_mute_group_notifications: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.open_group.teaser.yml b/drupal/config/sync/core.entity_view_display.group.open_group.teaser.yml new file mode 100644 index 0000000..7bf7211 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.open_group.teaser.yml @@ -0,0 +1,68 @@ +uuid: 42eb1b79-70a4-43ed-845c-128783503cef +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.teaser + - field.field.group.open_group.field_group_address + - field.field.group.open_group.field_group_description + - field.field.group.open_group.field_group_image + - field.field.group.open_group.field_group_location + - group.type.open_group + - image.style.social_x_large + module: + - address + - image +_core: + default_config_hash: 1mTawTqMH9gghyAaTWC9h0lI9JKoEQL6fe6ACQ-RjKA +id: group.open_group.teaser +targetEntityType: group +bundle: open_group +mode: teaser +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_description: + type: basic_string + weight: 2 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_address: true + flag_mute_group_notifications: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.public_group.default.yml b/drupal/config/sync/core.entity_view_display.group.public_group.default.yml new file mode 100644 index 0000000..4a002cb --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.public_group.default.yml @@ -0,0 +1,39 @@ +uuid: b6097c7b-2096-4928-a2a8-9d1c4a399554 +langcode: en +status: true +dependencies: + config: + - field.field.group.public_group.field_group_address + - field.field.group.public_group.field_group_description + - field.field.group.public_group.field_group_image + - field.field.group.public_group.field_group_location + - group.type.public_group +_core: + default_config_hash: 7KpjQ-aF0G2YCTaZPAKT4cY2shaJFU6BRugFEtUpgQU +id: group.public_group.default +targetEntityType: group +bundle: public_group +mode: default +content: + field_group_description: + type: basic_string + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_location: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.public_group.hero.yml b/drupal/config/sync/core.entity_view_display.group.public_group.hero.yml new file mode 100644 index 0000000..deb9b3c --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.public_group.hero.yml @@ -0,0 +1,65 @@ +uuid: fc96b223-1266-463e-b72c-a10fe54f1c3b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.hero + - field.field.group.public_group.field_group_address + - field.field.group.public_group.field_group_description + - field.field.group.public_group.field_group_image + - field.field.group.public_group.field_group_location + - group.type.public_group + - image.style.social_xx_large + module: + - address + - image +_core: + default_config_hash: wFnklPmYrvXAOiRcgOt_LjX20PIbj2tvJJ15ZSGqUn8 +id: group.public_group.hero +targetEntityType: group +bundle: public_group +mode: hero +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_mute_group_notifications: + weight: 10 + region: content + settings: { } + third_party_settings: { } + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_description: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.public_group.small_teaser.yml b/drupal/config/sync/core.entity_view_display.group.public_group.small_teaser.yml new file mode 100644 index 0000000..598f695 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.public_group.small_teaser.yml @@ -0,0 +1,48 @@ +uuid: c4c4a5f2-30e3-458e-91a8-0427c0996cca +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.small_teaser + - field.field.group.public_group.field_group_address + - field.field.group.public_group.field_group_description + - field.field.group.public_group.field_group_image + - field.field.group.public_group.field_group_location + - group.type.public_group + - image.style.social_medium + module: + - image +_core: + default_config_hash: VoFSadM9BnEoL6iw0Pu-PKKHUQH3oMfqVUaJImHQw-8 +id: group.public_group.small_teaser +targetEntityType: group +bundle: public_group +mode: small_teaser +content: + field_group_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: { } + label: + label: hidden + type: string + weight: 1 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_location: true + flag_mute_group_notifications: true + search_api_excerpt: true + social_tagging: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.public_group.stream.yml b/drupal/config/sync/core.entity_view_display.group.public_group.stream.yml new file mode 100644 index 0000000..0789808 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.public_group.stream.yml @@ -0,0 +1,29 @@ +uuid: 4ed13ec1-36ef-4370-aec5-aa2e7e71e033 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.stream + - field.field.group.public_group.field_group_address + - field.field.group.public_group.field_group_description + - field.field.group.public_group.field_group_image + - field.field.group.public_group.field_group_location + - group.type.public_group +_core: + default_config_hash: ByJn4BVceEzq2Nv1REpF9JQJwxK6L81JvkiK9bcvsiQ +id: group.public_group.stream +targetEntityType: group +bundle: public_group +mode: stream +content: { } +hidden: + changed: true + created: true + field_group_address: true + field_group_description: true + field_group_image: true + field_group_location: true + flag_mute_group_notifications: true + label: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group.public_group.teaser.yml b/drupal/config/sync/core.entity_view_display.group.public_group.teaser.yml new file mode 100644 index 0000000..467acdc --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group.public_group.teaser.yml @@ -0,0 +1,68 @@ +uuid: 94f8c393-34df-45b9-9cbd-b535a0542b6b +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group.teaser + - field.field.group.public_group.field_group_address + - field.field.group.public_group.field_group_description + - field.field.group.public_group.field_group_image + - field.field.group.public_group.field_group_location + - group.type.public_group + - image.style.social_x_large + module: + - address + - image +_core: + default_config_hash: ng7bCDQ0ssXLs9NWc8-DR1SyYChY_2V0vh5mP2k4PcI +id: group.public_group.teaser +targetEntityType: group +bundle: public_group +mode: teaser +content: + field_group_address: + type: address_plain + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_description: + type: basic_string + weight: 2 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_group_image: + type: image + weight: 1 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_group_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + label: + label: hidden + type: string + weight: 0 + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + changed: true + created: true + field_group_address: true + flag_mute_group_notifications: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_invitation.default.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_invitation.default.yml new file mode 100644 index 0000000..4e53256 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_invitation.default.yml @@ -0,0 +1,42 @@ +uuid: 20e47666-2357-43f2-b565-d826f8d2fabc +langcode: en +status: true +dependencies: + config: + - field.field.group_content.closed_group-group_invitation.group_roles + - field.field.group_content.closed_group-group_invitation.invitation_status + - field.field.group_content.closed_group-group_invitation.invitee_mail + - group.content_type.closed_group-group_invitation +id: group_content.closed_group-group_invitation.default +targetEntityType: group_content +bundle: closed_group-group_invitation +mode: default +content: + group_roles: + label: above + type: entity_reference_label + settings: + link: false + weight: -4 + third_party_settings: { } + region: content + invitation_status: + type: number_integer + weight: -2 + label: above + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: { } + region: content + invitee_mail: + type: email_mailto + weight: -3 + label: above + settings: { } + third_party_settings: { } + region: content +hidden: + entity_id: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_membership.default.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_membership.default.yml new file mode 100644 index 0000000..a1b265c --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_membership.default.yml @@ -0,0 +1,25 @@ +uuid: 2d6ffdb5-15ee-43d9-bc07-62b1cc6e1c48 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.closed_group-group_membership.group_roles + - group.content_type.closed_group-group_membership +_core: + default_config_hash: JvPWmhPxCZqE_JAaXc1jXANcZtzQOeudVFjv9GFePLk +id: group_content.closed_group-group_membership.default +targetEntityType: group_content +bundle: closed_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_entity_id + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: + group_roles: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.activity.yml new file mode 100644 index 0000000..6a552d2 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.activity.yml @@ -0,0 +1,26 @@ +uuid: c59360d2-e2c7-42a5-a98a-f216cdf270c3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.closed_group-group_node-event +_core: + default_config_hash: '-8IPwFvOsTu553iUcCqMGsGhuvcDFaYwTQiBQWKK7Po' +id: group_content.closed_group-group_node-event.activity +targetEntityType: group_content +bundle: closed_group-group_node-event +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.default.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.default.yml new file mode 100644 index 0000000..7001d70 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.default.yml @@ -0,0 +1,25 @@ +uuid: 41516d1c-64e3-4863-b7df-b20fc58d6a4c +langcode: en +status: true +dependencies: + config: + - group.content_type.closed_group-group_node-event +_core: + default_config_hash: 7N2nmZjtJWnzknwB0_r7apApsb7HgzBQMwHPQ8sLy3Q +id: group_content.closed_group-group_node-event.default +targetEntityType: group_content +bundle: closed_group-group_node-event +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.teaser.yml new file mode 100644 index 0000000..43b5cb4 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-event.teaser.yml @@ -0,0 +1,26 @@ +uuid: 2b903789-437c-4176-acce-22630dcb1093 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.closed_group-group_node-event +_core: + default_config_hash: IGnChFYt_HY5ECLnnLgnn4LL8h3X5alAE0wGB_NZf8k +id: group_content.closed_group-group_node-event.teaser +targetEntityType: group_content +bundle: closed_group-group_node-event +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.activity.yml new file mode 100644 index 0000000..35e4570 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.activity.yml @@ -0,0 +1,26 @@ +uuid: 4269e23f-18ca-4950-a9c4-eed90eb54ce6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.closed_group-group_node-topic +_core: + default_config_hash: kWmCUZE3pKeKNI-bWh-Iwn8Na2kMoaAufGPnhLl4N34 +id: group_content.closed_group-group_node-topic.activity +targetEntityType: group_content +bundle: closed_group-group_node-topic +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.default.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.default.yml new file mode 100644 index 0000000..c2c91f3 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.default.yml @@ -0,0 +1,25 @@ +uuid: fbc08564-6975-437f-8806-25fccba3d8b3 +langcode: en +status: true +dependencies: + config: + - group.content_type.closed_group-group_node-topic +_core: + default_config_hash: R9o3Tro06F5Sn837Ok2tgHiIOTIWBINMSM6tf7P1fzQ +id: group_content.closed_group-group_node-topic.default +targetEntityType: group_content +bundle: closed_group-group_node-topic +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.teaser.yml new file mode 100644 index 0000000..c77c1ee --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.closed_group-group_node-topic.teaser.yml @@ -0,0 +1,26 @@ +uuid: 94e54a3c-2e70-443e-aa7c-daeb4165c323 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.closed_group-group_node-topic +_core: + default_config_hash: mLzua4CIQxW1etCFXwxLW_AHJkiJNWFG8C8rCSSq8b0 +id: group_content.closed_group-group_node-topic.teaser +targetEntityType: group_content +bundle: closed_group-group_node-topic +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_invitation.default.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_invitation.default.yml new file mode 100644 index 0000000..356e2eb --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_invitation.default.yml @@ -0,0 +1,42 @@ +uuid: fb16d502-1565-455a-b318-dbef39ecee1a +langcode: en +status: true +dependencies: + config: + - field.field.group_content.flexible_group-group_invitation.group_roles + - field.field.group_content.flexible_group-group_invitation.invitation_status + - field.field.group_content.flexible_group-group_invitation.invitee_mail + - group.content_type.flexible_group-group_invitation +id: group_content.flexible_group-group_invitation.default +targetEntityType: group_content +bundle: flexible_group-group_invitation +mode: default +content: + group_roles: + label: above + type: entity_reference_label + settings: + link: false + weight: -4 + third_party_settings: { } + region: content + invitation_status: + type: number_integer + weight: -2 + label: above + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: { } + region: content + invitee_mail: + type: email_mailto + weight: -3 + label: above + settings: { } + third_party_settings: { } + region: content +hidden: + entity_id: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_membership.default.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_membership.default.yml new file mode 100644 index 0000000..17d6125 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_membership.default.yml @@ -0,0 +1,25 @@ +uuid: fc3dba30-e635-408c-a3fd-3c77a7659767 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.flexible_group-group_membership.group_roles + - group.content_type.flexible_group-group_membership +_core: + default_config_hash: _att_w7tm8SViQriauACBKmegluSQSyAd_J0i3enmfo +id: group_content.flexible_group-group_membership.default +targetEntityType: group_content +bundle: flexible_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_entity_id + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: + group_roles: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.activity.yml new file mode 100644 index 0000000..e8031cd --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.activity.yml @@ -0,0 +1,26 @@ +uuid: fa0b7c8b-9c8a-491f-854d-a71d20d10c0e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.flexible_group-group_node-event +_core: + default_config_hash: OQmi-kgKeBKcrkVTwacWt5srW2WOunvoMdotBsZON0M +id: group_content.flexible_group-group_node-event.activity +targetEntityType: group_content +bundle: flexible_group-group_node-event +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.default.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.default.yml new file mode 100644 index 0000000..498b335 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.default.yml @@ -0,0 +1,25 @@ +uuid: a366460b-0e37-4ecf-8875-31648d243e78 +langcode: en +status: true +dependencies: + config: + - group.content_type.flexible_group-group_node-event +_core: + default_config_hash: cJYpTFgnHg5XVJx2KtlXwU2EFunqB4ISJJjyMHFEwHE +id: group_content.flexible_group-group_node-event.default +targetEntityType: group_content +bundle: flexible_group-group_node-event +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.teaser.yml new file mode 100644 index 0000000..c988be2 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-event.teaser.yml @@ -0,0 +1,26 @@ +uuid: 53997bed-34f9-4550-8eb4-3e282f83b206 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.flexible_group-group_node-event +_core: + default_config_hash: TXAQ3iXef0TdHdRAdYM8LObpadYFrjxU9_8oVttnucI +id: group_content.flexible_group-group_node-event.teaser +targetEntityType: group_content +bundle: flexible_group-group_node-event +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.activity.yml new file mode 100644 index 0000000..c234305 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.activity.yml @@ -0,0 +1,26 @@ +uuid: e6b4595c-dba1-4fec-a487-022d58c8c65d +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.flexible_group-group_node-topic +_core: + default_config_hash: gYT6LzNWTQ1W7t0dV9cp-RfHRyVDaR8eBBTpiQCDE8Y +id: group_content.flexible_group-group_node-topic.activity +targetEntityType: group_content +bundle: flexible_group-group_node-topic +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.default.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.default.yml new file mode 100644 index 0000000..1410350 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.default.yml @@ -0,0 +1,25 @@ +uuid: d494cdc4-3b52-4ee5-bfc3-390e4686e282 +langcode: en +status: true +dependencies: + config: + - group.content_type.flexible_group-group_node-topic +_core: + default_config_hash: mw8q9aOHJfHGZd-yb6_vUVp7dJbJu27UA0QCvYfCOd0 +id: group_content.flexible_group-group_node-topic.default +targetEntityType: group_content +bundle: flexible_group-group_node-topic +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.teaser.yml new file mode 100644 index 0000000..46f386d --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.flexible_group-group_node-topic.teaser.yml @@ -0,0 +1,26 @@ +uuid: 491ce1ce-bca2-4e16-8454-1811d16f0eee +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.flexible_group-group_node-topic +_core: + default_config_hash: ntHDr3J7xLCXHRO_ph15VtnlCPQl11LbpwwhXmOZo2k +id: group_content.flexible_group-group_node-topic.teaser +targetEntityType: group_content +bundle: flexible_group-group_node-topic +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.group_content_type_7fcb76fdf61a9.default.yml b/drupal/config/sync/core.entity_view_display.group_content.group_content_type_7fcb76fdf61a9.default.yml new file mode 100644 index 0000000..6ab002e --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.group_content_type_7fcb76fdf61a9.default.yml @@ -0,0 +1,42 @@ +uuid: 6f81078b-36a1-4436-9fdd-b8040a706081 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.group_content_type_7fcb76fdf61a9.field_grequest_message + - field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_status + - field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_updated_by + - group.content_type.group_content_type_7fcb76fdf61a9 + enforced: + module: + - social_group_request + - social_group_flexible_group +_core: + default_config_hash: lQUiLlKiExo2ti2M_6BOan7V9_YlMDAsPJdJMW-AUnI +id: group_content.group_content_type_7fcb76fdf61a9.default +targetEntityType: group_content +bundle: group_content_type_7fcb76fdf61a9 +mode: default +content: + grequest_status: + type: number_integer + weight: -4 + label: above + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: { } + region: content + grequest_updated_by: + label: above + type: entity_reference_label + settings: + link: true + weight: -3 + third_party_settings: { } + region: content +hidden: + entity_id: true + field_grequest_message: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.group_content_type_c8bae2527294c.default.yml b/drupal/config/sync/core.entity_view_display.group_content.group_content_type_c8bae2527294c.default.yml new file mode 100644 index 0000000..abdd491 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.group_content_type_c8bae2527294c.default.yml @@ -0,0 +1,41 @@ +uuid: 66297257-7e1e-4597-98b6-68b64da76a00 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.group_content_type_c8bae2527294c.field_grequest_message + - field.field.group_content.group_content_type_c8bae2527294c.grequest_status + - field.field.group_content.group_content_type_c8bae2527294c.grequest_updated_by + - group.content_type.group_content_type_c8bae2527294c + enforced: + module: + - social_group_request +_core: + default_config_hash: 6iHdWPTZm1JKzyVoaWpybfhuY0jjq_4CxNYGz3EMuns +id: group_content.group_content_type_c8bae2527294c.default +targetEntityType: group_content +bundle: group_content_type_c8bae2527294c +mode: default +content: + grequest_status: + type: number_integer + weight: -4 + label: above + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: { } + region: content + grequest_updated_by: + label: above + type: entity_reference_label + settings: + link: true + weight: -3 + third_party_settings: { } + region: content +hidden: + entity_id: true + field_grequest_message: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_invitation.default.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_invitation.default.yml new file mode 100644 index 0000000..b206f00 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_invitation.default.yml @@ -0,0 +1,42 @@ +uuid: d64eb4c5-8656-4b80-a8e0-bff415dfe026 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.open_group-group_invitation.group_roles + - field.field.group_content.open_group-group_invitation.invitation_status + - field.field.group_content.open_group-group_invitation.invitee_mail + - group.content_type.open_group-group_invitation +id: group_content.open_group-group_invitation.default +targetEntityType: group_content +bundle: open_group-group_invitation +mode: default +content: + group_roles: + label: above + type: entity_reference_label + settings: + link: false + weight: -4 + third_party_settings: { } + region: content + invitation_status: + type: number_integer + weight: -2 + label: above + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: { } + region: content + invitee_mail: + type: email_mailto + weight: -3 + label: above + settings: { } + third_party_settings: { } + region: content +hidden: + entity_id: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_membership.default.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_membership.default.yml new file mode 100644 index 0000000..2f3d65c --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_membership.default.yml @@ -0,0 +1,25 @@ +uuid: 2de455f5-a5d2-4048-ac66-8182d53b4dea +langcode: en +status: true +dependencies: + config: + - field.field.group_content.open_group-group_membership.group_roles + - group.content_type.open_group-group_membership +_core: + default_config_hash: Xrf9eC02dbsoGN2k-T5_ALRLEHesY7Biqjo4lQlvFa4 +id: group_content.open_group-group_membership.default +targetEntityType: group_content +bundle: open_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_entity_id + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: + group_roles: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.activity.yml new file mode 100644 index 0000000..c8ca705 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.activity.yml @@ -0,0 +1,26 @@ +uuid: 75ff4ca0-9520-4b9f-9779-531f206ff729 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.open_group-group_node-event +_core: + default_config_hash: Yxln8O5Gy_xczReTN9ZcnKfgYLicTzsZJemB9zRmt7k +id: group_content.open_group-group_node-event.activity +targetEntityType: group_content +bundle: open_group-group_node-event +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.default.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.default.yml new file mode 100644 index 0000000..83f862a --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.default.yml @@ -0,0 +1,25 @@ +uuid: e1fa1fc5-1119-4a4c-bf75-bb04ed0ecd38 +langcode: en +status: true +dependencies: + config: + - group.content_type.open_group-group_node-event +_core: + default_config_hash: PZr4DpV1iD_bdhzuU5z-qRJrlrUKfDEkaDgqqxVsw08 +id: group_content.open_group-group_node-event.default +targetEntityType: group_content +bundle: open_group-group_node-event +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.teaser.yml new file mode 100644 index 0000000..e1a3b78 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-event.teaser.yml @@ -0,0 +1,26 @@ +uuid: fb1e75d9-2b80-48ea-b6c2-0913fc87789f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.open_group-group_node-event +_core: + default_config_hash: A6YHuZCKCozkmu-liDqpbmzjRCbV7MH_wmRTDkVtCEc +id: group_content.open_group-group_node-event.teaser +targetEntityType: group_content +bundle: open_group-group_node-event +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.activity.yml new file mode 100644 index 0000000..3696230 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.activity.yml @@ -0,0 +1,26 @@ +uuid: a7c98076-db80-483c-afa1-4ec99c4e19b9 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.open_group-group_node-topic +_core: + default_config_hash: ClsRU5scsgxk1Tt9EDnEHUeuRRIcb6aUqhO8Wnxv_Xw +id: group_content.open_group-group_node-topic.activity +targetEntityType: group_content +bundle: open_group-group_node-topic +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.default.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.default.yml new file mode 100644 index 0000000..2a10d2f --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.default.yml @@ -0,0 +1,25 @@ +uuid: 71972e14-19b9-441b-8b78-9d4152fd4854 +langcode: en +status: true +dependencies: + config: + - group.content_type.open_group-group_node-topic +_core: + default_config_hash: TJj4XyxytZvwUyURwj_7A7XCa7LOQadz2yOnTgLVkLs +id: group_content.open_group-group_node-topic.default +targetEntityType: group_content +bundle: open_group-group_node-topic +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.teaser.yml new file mode 100644 index 0000000..7fdd128 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.open_group-group_node-topic.teaser.yml @@ -0,0 +1,26 @@ +uuid: feb25e06-3596-4447-a426-52e92afb2852 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.open_group-group_node-topic +_core: + default_config_hash: LMBFIkJLb9vvrt9p-PYj_zfm-tMEQoQCykpHXUsB0LA +id: group_content.open_group-group_node-topic.teaser +targetEntityType: group_content +bundle: open_group-group_node-topic +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_invitation.default.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_invitation.default.yml new file mode 100644 index 0000000..7a85734 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_invitation.default.yml @@ -0,0 +1,42 @@ +uuid: 7439ad14-f93a-41e5-8f87-c2eb3de553bc +langcode: en +status: true +dependencies: + config: + - field.field.group_content.public_group-group_invitation.group_roles + - field.field.group_content.public_group-group_invitation.invitation_status + - field.field.group_content.public_group-group_invitation.invitee_mail + - group.content_type.public_group-group_invitation +id: group_content.public_group-group_invitation.default +targetEntityType: group_content +bundle: public_group-group_invitation +mode: default +content: + group_roles: + label: above + type: entity_reference_label + settings: + link: false + weight: -4 + third_party_settings: { } + region: content + invitation_status: + type: number_integer + weight: -2 + label: above + settings: + thousand_separator: '' + prefix_suffix: true + third_party_settings: { } + region: content + invitee_mail: + type: email_mailto + weight: -3 + label: above + settings: { } + third_party_settings: { } + region: content +hidden: + entity_id: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_membership.default.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_membership.default.yml new file mode 100644 index 0000000..e7cdbc7 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_membership.default.yml @@ -0,0 +1,25 @@ +uuid: 4a03bc1c-623e-43d5-9d32-79d089ff8855 +langcode: en +status: true +dependencies: + config: + - field.field.group_content.public_group-group_membership.group_roles + - group.content_type.public_group-group_membership +_core: + default_config_hash: 1SRYehZYHIkYG64EWzfeRs1GVnwHDorMmE4QYZnZu78 +id: group_content.public_group-group_membership.default +targetEntityType: group_content +bundle: public_group-group_membership +mode: default +content: + entity_id: + type: entity_reference_entity_id + weight: 0 + label: hidden + settings: { } + third_party_settings: { } + region: content +hidden: + group_roles: true + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.activity.yml new file mode 100644 index 0000000..fcdd205 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.activity.yml @@ -0,0 +1,26 @@ +uuid: d0f72670-8e87-481b-a70a-6cb6cf7975f6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.public_group-group_node-event +_core: + default_config_hash: 39Zex1ocK4ZNoE0a59PuDjuX5Haf90srT6hnhtAoHec +id: group_content.public_group-group_node-event.activity +targetEntityType: group_content +bundle: public_group-group_node-event +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.default.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.default.yml new file mode 100644 index 0000000..ea5a31d --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.default.yml @@ -0,0 +1,25 @@ +uuid: a992e933-a6b7-419b-a2f4-a7d2258e934c +langcode: en +status: true +dependencies: + config: + - group.content_type.public_group-group_node-event +_core: + default_config_hash: JAHPSh1UwR9kNFOx3aWZ3_X5q2xZa5M0fDwtl178M2A +id: group_content.public_group-group_node-event.default +targetEntityType: group_content +bundle: public_group-group_node-event +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.teaser.yml new file mode 100644 index 0000000..672ed8f --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-event.teaser.yml @@ -0,0 +1,26 @@ +uuid: a11c3681-e0a1-4648-a26d-5ac08e9de129 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.public_group-group_node-event +_core: + default_config_hash: olbMZvLrVuGkpKn2pJbnyRRxbs1NUi1cDQzBQjwmzHM +id: group_content.public_group-group_node-event.teaser +targetEntityType: group_content +bundle: public_group-group_node-event +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.activity.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.activity.yml new file mode 100644 index 0000000..65a5c01 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.activity.yml @@ -0,0 +1,26 @@ +uuid: 3838e571-57b5-4399-a789-bf9030579f71 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.activity + - group.content_type.public_group-group_node-topic +_core: + default_config_hash: h_MmONVRHKI-X-bzwd8iTVA6fY1RMH5pKsx1M4gWR9c +id: group_content.public_group-group_node-topic.activity +targetEntityType: group_content +bundle: public_group-group_node-topic +mode: activity +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: activity + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.default.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.default.yml new file mode 100644 index 0000000..682f40e --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.default.yml @@ -0,0 +1,25 @@ +uuid: e84c6892-7c88-427e-9905-d5788afc220c +langcode: en +status: true +dependencies: + config: + - group.content_type.public_group-group_node-topic +_core: + default_config_hash: R9IBZWmuO7f-K10CeMq2nOCf91RYGbqW2YEMD8OdSdg +id: group_content.public_group-group_node-topic.default +targetEntityType: group_content +bundle: public_group-group_node-topic +mode: default +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: default + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.teaser.yml b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.teaser.yml new file mode 100644 index 0000000..ea3de13 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.group_content.public_group-group_node-topic.teaser.yml @@ -0,0 +1,26 @@ +uuid: e7323310-c7fc-4fb6-8dc4-3d7d6fd51c4d +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.group_content.teaser + - group.content_type.public_group-group_node-topic +_core: + default_config_hash: o1c6xUunctYmlr44HJ6SRmJBNDBds90TVFZPANq7je0 +id: group_content.public_group-group_node-topic.teaser +targetEntityType: group_content +bundle: public_group-group_node-topic +mode: teaser +content: + entity_id: + type: entity_reference_entity_view + weight: 0 + label: hidden + settings: + view_mode: teaser + link: false + third_party_settings: { } + region: content +hidden: + search_api_excerpt: true + uid: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.activity.yml b/drupal/config/sync/core.entity_view_display.node.event.activity.yml new file mode 100644 index 0000000..c2b9a62 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.activity.yml @@ -0,0 +1,118 @@ +uuid: 8c27df64-2e10-4ac0-b1cb-4496a878ce9e +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.activity + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_x_large + - node.type.event + module: + - address + - datetime + - image + - social_core + - user +_core: + default_config_hash: uea0pySqgoMsRcdBzRw9Pguy8_pgyxS5e5IbETSuDjk +id: node.event.activity +targetEntityType: node +bundle: event +mode: activity +content: + field_event_address: + type: address_default + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_event_comments: + weight: 6 + label: hidden + settings: + num_comments: 2 + always_show_all_comments: true + third_party_settings: { } + type: comment_node + region: content + field_event_date: + type: datetime_default + weight: 1 + label: hidden + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + region: content + field_event_date_end: + type: datetime_default + weight: 2 + label: above + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + region: content + field_event_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_event_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + groups_type_public_group: + label: above + weight: -5 + region: content + settings: + link: true + third_party_settings: { } + type: entity_reference_label + links: + weight: 5 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_enroll_method: true + field_event_all_day: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_managers: true + field_event_send_invite_by_user: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.activity_comment.yml b/drupal/config/sync/core.entity_view_display.node.event.activity_comment.yml new file mode 100644 index 0000000..c48ad86 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.activity_comment.yml @@ -0,0 +1,109 @@ +uuid: 93db5199-918f-4748-96a0-913ecfe02f3a +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.activity_comment + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_x_large + - node.type.event + module: + - address + - datetime + - image + - user +_core: + default_config_hash: eX4TyF_yROZzFz064I-BCeZrxbsmZHRMJIstcF0aNAE +id: node.event.activity_comment +targetEntityType: node +bundle: event +mode: activity_comment +content: + field_event_address: + type: address_default + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_event_date: + type: datetime_default + weight: 1 + label: hidden + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + region: content + field_event_date_end: + type: datetime_default + weight: 2 + label: hidden + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + region: content + field_event_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_event_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + groups_type_public_group: + label: above + weight: -5 + region: content + settings: + link: true + third_party_settings: { } + type: entity_reference_label + links: + weight: 5 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_enroll_method: true + field_event_all_day: true + field_event_comments: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_managers: true + field_event_send_invite_by_user: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.default.yml b/drupal/config/sync/core.entity_view_display.node.event.default.yml new file mode 100644 index 0000000..8b7d01e --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.default.yml @@ -0,0 +1,115 @@ +uuid: 49a6e3cf-b189-4888-8c2d-97149e889159 +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_file_thumbnails + - node.type.event + module: + - address + - group_core_comments + - social_core + - text + - user +_core: + default_config_hash: sD44OboE6WCy-GXPaQf_88t_2rOBulXhAZqAGkSvAY0 +id: node.event.default +targetEntityType: node +bundle: event +mode: default +content: + body: + label: hidden + type: text_default + weight: 2 + settings: { } + third_party_settings: { } + region: content + field_event_address: + type: address_plain + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_event_comments: + weight: 3 + label: above + settings: + pager_id: 0 + view_mode: default + third_party_settings: { } + type: comment_group_content + region: content + field_event_location: + type: string + weight: 0 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + field_files: + weight: 4 + label: above + settings: + image_style: social_file_thumbnails + image_link: file + third_party_settings: { } + type: file_image_default + region: content + flag_follow_content: + weight: 5 + region: content + settings: { } + third_party_settings: { } + groups_type_public_group: + label: above + weight: -5 + region: content + settings: + link: true + third_party_settings: { } + type: entity_reference_label + like_and_dislike: + weight: 6 + region: content + settings: { } + third_party_settings: { } + links: + weight: 7 + region: content + settings: { } + third_party_settings: { } +hidden: + field_content_visibility: true + field_enroll_method: true + field_event_all_day: true + field_event_date: true + field_event_date_end: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_image: true + field_event_managers: true + field_event_send_invite_by_user: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + private_message_link: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.hero.yml b/drupal/config/sync/core.entity_view_display.node.event.hero.yml new file mode 100644 index 0000000..4621cac --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.hero.yml @@ -0,0 +1,114 @@ +uuid: cf14665e-75d0-4c61-aac8-56673fe50988 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.hero + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_xx_large + - node.type.event + module: + - address + - datetime + - image + - user +_core: + default_config_hash: 91Tm3A2BITsodDl2JxuJ0ioCel4NAF3g0AyTFmt77AE +id: node.event.hero +targetEntityType: node +bundle: event +mode: hero +content: + field_event_address: + type: address_plain + weight: 5 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_event_date: + type: datetime_default + weight: 2 + label: hidden + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + region: content + field_event_date_end: + type: datetime_default + weight: 3 + label: hidden + settings: + timezone_override: '' + format_type: medium + third_party_settings: { } + region: content + field_event_image: + type: image + weight: 7 + region: content + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + field_event_location: + type: string + weight: 4 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_follow_content: + weight: 6 + region: content + settings: { } + third_party_settings: { } + like_and_dislike: + weight: 9 + region: content + settings: { } + third_party_settings: { } + links: + weight: 10 + region: content + settings: { } + third_party_settings: { } + shariff_field: + weight: 8 + region: content + settings: { } + third_party_settings: { } +hidden: + body: true + field_content_visibility: true + field_enroll_method: true + field_event_all_day: true + field_event_comments: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_managers: true + field_event_send_invite_by_user: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + links: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.search_index.yml b/drupal/config/sync/core.entity_view_display.node.event.search_index.yml new file mode 100644 index 0000000..2001454 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.search_index.yml @@ -0,0 +1,80 @@ +uuid: 3589881a-64f7-4d43-89c4-77a085d34047 +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - core.entity_view_mode.node.search_index + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - node.type.event + module: + - comment + - text + - user +_core: + default_config_hash: tTX-07qvZripiAKbkWcrD6jUootkRWagjQccHaPWYfY +id: node.event.search_index +targetEntityType: node +bundle: event +mode: search_index +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_event_comments: + weight: 1 + label: above + settings: + pager_id: 0 + third_party_settings: { } + type: comment_default + region: content + flag_follow_content: + weight: 10 + region: content + groups_type_public_group: + label: above + weight: -5 + region: content + settings: + link: true + third_party_settings: { } + type: entity_reference_label +hidden: + field_content_visibility: true + field_enroll_method: true + field_event_address: true + field_event_all_day: true + field_event_date: true + field_event_date_end: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_image: true + field_event_location: true + field_event_managers: true + field_event_send_invite_by_user: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + like_and_dislike: true + links: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.small_teaser.yml b/drupal/config/sync/core.entity_view_display.node.event.small_teaser.yml new file mode 100644 index 0000000..a875ba1 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.small_teaser.yml @@ -0,0 +1,83 @@ +uuid: 8d54f8f3-5bc8-4d0c-a9ca-de02bdd2ec4f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.small_teaser + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_medium + - node.type.event + module: + - datetime + - image + - user +_core: + default_config_hash: TN5UAZBGBNe4E8EoGYm2yW3ZeKp2hpecPXe-lJDMvM8 +id: node.event.small_teaser +targetEntityType: node +bundle: event +mode: small_teaser +content: + field_event_date: + type: datetime_default + weight: 1 + label: hidden + settings: + timezone_override: '' + format_type: day_month_time + third_party_settings: { } + region: content + field_event_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: { } + flag_follow_content: + weight: 10 + region: content + groups_type_public_group: + label: above + weight: -5 + region: content + settings: + link: true + third_party_settings: { } + type: entity_reference_label +hidden: + body: true + field_content_visibility: true + field_enroll_method: true + field_event_address: true + field_event_all_day: true + field_event_comments: true + field_event_date_end: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_location: true + field_event_managers: true + field_event_send_invite_by_user: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + like_and_dislike: true + links: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.event.teaser.yml b/drupal/config/sync/core.entity_view_display.node.event.teaser.yml new file mode 100644 index 0000000..dd218e7 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.event.teaser.yml @@ -0,0 +1,116 @@ +uuid: b07c968d-a3af-472b-8066-004dc0bb0879 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.event.body + - field.field.node.event.field_content_visibility + - field.field.node.event.field_enroll_method + - field.field.node.event.field_event_address + - field.field.node.event.field_event_all_day + - field.field.node.event.field_event_comments + - field.field.node.event.field_event_date + - field.field.node.event.field_event_date_end + - field.field.node.event.field_event_enroll + - field.field.node.event.field_event_enroll_outside_group + - field.field.node.event.field_event_image + - field.field.node.event.field_event_location + - field.field.node.event.field_event_managers + - field.field.node.event.field_event_send_invite_by_user + - field.field.node.event.field_files + - image.style.social_x_large + - node.type.event + module: + - address + - datetime + - image + - options + - user +_core: + default_config_hash: UQ86GFZwyXUFYEcODc0yGOVUXmUq8GVGPeF5-dldwyE +id: node.event.teaser +targetEntityType: node +bundle: event +mode: teaser +content: + field_content_visibility: + type: list_default + weight: 6 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_event_address: + type: address_default + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_event_date: + type: datetime_default + weight: 1 + label: hidden + settings: + format_type: medium + timezone_override: '' + third_party_settings: { } + region: content + field_event_date_end: + type: datetime_default + weight: 2 + label: hidden + settings: + format_type: medium + timezone_override: '' + third_party_settings: { } + region: content + field_event_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_event_location: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + groups_type_public_group: + label: above + weight: -5 + region: content + settings: + link: true + third_party_settings: { } + type: entity_reference_label + links: + weight: 5 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_enroll_method: true + field_event_all_day: true + field_event_comments: true + field_event_enroll: true + field_event_enroll_outside_group: true + field_event_managers: true + field_event_send_invite_by_user: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.activity.yml b/drupal/config/sync/core.entity_view_display.node.page.activity.yml new file mode 100644 index 0000000..eeaf6f4 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.activity.yml @@ -0,0 +1,57 @@ +uuid: 74ea03ec-8da8-4c9a-b77b-95d2f74be7be +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.activity + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_x_large + - node.type.page + module: + - image + - social_core + - user +_core: + default_config_hash: MOwMLFoE7s630IIuH3ml6JuouPVGMjqKHVehU3-kK-8 +id: node.page.activity +targetEntityType: node +bundle: page +mode: activity +content: + field_page_comments: + weight: 3 + label: above + settings: + num_comments: 2 + always_show_all_comments: false + third_party_settings: { } + type: comment_node + region: content + field_page_image: + type: image + weight: 0 + label: above + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + links: + weight: 2 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_files: true + flag_follow_content: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.activity_comment.yml b/drupal/config/sync/core.entity_view_display.node.page.activity_comment.yml new file mode 100644 index 0000000..c4103d2 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.activity_comment.yml @@ -0,0 +1,48 @@ +uuid: 9b2d6c71-5966-49c3-bffd-3b9269dffad9 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.activity_comment + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_x_large + - node.type.page + module: + - image + - user +_core: + default_config_hash: vNN88EYaSfziM9dykYGOUaM_EzdH6WlkIWmbxwktnJQ +id: node.page.activity_comment +targetEntityType: node +bundle: page +mode: activity_comment +content: + field_page_image: + type: image + weight: 0 + label: above + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + links: + weight: 1 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_files: true + field_page_comments: true + flag_follow_content: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.default.yml b/drupal/config/sync/core.entity_view_display.node.page.default.yml new file mode 100644 index 0000000..d40ff76 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.default.yml @@ -0,0 +1,68 @@ +uuid: 97eb9bcf-ecf3-4302-9556-925e8dbe892b +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_file_thumbnails + - node.type.page + module: + - comment + - social_core + - text + - user +_core: + default_config_hash: dMZRBGoDzsbkGemEXeT4Z4oucG8EyOiU2K3HcHbFyLg +id: node.page.default +targetEntityType: node +bundle: page +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_files: + weight: 1 + label: above + settings: + image_style: social_file_thumbnails + image_link: file + third_party_settings: { } + type: file_image_default + region: content + field_page_comments: + weight: 2 + label: above + settings: + pager_id: 0 + view_mode: default + third_party_settings: { } + type: comment_default + region: content + flag_follow_content: + weight: 10 + region: content + settings: { } + third_party_settings: { } + links: + weight: 11 + region: content + settings: { } + third_party_settings: { } +hidden: + field_content_visibility: true + field_page_image: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.hero.yml b/drupal/config/sync/core.entity_view_display.node.page.hero.yml new file mode 100644 index 0000000..feae4e3 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.hero.yml @@ -0,0 +1,62 @@ +uuid: 6ee99f46-b0ad-43b1-9660-80db2a3b17f7 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.hero + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_xx_large + - node.type.page + module: + - image + - options + - user +_core: + default_config_hash: w_jvvzNPt2_r1WNb33EK0PuQr3cvGex3wIuUfWxzM3k +id: node.page.hero +targetEntityType: node +bundle: page +mode: hero +content: + field_content_visibility: + type: list_default + weight: 2 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_page_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + links: + weight: 1 + region: content + settings: { } + third_party_settings: { } + shariff_field: + weight: 4 + region: content + settings: { } + third_party_settings: { } +hidden: + body: true + field_files: true + field_page_comments: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.search_index.yml b/drupal/config/sync/core.entity_view_display.node.page.search_index.yml new file mode 100644 index 0000000..1912960 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.search_index.yml @@ -0,0 +1,55 @@ +uuid: 3d9ad656-ae34-4d70-9b71-bcdffd8a71b3 +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - core.entity_view_mode.node.search_index + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - node.type.page + module: + - comment + - text + - user +_core: + default_config_hash: StGKT95jqWJol1ViUCv1sFx2UkiJk9V0ODl5JDkDtsQ +id: node.page.search_index +targetEntityType: node +bundle: page +mode: search_index +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_page_comments: + weight: 1 + label: above + settings: + pager_id: 0 + view_mode: default + third_party_settings: { } + type: comment_default + region: content + flag_follow_content: + weight: 2 + region: content + settings: { } + third_party_settings: { } +hidden: + field_content_visibility: true + field_files: true + field_page_image: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + links: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.small_teaser.yml b/drupal/config/sync/core.entity_view_display.node.page.small_teaser.yml new file mode 100644 index 0000000..f7cfe22 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.small_teaser.yml @@ -0,0 +1,51 @@ +uuid: 54153992-168d-4d3e-80a5-9b4f8bf87536 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.small_teaser + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_medium + - node.type.page + module: + - image + - lazy + - user +_core: + default_config_hash: 0QbCRsLnvKsig22fuca7v7YmHpDHRzOxXPX76TG_dqU +id: node.page.small_teaser +targetEntityType: node +bundle: page +mode: small_teaser +content: + field_page_image: + type: image + weight: 4 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: + lazy: + lazy_image: 0 + links: + weight: 100 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_files: true + field_page_comments: true + flag_follow_content: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.page.teaser.yml b/drupal/config/sync/core.entity_view_display.node.page.teaser.yml new file mode 100644 index 0000000..e4d0d9c --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.page.teaser.yml @@ -0,0 +1,57 @@ +uuid: 8c1bd4f3-6076-4211-b8a6-e49f4c9b0598 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.page.body + - field.field.node.page.field_content_visibility + - field.field.node.page.field_files + - field.field.node.page.field_page_comments + - field.field.node.page.field_page_image + - image.style.social_x_large + - node.type.page + module: + - image + - options + - user +_core: + default_config_hash: enrP4YBdTvkG4fKEGvUuJTJOeWIe9WYydWsKbic7I5Y +id: node.page.teaser +targetEntityType: node +bundle: page +mode: teaser +content: + field_content_visibility: + type: list_default + weight: 2 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_page_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + links: + weight: 1 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_files: true + field_page_comments: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.activity.yml b/drupal/config/sync/core.entity_view_display.node.topic.activity.yml new file mode 100644 index 0000000..862d464 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.activity.yml @@ -0,0 +1,69 @@ +uuid: 002813ba-b929-44b9-a7ad-acd5aa49a5d2 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.activity + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_x_large + - node.type.topic + module: + - image + - social_core + - user +_core: + default_config_hash: 8SkrqwAaxJiDaPGUOOpQegZQan3riN2ciZIbMy95Pcg +id: node.topic.activity +targetEntityType: node +bundle: topic +mode: activity +content: + field_topic_comments: + weight: 3 + label: hidden + settings: + num_comments: 2 + always_show_all_comments: true + third_party_settings: { } + type: comment_node + region: content + field_topic_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_topic_type: + type: entity_reference_label + weight: 2 + label: hidden + settings: + link: true + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + links: + weight: 1 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_files: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.activity_comment.yml b/drupal/config/sync/core.entity_view_display.node.topic.activity_comment.yml new file mode 100644 index 0000000..8f5b4fe --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.activity_comment.yml @@ -0,0 +1,60 @@ +uuid: 4765ae20-5361-4a06-9038-b09f392a16ee +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.activity_comment + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_x_large + - node.type.topic + module: + - image + - user +_core: + default_config_hash: 3BhyNrTdZtTQAi-itD7uZc9JCtYxNTtSI6f_b_p8boI +id: node.topic.activity_comment +targetEntityType: node +bundle: topic +mode: activity_comment +content: + field_topic_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_topic_type: + type: entity_reference_label + weight: 1 + label: hidden + settings: + link: true + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + links: + weight: 2 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_content_visibility: true + field_files: true + field_topic_comments: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.default.yml b/drupal/config/sync/core.entity_view_display.node.topic.default.yml new file mode 100644 index 0000000..7a8d962 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.default.yml @@ -0,0 +1,75 @@ +uuid: ac6e0333-ec4f-4eaf-81b2-3a06146e48f1 +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_file_thumbnails + - node.type.topic + module: + - group_core_comments + - social_core + - text + - user +_core: + default_config_hash: 6ccSRvWYby30lrI6Wph1WEtQ4T9gSDPeXv9LXUi1dx4 +id: node.topic.default +targetEntityType: node +bundle: topic +mode: default +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_files: + weight: 3 + label: above + settings: + image_style: social_file_thumbnails + image_link: file + third_party_settings: { } + region: content + type: file_image_default + field_topic_comments: + weight: 1 + label: above + settings: + pager_id: 0 + view_mode: default + third_party_settings: { } + region: content + type: comment_group_content + flag_follow_content: + weight: 10 + region: content + settings: { } + third_party_settings: { } + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + links: + weight: 6 + region: content + settings: { } + third_party_settings: { } +hidden: + field_content_visibility: true + field_topic_image: true + field_topic_type: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.hero.yml b/drupal/config/sync/core.entity_view_display.node.topic.hero.yml new file mode 100644 index 0000000..6eebdd5 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.hero.yml @@ -0,0 +1,78 @@ +uuid: fefe4b6a-130e-400c-ac67-56db97dd35af +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.hero + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_xx_large + - node.type.topic + module: + - image + - options + - user +_core: + default_config_hash: a8_rXJA48NC7i-OgqDEExrahbUZOPgbs8WlFbxy77dc +id: node.topic.hero +targetEntityType: node +bundle: topic +mode: hero +content: + field_content_visibility: + type: list_default + weight: 3 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_topic_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_xx_large + image_link: '' + third_party_settings: { } + region: content + field_topic_type: + type: entity_reference_label + weight: 2 + label: hidden + settings: + link: false + third_party_settings: { } + region: content + flag_follow_content: + weight: 4 + region: content + settings: { } + third_party_settings: { } + like_and_dislike: + weight: 1 + region: content + settings: { } + third_party_settings: { } + links: + weight: 6 + region: content + settings: { } + third_party_settings: { } + shariff_field: + weight: 5 + region: content + settings: { } + third_party_settings: { } +hidden: + body: true + field_files: true + field_topic_comments: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.search_index.yml b/drupal/config/sync/core.entity_view_display.node.topic.search_index.yml new file mode 100644 index 0000000..237cb74 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.search_index.yml @@ -0,0 +1,55 @@ +uuid: 744be2d4-01f0-4337-bf10-04e21a3242f6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_display.comment.comment.default + - core.entity_view_mode.node.search_index + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - node.type.topic + module: + - comment + - text + - user +_core: + default_config_hash: Csdn4l8Oul6sUVfeVOXn8DuUcVgRl6ezWM3FkazGF8g +id: node.topic.search_index +targetEntityType: node +bundle: topic +mode: search_index +content: + body: + label: hidden + type: text_default + weight: 0 + settings: { } + third_party_settings: { } + region: content + field_topic_comments: + weight: 1 + label: above + settings: + pager_id: 0 + third_party_settings: { } + type: comment_default + region: content + flag_follow_content: + weight: 10 + region: content +hidden: + field_content_visibility: true + field_files: true + field_topic_image: true + field_topic_type: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + like_and_dislike: true + links: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.small_teaser.yml b/drupal/config/sync/core.entity_view_display.node.topic.small_teaser.yml new file mode 100644 index 0000000..43a37ea --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.small_teaser.yml @@ -0,0 +1,44 @@ +uuid: e1b55fe4-1489-44a8-a78a-39bd3851f9d0 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.small_teaser + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_medium + - node.type.topic + module: + - image + - user +_core: + default_config_hash: R3cBDm1XTtCOAdTtUkz-caRf3Re4TInIXnlN031QBMY +id: node.topic.small_teaser +targetEntityType: node +bundle: topic +mode: small_teaser +content: + field_topic_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: social_medium + image_link: content + third_party_settings: { } +hidden: + body: true + field_content_visibility: true + field_files: true + field_topic_comments: true + field_topic_type: true + flag_follow_content: true + groups: true + like_and_dislike: true + links: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.node.topic.teaser.yml b/drupal/config/sync/core.entity_view_display.node.topic.teaser.yml new file mode 100644 index 0000000..b287e95 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.node.topic.teaser.yml @@ -0,0 +1,71 @@ +uuid: 141afd69-2226-4cb0-857f-6c6516fe95d0 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.teaser + - field.field.node.topic.body + - field.field.node.topic.field_content_visibility + - field.field.node.topic.field_files + - field.field.node.topic.field_topic_comments + - field.field.node.topic.field_topic_image + - field.field.node.topic.field_topic_type + - image.style.social_x_large + - node.type.topic + module: + - image + - options + - user +_core: + default_config_hash: HdMaBP6yLx8r9k6vWAUjts9P4E-7i2AGstV4nmTf6EY +id: node.topic.teaser +targetEntityType: node +bundle: topic +mode: teaser +content: + field_content_visibility: + type: list_default + weight: 4 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_topic_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: content + third_party_settings: { } + region: content + field_topic_type: + type: entity_reference_label + weight: 3 + label: hidden + settings: + link: false + third_party_settings: { } + region: content + flag_follow_content: + weight: 10 + region: content + like_and_dislike: + weight: 1 + settings: { } + third_party_settings: { } + region: content + links: + weight: 2 + settings: { } + third_party_settings: { } + region: content +hidden: + body: true + field_files: true + field_topic_comments: true + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.photo.activity.yml b/drupal/config/sync/core.entity_view_display.post.photo.activity.yml new file mode 100644 index 0000000..eaed4c8 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.photo.activity.yml @@ -0,0 +1,64 @@ +uuid: df0d311d-6243-4173-afbd-0c3cd73b3ab5 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.activity + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - image + - social_post + - text + - user +_core: + default_config_hash: ud8BJm3_i6NBIZT_kMVPxptYErRRZhUvr0imljhx4ek +id: post.photo.activity +targetEntityType: post +bundle: photo +mode: activity +content: + field_post: + type: text_default + weight: 2 + region: content + label: hidden + settings: { } + third_party_settings: { } + field_post_comments: + type: comment_post_activity + weight: 3 + region: content + label: hidden + settings: + num_comments: '2' + order: ASC + third_party_settings: { } + field_post_image: + weight: 1 + label: hidden + settings: + image_style: social_post_photo + image_link: '' + third_party_settings: { } + type: image + region: content + user_id: + label: hidden + type: author + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + field_recipient_group: true + field_recipient_user: true + field_visibility: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.photo.activity_comment.yml b/drupal/config/sync/core.entity_view_display.post.photo.activity_comment.yml new file mode 100644 index 0000000..88c5934 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.photo.activity_comment.yml @@ -0,0 +1,55 @@ +uuid: 411bc2a8-a7f9-46f7-8169-7236a1fe42f8 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.activity_comment + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - image + - text + - user +_core: + default_config_hash: AIV8kX2w5a5zOKI9hVjfqwZFK66nRtd4486sydPzaPI +id: post.photo.activity_comment +targetEntityType: post +bundle: photo +mode: activity_comment +content: + field_post: + type: text_default + weight: 2 + region: content + label: hidden + settings: { } + third_party_settings: { } + field_post_image: + weight: 1 + label: hidden + settings: + image_style: social_post_photo + image_link: content + third_party_settings: { } + type: image + region: content + user_id: + label: hidden + type: author + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + field_visibility: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.photo.album.yml b/drupal/config/sync/core.entity_view_display.post.photo.album.yml new file mode 100644 index 0000000..758840f --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.photo.album.yml @@ -0,0 +1,58 @@ +uuid: 4b80a062-4609-44a9-a571-f7b183935f5d +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.album + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - social_post.post_type.photo + module: + - social_post + - text + - user +_core: + default_config_hash: pVeOWgIAeXbkx1B_zZ1eqGi1CXMhiuUsmt-lX6T5heY +id: post.photo.album +targetEntityType: post +bundle: photo +mode: album +content: + field_post: + type: text_default + weight: 1 + region: content + label: hidden + settings: { } + third_party_settings: { } + field_post_comments: + type: comment_post + weight: 3 + region: content + label: hidden + settings: + num_comments: '0' + order: ASC + third_party_settings: { } + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + user_id: + type: author + weight: 0 + region: content + label: hidden + settings: { } + third_party_settings: { } +hidden: + field_post_image: true + field_recipient_group: true + field_recipient_user: true + field_visibility: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.photo.default.yml b/drupal/config/sync/core.entity_view_display.post.photo.default.yml new file mode 100644 index 0000000..50676ff --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.photo.default.yml @@ -0,0 +1,63 @@ +uuid: f7eef96c-c51f-409b-abb8-27ab5ce002db +langcode: en +status: true +dependencies: + config: + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - image + - social_post + - text + - user +_core: + default_config_hash: TV84ReHP4ASWhjN-amHZQYBLHB7-zLswDjMR-JiahAY +id: post.photo.default +targetEntityType: post +bundle: photo +mode: default +content: + field_post: + type: text_default + weight: 2 + region: content + label: hidden + settings: { } + third_party_settings: { } + field_post_comments: + type: comment_post + weight: 3 + region: content + label: hidden + settings: + num_comments: '0' + order: ASC + third_party_settings: { } + field_post_image: + weight: 1 + label: hidden + settings: + image_style: social_post_photo + image_link: '' + third_party_settings: { } + type: image + region: content + user_id: + type: author + weight: 0 + region: content + label: hidden + settings: { } + third_party_settings: { } +hidden: + field_recipient_group: true + field_recipient_user: true + field_visibility: true + like_and_dislike: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.photo.featured.yml b/drupal/config/sync/core.entity_view_display.post.photo.featured.yml new file mode 100644 index 0000000..0719f09 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.photo.featured.yml @@ -0,0 +1,67 @@ +uuid: 874ba10d-f001-4f3f-8930-af6c0953c493 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.featured + - field.field.post.photo.field_post + - field.field.post.photo.field_post_comments + - field.field.post.photo.field_post_image + - field.field.post.photo.field_recipient_group + - field.field.post.photo.field_recipient_user + - field.field.post.photo.field_visibility + - image.style.social_post_photo + - social_post.post_type.photo + module: + - image + - text + - user +_core: + default_config_hash: ki4xgQPmC9_OWrrKLTHgwR_NBRekFTn8PKJrlUb3MKg +id: post.photo.featured +targetEntityType: post +bundle: photo +mode: featured +content: + field_album: + type: social_album_entity_reference_label + weight: 4 + region: content + label: hidden + settings: + link: true + third_party_settings: { } + field_post: + type: text_default + weight: 2 + region: content + label: hidden + settings: { } + third_party_settings: { } + field_post_image: + weight: 1 + label: hidden + settings: + image_style: social_post_photo + image_link: '' + third_party_settings: { } + type: image + region: content + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + user_id: + type: author + weight: 0 + region: content + label: hidden + settings: { } + third_party_settings: { } +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + field_visibility: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.post.activity.yml b/drupal/config/sync/core.entity_view_display.post.post.activity.yml new file mode 100644 index 0000000..40ee2d1 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.post.activity.yml @@ -0,0 +1,56 @@ +uuid: 4bd5f9fc-8a44-4eb8-b3eb-72517aae6514 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.activity + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - social_post + - text + - user +_core: + default_config_hash: pXOzM38q19Hls2ftL6zJa9GNZVZsElmbH48ax0HQEtw +id: post.post.activity +targetEntityType: post +bundle: post +mode: activity +content: + field_post: + type: text_default + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_post_comments: + type: comment_post_activity + weight: 2 + label: hidden + settings: + num_comments: '2' + order: ASC + third_party_settings: { } + region: content + like_and_dislike: + weight: 3 + region: content + settings: { } + third_party_settings: { } + user_id: + label: hidden + type: author + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + field_recipient_group: true + field_recipient_user: true + field_visibility: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.post.activity_comment.yml b/drupal/config/sync/core.entity_view_display.post.post.activity_comment.yml new file mode 100644 index 0000000..6267975 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.post.activity_comment.yml @@ -0,0 +1,47 @@ +uuid: 989bab1b-9529-4b4f-8517-dc9081d85edb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.activity_comment + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - text + - user +_core: + default_config_hash: R9IASIN5D6Q0lIdSeULDo3CP75yChfLVk7y5cafCt9Y +id: post.post.activity_comment +targetEntityType: post +bundle: post +mode: activity_comment +content: + field_post: + type: text_default + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + user_id: + label: hidden + type: author + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + field_visibility: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.post.default.yml b/drupal/config/sync/core.entity_view_display.post.post.default.yml new file mode 100644 index 0000000..cfc81c0 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.post.default.yml @@ -0,0 +1,55 @@ +uuid: 808f4c16-300f-4677-9b9a-b3667e6da658 +langcode: en +status: true +dependencies: + config: + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - social_post + - text + - user +_core: + default_config_hash: TSVTdiIbrHdgqHWRwxILYab81_Dz-XJLyyO9UiU5pRc +id: post.post.default +targetEntityType: post +bundle: post +mode: default +content: + field_post: + type: text_default + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content + field_post_comments: + type: comment_post + weight: 2 + label: hidden + settings: + num_comments: '0' + order: ASC + third_party_settings: { } + region: content + like_and_dislike: + weight: 3 + region: content + settings: { } + third_party_settings: { } + user_id: + label: hidden + type: author + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + field_recipient_group: true + field_recipient_user: true + field_visibility: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.post.post.featured.yml b/drupal/config/sync/core.entity_view_display.post.post.featured.yml new file mode 100644 index 0000000..381fd87 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.post.post.featured.yml @@ -0,0 +1,47 @@ +uuid: 1f6d4430-16d8-4efa-ac1b-21d3d5878a3f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.post.featured + - field.field.post.post.field_post + - field.field.post.post.field_post_comments + - field.field.post.post.field_recipient_group + - field.field.post.post.field_recipient_user + - field.field.post.post.field_visibility + - social_post.post_type.post + module: + - text + - user +_core: + default_config_hash: ccbh4amSJ0kP5eveKKkyLF38ZyGToE1M09grsmID5II +id: post.post.featured +targetEntityType: post +bundle: post +mode: featured +content: + field_post: + type: text_default + weight: 1 + label: hidden + settings: { } + third_party_settings: { } + region: content + like_and_dislike: + weight: 2 + region: content + settings: { } + third_party_settings: { } + user_id: + label: hidden + type: author + weight: 0 + settings: { } + third_party_settings: { } + region: content +hidden: + field_post_comments: true + field_recipient_group: true + field_recipient_user: true + field_visibility: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.autocomplete_item.yml b/drupal/config/sync/core.entity_view_display.profile.profile.autocomplete_item.yml new file mode 100644 index 0000000..cc49066 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.autocomplete_item.yml @@ -0,0 +1,69 @@ +uuid: 297751d7-0fe1-4c79-90d4-aca4f820a8aa +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.autocomplete_item + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_small + - profile.type.profile + module: + - image +_core: + default_config_hash: oNo6GVuWY51XV_kPfrCRA1KeS3kXk962ToYNhRSLY6Y +id: profile.profile.autocomplete_item +targetEntityType: profile +bundle: profile +mode: autocomplete_item +content: + field_profile_first_name: + type: string + weight: 1 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + field_profile_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_small + image_link: '' + third_party_settings: { } + region: content + field_profile_last_name: + type: string + weight: 2 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_function: true + field_profile_interests: true + field_profile_organization: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.compact.yml b/drupal/config/sync/core.entity_view_display.profile.profile.compact.yml new file mode 100644 index 0000000..9b3326c --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.compact.yml @@ -0,0 +1,58 @@ +uuid: 6902dbc5-747a-4e11-aa51-952f8fb35d1f +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.compact + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_medium + - profile.type.profile + enforced: + module: + - social_profile + module: + - social_profile +_core: + default_config_hash: z2FyK2kuV9uFGBKtsNEl2cwEUmG3RiZr_WQgIHYN0F4 +id: profile.profile.compact +targetEntityType: profile +bundle: profile +mode: compact +content: + field_profile_image: + weight: 0 + label: hidden + settings: + image_style: social_medium + image_link: owner + third_party_settings: { } + type: social_profile_avatar + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_function: true + field_profile_interests: true + field_profile_last_name: true + field_profile_organization: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.compact_notification.yml b/drupal/config/sync/core.entity_view_display.profile.profile.compact_notification.yml new file mode 100644 index 0000000..07f740e --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.compact_notification.yml @@ -0,0 +1,55 @@ +uuid: d552d7df-714a-4c9b-a9cb-a52b7d0b3b39 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.compact_notification + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_medium + - profile.type.profile + module: + - image +_core: + default_config_hash: Hn9enh7nKYJ1_SZQHXynh1hWSAlHERbbP4hRz3Pj1VY +id: profile.profile.compact_notification +targetEntityType: profile +bundle: profile +mode: compact_notification +content: + field_profile_image: + weight: 7 + label: hidden + settings: + image_style: social_medium + image_link: '' + third_party_settings: { } + type: image + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_function: true + field_profile_interests: true + field_profile_last_name: true + field_profile_organization: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.compact_teaser.yml b/drupal/config/sync/core.entity_view_display.profile.profile.compact_teaser.yml new file mode 100644 index 0000000..f4fcc51 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.compact_teaser.yml @@ -0,0 +1,69 @@ +uuid: 6c8028ad-2446-437a-8647-ee57501e0dda +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.compact_teaser + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_medium + - profile.type.profile + module: + - image +_core: + default_config_hash: 8v4S6pon0_7lp0dB7i5Pp6hu1JRY2_cJK_5vR6ZHnac +id: profile.profile.compact_teaser +targetEntityType: profile +bundle: profile +mode: compact_teaser +content: + field_profile_function: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + field_profile_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_medium + image_link: '' + third_party_settings: { } + region: content + field_profile_organization: + type: string + weight: 4 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_interests: true + field_profile_last_name: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.default.yml b/drupal/config/sync/core.entity_view_display.profile.profile.default.yml new file mode 100644 index 0000000..6d59e72 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.default.yml @@ -0,0 +1,86 @@ +uuid: 02d38214-fdb6-422d-abde-db267669197a +langcode: en +status: true +dependencies: + config: + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - profile.type.profile + module: + - address + - text +_core: + default_config_hash: 1cImh0o-DoOi3Egpp2E5Ffg1mARw5L4aQfvjv3QxgS8 +id: profile.profile.default +targetEntityType: profile +bundle: profile +mode: default +content: + field_profile_address: + weight: 2 + label: visually_hidden + settings: { } + third_party_settings: { } + type: address_default + region: content + field_profile_expertise: + weight: 5 + label: visually_hidden + settings: + link: true + third_party_settings: { } + type: entity_reference_label + region: content + field_profile_interests: + weight: 4 + label: visually_hidden + settings: + link: true + third_party_settings: { } + type: entity_reference_label + region: content + field_profile_phone_number: + weight: 0 + label: visually_hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_profile_tag: + type: entity_reference_label + weight: 1 + label: visually_hidden + settings: + link: false + third_party_settings: { } + region: content + field_profile_self_introduction: + weight: 3 + label: visually_hidden + settings: { } + third_party_settings: { } + type: text_default + region: content +hidden: + field_profile_banner_image: true + field_profile_first_name: true + field_profile_function: true + field_profile_image: true + field_profile_last_name: true + field_profile_organization: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.hero.yml b/drupal/config/sync/core.entity_view_display.profile.profile.hero.yml new file mode 100644 index 0000000..a005575 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.hero.yml @@ -0,0 +1,83 @@ +uuid: aca93f9b-9efb-42a4-b079-93b05c5d9a95 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.hero + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_large + - profile.type.profile + module: + - image +_core: + default_config_hash: Gs2g1O2Yf1ykKLVv5GbfHTdvn-p8rDiqCFFkV6mq2Nw +id: profile.profile.hero +targetEntityType: profile +bundle: profile +mode: hero +content: + field_profile_first_name: + weight: 0 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_function: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + field_profile_image: + weight: 2 + label: hidden + settings: + image_style: social_large + image_link: '' + third_party_settings: { } + type: image + region: content + field_profile_last_name: + weight: 1 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_organization: + type: string + weight: 4 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_interests: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.medium_teaser.yml b/drupal/config/sync/core.entity_view_display.profile.profile.medium_teaser.yml new file mode 100644 index 0000000..377f243 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.medium_teaser.yml @@ -0,0 +1,83 @@ +uuid: 4a9167f3-53d2-4a0f-9147-8705a95478ed +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.medium_teaser + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.medium + - profile.type.profile + module: + - image +_core: + default_config_hash: 7RiAL2Oj0DDKaXXfBaE3I8wYBKnC-ty6jltl1eKH0sw +id: profile.profile.medium_teaser +targetEntityType: profile +bundle: profile +mode: medium_teaser +content: + field_profile_first_name: + type: string + weight: 1 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + field_profile_function: + type: string + weight: 3 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + field_profile_image: + type: image + weight: 0 + region: content + label: hidden + settings: + image_style: medium + image_link: '' + third_party_settings: { } + field_profile_last_name: + type: string + weight: 2 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + field_profile_organization: + type: string + weight: 4 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_interests: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.name.yml b/drupal/config/sync/core.entity_view_display.profile.profile.name.yml new file mode 100644 index 0000000..88aaf4f --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.name.yml @@ -0,0 +1,46 @@ +uuid: ecd43f3a-98fa-45a2-a8a7-55b7d78493b6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.name + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - profile.type.profile +_core: + default_config_hash: lGkSocPCl4B4zvWlvPAidDvEG31Mym3xaxz1fl-0Nt4 +id: profile.profile.name +targetEntityType: profile +bundle: profile +mode: name +content: { } +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_function: true + field_profile_image: true + field_profile_interests: true + field_profile_last_name: true + field_profile_nationality: true + field_profile_nick_name: true + field_profile_organization: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.search_index.yml b/drupal/config/sync/core.entity_view_display.profile.profile.search_index.yml new file mode 100644 index 0000000..a44e194 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.search_index.yml @@ -0,0 +1,94 @@ +uuid: 596b11b4-e1f4-452a-b17c-a8d9aab06e08 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.search_index + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - profile.type.profile + module: + - address + - text +_core: + default_config_hash: kruw4MAujGG9MrpSqsF9TA52pWqNQYDS38aYhXqMxWo +id: profile.profile.search_index +targetEntityType: profile +bundle: profile +mode: search_index +content: + field_profile_address: + weight: 5 + label: above + settings: { } + third_party_settings: { } + type: address_default + region: content + field_profile_expertise: + weight: 8 + label: above + settings: + link: true + third_party_settings: { } + type: entity_reference_label + region: content + field_profile_function: + weight: 2 + label: above + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_interests: + weight: 7 + label: above + settings: + link: true + third_party_settings: { } + type: entity_reference_label + region: content + field_profile_organization: + weight: 3 + label: above + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_phone_number: + weight: 4 + label: above + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_self_introduction: + weight: 6 + label: above + settings: { } + third_party_settings: { } + type: text_default + region: content +hidden: + field_profile_banner_image: true + field_profile_first_name: true + field_profile_image: true + field_profile_last_name: true + field_profile_profile_tag: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.small.yml b/drupal/config/sync/core.entity_view_display.profile.profile.small.yml new file mode 100644 index 0000000..746e0a4 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.small.yml @@ -0,0 +1,55 @@ +uuid: 59f4aa02-6a6f-4424-8e87-240440a9a1f6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.small + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_small + - profile.type.profile + module: + - image +_core: + default_config_hash: ZpcrvzG9Ft61pHXunKEK1y9ssr365zqVDc23_3jjReE +id: profile.profile.small +targetEntityType: profile +bundle: profile +mode: small +content: + field_profile_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_small + image_link: '' + third_party_settings: { } + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_function: true + field_profile_interests: true + field_profile_last_name: true + field_profile_organization: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.small_teaser.yml b/drupal/config/sync/core.entity_view_display.profile.profile.small_teaser.yml new file mode 100644 index 0000000..acaefd0 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.small_teaser.yml @@ -0,0 +1,69 @@ +uuid: 60a3d07d-ad4a-430c-a596-6ed960cea1d1 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.small_teaser + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_medium + - profile.type.profile + module: + - image +_core: + default_config_hash: 7BDP7PxWoiH85LSEbf4WFvjQvSK5QLL-3gufxHYmpW4 +id: profile.profile.small_teaser +targetEntityType: profile +bundle: profile +mode: small_teaser +content: + field_profile_function: + type: string + weight: 1 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + field_profile_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_medium + image_link: '' + third_party_settings: { } + region: content + field_profile_organization: + type: string + weight: 2 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_interests: true + field_profile_last_name: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.statistic.yml b/drupal/config/sync/core.entity_view_display.profile.profile.statistic.yml new file mode 100644 index 0000000..5043489 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.statistic.yml @@ -0,0 +1,91 @@ +uuid: 49591f7e-9337-4f0c-bcf3-8dff754e815c +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.statistic + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_large + - profile.type.profile + module: + - address + - image +_core: + default_config_hash: yzb1Rt080V9AA5-m9i_1-yTYmp4mV5-e1fcVnpdgQ4Y +id: profile.profile.statistic +targetEntityType: profile +bundle: profile +mode: statistic +content: + field_profile_address: + weight: 5 + label: visually_hidden + settings: { } + third_party_settings: { } + type: address_default + region: content + field_profile_first_name: + weight: 0 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_function: + type: string + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content + field_profile_image: + weight: 2 + label: hidden + settings: + image_style: social_large + image_link: '' + third_party_settings: { } + type: image + region: content + field_profile_last_name: + weight: 1 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_organization: + type: string + weight: 4 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + region: content +hidden: + field_profile_banner_image: true + field_profile_expertise: true + field_profile_interests: true + field_profile_organisation: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.table.yml b/drupal/config/sync/core.entity_view_display.profile.profile.table.yml new file mode 100644 index 0000000..c9635f8 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.table.yml @@ -0,0 +1,55 @@ +uuid: 7051af07-b773-4399-b8df-1191b75b50d6 +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.table + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_medium + - profile.type.profile + module: + - image +_core: + default_config_hash: M0xtPC2b9t-ZJ9PGBrH9DswxOSewlI1a4hUwwH8L-9g +id: profile.profile.table +targetEntityType: profile +bundle: profile +mode: table +content: + field_profile_image: + type: image + weight: 0 + label: hidden + settings: + image_style: social_medium + image_link: '' + third_party_settings: { } + region: content +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_first_name: true + field_profile_function: true + field_profile_interests: true + field_profile_last_name: true + field_profile_organization: true + field_profile_phone_number: true + field_profile_profile_tag: true + field_profile_self_introduction: true + field_profile_show_email: true + field_profile_summary: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.profile.profile.teaser.yml b/drupal/config/sync/core.entity_view_display.profile.profile.teaser.yml new file mode 100644 index 0000000..d80cc8c --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.profile.profile.teaser.yml @@ -0,0 +1,105 @@ +uuid: d4e1d54e-52ff-424c-889b-946acc10589c +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.profile.teaser + - field.field.profile.profile.field_profile_address + - field.field.profile.profile.field_profile_banner_image + - field.field.profile.profile.field_profile_expertise + - field.field.profile.profile.field_profile_first_name + - field.field.profile.profile.field_profile_function + - field.field.profile.profile.field_profile_image + - field.field.profile.profile.field_profile_interests + - field.field.profile.profile.field_profile_last_name + - field.field.profile.profile.field_profile_organization + - field.field.profile.profile.field_profile_phone_number + - field.field.profile.profile.field_profile_profile_tag + - field.field.profile.profile.field_profile_self_introduction + - field.field.profile.profile.field_profile_show_email + - field.field.profile.profile.field_profile_summary + - image.style.social_x_large + - profile.type.profile + module: + - image + - social_profile +_core: + default_config_hash: EZ7I5JYpjfCc0FnoQ_RnCKs4mGLqTVoKaCQ7Rp8qb5A +id: profile.profile.teaser +targetEntityType: profile +bundle: profile +mode: teaser +content: + field_profile_first_name: + weight: 1 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_function: + weight: 3 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_image: + weight: 0 + label: hidden + settings: + image_style: social_x_large + image_link: '' + third_party_settings: { } + type: image + region: content + field_profile_last_name: + weight: 2 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_organization: + weight: 4 + label: hidden + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_profile_profile_tag: + type: entity_reference_label + weight: 5 + label: hidden + settings: + link: false + third_party_settings: { } + region: content + field_profile_self_introduction: + type: social_profile_text + weight: 6 + region: content + label: hidden + settings: + trim_length: 140 + third_party_settings: { } + field_profile_summary: + type: string + weight: 7 + region: content + label: hidden + settings: + link_to_entity: false + third_party_settings: { } +hidden: + field_profile_address: true + field_profile_banner_image: true + field_profile_expertise: true + field_profile_interests: true + field_profile_phone_number: true + field_profile_show_email: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.queue_storage_entity.email.default.yml b/drupal/config/sync/core.entity_view_display.queue_storage_entity.email.default.yml new file mode 100644 index 0000000..0cc48c8 --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.queue_storage_entity.email.default.yml @@ -0,0 +1,60 @@ +uuid: ffd5b636-2c12-4582-b0e6-18bff59f4bc1 +langcode: en +status: true +dependencies: + config: + - field.field.queue_storage_entity.email.field_message + - field.field.queue_storage_entity.email.field_reply_to + - field.field.queue_storage_entity.email.field_subject + - social_queue_storage.queue_storage_entity_type.email + module: + - text + - user +_core: + default_config_hash: _4878_g8xVoqzKT9689yAte6WgjVDkEnkYPBEVeFyBc +id: queue_storage_entity.email.default +targetEntityType: queue_storage_entity +bundle: email +mode: default +content: + field_message: + weight: 3 + label: above + settings: { } + third_party_settings: { } + type: text_default + region: content + field_reply_to: + weight: 1 + label: above + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + field_subject: + weight: 2 + label: above + settings: + link_to_entity: false + third_party_settings: { } + type: string + region: content + name: + label: above + type: string + weight: -4 + region: content + settings: + link_to_entity: false + third_party_settings: { } + user_id: + label: hidden + type: author + weight: 0 + region: content + settings: { } + third_party_settings: { } +hidden: + finished: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.user.user.default.yml b/drupal/config/sync/core.entity_view_display.user.user.default.yml new file mode 100644 index 0000000..a926a3f --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.user.user.default.yml @@ -0,0 +1,23 @@ +uuid: eea955f6-aa16-4a4f-8a59-b4c340eca4c8 +langcode: en +status: true +dependencies: + module: + - user +_core: + default_config_hash: m2KUyVd52WOjOKfANphGWnvnM6AzChT6cogYWkk_efo +id: user.user.default +targetEntityType: user +bundle: user +mode: default +content: { } +hidden: + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + member_for: true + profile_main: true + profile_profile: true + profile_profiles: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_display.user.user.full.yml b/drupal/config/sync/core.entity_view_display.user.user.full.yml new file mode 100644 index 0000000..a7a819e --- /dev/null +++ b/drupal/config/sync/core.entity_view_display.user.user.full.yml @@ -0,0 +1,25 @@ +uuid: fc529d68-24f5-4f77-baca-b299310ea7fb +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.user.full + module: + - user +_core: + default_config_hash: Q0XhfQDJskQ6lK21AWfMJuXpz-8thFdxA2CLj6Yg7ng +id: user.user.full +targetEntityType: user +bundle: user +mode: full +content: { } +hidden: + groups: true + groups_type_closed_group: true + groups_type_open_group: true + groups_type_public_group: true + member_for: true + profile_main: true + profile_profile: true + profile_profiles: true + search_api_excerpt: true diff --git a/drupal/config/sync/core.entity_view_mode.activity.featured.yml b/drupal/config/sync/core.entity_view_mode.activity.featured.yml new file mode 100644 index 0000000..f681f9f --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.activity.featured.yml @@ -0,0 +1,12 @@ +uuid: 18521f29-0d1b-4ff2-8b09-b88fb0ae4fef +langcode: en +status: true +dependencies: + module: + - activity_creator +_core: + default_config_hash: KrDci7naaCZKVlc4ImEOh59agcqx-yG7viJJK6owfIs +id: activity.featured +label: Featured +targetEntityType: activity +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.activity.notification.yml b/drupal/config/sync/core.entity_view_mode.activity.notification.yml new file mode 100644 index 0000000..7888b67 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.activity.notification.yml @@ -0,0 +1,12 @@ +uuid: b58e3e4d-fefd-4768-b1e6-48efcad0074b +langcode: en +status: true +dependencies: + module: + - activity_creator +_core: + default_config_hash: QmSIdLfe2oRQx49C39LN166ZrWB3SsdDwR1hb0iCFjc +id: activity.notification +label: Notification +targetEntityType: activity +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.activity.notification_archive.yml b/drupal/config/sync/core.entity_view_mode.activity.notification_archive.yml new file mode 100644 index 0000000..4c764af --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.activity.notification_archive.yml @@ -0,0 +1,12 @@ +uuid: 59446ac2-79d1-4832-b4c2-f0e4e9a066fe +langcode: en +status: true +dependencies: + module: + - activity_creator +_core: + default_config_hash: g0xG6W1yMrC3-0MmqSGi4TS3cI962yWsynMHyWz0LC0 +id: activity.notification_archive +label: 'Notification archive' +targetEntityType: activity +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.activity.token.yml b/drupal/config/sync/core.entity_view_mode.activity.token.yml new file mode 100644 index 0000000..b13d03a --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.activity.token.yml @@ -0,0 +1,10 @@ +uuid: cb9717cb-ffaa-42b1-bc3b-231f9ae1832a +langcode: en +status: true +dependencies: + module: + - activity_creator +id: activity.token +label: Token +targetEntityType: activity +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.block.token.yml b/drupal/config/sync/core.entity_view_mode.block.token.yml new file mode 100644 index 0000000..2a3253a --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.block.token.yml @@ -0,0 +1,10 @@ +uuid: a8d0d6c6-f60e-457c-acb2-bcf3f2bfae64 +langcode: en +status: true +dependencies: + module: + - block +id: block.token +label: Token +targetEntityType: block +cache: true diff --git a/drupal/config/core.entity_view_mode.block_content.full.yml b/drupal/config/sync/core.entity_view_mode.block_content.full.yml similarity index 83% rename from drupal/config/core.entity_view_mode.block_content.full.yml rename to drupal/config/sync/core.entity_view_mode.block_content.full.yml index 72f234a..4ab474a 100644 --- a/drupal/config/core.entity_view_mode.block_content.full.yml +++ b/drupal/config/sync/core.entity_view_mode.block_content.full.yml @@ -1,4 +1,4 @@ -uuid: 9b135fdd-4e21-426d-bc49-76c2f029f3eb +uuid: f0154863-5f10-4ee3-b55e-5f9b782ec07d langcode: en status: false dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.block_content.token.yml b/drupal/config/sync/core.entity_view_mode.block_content.token.yml new file mode 100644 index 0000000..8df5d25 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.block_content.token.yml @@ -0,0 +1,10 @@ +uuid: cd800a51-4790-447b-a91b-a6dc56aa4d70 +langcode: en +status: true +dependencies: + module: + - block_content +id: block_content.token +label: Token +targetEntityType: block_content +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.comment.activity.yml b/drupal/config/sync/core.entity_view_mode.comment.activity.yml new file mode 100644 index 0000000..2c9c74a --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.comment.activity.yml @@ -0,0 +1,12 @@ +uuid: 48ee5a79-0224-4035-b736-46d81e651856 +langcode: en +status: true +dependencies: + module: + - comment +_core: + default_config_hash: D2OrOMfZpua9rHx7eVBF2jSiv1rWSHxlC7PMGTXvHA4 +id: comment.activity +label: Activity +targetEntityType: comment +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.comment.activity_comment.yml b/drupal/config/sync/core.entity_view_mode.comment.activity_comment.yml new file mode 100644 index 0000000..6db060e --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.comment.activity_comment.yml @@ -0,0 +1,12 @@ +uuid: ab957ee5-d385-4e96-9e87-37253053adf2 +langcode: en +status: true +dependencies: + module: + - comment +_core: + default_config_hash: J-a5w4VBp_4z7XtP70ZgqT2TMbLgNwb4X7oIkPpJSeM +id: comment.activity_comment +label: 'Activity comment' +targetEntityType: comment +cache: true diff --git a/drupal/config/core.entity_view_mode.comment.full.yml b/drupal/config/sync/core.entity_view_mode.comment.full.yml similarity index 83% rename from drupal/config/core.entity_view_mode.comment.full.yml rename to drupal/config/sync/core.entity_view_mode.comment.full.yml index 1db0333..068bbd9 100644 --- a/drupal/config/core.entity_view_mode.comment.full.yml +++ b/drupal/config/sync/core.entity_view_mode.comment.full.yml @@ -1,4 +1,4 @@ -uuid: af4a2b46-0e55-4bd8-b4ed-3ea0a224534c +uuid: af20308a-a952-44a5-a1b1-060fb1d262ae langcode: en status: false dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.comment.token.yml b/drupal/config/sync/core.entity_view_mode.comment.token.yml new file mode 100644 index 0000000..f612d59 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.comment.token.yml @@ -0,0 +1,10 @@ +uuid: eb24ce47-20a5-42fb-b6be-6dd3fecdc70e +langcode: en +status: true +dependencies: + module: + - comment +id: comment.token +label: Token +targetEntityType: comment +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.file.token.yml b/drupal/config/sync/core.entity_view_mode.file.token.yml new file mode 100644 index 0000000..6084325 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.file.token.yml @@ -0,0 +1,10 @@ +uuid: 40d7a3fc-3a8e-4218-8bc8-a48a00291192 +langcode: en +status: true +dependencies: + module: + - file +id: file.token +label: Token +targetEntityType: file +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group.hero.yml b/drupal/config/sync/core.entity_view_mode.group.hero.yml new file mode 100644 index 0000000..d515881 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group.hero.yml @@ -0,0 +1,12 @@ +uuid: 74372a49-69f3-42c7-a17a-c5c6d4063a79 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: MPXuZOzK4bIORWlIavYvxuvIcrB35y7_WPzKKxjvtAg +id: group.hero +label: Hero +targetEntityType: group +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group.small_teaser.yml b/drupal/config/sync/core.entity_view_mode.group.small_teaser.yml new file mode 100644 index 0000000..a0d46c2 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group.small_teaser.yml @@ -0,0 +1,12 @@ +uuid: a88f0794-caff-45fd-971d-39f67a70e5bf +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: IVSyQ6fjaMOZdEEqizw220YWT0vtcXW_LOgOP6a2Ies +id: group.small_teaser +label: 'Small teaser' +targetEntityType: group +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group.statistic.yml b/drupal/config/sync/core.entity_view_mode.group.statistic.yml new file mode 100644 index 0000000..45e759e --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group.statistic.yml @@ -0,0 +1,12 @@ +uuid: 07a4685e-689d-457d-b8c7-e07ae98a5d7e +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: IkZplQk_mMWNaQjW0ESRtJgoCM3Do0KgQ9D0SQuZCK4 +id: group.statistic +label: Statistic +targetEntityType: group +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group.stream.yml b/drupal/config/sync/core.entity_view_mode.group.stream.yml new file mode 100644 index 0000000..0b153b0 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group.stream.yml @@ -0,0 +1,12 @@ +uuid: c6c671e5-dfa4-4a5c-90c2-b6c785df0d0f +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: aSldOvfYlcervH_tNioEypeWBC_zi6o8NgliDe6v7nM +id: group.stream +label: Stream +targetEntityType: group +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group.teaser.yml b/drupal/config/sync/core.entity_view_mode.group.teaser.yml new file mode 100644 index 0000000..c706716 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group.teaser.yml @@ -0,0 +1,12 @@ +uuid: 3fb33957-17a0-49bc-aea0-b23f10ae3d45 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: YXlikPyGTT4Ozc42C7qAGkMEreAc7X4yfCg6B16lH2I +id: group.teaser +label: Teaser +targetEntityType: group +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group.token.yml b/drupal/config/sync/core.entity_view_mode.group.token.yml new file mode 100644 index 0000000..58105a6 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group.token.yml @@ -0,0 +1,10 @@ +uuid: 89220184-cfcc-4652-90db-e2417837f4ca +langcode: en +status: true +dependencies: + module: + - group +id: group.token +label: Token +targetEntityType: group +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group_content.activity.yml b/drupal/config/sync/core.entity_view_mode.group_content.activity.yml new file mode 100644 index 0000000..075c607 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group_content.activity.yml @@ -0,0 +1,12 @@ +uuid: 8a008b85-1924-4c43-86b1-d297b61d25ef +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: o_IxY7_UvAbKVjxvwd8Dpga0PNHtREBzSSB_yXfI0vU +id: group_content.activity +label: Activity +targetEntityType: group_content +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group_content.teaser.yml b/drupal/config/sync/core.entity_view_mode.group_content.teaser.yml new file mode 100644 index 0000000..d32ee25 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group_content.teaser.yml @@ -0,0 +1,12 @@ +uuid: 52b2132c-9297-4295-acfc-f3f3da1a4720 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: 4ovumvZuS5UXl_YkuAM0Pu2wB4n5ho7R4amUxJLf2jQ +id: group_content.teaser +label: Teaser +targetEntityType: group_content +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.group_content.token.yml b/drupal/config/sync/core.entity_view_mode.group_content.token.yml new file mode 100644 index 0000000..ecc6eb4 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.group_content.token.yml @@ -0,0 +1,10 @@ +uuid: 8753e949-e07d-417a-8cfd-ebb5bf4c5588 +langcode: en +status: true +dependencies: + module: + - group +id: group_content.token +label: Token +targetEntityType: group_content +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.menu_link_content.token.yml b/drupal/config/sync/core.entity_view_mode.menu_link_content.token.yml new file mode 100644 index 0000000..33e0efc --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.menu_link_content.token.yml @@ -0,0 +1,10 @@ +uuid: 4ef5c493-aac6-4e2f-ba95-ea2f79bff8da +langcode: en +status: true +dependencies: + module: + - menu_link_content +id: menu_link_content.token +label: Token +targetEntityType: menu_link_content +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.message.full.yml b/drupal/config/sync/core.entity_view_mode.message.full.yml new file mode 100644 index 0000000..3a5590b --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.message.full.yml @@ -0,0 +1,12 @@ +uuid: 0db5be28-b1e2-4b57-b631-a0cbe9a865ed +langcode: en +status: false +dependencies: + module: + - message +_core: + default_config_hash: Pl6xok1fBCKaPlLC4iDJVaucp2W72csXt7M3Jwa95nU +id: message.full +label: 'Full content' +targetEntityType: message +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.message.token.yml b/drupal/config/sync/core.entity_view_mode.message.token.yml new file mode 100644 index 0000000..c3d6b7c --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.message.token.yml @@ -0,0 +1,10 @@ +uuid: 06f1a186-8b7c-4d72-985b-4733b99aa76a +langcode: en +status: true +dependencies: + module: + - message +id: message.token +label: Token +targetEntityType: message +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.message_template.token.yml b/drupal/config/sync/core.entity_view_mode.message_template.token.yml new file mode 100644 index 0000000..2e9b9dc --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.message_template.token.yml @@ -0,0 +1,10 @@ +uuid: 87b3d2f7-dc2e-4edd-8016-d3b7fdc5d8b1 +langcode: en +status: true +dependencies: + module: + - message +id: message_template.token +label: Token +targetEntityType: message_template +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.node.activity.yml b/drupal/config/sync/core.entity_view_mode.node.activity.yml new file mode 100644 index 0000000..1eb234d --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.node.activity.yml @@ -0,0 +1,12 @@ +uuid: 10110ec6-6149-4ef3-8234-a2817588b1d9 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: LpD_MAUoA0okeonj6aHMAbxxudoAFn-YAxAz_reE5yE +id: node.activity +label: Activity +targetEntityType: node +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.node.activity_comment.yml b/drupal/config/sync/core.entity_view_mode.node.activity_comment.yml new file mode 100644 index 0000000..15abe49 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.node.activity_comment.yml @@ -0,0 +1,12 @@ +uuid: cf72273b-196e-4336-a2d8-6cbd83647800 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: epUnKT076SuTjQqSLpgt9KR9cPGPg7_p6koQnrY11lU +id: node.activity_comment +label: 'Activity comment' +targetEntityType: node +cache: true diff --git a/drupal/config/core.entity_view_mode.node.full.yml b/drupal/config/sync/core.entity_view_mode.node.full.yml similarity index 82% rename from drupal/config/core.entity_view_mode.node.full.yml rename to drupal/config/sync/core.entity_view_mode.node.full.yml index 7eb1305..925d063 100644 --- a/drupal/config/core.entity_view_mode.node.full.yml +++ b/drupal/config/sync/core.entity_view_mode.node.full.yml @@ -1,4 +1,4 @@ -uuid: 8644c5b0-cad9-42e9-8179-6bd51b004602 +uuid: b630e200-ab43-4fbb-9c6b-e4991c9f5b60 langcode: en status: false dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.node.hero.yml b/drupal/config/sync/core.entity_view_mode.node.hero.yml new file mode 100644 index 0000000..c6602ac --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.node.hero.yml @@ -0,0 +1,12 @@ +uuid: 7df77f75-e73d-44f3-84da-3060bdedcee3 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: '-fLBsNoKIGtlN0e9v2AcfCs57oib5teICxBu9UgElHY' +id: node.hero +label: Hero +targetEntityType: node +cache: true diff --git a/drupal/config/core.entity_view_mode.node.rss.yml b/drupal/config/sync/core.entity_view_mode.node.rss.yml similarity index 81% rename from drupal/config/core.entity_view_mode.node.rss.yml rename to drupal/config/sync/core.entity_view_mode.node.rss.yml index d9d585a..669c82b 100644 --- a/drupal/config/core.entity_view_mode.node.rss.yml +++ b/drupal/config/sync/core.entity_view_mode.node.rss.yml @@ -1,4 +1,4 @@ -uuid: 910f9ed4-d14b-4d01-aa35-c9a06c361a47 +uuid: 29d210e3-152f-4271-804b-b5aeccb0b213 langcode: en status: false dependencies: diff --git a/drupal/config/core.entity_view_mode.node.search_index.yml b/drupal/config/sync/core.entity_view_mode.node.search_index.yml similarity index 83% rename from drupal/config/core.entity_view_mode.node.search_index.yml rename to drupal/config/sync/core.entity_view_mode.node.search_index.yml index 063fff0..2162eec 100644 --- a/drupal/config/core.entity_view_mode.node.search_index.yml +++ b/drupal/config/sync/core.entity_view_mode.node.search_index.yml @@ -1,4 +1,4 @@ -uuid: 678c6c78-d612-4aeb-825a-9f566fba4a8d +uuid: 2b016e67-ed60-4237-bcee-47f61639368b langcode: en status: false dependencies: diff --git a/drupal/config/core.entity_view_mode.node.search_result.yml b/drupal/config/sync/core.entity_view_mode.node.search_result.yml similarity index 84% rename from drupal/config/core.entity_view_mode.node.search_result.yml rename to drupal/config/sync/core.entity_view_mode.node.search_result.yml index ac6cc95..70bfe15 100644 --- a/drupal/config/core.entity_view_mode.node.search_result.yml +++ b/drupal/config/sync/core.entity_view_mode.node.search_result.yml @@ -1,4 +1,4 @@ -uuid: 969bef84-6aef-4d1f-bd01-db012b2edad9 +uuid: 633849f8-ae15-4cfe-8e3a-8cb407ece16a langcode: en status: false dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.node.small_teaser.yml b/drupal/config/sync/core.entity_view_mode.node.small_teaser.yml new file mode 100644 index 0000000..6c0d688 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.node.small_teaser.yml @@ -0,0 +1,12 @@ +uuid: a3d30e1c-9e2d-4683-9127-06f556abb112 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: lulkSzjQ1KNGdYNGZUe1nK8moHQ0vOwtAMxclh7EbnY +id: node.small_teaser +label: 'Small teaser' +targetEntityType: node +cache: true diff --git a/drupal/config/core.entity_view_mode.node.teaser.yml b/drupal/config/sync/core.entity_view_mode.node.teaser.yml similarity index 82% rename from drupal/config/core.entity_view_mode.node.teaser.yml rename to drupal/config/sync/core.entity_view_mode.node.teaser.yml index e30ae80..5f8515a 100644 --- a/drupal/config/core.entity_view_mode.node.teaser.yml +++ b/drupal/config/sync/core.entity_view_mode.node.teaser.yml @@ -1,4 +1,4 @@ -uuid: bc2001f7-f35d-441e-adc2-ef8be9a3297b +uuid: e934394b-ae9d-40e2-b4bf-7739563d3a43 langcode: en status: true dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.node.token.yml b/drupal/config/sync/core.entity_view_mode.node.token.yml new file mode 100644 index 0000000..ca65630 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.node.token.yml @@ -0,0 +1,10 @@ +uuid: 3a3ab00b-f832-4eca-81a9-8a13ae6b38f6 +langcode: en +status: true +dependencies: + module: + - node +id: node.token +label: Token +targetEntityType: node +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.path_alias.token.yml b/drupal/config/sync/core.entity_view_mode.path_alias.token.yml new file mode 100644 index 0000000..39032c5 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.path_alias.token.yml @@ -0,0 +1,10 @@ +uuid: 53ee9926-ac4c-4920-b69a-8d6a00bdb921 +langcode: en +status: true +dependencies: + module: + - path_alias +id: path_alias.token +label: Token +targetEntityType: path_alias +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.post.activity.yml b/drupal/config/sync/core.entity_view_mode.post.activity.yml new file mode 100644 index 0000000..b14e189 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.post.activity.yml @@ -0,0 +1,12 @@ +uuid: a89798ea-b35d-4eae-a210-eb54743b2b54 +langcode: en +status: true +dependencies: + module: + - social_post +_core: + default_config_hash: C7jN5Ir6IticKf_T5catiIapjlD2RLRF6P-Y13NCqfQ +id: post.activity +label: Activity +targetEntityType: post +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.post.activity_comment.yml b/drupal/config/sync/core.entity_view_mode.post.activity_comment.yml new file mode 100644 index 0000000..6b813b6 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.post.activity_comment.yml @@ -0,0 +1,12 @@ +uuid: 049a742a-37e6-4e5a-ada2-6e2a3a6e288c +langcode: en +status: true +dependencies: + module: + - social_post +_core: + default_config_hash: cCy_sVSMi5Y7Emunx-Us8Qb9yzlw-GSrnkpW8LRWoD8 +id: post.activity_comment +label: 'Activity comment' +targetEntityType: post +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.post.album.yml b/drupal/config/sync/core.entity_view_mode.post.album.yml new file mode 100644 index 0000000..7175dbb --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.post.album.yml @@ -0,0 +1,12 @@ +uuid: e3876422-25e5-4313-ad08-52b648bcad2e +langcode: en +status: true +dependencies: + module: + - social_post +_core: + default_config_hash: 3e0sWZaEmXPIiNCWokIYxArWrElMfKXORguC-nnoh6k +id: post.album +label: Album +targetEntityType: post +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.post.featured.yml b/drupal/config/sync/core.entity_view_mode.post.featured.yml new file mode 100644 index 0000000..e2af6ce --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.post.featured.yml @@ -0,0 +1,12 @@ +uuid: e8488463-16bb-496b-b3fd-b7cb49c22f52 +langcode: en +status: true +dependencies: + module: + - social_post +_core: + default_config_hash: '-aiJ-hpnasS25Ws9SU0W6Fn4yEaT3wMLYc4BHrIddrQ' +id: post.featured +label: Featured +targetEntityType: post +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.autocomplete_item.yml b/drupal/config/sync/core.entity_view_mode.profile.autocomplete_item.yml new file mode 100644 index 0000000..606969a --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.autocomplete_item.yml @@ -0,0 +1,12 @@ +uuid: 0093322f-7f31-4434-b33d-d9b61a2c7b8a +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: JH3nv505iN4UqNbGtEugpWqpm3_rIery4SKKuY7m70w +id: profile.autocomplete_item +label: 'Autocomplete Item' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.compact.yml b/drupal/config/sync/core.entity_view_mode.profile.compact.yml new file mode 100644 index 0000000..83d3ebc --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.compact.yml @@ -0,0 +1,12 @@ +uuid: dc7cde3c-9bb5-44ea-a830-7d3670006837 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: anz9ltkbslFLYv4Mlzxb0htf6HueGYPqSZUZI7zAdkc +id: profile.compact +label: 'Compact Avatar' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.compact_notification.yml b/drupal/config/sync/core.entity_view_mode.profile.compact_notification.yml new file mode 100644 index 0000000..adbc398 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.compact_notification.yml @@ -0,0 +1,12 @@ +uuid: 43e8d37f-f832-4a65-8e12-83f7e0f29925 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: n12lIObk4emC0lDI24D8lc8yzDP9t1R5IbQ29HHGL-M +id: profile.compact_notification +label: 'Compact Notifcation' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.compact_teaser.yml b/drupal/config/sync/core.entity_view_mode.profile.compact_teaser.yml new file mode 100644 index 0000000..99ee564 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.compact_teaser.yml @@ -0,0 +1,12 @@ +uuid: 87195d6d-1ddd-4279-bd6c-4391f1b12fa4 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: hmyLw8np1Uh1v6B6ByZqIwItE1yXHrT1khezvyTEoOk +id: profile.compact_teaser +label: 'Compact Teaser' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.hero.yml b/drupal/config/sync/core.entity_view_mode.profile.hero.yml new file mode 100644 index 0000000..9204d59 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.hero.yml @@ -0,0 +1,12 @@ +uuid: 948847fa-b874-4f81-be6f-c9027777c913 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: xdbH1V3Bt9GEL2CC6M60aOSNjKeK1jpRpWoB6_OZl80 +id: profile.hero +label: Hero +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.medium_teaser.yml b/drupal/config/sync/core.entity_view_mode.profile.medium_teaser.yml new file mode 100644 index 0000000..c25fd2b --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.medium_teaser.yml @@ -0,0 +1,12 @@ +uuid: 0bc61d2f-f0f4-4be2-8039-7c76eaaf012e +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: B0Y4S1DEVz3FrF9XpfD2khNdG0IFOnNomL9FLrFusDk +id: profile.medium_teaser +label: 'Medium Teaser' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.name.yml b/drupal/config/sync/core.entity_view_mode.profile.name.yml new file mode 100644 index 0000000..d495771 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.name.yml @@ -0,0 +1,12 @@ +uuid: 4e69339f-4e6f-456d-81d6-9f6d2f9dd9b8 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: uZskjNgOEUdKQ5z_ZXx1K6A5ofp84f81Ra_ACAD_HqA +id: profile.name +label: Name +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.search_index.yml b/drupal/config/sync/core.entity_view_mode.profile.search_index.yml new file mode 100644 index 0000000..cd1ba08 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.search_index.yml @@ -0,0 +1,12 @@ +uuid: 66df25b4-3d9c-42a7-a6e9-744fe5c256d6 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: wmO6xCxLIrGhfwHdZnry41ZEiacB3O0VogCoyxIgWuI +id: profile.search_index +label: 'Search Index' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.small.yml b/drupal/config/sync/core.entity_view_mode.profile.small.yml new file mode 100644 index 0000000..1f454cc --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.small.yml @@ -0,0 +1,12 @@ +uuid: aa02e7e4-bcb9-4ecb-bad8-35600304ba38 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: jKBVdYcXFQuNJWKHW8lusoDp-moh7l1VryBlgy1QBq8 +id: profile.small +label: 'Small Avatar' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.small_teaser.yml b/drupal/config/sync/core.entity_view_mode.profile.small_teaser.yml new file mode 100644 index 0000000..febd170 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.small_teaser.yml @@ -0,0 +1,12 @@ +uuid: 7550f0d4-5e63-465d-9465-648162b2d896 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: 1pGJP3tKJXIdHu3fWL9HU-hTPEXcKpqxsWadT9Wdh8s +id: profile.small_teaser +label: 'Small Teaser' +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.statistic.yml b/drupal/config/sync/core.entity_view_mode.profile.statistic.yml new file mode 100644 index 0000000..191ccb8 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.statistic.yml @@ -0,0 +1,12 @@ +uuid: a664da9c-e908-44b4-91a6-1b35862c2f90 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: gSY7Iq34MsGC2YGJRjAG4F9yBWl2ioVsLxU1eyM83G4 +id: profile.statistic +label: Statistic +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.table.yml b/drupal/config/sync/core.entity_view_mode.profile.table.yml new file mode 100644 index 0000000..fbe53c9 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.table.yml @@ -0,0 +1,12 @@ +uuid: 96d179cb-3501-4f28-ac88-e1511fd8a3cb +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: YcYEl_VJgKpEnxk1iIM85ybbcVWyZHCzgsxjh_DAtuk +id: profile.table +label: Table +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.teaser.yml b/drupal/config/sync/core.entity_view_mode.profile.teaser.yml new file mode 100644 index 0000000..5ae4cb8 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.teaser.yml @@ -0,0 +1,12 @@ +uuid: 1a1225f2-c14e-42cf-afc8-206d1bc04c39 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: QwHKCTpE1suKE_XELJtpxPdCy6856mg2nrGY2GQI6tw +id: profile.teaser +label: Teaser +targetEntityType: profile +cache: true diff --git a/drupal/config/sync/core.entity_view_mode.profile.token.yml b/drupal/config/sync/core.entity_view_mode.profile.token.yml new file mode 100644 index 0000000..43644e6 --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.profile.token.yml @@ -0,0 +1,10 @@ +uuid: aaef11a5-b9b0-4be1-85c2-baf5957f261c +langcode: en +status: true +dependencies: + module: + - profile +id: profile.token +label: Token +targetEntityType: profile +cache: true diff --git a/drupal/config/core.entity_view_mode.taxonomy_term.full.yml b/drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml similarity index 84% rename from drupal/config/core.entity_view_mode.taxonomy_term.full.yml rename to drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml index c571823..0a79b00 100644 --- a/drupal/config/core.entity_view_mode.taxonomy_term.full.yml +++ b/drupal/config/sync/core.entity_view_mode.taxonomy_term.full.yml @@ -1,4 +1,4 @@ -uuid: c7714b9d-0823-4982-ad32-093689929ca1 +uuid: a75f5250-3532-402d-9cf8-9f839a60f631 langcode: en status: true dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.taxonomy_term.token.yml b/drupal/config/sync/core.entity_view_mode.taxonomy_term.token.yml new file mode 100644 index 0000000..b6bbd3b --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.taxonomy_term.token.yml @@ -0,0 +1,10 @@ +uuid: 49479e73-6f58-4037-b876-fe01872a28ae +langcode: en +status: true +dependencies: + module: + - taxonomy +id: taxonomy_term.token +label: Token +targetEntityType: taxonomy_term +cache: true diff --git a/drupal/config/core.entity_view_mode.user.compact.yml b/drupal/config/sync/core.entity_view_mode.user.compact.yml similarity index 82% rename from drupal/config/core.entity_view_mode.user.compact.yml rename to drupal/config/sync/core.entity_view_mode.user.compact.yml index 6b6d2a8..f4c4ea5 100644 --- a/drupal/config/core.entity_view_mode.user.compact.yml +++ b/drupal/config/sync/core.entity_view_mode.user.compact.yml @@ -1,4 +1,4 @@ -uuid: bbe2008d-b9e8-4bf5-884a-b0129691e2b8 +uuid: a1e237cd-5eaa-4582-87e2-589bfd55e0dd langcode: en status: true dependencies: diff --git a/drupal/config/core.entity_view_mode.user.full.yml b/drupal/config/sync/core.entity_view_mode.user.full.yml similarity index 82% rename from drupal/config/core.entity_view_mode.user.full.yml rename to drupal/config/sync/core.entity_view_mode.user.full.yml index 1b5415a..0a8e378 100644 --- a/drupal/config/core.entity_view_mode.user.full.yml +++ b/drupal/config/sync/core.entity_view_mode.user.full.yml @@ -1,4 +1,4 @@ -uuid: 25ea421b-7c4f-4d75-ab37-576a75c2e573 +uuid: 53917ed6-921b-426b-bcfd-59a50ea313bf langcode: en status: false dependencies: diff --git a/drupal/config/sync/core.entity_view_mode.user.token.yml b/drupal/config/sync/core.entity_view_mode.user.token.yml new file mode 100644 index 0000000..2b1c90d --- /dev/null +++ b/drupal/config/sync/core.entity_view_mode.user.token.yml @@ -0,0 +1,10 @@ +uuid: a462ada9-de90-4d23-84fc-fb4e1e78a88b +langcode: en +status: true +dependencies: + module: + - user +id: user.token +label: Token +targetEntityType: user +cache: true diff --git a/drupal/config/sync/core.extension.yml b/drupal/config/sync/core.extension.yml new file mode 100644 index 0000000..cff5272 --- /dev/null +++ b/drupal/config/sync/core.extension.yml @@ -0,0 +1,139 @@ +module: + activity_basics: 0 + activity_creator: 0 + activity_logger: 0 + activity_send: 0 + activity_send_email: 0 + activity_viewer: 0 + address: 0 + admin_toolbar: 0 + admin_toolbar_tools: 0 + advancedqueue: 0 + better_exposed_filters: 0 + block: 0 + block_content: 0 + breakpoint: 0 + ckeditor: 0 + color: 0 + comment: 0 + config: 0 + config_update: 0 + crop: 0 + datetime: 0 + dropdown: 0 + dynamic_entity_reference: 0 + dynamic_page_cache: 0 + editor: 0 + editor_advanced_link: 0 + entity: 0 + entity_access_by_field: 0 + exif_orientation: 0 + field: 0 + field_group: 0 + file: 0 + file_mdm: 0 + file_mdm_exif: 0 + file_mdm_font: 0 + filter: 0 + flag: 0 + gin_toolbar: 0 + ginvite: 0 + gnode: 0 + grequest: 0 + group: 0 + group_core_comments: 0 + gvbo: 0 + image: 0 + image_effects: 0 + image_widget_crop: 0 + inline_form_errors: 0 + jquery_ui: 0 + jquery_ui_datepicker: 0 + jquery_ui_slider: 0 + jquery_ui_touch_punch: 0 + like_and_dislike: 0 + link: 0 + mailsystem: 0 + mentions: 0 + menu_link_content: 0 + menu_ui: 0 + message: 0 + node: 0 + options: 0 + override_node_options: 0 + path: 0 + path_alias: 0 + profile: 0 + r4032login: 0 + redirect: 0 + role_delegation: 0 + search_api: 0 + search_api_db: 0 + select2: 0 + serialization: 0 + social_activity: 0 + social_advanced_queue: 0 + social_comment: 0 + social_comment_upload: 0 + social_core: 0 + social_editor: 0 + social_event: 0 + social_event_invite: 0 + social_event_managers: 0 + social_file_private: 0 + social_follow_content: 0 + social_font: 0 + social_footer: 0 + social_group_gvbo: 0 + social_group_invite: 0 + social_lets_connect: 0 + social_lets_connect_contact: 0 + social_lets_connect_usage: 0 + social_like: 0 + social_mentions: 0 + social_node: 0 + social_page: 0 + social_post: 0 + social_post_album: 0 + social_post_photo: 0 + social_profile: 0 + social_queue_storage: 0 + social_search: 0 + social_swiftmail: 0 + social_topic: 0 + social_user: 0 + swiftmailer: 0 + system: 0 + taxonomy: 0 + telephone: 0 + template_suggestions_extra: 0 + text: 0 + token: 0 + tome: 0 + tome_base: 0 + tome_static: 0 + tome_sync: 0 + toolbar: 0 + ultimate_cron: 0 + update: 0 + update_helper: 0 + user: 0 + variationcache: 0 + views_bulk_operations: 0 + views_infinite_scroll: 0 + votingapi: 0 + social_group: 2 + social_group_flexible_group: 5 + social_group_request: 6 + views: 10 + improved_theme_settings: 50 + social: 1000 +theme: + claro: 0 + bootstrap: 0 + gin: 0 + socialbase: 0 + socialblue: 0 +profile: social +_core: + default_config_hash: R4IF-ClDHXxblLcG0L7MgsLvfBIMAvi_skumNFQwkDc diff --git a/drupal/config/sync/core.menu.static_menu_link_overrides.yml b/drupal/config/sync/core.menu.static_menu_link_overrides.yml new file mode 100644 index 0000000..df14c46 --- /dev/null +++ b/drupal/config/sync/core.menu.static_menu_link_overrides.yml @@ -0,0 +1,3 @@ +definitions: { } +_core: + default_config_hash: jdY7AU0tU-QsjmiOw3W8vwpYMb-By--_MSFgbqKUTYM diff --git a/drupal/config/sync/crop.settings.yml b/drupal/config/sync/crop.settings.yml new file mode 100644 index 0000000..2fd1693 --- /dev/null +++ b/drupal/config/sync/crop.settings.yml @@ -0,0 +1,3 @@ +flush_derivative_images: true +_core: + default_config_hash: 7eGOTSG7bRv_AAqu-Ls8CSnob7zPF1ez-lD2OLZgBHs diff --git a/drupal/config/sync/crop.type.hero.yml b/drupal/config/sync/crop.type.hero.yml new file mode 100644 index 0000000..f545e24 --- /dev/null +++ b/drupal/config/sync/crop.type.hero.yml @@ -0,0 +1,14 @@ +uuid: d18a1590-d29d-4738-8267-3b34f3d05dd0 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: M7gu0hM5eQSjsQOYu7Dr2RFyItlWKYgKPQIfGbhVo1Q +id: hero +label: Large +description: 'Header image in the hero region' +aspect_ratio: '1200:423' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/sync/crop.type.hero_an.yml b/drupal/config/sync/crop.type.hero_an.yml new file mode 100644 index 0000000..94777c3 --- /dev/null +++ b/drupal/config/sync/crop.type.hero_an.yml @@ -0,0 +1,14 @@ +uuid: a47a4cc3-d7fa-4126-94cc-9b7e90028b36 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: j5YPnaCyl47xAY39R53lJJnPGilTYlERuPS9ORto4D8 +id: hero_an +label: 'Hero AN' +description: 'Header image in the AN hero region' +aspect_ratio: '1200:490' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/sync/crop.type.hero_small.yml b/drupal/config/sync/crop.type.hero_small.yml new file mode 100644 index 0000000..73a98ea --- /dev/null +++ b/drupal/config/sync/crop.type.hero_small.yml @@ -0,0 +1,14 @@ +uuid: a10f9a77-2ac5-4d04-acd9-68d44f2ad4d1 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: XhgGhzh4Elr2gujmY6Fr0fsTKh4yCp5IYBIDbGzA8Os +id: hero_small +label: 'Small hero' +description: 'A smaller variant for the hero region' +aspect_ratio: '1200:193' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/sync/crop.type.profile_large.yml b/drupal/config/sync/crop.type.profile_large.yml new file mode 100644 index 0000000..5eb828e --- /dev/null +++ b/drupal/config/sync/crop.type.profile_large.yml @@ -0,0 +1,14 @@ +uuid: 69ed9782-7bed-43b5-be40-11158e8823b7 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: dSb4z9EX4Ax03cx2nQ8Kwm34h3AqmJBy2-dKLvGp7S4 +id: profile_large +label: 'Profile large' +description: 'Large sized profile image' +aspect_ratio: '128:128' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/sync/crop.type.profile_medium.yml b/drupal/config/sync/crop.type.profile_medium.yml new file mode 100644 index 0000000..0d704cd --- /dev/null +++ b/drupal/config/sync/crop.type.profile_medium.yml @@ -0,0 +1,14 @@ +uuid: 4c09d6cd-6263-4f0e-8755-2851b8321d0d +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: UiiDzWwsv6XOpSmO4iIT1PB8aaXWNq_fdJWki4TlE6I +id: profile_medium +label: 'Profile medium' +description: 'Medium sized profile image' +aspect_ratio: '44:44' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/sync/crop.type.profile_small.yml b/drupal/config/sync/crop.type.profile_small.yml new file mode 100644 index 0000000..4f5b332 --- /dev/null +++ b/drupal/config/sync/crop.type.profile_small.yml @@ -0,0 +1,14 @@ +uuid: 9e73c903-0638-4e87-bdf3-7291773a0fa4 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: dlzhxhc9R3WQnyWJ8TkCz2Ekote8VmPbaRRfj2wNtpM +id: profile_small +label: 'Profile small' +description: 'Small sized profile image' +aspect_ratio: '24:24' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/sync/crop.type.teaser.yml b/drupal/config/sync/crop.type.teaser.yml new file mode 100644 index 0000000..da8f069 --- /dev/null +++ b/drupal/config/sync/crop.type.teaser.yml @@ -0,0 +1,14 @@ +uuid: dbca4630-a486-4d9f-8456-d4becdce15d9 +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: vyCdkkefvOpkZ7JeB2BoNPPPIT2tyd8DmKJI-Zc0bro +id: teaser +label: Small +description: 'Teaser image in overviews' +aspect_ratio: '220:220' +soft_limit_width: null +soft_limit_height: null +hard_limit_width: null +hard_limit_height: null diff --git a/drupal/config/editor.editor.basic_html.yml b/drupal/config/sync/editor.editor.basic_html.yml similarity index 81% rename from drupal/config/editor.editor.basic_html.yml rename to drupal/config/sync/editor.editor.basic_html.yml index 6983852..e84c91a 100644 --- a/drupal/config/editor.editor.basic_html.yml +++ b/drupal/config/sync/editor.editor.basic_html.yml @@ -1,4 +1,4 @@ -uuid: d6a0b428-72e4-4f30-94a4-b8fdaaa817db +uuid: 46a31f16-b32f-443e-b581-9b7d7c136728 langcode: en status: true dependencies: @@ -7,7 +7,7 @@ dependencies: module: - ckeditor _core: - default_config_hash: AqlPmO16LvJI4D0Ih6u4GFQIzqr5OnLgAUSjcUGWk2g + default_config_hash: mdKO3KXPS8rRqXWc4mcMDYpq2CDxX5aPmT8_7FRY88E format: basic_html editor: ckeditor settings: @@ -42,6 +42,11 @@ settings: name: Tools items: - Source + - Maximize + - + name: Tables + items: + - Table plugins: stylescombo: styles: '' diff --git a/drupal/config/editor.editor.full_html.yml b/drupal/config/sync/editor.editor.full_html.yml similarity index 62% rename from drupal/config/editor.editor.full_html.yml rename to drupal/config/sync/editor.editor.full_html.yml index 015a728..e7a13ba 100644 --- a/drupal/config/editor.editor.full_html.yml +++ b/drupal/config/sync/editor.editor.full_html.yml @@ -1,4 +1,4 @@ -uuid: 51cee909-1287-49a6-b4ae-f0cad843bb0d +uuid: f7915a64-7337-41c3-bd87-49bd6092e022 langcode: en status: true dependencies: @@ -7,7 +7,7 @@ dependencies: module: - ckeditor _core: - default_config_hash: 967ijj7p6i7rwrYl7r08WQFeCY_c23YAh0h8u-w_CXM + default_config_hash: YvMwqCuM0QsEzQEGaa64MAB9Me3w6oUCfBuOAni-xmk format: full_html editor: ckeditor settings: @@ -24,6 +24,13 @@ settings: - Subscript - '-' - RemoveFormat + - + name: Alignment + items: + - JustifyLeft + - JustifyCenter + - JustifyRight + - JustifyBlock - name: Linking items: @@ -45,19 +52,23 @@ settings: name: 'Block Formatting' items: - Format + - Styles - name: Tools items: - ShowBlocks - Source + - Maximize plugins: + language: + language_list: un stylescombo: - styles: '' + styles: "a.btn.btn-default|Default link\r\na.btn.btn-primary|Primary link\r\na.btn.btn-accent|Accent link\r\nspan.badge.badge-primary|Primary badge\r\nspan.badge.badge-secondary|Secondary badge\r\nspan.badge.badge--pill.badge-default|Pill badge" image_upload: status: true scheme: public directory: inline-images max_size: '' max_dimensions: - width: 0 - height: 0 + width: null + height: null diff --git a/drupal/config/sync/editor.editor.mail_html.yml b/drupal/config/sync/editor.editor.mail_html.yml new file mode 100644 index 0000000..ff379fb --- /dev/null +++ b/drupal/config/sync/editor.editor.mail_html.yml @@ -0,0 +1,40 @@ +uuid: 60bad620-63ef-4ab3-9e33-a4cb7d83a8ec +langcode: en +status: true +dependencies: + config: + - filter.format.mail_html + module: + - ckeditor +_core: + default_config_hash: 0ZuIyRqFfckI3FxNFvdEw4Qp4TI80a59GSXvtraNP7g +format: mail_html +editor: ckeditor +settings: + toolbar: + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - Underline + - + name: Links + items: + - DrupalLink + - DrupalUnlink + plugins: + language: + language_list: un + stylescombo: + styles: '' +image_upload: + status: false + scheme: public + directory: inline-images + max_size: '' + max_dimensions: + width: null + height: null diff --git a/drupal/config/sync/entity_access_by_field.settings.yml b/drupal/config/sync/entity_access_by_field.settings.yml new file mode 100644 index 0000000..111c8ae --- /dev/null +++ b/drupal/config/sync/entity_access_by_field.settings.yml @@ -0,0 +1,4 @@ +disable_public_visibility: 0 +default_visibility: community +_core: + default_config_hash: uRySwpnF0GmXwRrkevk3RH5ctq2wOpMCcC0HlpcJXP8 diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_destinations.yml b/drupal/config/sync/field.field.activity.activity.field_activity_destinations.yml new file mode 100644 index 0000000..777a96c --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_destinations.yml @@ -0,0 +1,23 @@ +uuid: dd0ee73c-39b4-4a06-ab89-9f86953645b9 +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_destinations + module: + - activity_creator + - options +_core: + default_config_hash: ifFlN1p18KKSRLYpdDTnNk-6b_ukzBltilGAq-zsj0k +id: activity.activity.field_activity_destinations +field_name: field_activity_destinations +entity_type: activity +bundle: activity +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_entity.yml b/drupal/config/sync/field.field.activity.activity.field_activity_entity.yml new file mode 100644 index 0000000..0870da4 --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_entity.yml @@ -0,0 +1,89 @@ +uuid: f283c63e-139e-475e-8180-5713666c5797 +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_entity + module: + - activity_creator + - dynamic_entity_reference +_core: + default_config_hash: 6qd0BAp_6j8O7rlCaJmCJYUPLL-Ap4oO56bVG1oO2Y4 +id: activity.activity.field_activity_entity +field_name: field_activity_entity +entity_type: activity +bundle: activity +label: Entity +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + comment: + handler: 'default:comment' + handler_settings: + target_bundles: + comment: comment + post_comment: post_comment + sort: + field: _none + auto_create: false + auto_create_bundle: comment + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + group: + handler: 'default:group' + handler_settings: + target_bundles: + open_group: open_group + sort: + field: _none + auto_create: false + auto_create_bundle: '' + message: + handler: 'default:message' + handler_settings: + target_bundles: + create_post_profile: create_post_profile + create_topic_community: create_topic_community + sort: + field: _none + auto_create: false + auto_create_bundle: create_post_profile + activity: + handler: 'default:activity' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_message.yml b/drupal/config/sync/field.field.activity.activity.field_activity_message.yml new file mode 100644 index 0000000..11a5e78 --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_message.yml @@ -0,0 +1,28 @@ +uuid: 6be6ca21-df84-4796-a6fa-f430d2e2bfd5 +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_message + module: + - activity_creator +_core: + default_config_hash: 19dLMuzBgJWTniBRU6j41HYlLGBd9Av6j7wRVjgYzPg +id: activity.activity.field_activity_message +field_name: field_activity_message +entity_type: activity +bundle: activity +label: Message +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: views + handler_settings: + view: + view_name: entity_reference_messages + display_name: entity_reference_1 + arguments: { } +field_type: entity_reference diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_output_text.yml b/drupal/config/sync/field.field.activity.activity.field_activity_output_text.yml new file mode 100644 index 0000000..ac81905 --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_output_text.yml @@ -0,0 +1,23 @@ +uuid: 389bf749-0237-42af-a2f8-f601d166c23c +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_output_text + module: + - activity_creator + - text +_core: + default_config_hash: KKtOWu8ilF4yMXycy8TjKgHrka_qCzukB621BsjEFlI +id: activity.activity.field_activity_output_text +field_name: field_activity_output_text +entity_type: activity +bundle: activity +label: 'Output text' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_recipient_group.yml b/drupal/config/sync/field.field.activity.activity.field_activity_recipient_group.yml new file mode 100644 index 0000000..41d1b66 --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_recipient_group.yml @@ -0,0 +1,29 @@ +uuid: ec0567b4-81c8-42f7-9a57-28160b7d9c12 +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_recipient_group + module: + - activity_creator +_core: + default_config_hash: GlGXvJdEAy6WuOe6x-V8yYH4YpbOIzoXIDlV7EqPxs8 +id: activity.activity.field_activity_recipient_group +field_name: field_activity_recipient_group +entity_type: activity +bundle: activity +label: 'Recipient group' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:group' + handler_settings: + target_bundles: { } + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_recipient_user.yml b/drupal/config/sync/field.field.activity.activity.field_activity_recipient_user.yml new file mode 100644 index 0000000..d754bf1 --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_recipient_user.yml @@ -0,0 +1,31 @@ +uuid: 770e5a4b-0dcd-4a07-bd06-0d9ad52b620e +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_recipient_user + module: + - activity_creator +_core: + default_config_hash: Ptq8d7gbpEhKHRDyRE-H7f_Puj-9V-ZAhjQ_J4IYBhg +id: activity.activity.field_activity_recipient_user +field_name: field_activity_recipient_user +entity_type: activity +bundle: activity +label: 'Recipient user' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: + include_anonymous: true + filter: + type: _none + target_bundles: null + sort: + field: _none + auto_create: false +field_type: entity_reference diff --git a/drupal/config/sync/field.field.activity.activity.field_activity_status.yml b/drupal/config/sync/field.field.activity.activity.field_activity_status.yml new file mode 100644 index 0000000..979ba39 --- /dev/null +++ b/drupal/config/sync/field.field.activity.activity.field_activity_status.yml @@ -0,0 +1,23 @@ +uuid: cc60058e-e604-4f36-a68a-17ce496196a6 +langcode: en +status: true +dependencies: + config: + - field.storage.activity.field_activity_status + module: + - activity_creator + - options +_core: + default_config_hash: 0iJW_c5isLf8NitQIboFDjNFixa5gdtCq9bCSVnzmCA +id: activity.activity.field_activity_status +field_name: field_activity_status +entity_type: activity +bundle: activity +label: Status +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.block_content.basic.field_basic_link.yml b/drupal/config/sync/field.field.block_content.basic.field_basic_link.yml new file mode 100644 index 0000000..07d7771 --- /dev/null +++ b/drupal/config/sync/field.field.block_content.basic.field_basic_link.yml @@ -0,0 +1,25 @@ +uuid: b6edb4cb-2807-43b9-bdad-d97aa83c6eb8 +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.storage.block_content.field_basic_link + module: + - link +_core: + default_config_hash: o02XWdMrOoXSWHUbw3rCJSgdmE-46-SkfkO8zrDkVzc +id: block_content.basic.field_basic_link +field_name: field_basic_link +entity_type: block_content +bundle: basic +label: 'Read more link' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + link_type: 17 + title: 1 +field_type: link diff --git a/drupal/config/sync/field.field.block_content.basic.field_text_block.yml b/drupal/config/sync/field.field.block_content.basic.field_text_block.yml new file mode 100644 index 0000000..07980f0 --- /dev/null +++ b/drupal/config/sync/field.field.block_content.basic.field_text_block.yml @@ -0,0 +1,23 @@ +uuid: ac7ccaad-a33b-4687-aae1-a03f16deff6e +langcode: en +status: true +dependencies: + config: + - block_content.type.basic + - field.storage.block_content.field_text_block + module: + - text +_core: + default_config_hash: D3557WNCMboeGhSVeZKxZMFyWRBAYfECCbOUvdzpH5M +id: block_content.basic.field_text_block +field_name: field_text_block +entity_type: block_content +bundle: basic +label: 'Text block' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_call_to_action_link.yml b/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_call_to_action_link.yml new file mode 100644 index 0000000..d765c6d --- /dev/null +++ b/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_call_to_action_link.yml @@ -0,0 +1,25 @@ +uuid: d90b9638-12ec-4286-af13-f20665ac4dfe +langcode: en +status: true +dependencies: + config: + - block_content.type.hero_call_to_action_block + - field.storage.block_content.field_call_to_action_link + module: + - link +_core: + default_config_hash: 89wVWXZQWrbkCxBJw70Tf25JIE13VEb91lMP6laeBAA +id: block_content.hero_call_to_action_block.field_call_to_action_link +field_name: field_call_to_action_link +entity_type: block_content +bundle: hero_call_to_action_block +label: 'Call to action link' +description: 'Creates a call to action link in a block' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + link_type: 17 + title: 1 +field_type: link diff --git a/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_hero_image.yml b/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_hero_image.yml new file mode 100644 index 0000000..7710b4d --- /dev/null +++ b/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_hero_image.yml @@ -0,0 +1,40 @@ +uuid: d6507a73-1a1b-4b6b-8b8f-1f39f66de387 +langcode: en +status: true +dependencies: + config: + - block_content.type.hero_call_to_action_block + - field.storage.block_content.field_hero_image + module: + - image +_core: + default_config_hash: bw3rFX1_GNZiTa_UQFsrdKaicbWViquBFwFwSrc9U2U +id: block_content.hero_call_to_action_block.field_hero_image +field_name: field_hero_image +entity_type: block_content +bundle: hero_call_to_action_block +label: 'Hero image' +description: 'This image will be displayed on the block' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '50 MB' + max_resolution: 2048x1080 + min_resolution: 200x200 + alt_field: false + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_text_block.yml b/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_text_block.yml new file mode 100644 index 0000000..ae6abf9 --- /dev/null +++ b/drupal/config/sync/field.field.block_content.hero_call_to_action_block.field_text_block.yml @@ -0,0 +1,23 @@ +uuid: bc998fe2-01c4-4284-aea1-3718853f381f +langcode: en +status: true +dependencies: + config: + - block_content.type.hero_call_to_action_block + - field.storage.block_content.field_text_block + module: + - text +_core: + default_config_hash: pf0u87YISlIX-ebHzxLYNM6sf56ZVxPj2ATC2OdxDOU +id: block_content.hero_call_to_action_block.field_text_block +field_name: field_text_block +entity_type: block_content +bundle: hero_call_to_action_block +label: 'Text block' +description: 'This input text will be displayed in the block' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.block_content.platform_intro.field_text_block.yml b/drupal/config/sync/field.field.block_content.platform_intro.field_text_block.yml new file mode 100644 index 0000000..6417cf0 --- /dev/null +++ b/drupal/config/sync/field.field.block_content.platform_intro.field_text_block.yml @@ -0,0 +1,23 @@ +uuid: afc251db-fe03-4f5b-b74d-8a99adac0866 +langcode: en +status: true +dependencies: + config: + - block_content.type.platform_intro + - field.storage.block_content.field_text_block + module: + - text +_core: + default_config_hash: EE1SG3Q5nLA2O-Axwe-Ds4V7VOe4aN788LIB0MFMK7E +id: block_content.platform_intro.field_text_block +field_name: field_text_block +entity_type: block_content +bundle: platform_intro +label: 'Text block' +description: 'The text to show in this block.' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/field.field.comment.comment.comment_body.yml b/drupal/config/sync/field.field.comment.comment.field_comment_body.yml similarity index 52% rename from drupal/config/field.field.comment.comment.comment_body.yml rename to drupal/config/sync/field.field.comment.comment.field_comment_body.yml index eae7843..19e2d8a 100644 --- a/drupal/config/field.field.comment.comment.comment_body.yml +++ b/drupal/config/sync/field.field.comment.comment.field_comment_body.yml @@ -1,22 +1,22 @@ -uuid: 852c37cb-b4bd-498e-a03c-47ac79d0ca07 +uuid: defe2870-9eaf-4bc9-99bf-c95970013fc1 langcode: en status: true dependencies: config: - comment.type.comment - - field.storage.comment.comment_body + - field.storage.comment.field_comment_body module: - text _core: - default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs -id: comment.comment.comment_body -field_name: comment_body + default_config_hash: hd9cfoAqIw-zJH_Bb4Ril__gsqORlrIMhRSTAJ7g594 +id: comment.comment.field_comment_body +field_name: field_comment_body entity_type: comment bundle: comment label: Comment description: '' required: true -translatable: true +translatable: false default_value: { } default_value_callback: '' settings: { } diff --git a/drupal/config/sync/field.field.comment.comment.field_comment_files.yml b/drupal/config/sync/field.field.comment.comment.field_comment_files.yml new file mode 100644 index 0000000..07461a1 --- /dev/null +++ b/drupal/config/sync/field.field.comment.comment.field_comment_files.yml @@ -0,0 +1,29 @@ +uuid: 07edfc3e-5576-4b22-92dc-34aebe98611b +langcode: en +status: true +dependencies: + config: + - comment.type.comment + - field.storage.comment.field_comment_files + module: + - file +_core: + default_config_hash: 2r0a1cQqdEdEetEmMIxoqWVcaDdRctOLKa2Roy0X1UQ +id: comment.comment.field_comment_files +field_name: field_comment_files +entity_type: comment +bundle: comment +label: Files +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt pdf doc docx xls xlsx ppt pptx csv png gif jpg jpeg' + max_filesize: '' + description_field: false + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/drupal/config/sync/field.field.comment.post_comment.field_comment_body.yml b/drupal/config/sync/field.field.comment.post_comment.field_comment_body.yml new file mode 100644 index 0000000..6ee3ddf --- /dev/null +++ b/drupal/config/sync/field.field.comment.post_comment.field_comment_body.yml @@ -0,0 +1,23 @@ +uuid: 67229f17-9f62-42c8-b12e-374973d92204 +langcode: en +status: true +dependencies: + config: + - comment.type.post_comment + - field.storage.comment.field_comment_body + module: + - text +_core: + default_config_hash: GiX8YiQqlzuNVPmuQJwBQwwb4OYBlya8povx8_9MTqY +id: comment.post_comment.field_comment_body +field_name: field_comment_body +entity_type: comment +bundle: post_comment +label: 'Post comment' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_account.yml b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_account.yml new file mode 100644 index 0000000..9b819b4 --- /dev/null +++ b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_account.yml @@ -0,0 +1,30 @@ +uuid: e3e3ce87-5625-4af2-8539-46f59df9188c +langcode: en +status: true +dependencies: + config: + - field.storage.event_enrollment.field_account + module: + - social_event +_core: + default_config_hash: hT3ch3WHdm7qK_WG9muPJczKnhCHiixAY4bbHxhSf3Y +id: event_enrollment.event_enrollment.field_account +field_name: field_account +entity_type: event_enrollment +bundle: event_enrollment +label: Account +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: + include_anonymous: false + filter: + type: _none + target_bundles: null + sort: + field: _none +field_type: entity_reference diff --git a/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_email.yml b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_email.yml new file mode 100644 index 0000000..c853c15 --- /dev/null +++ b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_email.yml @@ -0,0 +1,22 @@ +uuid: c1956939-f528-45ec-ba36-ad89a3891829 +langcode: en +status: true +dependencies: + config: + - field.storage.event_enrollment.field_email + module: + - social_event +_core: + default_config_hash: R_91zs47PZEqBaASRXki7wiGMLhe3J-sWir0R8w2Fhg +id: event_enrollment.event_enrollment.field_email +field_name: field_email +entity_type: event_enrollment +bundle: event_enrollment +label: 'Email address' +description: 'Enter your email, so we can send you event updates.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: email diff --git a/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_enrollment_status.yml b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_enrollment_status.yml new file mode 100644 index 0000000..3ace4ea --- /dev/null +++ b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_enrollment_status.yml @@ -0,0 +1,25 @@ +uuid: 07f62178-4290-4184-b8a9-938a9a773a32 +langcode: en +status: true +dependencies: + config: + - field.storage.event_enrollment.field_enrollment_status + module: + - options + - social_event +_core: + default_config_hash: XgNJ1_CVEwnC4fSbjkxigoa4GcRuO24e62A-fLYcxxc +id: event_enrollment.event_enrollment.field_enrollment_status +field_name: field_enrollment_status +entity_type: event_enrollment +bundle: event_enrollment +label: 'Enrollment status' +description: '' +required: true +translatable: false +default_value: + - + value: '1' +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_event.yml b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_event.yml new file mode 100644 index 0000000..88fa836 --- /dev/null +++ b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_event.yml @@ -0,0 +1,29 @@ +uuid: 9d74de04-0f68-4d62-8901-038a5fe05431 +langcode: en +status: true +dependencies: + config: + - field.storage.event_enrollment.field_event + - node.type.event + module: + - social_event +_core: + default_config_hash: WLl7Vwltvns43j0YjLdua-m682y1jsInbmh8RCukF1U +id: event_enrollment.event_enrollment.field_event +field_name: field_event +entity_type: event_enrollment +bundle: event_enrollment +label: Event +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + sort: + field: _none +field_type: entity_reference diff --git a/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_request_message.yml b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_request_message.yml new file mode 100644 index 0000000..6486774 --- /dev/null +++ b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_request_message.yml @@ -0,0 +1,22 @@ +uuid: db35d06c-b61f-4075-90dd-f88dad9205b0 +langcode: en +status: true +dependencies: + config: + - field.storage.event_enrollment.field_request_message + module: + - social_event +_core: + default_config_hash: zd1aTykGVcW8R_dL4nVG9RBxjdXRhqZvTOCi2aKLVtU +id: event_enrollment.event_enrollment.field_request_message +field_name: field_request_message +entity_type: event_enrollment +bundle: event_enrollment +label: 'Request message' +description: 'You can leave a message in your request. Once your request is approved, you will receive a notification via email and notification center.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string_long diff --git a/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_request_or_invite_status.yml b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_request_or_invite_status.yml new file mode 100644 index 0000000..3f30b68 --- /dev/null +++ b/drupal/config/sync/field.field.event_enrollment.event_enrollment.field_request_or_invite_status.yml @@ -0,0 +1,23 @@ +uuid: 041e2dcb-485d-41a6-9959-259c87603796 +langcode: en +status: true +dependencies: + config: + - field.storage.event_enrollment.field_request_or_invite_status + module: + - options + - social_event +_core: + default_config_hash: TIF_Jhz8s0UWGFe-v8hNAvqEF5Y24LQK6dJ6Q6iYwsc +id: event_enrollment.event_enrollment.field_request_or_invite_status +field_name: field_request_or_invite_status +entity_type: event_enrollment +bundle: event_enrollment +label: 'Request or invite status' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_integer diff --git a/drupal/config/sync/field.field.font.font.field_fallback.yml b/drupal/config/sync/field.field.font.font.field_fallback.yml new file mode 100644 index 0000000..fbc8fd4 --- /dev/null +++ b/drupal/config/sync/field.field.font.font.field_fallback.yml @@ -0,0 +1,25 @@ +uuid: 3ecd7929-367c-43df-8335-10f9eb69b657 +langcode: en +status: true +dependencies: + config: + - field.storage.font.field_fallback + module: + - options + - social_font +_core: + default_config_hash: xNgLqOltHR6usR9URkrfQZvMXHmD7H3Asokk2_ZX3-s +id: font.font.field_fallback +field_name: field_fallback +entity_type: font +bundle: font +label: Fallback +description: '' +required: true +translatable: false +default_value: + - + value: '0' +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.font.font.field_fonts.yml b/drupal/config/sync/field.field.font.font.field_fonts.yml new file mode 100644 index 0000000..3c35dbe --- /dev/null +++ b/drupal/config/sync/field.field.font.font.field_fonts.yml @@ -0,0 +1,29 @@ +uuid: f215d3cc-6b76-4085-a3c9-a573829d977e +langcode: en +status: true +dependencies: + config: + - field.storage.font.field_fonts + module: + - file + - social_font +_core: + default_config_hash: 2vhz8GVbkTxZLgg0J74iT-ICdhzcMV8DLUL52PvvOJ0 +id: font.font.field_fonts +field_name: field_fonts +entity_type: font +bundle: font +label: Fonts +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: fonts + file_extensions: 'eot svg ttf woff woff2' + max_filesize: '' + description_field: false + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/drupal/config/sync/field.field.group.closed_group.field_group_address.yml b/drupal/config/sync/field.field.group.closed_group.field_group_address.yml new file mode 100644 index 0000000..8e619c5 --- /dev/null +++ b/drupal/config/sync/field.field.group.closed_group.field_group_address.yml @@ -0,0 +1,36 @@ +uuid: b97c9509-88fb-4a1d-ada8-4cd0295f5d1b +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_address + - group.type.closed_group + module: + - address +_core: + default_config_hash: H9cdkDLJn4ezb_rtJWhIMPj2R7dTWzAdNbl_j-oOcyw +id: group.closed_group.field_group_address +field_name: field_group_address +entity_type: group +bundle: closed_group +label: Address +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + postalCode: postalCode + addressLine1: addressLine1 + dependentLocality: '0' + sortingCode: '0' + addressLine2: '0' + organization: '0' + recipient: '0' + langcode_override: '' + field_overrides: { } +field_type: address diff --git a/drupal/config/sync/field.field.group.closed_group.field_group_description.yml b/drupal/config/sync/field.field.group.closed_group.field_group_description.yml new file mode 100644 index 0000000..6ab27b8 --- /dev/null +++ b/drupal/config/sync/field.field.group.closed_group.field_group_description.yml @@ -0,0 +1,23 @@ +uuid: 7ad7ffd9-a997-4c77-90c2-a74cd5fa3428 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_description + - group.type.closed_group + module: + - text +_core: + default_config_hash: xDNbbtwO2Cx6YOYqQTNvJ62wm1DB2NC8k7u9k2ZMpYU +id: group.closed_group.field_group_description +field_name: field_group_description +entity_type: group +bundle: closed_group +label: Description +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.group.closed_group.field_group_image.yml b/drupal/config/sync/field.field.group.closed_group.field_group_image.yml new file mode 100644 index 0000000..4865b9f --- /dev/null +++ b/drupal/config/sync/field.field.group.closed_group.field_group_image.yml @@ -0,0 +1,40 @@ +uuid: 4a958c6e-adef-4b1d-aa20-27205776507a +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_image + - group.type.closed_group + module: + - image +_core: + default_config_hash: 8CHbo8rFHj4m-ss0svicglmjTh90_cGzmoZWCRcDjlI +id: group.closed_group.field_group_image +field_name: field_group_image +entity_type: group +bundle: closed_group +label: 'Group Image' +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.group.closed_group.field_group_location.yml b/drupal/config/sync/field.field.group.closed_group.field_group_location.yml new file mode 100644 index 0000000..56e9f0d --- /dev/null +++ b/drupal/config/sync/field.field.group.closed_group.field_group_location.yml @@ -0,0 +1,21 @@ +uuid: 2c2d8d6a-b135-4dfb-8949-0e111a6e62de +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_location + - group.type.closed_group +_core: + default_config_hash: TH226YOewWLT_cRqouHI3HgxBja_hnGGschVeqfOSHU +id: group.closed_group.field_group_location +field_name: field_group_location +entity_type: group +bundle: closed_group +label: 'Location name' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.group.flexible_group.field_flexible_group_visibility.yml b/drupal/config/sync/field.field.group.flexible_group.field_flexible_group_visibility.yml new file mode 100644 index 0000000..a754ce5 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_flexible_group_visibility.yml @@ -0,0 +1,23 @@ +uuid: 82542558-fef6-4e9c-9888-7de9bf4d0dbc +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_flexible_group_visibility + - group.type.flexible_group + module: + - options +_core: + default_config_hash: Zk8axcu4fLTYuxGjuUbpLNMDkqatpu4qhw7UXRDCmxM +id: group.flexible_group.field_flexible_group_visibility +field_name: field_flexible_group_visibility +entity_type: group +bundle: flexible_group +label: 'Group visibility' +description: 'Who can see the group.' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_address.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_address.yml new file mode 100644 index 0000000..d63e994 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_address.yml @@ -0,0 +1,36 @@ +uuid: b83150af-c046-40d3-8a73-965c6d2ecd5b +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_address + - group.type.flexible_group + module: + - address +_core: + default_config_hash: 2mSRqIkWY9H7HpCbs-hpmy-6QPLF0itM4Eqs03XEXYw +id: group.flexible_group.field_group_address +field_name: field_group_address +entity_type: group +bundle: flexible_group +label: Address +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + postalCode: postalCode + addressLine1: addressLine1 + dependentLocality: '0' + sortingCode: '0' + addressLine2: '0' + organization: '0' + recipient: '0' + langcode_override: '' + field_overrides: { } +field_type: address diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_allowed_join_method.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_allowed_join_method.yml new file mode 100644 index 0000000..149dac6 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_allowed_join_method.yml @@ -0,0 +1,27 @@ +uuid: 7eb0b12b-7643-43f8-afee-4b3aa7917f4e +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_allowed_join_method + - group.type.flexible_group + module: + - options +_core: + default_config_hash: VtgTXNfjsaADUCJe7ivuTQOsEB0aCpW4VnfHMTWFuyc +id: group.flexible_group.field_group_allowed_join_method +field_name: field_group_allowed_join_method +entity_type: group +bundle: flexible_group +label: 'Allowed join method' +description: 'Choose how people can join this group.' +required: true +translatable: false +default_value: + - + value: direct + - + value: added +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_allowed_visibility.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_allowed_visibility.yml new file mode 100644 index 0000000..dc6e3cf --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_allowed_visibility.yml @@ -0,0 +1,29 @@ +uuid: b1271e7a-7039-4363-a236-af344e6ffa80 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_allowed_visibility + - group.type.flexible_group + module: + - options +_core: + default_config_hash: B2skyt2zQ2A8UuREnOPGgBA_Ltld-b-brA03cIVVfPI +id: group.flexible_group.field_group_allowed_visibility +field_name: field_group_allowed_visibility +entity_type: group +bundle: flexible_group +label: 'Available content visibility' +description: 'Choose the allowed visibility settings for the group content.' +required: true +translatable: false +default_value: + - + value: public + - + value: community + - + value: group +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_description.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_description.yml new file mode 100644 index 0000000..7af054f --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_description.yml @@ -0,0 +1,23 @@ +uuid: aaef0271-0d87-4376-b53b-db1e2a3dd81a +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_description + - group.type.flexible_group + module: + - text +_core: + default_config_hash: xYajg2KwDbvts2r7ExmC2kCIltULmCVA4UJa2he9b40 +id: group.flexible_group.field_group_description +field_name: field_group_description +entity_type: group +bundle: flexible_group +label: Description +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_image.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_image.yml new file mode 100644 index 0000000..5e32f42 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_image.yml @@ -0,0 +1,40 @@ +uuid: 4c07d006-1ad5-4764-b47f-f3470f95e8f5 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_image + - group.type.flexible_group + module: + - image +_core: + default_config_hash: srwFwnY09Yt2hAz7DEpwGeeCWm4lQBiHFvYb19Sp2Ns +id: group.flexible_group.field_group_image +field_name: field_group_image +entity_type: group +bundle: flexible_group +label: Image +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_invite_by_member.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_invite_by_member.yml new file mode 100644 index 0000000..3399da4 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_invite_by_member.yml @@ -0,0 +1,25 @@ +uuid: bf537cf6-cdbc-4640-9f64-7fbc79d31206 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_invite_by_member + - group.type.flexible_group +_core: + default_config_hash: 74e7fK7dIDiA_ddfryNsRj9dN09de68yRLUxXTmDbLQ +id: group.flexible_group.field_group_invite_by_member +field_name: field_group_invite_by_member +entity_type: group +bundle: flexible_group +label: 'Allow members to share the group with others' +description: '' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_location.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_location.yml new file mode 100644 index 0000000..2c04515 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_location.yml @@ -0,0 +1,21 @@ +uuid: 4efbf0ed-2477-4e28-8379-708986040bc2 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_location + - group.type.flexible_group +_core: + default_config_hash: Y7RMitlHGsTDiUhxLKgSq128qsHSIxPbiy6UMGR0cSk +id: group.flexible_group.field_group_location +field_name: field_group_location +entity_type: group +bundle: flexible_group +label: 'Location name' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_posts_enabled.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_posts_enabled.yml new file mode 100644 index 0000000..aa04c78 --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_posts_enabled.yml @@ -0,0 +1,25 @@ +uuid: 06ef7881-c811-4580-93ad-915e6271555d +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_posts_enabled + - group.type.flexible_group +_core: + default_config_hash: bqkNZ5IJuhrWd1EzA2f6BY8ADOpsYwlF15oTVPCqFbc +id: group.flexible_group.field_group_posts_enabled +field_name: field_group_posts_enabled +entity_type: group +bundle: flexible_group +label: 'Enable posts for members' +description: 'If enabled, members will be able to publish posts in the group. If disabled, only group managers are able to publish posts.' +required: false +translatable: false +default_value: + - + value: 1 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/field.field.group.flexible_group.field_group_type.yml b/drupal/config/sync/field.field.group.flexible_group.field_group_type.yml new file mode 100644 index 0000000..0b373bf --- /dev/null +++ b/drupal/config/sync/field.field.group.flexible_group.field_group_type.yml @@ -0,0 +1,31 @@ +uuid: 34a1c447-bd84-477d-8789-37e711d0c4d1 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_type + - group.type.flexible_group + - taxonomy.vocabulary.group_type +_core: + default_config_hash: g5sbQ3TMwjAG-V6o-UAcADc3hzCaYO9zCPrzjWkBQYI +id: group.flexible_group.field_group_type +field_name: field_group_type +entity_type: group +bundle: flexible_group +label: Type +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + group_type: group_type + sort: + field: name + direction: asc + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group.open_group.field_group_address.yml b/drupal/config/sync/field.field.group.open_group.field_group_address.yml new file mode 100644 index 0000000..f3d6e93 --- /dev/null +++ b/drupal/config/sync/field.field.group.open_group.field_group_address.yml @@ -0,0 +1,38 @@ +uuid: 96f58159-47af-4628-874f-615a6d5a47c0 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_address + - group.type.open_group + module: + - address +_core: + default_config_hash: BPEWDlUpE5-cPwuz9O7eYpjG-brAo-OuFM_gRIWodbY +id: group.open_group.field_group_address +field_name: field_group_address +entity_type: group +bundle: open_group +label: Address +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + postalCode: postalCode + addressLine1: addressLine1 + dependentLocality: '0' + sortingCode: '0' + addressLine2: '0' + organization: '0' + givenName: '0' + additionalName: '0' + familyName: '0' + langcode_override: '' + field_overrides: { } +field_type: address diff --git a/drupal/config/sync/field.field.group.open_group.field_group_description.yml b/drupal/config/sync/field.field.group.open_group.field_group_description.yml new file mode 100644 index 0000000..bccf630 --- /dev/null +++ b/drupal/config/sync/field.field.group.open_group.field_group_description.yml @@ -0,0 +1,23 @@ +uuid: 339dabc1-b4bd-466c-8971-ca2937673332 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_description + - group.type.open_group + module: + - text +_core: + default_config_hash: SbxMZ_Odyu_9UiGxKl9a-Etr9nnsFr9UONXBgt3dIiI +id: group.open_group.field_group_description +field_name: field_group_description +entity_type: group +bundle: open_group +label: Description +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.group.open_group.field_group_image.yml b/drupal/config/sync/field.field.group.open_group.field_group_image.yml new file mode 100644 index 0000000..bc86a72 --- /dev/null +++ b/drupal/config/sync/field.field.group.open_group.field_group_image.yml @@ -0,0 +1,40 @@ +uuid: d6c380b1-72a0-42bc-a06a-011f8755dbfd +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_image + - group.type.open_group + module: + - image +_core: + default_config_hash: 9MU0oWlhR0IgFGZnZTCjONVEce9u29uEN1edEZcQAxU +id: group.open_group.field_group_image +field_name: field_group_image +entity_type: group +bundle: open_group +label: 'Group Image' +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.group.open_group.field_group_location.yml b/drupal/config/sync/field.field.group.open_group.field_group_location.yml new file mode 100644 index 0000000..7441b16 --- /dev/null +++ b/drupal/config/sync/field.field.group.open_group.field_group_location.yml @@ -0,0 +1,21 @@ +uuid: 50d66847-4f3d-406a-9ded-890984b3be64 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_location + - group.type.open_group +_core: + default_config_hash: J1paJHIS9R08olEYxw0uLNro5bI6KEaj8sheWGHWCW0 +id: group.open_group.field_group_location +field_name: field_group_location +entity_type: group +bundle: open_group +label: 'Location name' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.group.public_group.field_group_address.yml b/drupal/config/sync/field.field.group.public_group.field_group_address.yml new file mode 100644 index 0000000..3054878 --- /dev/null +++ b/drupal/config/sync/field.field.group.public_group.field_group_address.yml @@ -0,0 +1,38 @@ +uuid: e0647f55-3c1c-4ed7-92bd-cdafbe6aaf49 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_address + - group.type.public_group + module: + - address +_core: + default_config_hash: ghjm8x60p1hPl80OD7VxTqTDh_lDa8GCB9cV0tfshSY +id: group.public_group.field_group_address +field_name: field_group_address +entity_type: group +bundle: public_group +label: Address +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + postalCode: postalCode + addressLine1: addressLine1 + dependentLocality: '0' + sortingCode: '0' + addressLine2: '0' + organization: '0' + givenName: '0' + additionalName: '0' + familyName: '0' + langcode_override: '' + field_overrides: { } +field_type: address diff --git a/drupal/config/sync/field.field.group.public_group.field_group_description.yml b/drupal/config/sync/field.field.group.public_group.field_group_description.yml new file mode 100644 index 0000000..77b96a3 --- /dev/null +++ b/drupal/config/sync/field.field.group.public_group.field_group_description.yml @@ -0,0 +1,23 @@ +uuid: f48e2c73-852f-447d-a00b-15a0c413a6d9 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_description + - group.type.public_group + module: + - text +_core: + default_config_hash: iW7FYiG9qjPg8mBWEmrduz2IKONozPCF1rsnGUw52ZE +id: group.public_group.field_group_description +field_name: field_group_description +entity_type: group +bundle: public_group +label: Description +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.group.public_group.field_group_image.yml b/drupal/config/sync/field.field.group.public_group.field_group_image.yml new file mode 100644 index 0000000..3e35a0e --- /dev/null +++ b/drupal/config/sync/field.field.group.public_group.field_group_image.yml @@ -0,0 +1,40 @@ +uuid: 1000cf00-e286-4f0e-9a39-9869d570581f +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_image + - group.type.public_group + module: + - image +_core: + default_config_hash: 8nYM-KRF7ztUhF8jlTySNZtcnN4sABUWGVfH_UlA0kc +id: group.public_group.field_group_image +field_name: field_group_image +entity_type: group +bundle: public_group +label: 'Group Image' +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.group.public_group.field_group_location.yml b/drupal/config/sync/field.field.group.public_group.field_group_location.yml new file mode 100644 index 0000000..309dc09 --- /dev/null +++ b/drupal/config/sync/field.field.group.public_group.field_group_location.yml @@ -0,0 +1,21 @@ +uuid: f64cf570-b8b2-44d6-ac7e-6caa17fe76f8 +langcode: en +status: true +dependencies: + config: + - field.storage.group.field_group_location + - group.type.public_group +_core: + default_config_hash: cBgTQg7_F-v-hpcwm3Yeh_Us6hv8q4MDs1aBcy22iMs +id: group.public_group.field_group_location +field_name: field_group_location +entity_type: group +bundle: public_group +label: 'Location name' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.group_content.closed_group-group_invitation.group_roles.yml b/drupal/config/sync/field.field.group_content.closed_group-group_invitation.group_roles.yml new file mode 100644 index 0000000..a42ef6e --- /dev/null +++ b/drupal/config/sync/field.field.group_content.closed_group-group_invitation.group_roles.yml @@ -0,0 +1,22 @@ +uuid: dbbd793b-4190-4cfd-a738-78f39320b27f +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.closed_group-group_invitation +id: group_content.closed_group-group_invitation.group_roles +field_name: group_roles +entity_type: group_content +bundle: closed_group-group_invitation +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: closed_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.closed_group-group_invitation.invitation_status.yml b/drupal/config/sync/field.field.group_content.closed_group-group_invitation.invitation_status.yml new file mode 100644 index 0000000..fef66dc --- /dev/null +++ b/drupal/config/sync/field.field.group_content.closed_group-group_invitation.invitation_status.yml @@ -0,0 +1,23 @@ +uuid: 875295b3-8f1f-4e42-a55a-d5379105752d +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitation_status + - group.content_type.closed_group-group_invitation +id: group_content.closed_group-group_invitation.invitation_status +field_name: invitation_status +entity_type: group_content +bundle: closed_group-group_invitation +label: 'Invitation status' +description: '' +required: true +translatable: true +default_value: 0 +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/drupal/config/sync/field.field.group_content.closed_group-group_invitation.invitee_mail.yml b/drupal/config/sync/field.field.group_content.closed_group-group_invitation.invitee_mail.yml new file mode 100644 index 0000000..e822bf6 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.closed_group-group_invitation.invitee_mail.yml @@ -0,0 +1,19 @@ +uuid: a57a322f-25ef-414b-b979-fe30a93b1e42 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitee_mail + - group.content_type.closed_group-group_invitation +id: group_content.closed_group-group_invitation.invitee_mail +field_name: invitee_mail +entity_type: group_content +bundle: closed_group-group_invitation +label: 'Invitee mail' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: email diff --git a/drupal/config/sync/field.field.group_content.closed_group-group_membership.group_roles.yml b/drupal/config/sync/field.field.group_content.closed_group-group_membership.group_roles.yml new file mode 100644 index 0000000..1bdd08f --- /dev/null +++ b/drupal/config/sync/field.field.group_content.closed_group-group_membership.group_roles.yml @@ -0,0 +1,24 @@ +uuid: 08a71860-f826-4afc-ab79-b9c78cc052df +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.closed_group-group_membership +_core: + default_config_hash: xAvreYocc2OQaUkxofsyl7YVtsImf6tl93WdRPxzBKM +id: group_content.closed_group-group_membership.group_roles +field_name: group_roles +entity_type: group_content +bundle: closed_group-group_membership +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: closed_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.group_roles.yml b/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.group_roles.yml new file mode 100644 index 0000000..1cc5e9e --- /dev/null +++ b/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.group_roles.yml @@ -0,0 +1,22 @@ +uuid: a6690ef4-cde1-4b23-aa37-e7d6e91a255a +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.flexible_group-group_invitation +id: group_content.flexible_group-group_invitation.group_roles +field_name: group_roles +entity_type: group_content +bundle: flexible_group-group_invitation +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: flexible_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.invitation_status.yml b/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.invitation_status.yml new file mode 100644 index 0000000..527cd6c --- /dev/null +++ b/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.invitation_status.yml @@ -0,0 +1,23 @@ +uuid: df7b811d-99b0-49d7-ae53-d072465fc4f7 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitation_status + - group.content_type.flexible_group-group_invitation +id: group_content.flexible_group-group_invitation.invitation_status +field_name: invitation_status +entity_type: group_content +bundle: flexible_group-group_invitation +label: 'Invitation status' +description: '' +required: true +translatable: true +default_value: 0 +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.invitee_mail.yml b/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.invitee_mail.yml new file mode 100644 index 0000000..27d5243 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.flexible_group-group_invitation.invitee_mail.yml @@ -0,0 +1,19 @@ +uuid: d7a92875-ccf3-44ff-b841-7ad905efd868 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitee_mail + - group.content_type.flexible_group-group_invitation +id: group_content.flexible_group-group_invitation.invitee_mail +field_name: invitee_mail +entity_type: group_content +bundle: flexible_group-group_invitation +label: 'Invitee mail' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: email diff --git a/drupal/config/sync/field.field.group_content.flexible_group-group_membership.group_roles.yml b/drupal/config/sync/field.field.group_content.flexible_group-group_membership.group_roles.yml new file mode 100644 index 0000000..f95f796 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.flexible_group-group_membership.group_roles.yml @@ -0,0 +1,24 @@ +uuid: dcb22ec1-9a01-4f87-a0c4-9c958f7b62a8 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.flexible_group-group_membership +_core: + default_config_hash: BtPRixKmpCYlcEX6JRlfI8OKwokcAdGcVEEqljnHM6A +id: group_content.flexible_group-group_membership.group_roles +field_name: group_roles +entity_type: group_content +bundle: flexible_group-group_membership +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: flexible_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.field_grequest_message.yml b/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.field_grequest_message.yml new file mode 100644 index 0000000..e629ef9 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.field_grequest_message.yml @@ -0,0 +1,19 @@ +uuid: 822f2bc2-129d-4462-bb8c-a1074527e40f +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.field_grequest_message + - group.content_type.group_content_type_7fcb76fdf61a9 +id: group_content.group_content_type_7fcb76fdf61a9.field_grequest_message +field_name: field_grequest_message +entity_type: group_content +bundle: group_content_type_7fcb76fdf61a9 +label: Message +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string_long diff --git a/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_status.yml b/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_status.yml new file mode 100644 index 0000000..5860920 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_status.yml @@ -0,0 +1,29 @@ +uuid: c113af8a-5fe6-441d-b321-a08a8c68caa9 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.grequest_status + - group.content_type.group_content_type_7fcb76fdf61a9 + enforced: + module: + - social_group_request + - social_group_flexible_group +_core: + default_config_hash: I5Inm-vbqhyosL0nDWDX-FB23DXoWufCip1xUsZMARM +id: group_content.group_content_type_7fcb76fdf61a9.grequest_status +field_name: grequest_status +entity_type: group_content +bundle: group_content_type_7fcb76fdf61a9 +label: 'Request status' +description: '' +required: true +translatable: true +default_value: 0 +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_updated_by.yml b/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_updated_by.yml new file mode 100644 index 0000000..1d6c924 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.group_content_type_7fcb76fdf61a9.grequest_updated_by.yml @@ -0,0 +1,27 @@ +uuid: b0f4427c-7fd9-4fbd-937b-5b6d6aebc542 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.grequest_updated_by + - group.content_type.group_content_type_7fcb76fdf61a9 + enforced: + module: + - social_group_request + - social_group_flexible_group +_core: + default_config_hash: 2alMW-vtLUs1AQNL199J_hQNkrAIJG46Umdd7QLkFhc +id: group_content.group_content_type_7fcb76fdf61a9.grequest_updated_by +field_name: grequest_updated_by +entity_type: group_content +bundle: group_content_type_7fcb76fdf61a9 +label: 'Approved/Rejected by' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: { } +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.field_grequest_message.yml b/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.field_grequest_message.yml new file mode 100644 index 0000000..b472294 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.field_grequest_message.yml @@ -0,0 +1,19 @@ +uuid: 66f2446e-93f0-4da5-a40f-f76451ad489f +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.field_grequest_message + - group.content_type.group_content_type_c8bae2527294c +id: group_content.group_content_type_c8bae2527294c.field_grequest_message +field_name: field_grequest_message +entity_type: group_content +bundle: group_content_type_c8bae2527294c +label: Message +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string_long diff --git a/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.grequest_status.yml b/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.grequest_status.yml new file mode 100644 index 0000000..f23c782 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.grequest_status.yml @@ -0,0 +1,28 @@ +uuid: e58ace35-9d87-4e53-b510-5156a5419c02 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.grequest_status + - group.content_type.group_content_type_c8bae2527294c + enforced: + module: + - social_group_request +_core: + default_config_hash: od_Y85g-7FIbVLt_DDtzTbp_xWK0JcG5wxDeSOdfokk +id: group_content.group_content_type_c8bae2527294c.grequest_status +field_name: grequest_status +entity_type: group_content +bundle: group_content_type_c8bae2527294c +label: 'Request status' +description: '' +required: true +translatable: true +default_value: 0 +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.grequest_updated_by.yml b/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.grequest_updated_by.yml new file mode 100644 index 0000000..bf49420 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.group_content_type_c8bae2527294c.grequest_updated_by.yml @@ -0,0 +1,26 @@ +uuid: a5e97443-83ef-4594-b398-001436e46727 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.grequest_updated_by + - group.content_type.group_content_type_c8bae2527294c + enforced: + module: + - social_group_request +_core: + default_config_hash: y8wM-8QmDbhUtjwiPSGZxkrg-4kC3uSnxENfj8GnZTs +id: group_content.group_content_type_c8bae2527294c.grequest_updated_by +field_name: grequest_updated_by +entity_type: group_content +bundle: group_content_type_c8bae2527294c +label: 'Approved/Rejected by' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: { } +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.open_group-group_invitation.group_roles.yml b/drupal/config/sync/field.field.group_content.open_group-group_invitation.group_roles.yml new file mode 100644 index 0000000..1a80395 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.open_group-group_invitation.group_roles.yml @@ -0,0 +1,22 @@ +uuid: 06d30419-a8fe-4358-a4f3-794ccef65af0 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.open_group-group_invitation +id: group_content.open_group-group_invitation.group_roles +field_name: group_roles +entity_type: group_content +bundle: open_group-group_invitation +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: open_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.open_group-group_invitation.invitation_status.yml b/drupal/config/sync/field.field.group_content.open_group-group_invitation.invitation_status.yml new file mode 100644 index 0000000..b01eedf --- /dev/null +++ b/drupal/config/sync/field.field.group_content.open_group-group_invitation.invitation_status.yml @@ -0,0 +1,23 @@ +uuid: 6c7fb1b2-556f-4709-bca2-cb584cf7f9d6 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitation_status + - group.content_type.open_group-group_invitation +id: group_content.open_group-group_invitation.invitation_status +field_name: invitation_status +entity_type: group_content +bundle: open_group-group_invitation +label: 'Invitation status' +description: '' +required: true +translatable: true +default_value: 0 +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/drupal/config/sync/field.field.group_content.open_group-group_invitation.invitee_mail.yml b/drupal/config/sync/field.field.group_content.open_group-group_invitation.invitee_mail.yml new file mode 100644 index 0000000..0775227 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.open_group-group_invitation.invitee_mail.yml @@ -0,0 +1,19 @@ +uuid: e2538b22-39b8-42f8-a64f-3a0d43436abe +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitee_mail + - group.content_type.open_group-group_invitation +id: group_content.open_group-group_invitation.invitee_mail +field_name: invitee_mail +entity_type: group_content +bundle: open_group-group_invitation +label: 'Invitee mail' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: email diff --git a/drupal/config/sync/field.field.group_content.open_group-group_membership.group_roles.yml b/drupal/config/sync/field.field.group_content.open_group-group_membership.group_roles.yml new file mode 100644 index 0000000..e6d5d63 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.open_group-group_membership.group_roles.yml @@ -0,0 +1,24 @@ +uuid: b405980c-ac9b-44d5-adcf-3b4cc7e0861e +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.open_group-group_membership +_core: + default_config_hash: 3GrROZqOe12b7S_Fl8SlcvjcRHsUSmLO8ewsfmkY3Tg +id: group_content.open_group-group_membership.group_roles +field_name: group_roles +entity_type: group_content +bundle: open_group-group_membership +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: open_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.public_group-group_invitation.group_roles.yml b/drupal/config/sync/field.field.group_content.public_group-group_invitation.group_roles.yml new file mode 100644 index 0000000..c456cd8 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.public_group-group_invitation.group_roles.yml @@ -0,0 +1,22 @@ +uuid: bc6fcadc-206d-40f0-a813-2752ed339ade +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.public_group-group_invitation +id: group_content.public_group-group_invitation.group_roles +field_name: group_roles +entity_type: group_content +bundle: public_group-group_invitation +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: public_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.group_content.public_group-group_invitation.invitation_status.yml b/drupal/config/sync/field.field.group_content.public_group-group_invitation.invitation_status.yml new file mode 100644 index 0000000..229482e --- /dev/null +++ b/drupal/config/sync/field.field.group_content.public_group-group_invitation.invitation_status.yml @@ -0,0 +1,23 @@ +uuid: 0ba2a07e-7449-4c23-a1e8-4d0d4595c2cb +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitation_status + - group.content_type.public_group-group_invitation +id: group_content.public_group-group_invitation.invitation_status +field_name: invitation_status +entity_type: group_content +bundle: public_group-group_invitation +label: 'Invitation status' +description: '' +required: true +translatable: true +default_value: 0 +default_value_callback: '' +settings: + min: null + max: null + prefix: '' + suffix: '' +field_type: integer diff --git a/drupal/config/sync/field.field.group_content.public_group-group_invitation.invitee_mail.yml b/drupal/config/sync/field.field.group_content.public_group-group_invitation.invitee_mail.yml new file mode 100644 index 0000000..780a22d --- /dev/null +++ b/drupal/config/sync/field.field.group_content.public_group-group_invitation.invitee_mail.yml @@ -0,0 +1,19 @@ +uuid: 640de372-40e7-4328-a7df-f7b33f9be650 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.invitee_mail + - group.content_type.public_group-group_invitation +id: group_content.public_group-group_invitation.invitee_mail +field_name: invitee_mail +entity_type: group_content +bundle: public_group-group_invitation +label: 'Invitee mail' +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: email diff --git a/drupal/config/sync/field.field.group_content.public_group-group_membership.group_roles.yml b/drupal/config/sync/field.field.group_content.public_group-group_membership.group_roles.yml new file mode 100644 index 0000000..c966128 --- /dev/null +++ b/drupal/config/sync/field.field.group_content.public_group-group_membership.group_roles.yml @@ -0,0 +1,24 @@ +uuid: 6dc12c42-2f6d-4d2b-9631-068e65b82f99 +langcode: en +status: true +dependencies: + config: + - field.storage.group_content.group_roles + - group.content_type.public_group-group_membership +_core: + default_config_hash: rohsVmlG9rS-yMNboNOkLmPNsPMl8NmWNDFHzEmSCUg +id: group_content.public_group-group_membership.group_roles +field_name: group_roles +entity_type: group_content +bundle: public_group-group_membership +label: Roles +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + handler: 'group_type:group_role' + handler_settings: + group_type_id: public_group +field_type: entity_reference diff --git a/drupal/config/sync/field.field.message.approve_request_join_group.field_message_context.yml b/drupal/config/sync/field.field.message.approve_request_join_group.field_message_context.yml new file mode 100644 index 0000000..27cecc5 --- /dev/null +++ b/drupal/config/sync/field.field.message.approve_request_join_group.field_message_context.yml @@ -0,0 +1,26 @@ +uuid: 610d5115-58cb-40a6-a5aa-db16a54bf282 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.approve_request_join_group + enforced: + module: + - social_group_request + module: + - options +_core: + default_config_hash: '-Frke7lXE7srb9x73KJIElHRiR77p0C8Y-Z6ph2qHCE' +id: message.approve_request_join_group.field_message_context +field_name: field_message_context +entity_type: message +bundle: approve_request_join_group +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.approve_request_join_group.field_message_destination.yml b/drupal/config/sync/field.field.message.approve_request_join_group.field_message_destination.yml new file mode 100644 index 0000000..6658c2f --- /dev/null +++ b/drupal/config/sync/field.field.message.approve_request_join_group.field_message_destination.yml @@ -0,0 +1,26 @@ +uuid: 279db03c-4973-4ebd-b3e2-dbb0163c782a +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.approve_request_join_group + enforced: + module: + - social_group_request + module: + - options +_core: + default_config_hash: RHhymDaAbQNyPaWNQFc0oJG5FdRPHqHC99iQDJaTR6E +id: message.approve_request_join_group.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: approve_request_join_group +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.approve_request_join_group.field_message_related_object.yml b/drupal/config/sync/field.field.message.approve_request_join_group.field_message_related_object.yml new file mode 100644 index 0000000..790e780 --- /dev/null +++ b/drupal/config/sync/field.field.message.approve_request_join_group.field_message_related_object.yml @@ -0,0 +1,98 @@ +uuid: 60c3af3f-0157-453b-9f08-186fda748711 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.approve_request_join_group + enforced: + module: + - social_group_request + module: + - dynamic_entity_reference +_core: + default_config_hash: FhDJ7zcEx0KLA8RZ6e5uu-NaaIZNDWy2R2_pgzIqMSw +id: message.approve_request_join_group.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: approve_request_join_group +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_context.yml new file mode 100644 index 0000000..59e3cd6 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: cb076670-eac2-4074-9ae8-6e180e275a69 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_author_node_post + module: + - options +_core: + default_config_hash: Nhgmc61ETgjBoxG_2aImRvwdexG-U5s1doCdtx4hAYY +id: message.create_comment_author_node_post.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_author_node_post +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_destination.yml new file mode 100644 index 0000000..f157bdb --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: e5faa09a-594f-40f5-939a-6ef69ea256d6 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_author_node_post + module: + - options +_core: + default_config_hash: '-4P6HP5rTTmpZoGKBI1lBXTxiCNYa2_4Wl1MiqeLfDI' +id: message.create_comment_author_node_post.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_author_node_post +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_related_object.yml new file mode 100644 index 0000000..027722d --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_author_node_post.field_message_related_object.yml @@ -0,0 +1,104 @@ +uuid: ddbd1b2f-f24a-47d2-92d5-39188a448d10 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_author_node_post + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: IhI7JGNPzwHJrCUkPd3GdVhdL9SxteLUmx2miFLoPIw +id: message.create_comment_author_node_post.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_author_node_post +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_community_node.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_community_node.field_message_context.yml new file mode 100644 index 0000000..050aff6 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_community_node.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 763ac38b-6931-4e0c-8656-4e4355f41240 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_community_node + module: + - options +_core: + default_config_hash: 906sWgM0zYozX08boJlmQw_sKk8NM_ajqWndG_TdDsQ +id: message.create_comment_community_node.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_community_node +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_community_node.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_community_node.field_message_destination.yml new file mode 100644 index 0000000..471fcaa --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_community_node.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 2d7deab3-9147-4f97-9564-ab6377e39e01 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_community_node + module: + - options +_core: + default_config_hash: NPpXuuhlOUCVQ62aG8hZ_zoOreetRZrtxlUy7a-Mjq8 +id: message.create_comment_community_node.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_community_node +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_community_node.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_community_node.field_message_related_object.yml new file mode 100644 index 0000000..f9d1d1d --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_community_node.field_message_related_object.yml @@ -0,0 +1,104 @@ +uuid: 823fd8b3-7ec3-45e7-9c6d-3045c44a30c5 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_community_node + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: EjIv0Itu0MG9FsVh7LWjlIPCRmgRLjMMpXhTnFSr70c +id: message.create_comment_community_node.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_community_node +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_community_post.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_community_post.field_message_context.yml new file mode 100644 index 0000000..5122c8b --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_community_post.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 13c2450e-a053-4692-b161-ae28ed112278 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_community_post + module: + - options +_core: + default_config_hash: 4rdvYMNPdC8fV_TWcQTK_6zOrITiCZFt1EFlLs3fD_w +id: message.create_comment_community_post.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_community_post +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_community_post.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_community_post.field_message_destination.yml new file mode 100644 index 0000000..975a1e5 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_community_post.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 7664490b-7e2d-429d-9bf5-8ac547d57ffd +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_community_post + module: + - options +_core: + default_config_hash: 81Y0fEN14YHo9YW2hrzQ77vlO8hphyG3e1zde1De9OU +id: message.create_comment_community_post.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_community_post +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_community_post.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_community_post.field_message_related_object.yml new file mode 100644 index 0000000..0c6aec1 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_community_post.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: 4e3db06c-0752-415a-8fb8-6738ef480053 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_community_post + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: Ix4K_40ES-1TpCREaUEUr_G_fil2VSKIgcghJm8Cr9o +id: message.create_comment_community_post.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_community_post +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_following_node.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_following_node.field_message_context.yml new file mode 100644 index 0000000..430cf67 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_following_node.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 4ff43533-12e1-44e3-91fd-06a0807163d6 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_following_node + module: + - options +_core: + default_config_hash: Piuz2n5ougkqE7XjHlgbG-Mp_hpR_uV1i8c7_FaNI88 +id: message.create_comment_following_node.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_following_node +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_following_node.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_following_node.field_message_destination.yml new file mode 100644 index 0000000..148daa9 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_following_node.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: c723016f-b32e-4915-84f0-465c80b7faa3 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_following_node + module: + - options +_core: + default_config_hash: YWduKtAu2eaIj4NLryatzOUH3lp0uP919a27fHhKSNc +id: message.create_comment_following_node.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_following_node +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_following_node.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_following_node.field_message_related_object.yml new file mode 100644 index 0000000..5d7b0f2 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_following_node.field_message_related_object.yml @@ -0,0 +1,104 @@ +uuid: a69789e8-e2b9-466a-94d9-4012aa609f8d +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_following_node + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: GYrFqhPtiTXPs1-qjWSsI8fiAIZ6tfNYlo21xc3JmP0 +id: message.create_comment_following_node.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_following_node +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_group_node.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_group_node.field_message_context.yml new file mode 100644 index 0000000..9612d8b --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_group_node.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 263fb448-472a-4d78-8f61-3024ad989004 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_group_node + module: + - options +_core: + default_config_hash: sUX2_dxeeJimo4x6wVqZHLWYx4h84vzdoVGutY77_lc +id: message.create_comment_group_node.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_group_node +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_group_node.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_group_node.field_message_destination.yml new file mode 100644 index 0000000..11d616b --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_group_node.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: e9637d00-d3f9-44a0-826c-097afa319586 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_group_node + module: + - options +_core: + default_config_hash: CNZ6Vry1Dw5KubbX3JUXRGS8jaUYYZ0SEDnGZwCRBHc +id: message.create_comment_group_node.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_group_node +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_group_node.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_group_node.field_message_related_object.yml new file mode 100644 index 0000000..d57b905 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_group_node.field_message_related_object.yml @@ -0,0 +1,104 @@ +uuid: 1279ebc1-3f34-48e1-8c4e-17d4c0811caf +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_group_node + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: 3_aHgeKW3BVajBEBminQNpKuOUD5i6Y5Xyp02mE8rS0 +id: message.create_comment_group_node.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_group_node +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_group_post.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_group_post.field_message_context.yml new file mode 100644 index 0000000..4c99a54 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_group_post.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 15cc2a6b-0bc1-4ff0-b31e-1fb8159fc5a0 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_group_post + module: + - options +_core: + default_config_hash: ED6T0P7rteP40RObNXtnNzeWAndgw8LvAWDWyFZVjAA +id: message.create_comment_group_post.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_group_post +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_group_post.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_group_post.field_message_destination.yml new file mode 100644 index 0000000..e6c6065 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_group_post.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 239cb1af-34b8-42aa-be87-abf396b25e35 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_group_post + module: + - options +_core: + default_config_hash: AjANSHQfqvJnuUQlzyM7emySWvnB1Sh8QYVpDitVjGk +id: message.create_comment_group_post.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_group_post +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_group_post.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_group_post.field_message_related_object.yml new file mode 100644 index 0000000..a0ebd7d --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_group_post.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: 46a9f8ad-0903-45c3-ba7b-c7785d169818 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_group_post + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: 2IfmSy2UEbyoQdFurBxN6WskWQ-r9iNZfXjrm9Lmg-A +id: message.create_comment_group_post.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_group_post +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_context.yml new file mode 100644 index 0000000..892bda2 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: bda538d9-1393-4a33-8abd-af05641f4f35 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_post_profile + module: + - options +_core: + default_config_hash: 82icKv6Z7qbFSmz0A92NGYqMBlFkNg3wHQc2dwSS2Nw +id: message.create_comment_post_profile.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_post_profile +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_destination.yml new file mode 100644 index 0000000..a8ba7d4 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: b835589f-8a29-455f-8682-b963a169d081 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_post_profile + module: + - options +_core: + default_config_hash: I62J1u1wcexWjosRcIpl0pf_6RPrAJ4cWlPMxBUecHA +id: message.create_comment_post_profile.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_post_profile +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_related_object.yml new file mode 100644 index 0000000..4060601 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_post_profile.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: c841dd08-6043-4433-a653-f55d4c21afb3 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_post_profile + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: gxqgMkbZ4-V71lG6fhhLCcZ4XMUeAxilkoMECw5zVbw +id: message.create_comment_post_profile.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_post_profile +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_reply.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_reply.field_message_context.yml new file mode 100644 index 0000000..f8e0693 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_reply.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 814c3ed7-f490-49a0-bda7-b14e61ed2602 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_reply + module: + - options +_core: + default_config_hash: 9scupCAlDcXatd2xVP0OCCaU-8Orn2eKQp1RSvlTJfU +id: message.create_comment_reply.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_reply +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_reply.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_reply.field_message_destination.yml new file mode 100644 index 0000000..6bc5bba --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_reply.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: da99b41c-bfa2-4dc2-9d04-c861e885db33 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_reply + module: + - options +_core: + default_config_hash: 22jpDRQwoKsqNSTgmwaLlgLzTE0SxC7jR40-z3Q-NdM +id: message.create_comment_reply.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_reply +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_reply.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_reply.field_message_related_object.yml new file mode 100644 index 0000000..19d8eaa --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_reply.field_message_related_object.yml @@ -0,0 +1,104 @@ +uuid: cd4d43fb-4998-488d-a5f6-1a412e59d075 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_reply + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: fxGm_v8HAkvwnOMVmnjBtCR8VdruyTZXxMjQ228MZCo +id: message.create_comment_reply.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_reply +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_context.yml b/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_context.yml new file mode 100644 index 0000000..fed01be --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: d1003cdf-39ba-4a68-91f3-b39eb3abd0f4 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_comment_reply_mention + module: + - options +_core: + default_config_hash: vAj0ImaTrIUEUE2i8-e7eGiqSphhZccZYnIuUmlnORY +id: message.create_comment_reply_mention.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_comment_reply_mention +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_destination.yml b/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_destination.yml new file mode 100644 index 0000000..66355f4 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 9d324185-c8d5-4728-8c09-44e6065a73ce +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_comment_reply_mention + module: + - options +_core: + default_config_hash: b7EFM3cKq0mX4og3y1kCUVvI2i_26sV09dX7B-XGnyE +id: message.create_comment_reply_mention.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_comment_reply_mention +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_related_object.yml new file mode 100644 index 0000000..4ddd646 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_comment_reply_mention.field_message_related_object.yml @@ -0,0 +1,95 @@ +uuid: 8d060cdf-2cff-416c-a4f3-cba2834e2633 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_comment_reply_mention + module: + - dynamic_entity_reference +_core: + default_config_hash: kU5ufv-9aTpzeLrdOQWnYxNhjjOd0uNf1-MRfny2gdo +id: message.create_comment_reply_mention.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_comment_reply_mention +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_event_community.field_message_context.yml b/drupal/config/sync/field.field.message.create_event_community.field_message_context.yml new file mode 100644 index 0000000..f4ff852 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_event_community.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: e84b4b8f-6531-43e1-8d98-6ec8dc9f783b +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_event_community + module: + - options +_core: + default_config_hash: 8acckeWT5uuFmnpEuzVmX5CfAJEHee1n9DiSZOOIXPY +id: message.create_event_community.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_event_community +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_event_community.field_message_destination.yml b/drupal/config/sync/field.field.message.create_event_community.field_message_destination.yml new file mode 100644 index 0000000..55902f3 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_event_community.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 2f46d408-65e5-484d-85b7-43bded4dba8b +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_event_community + module: + - options +_core: + default_config_hash: zUvmSJ77xup2KcXOGF_2cqlkiIl42X4L8JMjFoY-0SI +id: message.create_event_community.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_event_community +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_event_community.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_event_community.field_message_related_object.yml new file mode 100644 index 0000000..cd4b0a2 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_event_community.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: bf354c8a-d841-424e-9070-53156a7621fd +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_event_community + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: FxX0EuiKxsVXwJNoUbwlmvoUEqvqi9ywM50HjtZT4lM +id: message.create_event_community.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_event_community +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_event_group.field_message_context.yml b/drupal/config/sync/field.field.message.create_event_group.field_message_context.yml new file mode 100644 index 0000000..5806e5f --- /dev/null +++ b/drupal/config/sync/field.field.message.create_event_group.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: e53fc2cb-082c-408d-9b94-1c7517c8c748 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_event_group + module: + - options +_core: + default_config_hash: NUy_O2KmdJDJQKXXWG8ihwtpmp0bPIli7TncVyQwwD0 +id: message.create_event_group.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_event_group +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_event_group.field_message_destination.yml b/drupal/config/sync/field.field.message.create_event_group.field_message_destination.yml new file mode 100644 index 0000000..fa52e3d --- /dev/null +++ b/drupal/config/sync/field.field.message.create_event_group.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 36741843-fd12-404a-bfe6-bbdf425ceab8 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_event_group + module: + - options +_core: + default_config_hash: HPbxsTGiymAdPmjNJ3IUNGB11U0f782BvjnBaszs9_c +id: message.create_event_group.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_event_group +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_event_group.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_event_group.field_message_related_object.yml new file mode 100644 index 0000000..cba8d03 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_event_group.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: 5efb8b13-cd14-4006-8f61-a1f5dde3403a +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_event_group + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: c6FQB65hzCVuXEUy5qFoWwjAKAvpJImOgWzpXpFa65Y +id: message.create_event_group.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_event_group +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_context.yml b/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_context.yml new file mode 100644 index 0000000..7e95d37 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 63255a5d-2873-45c8-a446-9f5a057f9e1a +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_like_node_or_post + module: + - options +_core: + default_config_hash: 6smwKYTNZbZucdwo00NdeizeXUfsaTqoE9_eqZgIsqE +id: message.create_like_node_or_post.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_like_node_or_post +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_destination.yml b/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_destination.yml new file mode 100644 index 0000000..0654793 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 16912904-feb6-47d1-a25a-09952af0e009 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_like_node_or_post + module: + - options +_core: + default_config_hash: jIwN3hiZCpsEzSqpLawpZg3-tmhMqBxSHERpAKJ_CrU +id: message.create_like_node_or_post.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_like_node_or_post +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_related_object.yml new file mode 100644 index 0000000..e3e2075 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_like_node_or_post.field_message_related_object.yml @@ -0,0 +1,95 @@ +uuid: c4a3f8e5-aef9-4ebd-aa44-6a9a63d462ea +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_like_node_or_post + module: + - dynamic_entity_reference +_core: + default_config_hash: v2w3GcVbUmpv2lcFst81DmyE5lSJPoo7pRS4y_GHZUQ +id: message.create_like_node_or_post.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_like_node_or_post +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_mention_comment.field_message_context.yml b/drupal/config/sync/field.field.message.create_mention_comment.field_message_context.yml new file mode 100644 index 0000000..74c35db --- /dev/null +++ b/drupal/config/sync/field.field.message.create_mention_comment.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: af4370cd-c340-4e73-8ef9-3c96e090d357 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_mention_comment + module: + - options +_core: + default_config_hash: KJIXfWZ491j8g5dICEQsgVUrSEj_jZXgRfiy-HXyUho +id: message.create_mention_comment.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_mention_comment +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_mention_comment.field_message_destination.yml b/drupal/config/sync/field.field.message.create_mention_comment.field_message_destination.yml new file mode 100644 index 0000000..9c4e053 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_mention_comment.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 9c8f00b0-ad8e-47ec-a7a6-b27a8cb44ee2 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_mention_comment + module: + - options +_core: + default_config_hash: 4ZpwlYKwHYWKQp3tYTBrt1Nq-cmvaufPjxX8F6pDkIA +id: message.create_mention_comment.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_mention_comment +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_mention_comment.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_mention_comment.field_message_related_object.yml new file mode 100644 index 0000000..985e9ab --- /dev/null +++ b/drupal/config/sync/field.field.message.create_mention_comment.field_message_related_object.yml @@ -0,0 +1,95 @@ +uuid: 5fae2aa4-e81e-49e0-ae05-6036c7a7e3e7 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_mention_comment + module: + - dynamic_entity_reference +_core: + default_config_hash: FWrIqb1MtmmLQxFNwDYq9BAAHG2JzUoiF4C1g-bUTiA +id: message.create_mention_comment.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_mention_comment +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_mention_post.field_message_context.yml b/drupal/config/sync/field.field.message.create_mention_post.field_message_context.yml new file mode 100644 index 0000000..d65f8e1 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_mention_post.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 7a7a1438-9c9e-4381-8b2f-01cc0b372c2d +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_mention_post + module: + - options +_core: + default_config_hash: vSWd1CGSTJAQBwN-5SvbeWfW3tjXZYtdWtEL9eN4OM0 +id: message.create_mention_post.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_mention_post +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_mention_post.field_message_destination.yml b/drupal/config/sync/field.field.message.create_mention_post.field_message_destination.yml new file mode 100644 index 0000000..9913451 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_mention_post.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 669c0383-db21-47d7-847b-c786507c1261 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_mention_post + module: + - options +_core: + default_config_hash: f1bYL89m8J7ZxxlH2pO2xGv1hbIAKhsLkrYdAmjNC_c +id: message.create_mention_post.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_mention_post +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_mention_post.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_mention_post.field_message_related_object.yml new file mode 100644 index 0000000..2ac4d16 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_mention_post.field_message_related_object.yml @@ -0,0 +1,95 @@ +uuid: 129bf1f6-9889-487b-8d78-1ea7d3cdecde +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_mention_post + module: + - dynamic_entity_reference +_core: + default_config_hash: LQzF8LKdWOPSvn0p2EVkxikX9bZwT058bUj64yGXBWg +id: message.create_mention_post.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_mention_post +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_post_community.field_message_context.yml b/drupal/config/sync/field.field.message.create_post_community.field_message_context.yml new file mode 100644 index 0000000..9838018 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_community.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 562940c5-62e9-44f9-9adb-91931f5653d7 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_post_community + module: + - options +_core: + default_config_hash: 5KfIuTF_y3KpelJrihbTEQxlbUGWM-371m0NmR43epA +id: message.create_post_community.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_post_community +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_post_community.field_message_destination.yml b/drupal/config/sync/field.field.message.create_post_community.field_message_destination.yml new file mode 100644 index 0000000..052e98f --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_community.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: edd71832-882f-4369-b1a0-42ca88f66be2 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_post_community + module: + - options +_core: + default_config_hash: _QtTu2mntihqrHFEAVSb3CJMxtco8UYqdqcU-D2em38 +id: message.create_post_community.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_post_community +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_post_community.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_post_community.field_message_related_object.yml new file mode 100644 index 0000000..0058256 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_community.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: 15af7070-572e-44cb-ac11-3202c384f75e +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_post_community + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: fmM7RnQ8biAGK3z3zcNvFHE639zWXLnWGKQuVQByppg +id: message.create_post_community.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_post_community +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_post_group.field_message_context.yml b/drupal/config/sync/field.field.message.create_post_group.field_message_context.yml new file mode 100644 index 0000000..66c37dc --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_group.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 3214fe61-6744-474c-b702-cc6d97b14eb1 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_post_group + module: + - options +_core: + default_config_hash: EMMftMafkVbQGFljBGHQvZ1xuHqC-SGaUvuYMhU2d_U +id: message.create_post_group.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_post_group +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_post_group.field_message_destination.yml b/drupal/config/sync/field.field.message.create_post_group.field_message_destination.yml new file mode 100644 index 0000000..5597499 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_group.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 49073b0b-958b-44f9-b0d7-3b05a2ff2b17 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_post_group + module: + - options +_core: + default_config_hash: Fdn97vInPgVruTxyR_4s3j7eFgKAOpG6Eu-IF-QerqA +id: message.create_post_group.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_post_group +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_post_group.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_post_group.field_message_related_object.yml new file mode 100644 index 0000000..5f61f9f --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_group.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: a1071d77-2205-4ce1-8ba3-94871f6854fd +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_post_group + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: 2b9p2WTNh4a6TME7sWTh_lWdzaH0vyQJEUBrvZAJ4_g +id: message.create_post_group.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_post_group +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_post_profile.field_message_context.yml b/drupal/config/sync/field.field.message.create_post_profile.field_message_context.yml new file mode 100644 index 0000000..53dd404 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_profile.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: f5ec8f00-f56e-433e-ba15-509f9980238f +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_post_profile + module: + - options +_core: + default_config_hash: 8UiBRHVfnrKN2KUrJSvlQ-r0rAFfqs0wOdvkHRoP15U +id: message.create_post_profile.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_post_profile +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_post_profile.field_message_destination.yml b/drupal/config/sync/field.field.message.create_post_profile.field_message_destination.yml new file mode 100644 index 0000000..24e2076 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_profile.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: eca61ff6-9b20-4883-a3c6-43c5f87f4a29 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_post_profile + module: + - options +_core: + default_config_hash: 7UKoDr-YvfjRgQUuh-5WaPO2jJzLJNJFX3XybSw8NUQ +id: message.create_post_profile.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_post_profile +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_post_profile.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_post_profile.field_message_related_object.yml new file mode 100644 index 0000000..66b7ee0 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_post_profile.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: 6e5553ab-5bb9-4a00-8e63-12b7f1aa6484 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_post_profile + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: ftHC66ZDZdo3yFXDrRTW2jUp2w-r4nT-Q0LatoxXUdY +id: message.create_post_profile.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_post_profile +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_topic_community.field_message_context.yml b/drupal/config/sync/field.field.message.create_topic_community.field_message_context.yml new file mode 100644 index 0000000..6311102 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_topic_community.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 0a3b1002-3650-416c-982e-b96edc71ae2d +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_topic_community + module: + - options +_core: + default_config_hash: gFK0i7C2SswYzoRuil84e1Do_zA0PWUvY0mGUrLSXzc +id: message.create_topic_community.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_topic_community +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_topic_community.field_message_destination.yml b/drupal/config/sync/field.field.message.create_topic_community.field_message_destination.yml new file mode 100644 index 0000000..28ee566 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_topic_community.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 214854c6-b1cc-4532-9f4d-e4d131bd51a5 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_topic_community + module: + - options +_core: + default_config_hash: ct_0eR-TLfLcn4g96tzah5BKe6sAfXNCG3hVewK92-M +id: message.create_topic_community.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_topic_community +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_topic_community.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_topic_community.field_message_related_object.yml new file mode 100644 index 0000000..5d748a2 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_topic_community.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: e6fa8bab-392d-4722-8ec8-2ed31df09204 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_topic_community + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: T7SWuyuGEU7L--FjQdZTsaoUm3Su4EioH5MCoE-hJMA +id: message.create_topic_community.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_topic_community +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.create_topic_group.field_message_context.yml b/drupal/config/sync/field.field.message.create_topic_group.field_message_context.yml new file mode 100644 index 0000000..59e4617 --- /dev/null +++ b/drupal/config/sync/field.field.message.create_topic_group.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 5fbce820-a3ce-4dd5-9cb3-4583fa16e132 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.create_topic_group + module: + - options +_core: + default_config_hash: dfQOtuiC6n9CnDahFcJLItpi5RfZqNoO4nYWEYsKFjQ +id: message.create_topic_group.field_message_context +field_name: field_message_context +entity_type: message +bundle: create_topic_group +label: Context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_topic_group.field_message_destination.yml b/drupal/config/sync/field.field.message.create_topic_group.field_message_destination.yml new file mode 100644 index 0000000..d197d9a --- /dev/null +++ b/drupal/config/sync/field.field.message.create_topic_group.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 95c4c8f1-6ea6-407a-9139-42d82be01d1d +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.create_topic_group + module: + - options +_core: + default_config_hash: 1o6xbwIeI5jYVQc8XcHSwZGuBBopUJbF3Uzu5bEcymg +id: message.create_topic_group.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: create_topic_group +label: Destinations +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.create_topic_group.field_message_related_object.yml b/drupal/config/sync/field.field.message.create_topic_group.field_message_related_object.yml new file mode 100644 index 0000000..5fba59c --- /dev/null +++ b/drupal/config/sync/field.field.message.create_topic_group.field_message_related_object.yml @@ -0,0 +1,108 @@ +uuid: 4d5f9991-7e5f-4044-9e69-5a041424ebdd +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.create_topic_group + - node.type.event + - node.type.topic + module: + - dynamic_entity_reference +_core: + default_config_hash: sg6BryPlS4kLTCjAFqG_Uz7vjHKdmoz7ohssfGO2vZ0 +id: message.create_topic_group.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: create_topic_group +label: 'Related object' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + node: + handler: 'default:node' + handler_settings: + target_bundles: + event: event + topic: topic + sort: + field: _none + auto_create: false + auto_create_bundle: event + post: + handler: 'default:post' + handler_settings: + target_bundles: null + sort: + field: _none + auto_create: false + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_context.yml b/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_context.yml new file mode 100644 index 0000000..8057fb4 --- /dev/null +++ b/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 510dcccb-d288-4e76-8d6a-2474f04c9af3 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.moved_content_between_groups + module: + - options +_core: + default_config_hash: kzAypjVdDdE1BMaI5V-_I6wdIwOphPSFRvr_zJ3umeg +id: message.moved_content_between_groups.field_message_context +field_name: field_message_context +entity_type: message +bundle: moved_content_between_groups +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_destination.yml b/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_destination.yml new file mode 100644 index 0000000..bcd0ac8 --- /dev/null +++ b/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: 209c3937-dde6-4f10-af1b-1ecb90c1262d +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.moved_content_between_groups + module: + - options +_core: + default_config_hash: m6OaP_pLMQjA4oyTCS0q9bAe7vc2_ply-AMTsxOYjTU +id: message.moved_content_between_groups.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: moved_content_between_groups +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_related_object.yml b/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_related_object.yml new file mode 100644 index 0000000..a27d040 --- /dev/null +++ b/drupal/config/sync/field.field.message.moved_content_between_groups.field_message_related_object.yml @@ -0,0 +1,95 @@ +uuid: ce6f3120-b55d-4852-ba12-245f4ff7bd26 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.moved_content_between_groups + module: + - dynamic_entity_reference +_core: + default_config_hash: PUxC32Q3knlm_a8ufn4V7mfGAhIMSKbVHaFNwh9HtuY +id: message.moved_content_between_groups.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: moved_content_between_groups +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_context.yml b/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_context.yml new file mode 100644 index 0000000..56cd0d7 --- /dev/null +++ b/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_context.yml @@ -0,0 +1,26 @@ +uuid: 91c126d3-acea-4a27-8c40-1e91852ced4b +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_context + - message.template.request_to_join_a_group + enforced: + module: + - social_group_request + module: + - options +_core: + default_config_hash: FHGZaw81NdB2dHVzJl5ANYHIy54QR6hY0oQyBU6tceU +id: message.request_to_join_a_group.field_message_context +field_name: field_message_context +entity_type: message +bundle: request_to_join_a_group +label: field_message_context +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_destination.yml b/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_destination.yml new file mode 100644 index 0000000..259f862 --- /dev/null +++ b/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_destination.yml @@ -0,0 +1,26 @@ +uuid: ecec669a-8d1b-478a-8093-cd1da18f009e +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_destination + - message.template.request_to_join_a_group + enforced: + module: + - social_group_request + module: + - options +_core: + default_config_hash: GAoGAEpNJMisZKKbqnqh61EnIgAvfNcw0OQyhGKWDbA +id: message.request_to_join_a_group.field_message_destination +field_name: field_message_destination +entity_type: message +bundle: request_to_join_a_group +label: field_message_destination +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_related_object.yml b/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_related_object.yml new file mode 100644 index 0000000..06da185 --- /dev/null +++ b/drupal/config/sync/field.field.message.request_to_join_a_group.field_message_related_object.yml @@ -0,0 +1,98 @@ +uuid: b08764e4-ad9b-46ab-a5cb-25dcdaf5ced4 +langcode: en +status: true +dependencies: + config: + - field.storage.message.field_message_related_object + - message.template.request_to_join_a_group + enforced: + module: + - social_group_request + module: + - dynamic_entity_reference +_core: + default_config_hash: cciXyJ78efvvo-cOx1JGehvO1Qm28KkulZKjdvttPo4 +id: message.request_to_join_a_group.field_message_related_object +field_name: field_message_related_object +entity_type: message +bundle: request_to_join_a_group +label: field_message_related_object +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + activity: + handler: 'default:activity' + handler_settings: { } + comment: + handler: 'default:comment' + handler_settings: { } + node: + handler: 'default:node' + handler_settings: { } + crop: + handler: 'default:crop' + handler_settings: { } + block_content: + handler: 'default:block_content' + handler_settings: { } + menu_link_content: + handler: 'default:menu_link_content' + handler_settings: { } + event_enrollment: + handler: 'default:event_enrollment' + handler_settings: { } + file: + handler: 'default:file' + handler_settings: { } + flagging: + handler: 'default:flagging' + handler_settings: { } + font: + handler: 'default:font' + handler_settings: { } + group: + handler: 'default:group' + handler_settings: { } + group_content: + handler: 'default:group_content' + handler_settings: { } + mentions: + handler: 'default:mentions' + handler_settings: { } + message: + handler: 'default:message' + handler_settings: { } + post: + handler: 'default:post' + handler_settings: { } + profile: + handler: 'default:profile' + handler_settings: { } + redirect: + handler: 'default:redirect' + handler_settings: { } + search_api_task: + handler: 'default:search_api_task' + handler_settings: { } + taxonomy_term: + handler: 'default:taxonomy_term' + handler_settings: { } + user: + handler: 'default:user' + handler_settings: { } + vote: + handler: 'default:vote' + handler_settings: { } + vote_result: + handler: 'default:vote_result' + handler_settings: { } + queue_storage_entity: + handler: 'default:queue_storage_entity' + handler_settings: { } + path_alias: + handler: 'default:path_alias' + handler_settings: { } +field_type: dynamic_entity_reference diff --git a/drupal/config/field.field.node.article.body.yml b/drupal/config/sync/field.field.node.event.body.yml similarity index 56% rename from drupal/config/field.field.node.article.body.yml rename to drupal/config/sync/field.field.node.event.body.yml index 6688e9b..1c75c2b 100644 --- a/drupal/config/field.field.node.article.body.yml +++ b/drupal/config/sync/field.field.node.event.body.yml @@ -1,25 +1,25 @@ -uuid: 7c2bebbb-55a9-4e24-9846-10f4fd9d22a0 +uuid: e3c002e5-67d3-45a8-9f9c-ae3d1ef90bb1 langcode: en status: true dependencies: config: - field.storage.node.body - - node.type.article + - node.type.event module: - text _core: - default_config_hash: IjZnOLWk1Pjq3WRg2pLSA1ERh7Po7izCq_p6UztZr2c -id: node.article.body + default_config_hash: oUXn4GJ-kbS5Grn3K5-ynbaM9E151PRQ8ljfhiZ0Hx0 +id: node.event.body field_name: body entity_type: node -bundle: article -label: Body +bundle: event +label: Description description: '' -required: false +required: true translatable: true default_value: { } default_value_callback: '' settings: - display_summary: true + display_summary: false required_summary: false field_type: text_with_summary diff --git a/drupal/config/sync/field.field.node.event.field_content_visibility.yml b/drupal/config/sync/field.field.node.event.field_content_visibility.yml new file mode 100644 index 0000000..2d5f927 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_content_visibility.yml @@ -0,0 +1,23 @@ +uuid: eb3834d9-44e0-44ea-a8b6-ccf1feafeecc +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_content_visibility + - node.type.event + module: + - entity_access_by_field +_core: + default_config_hash: 9iSE2zZKWKp11ebQhArov1yBrse_SRkU5ESVpMu-P6M +id: node.event.field_content_visibility +field_name: field_content_visibility +entity_type: node +bundle: event +label: Visibility +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: entity_access_field diff --git a/drupal/config/sync/field.field.node.event.field_enroll_method.yml b/drupal/config/sync/field.field.node.event.field_enroll_method.yml new file mode 100644 index 0000000..b2d9ddb --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_enroll_method.yml @@ -0,0 +1,25 @@ +uuid: e84765b1-15a7-4130-8cd3-b43a4b022ba6 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_enroll_method + - node.type.event + module: + - options +_core: + default_config_hash: a25qu-MSNo8yOT35IzGnoZOdcGAbsRlv9ndBH3h2cPI +id: node.event.field_enroll_method +field_name: field_enroll_method +entity_type: node +bundle: event +label: 'Enroll method' +description: '' +required: true +translatable: false +default_value: + - + value: 1 +default_value_callback: '' +settings: { } +field_type: list_integer diff --git a/drupal/config/sync/field.field.node.event.field_event_address.yml b/drupal/config/sync/field.field.node.event.field_event_address.yml new file mode 100644 index 0000000..673318f --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_address.yml @@ -0,0 +1,38 @@ +uuid: e2266d82-086b-4c85-96bb-4d3cfc592a52 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_address + - node.type.event + module: + - address +_core: + default_config_hash: wDkW9IOx4H0_4ZgWuBGd4lpVa-mWyziUegiY4ciRnNs +id: node.event.field_event_address +field_name: field_event_address +entity_type: node +bundle: event +label: Address +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + postalCode: postalCode + addressLine1: addressLine1 + dependentLocality: '0' + sortingCode: '0' + addressLine2: '0' + organization: '0' + givenName: '0' + additionalName: '0' + familyName: '0' + langcode_override: '' + field_overrides: { } +field_type: address diff --git a/drupal/config/sync/field.field.node.event.field_event_all_day.yml b/drupal/config/sync/field.field.node.event.field_event_all_day.yml new file mode 100644 index 0000000..fd1d181 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_all_day.yml @@ -0,0 +1,25 @@ +uuid: 8b30e335-fae2-4737-a135-edbc25dd9eb9 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_all_day + - node.type.event +_core: + default_config_hash: K9rOFpT3TsXst-M_QfF7JMmPax7U6ZJfIso2iQeRdIM +id: node.event.field_event_all_day +field_name: field_event_all_day +entity_type: node +bundle: event +label: 'All day' +description: '' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/field.field.node.article.comment.yml b/drupal/config/sync/field.field.node.event.field_event_comments.yml similarity index 58% rename from drupal/config/field.field.node.article.comment.yml rename to drupal/config/sync/field.field.node.event.field_event_comments.yml index 3c3d00f..ed1f1c5 100644 --- a/drupal/config/field.field.node.article.comment.yml +++ b/drupal/config/sync/field.field.node.event.field_event_comments.yml @@ -1,22 +1,22 @@ -uuid: 840733c3-3b35-4277-ad38-00f7e1873eec +uuid: 034238be-9db5-40bd-b7ec-5b585da9fa8f langcode: en status: true dependencies: config: - - field.storage.node.comment - - node.type.article + - field.storage.node.field_event_comments + - node.type.event module: - comment _core: - default_config_hash: UqXlkKC4v2-bDfWx4zcXQrD5YIi3d5byENEmWv-G_Uc -id: node.article.comment -field_name: comment + default_config_hash: vwf3UG4AfeKtuNSWPqZPy509jLIrUDCvWjyoknc7B08 +id: node.event.field_event_comments +field_name: field_event_comments entity_type: node -bundle: article +bundle: event label: Comments description: '' required: false -translatable: true +translatable: false default_value: - status: 2 @@ -31,5 +31,5 @@ settings: per_page: 50 anonymous: 0 form_location: true - preview: 1 + preview: 0 field_type: comment diff --git a/drupal/config/sync/field.field.node.event.field_event_date.yml b/drupal/config/sync/field.field.node.event.field_event_date.yml new file mode 100644 index 0000000..cf2c571 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_date.yml @@ -0,0 +1,23 @@ +uuid: cd20f6ad-f775-4e1e-87c4-ac4561d89db9 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_date + - node.type.event + module: + - datetime +_core: + default_config_hash: pPHPELeLXbiNq458ZjX_PF5-6oEJjCG6vowOqiVjA4g +id: node.event.field_event_date +field_name: field_event_date +entity_type: node +bundle: event +label: Start +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/drupal/config/sync/field.field.node.event.field_event_date_end.yml b/drupal/config/sync/field.field.node.event.field_event_date_end.yml new file mode 100644 index 0000000..0f5b194 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_date_end.yml @@ -0,0 +1,23 @@ +uuid: 1f6eee7f-bbe9-4976-b27f-d619a88735be +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_date_end + - node.type.event + module: + - datetime +_core: + default_config_hash: Ne8ZNHPF17tl3ecCJtFonYmWVnrHIvn3yiVJGO604aU +id: node.event.field_event_date_end +field_name: field_event_date_end +entity_type: node +bundle: event +label: End +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: datetime diff --git a/drupal/config/sync/field.field.node.event.field_event_enroll.yml b/drupal/config/sync/field.field.node.event.field_event_enroll.yml new file mode 100644 index 0000000..d30b41b --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_enroll.yml @@ -0,0 +1,25 @@ +uuid: eef1fcc1-bc94-4304-8886-f7450f21b2bd +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_enroll + - node.type.event +_core: + default_config_hash: RMDwt7JpfxZKkK3RQkNc60oa2m5NU4q1yn6kJH4d0GM +id: node.event.field_event_enroll +field_name: field_event_enroll +entity_type: node +bundle: event +label: 'Enable event enrollment' +description: '' +required: false +translatable: false +default_value: + - + value: 1 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/field.field.node.event.field_event_enroll_outside_group.yml b/drupal/config/sync/field.field.node.event.field_event_enroll_outside_group.yml new file mode 100644 index 0000000..54c7549 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_enroll_outside_group.yml @@ -0,0 +1,25 @@ +uuid: a4fdb078-7110-4e34-989b-b357410e1314 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_enroll_outside_group + - node.type.event +_core: + default_config_hash: kHwQDG6uXeOKiMVSShTS0jm-adVLKl5eafYp9U7-YXU +id: node.event.field_event_enroll_outside_group +field_name: field_event_enroll_outside_group +entity_type: node +bundle: event +label: 'Allow non-group members to enroll or request to enroll' +description: 'To allow users who have not join the group of this event to enroll or send request to enroll' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/field.field.node.event.field_event_image.yml b/drupal/config/sync/field.field.node.event.field_event_image.yml new file mode 100644 index 0000000..db1acc5 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_image.yml @@ -0,0 +1,40 @@ +uuid: 0cfbeacf-afee-4cfc-bb30-48e1f1633b94 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_image + - node.type.event + module: + - image +_core: + default_config_hash: jBvTUM1_QJvSMM3myT5OM18Bnpg-b3x05jycFFux0FE +id: node.event.field_event_image +field_name: field_event_image +entity_type: node +bundle: event +label: Image +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.node.event.field_event_location.yml b/drupal/config/sync/field.field.node.event.field_event_location.yml new file mode 100644 index 0000000..2a21507 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_location.yml @@ -0,0 +1,21 @@ +uuid: e81d8bb3-1880-451f-bbe9-591931f9f30f +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_location + - node.type.event +_core: + default_config_hash: c3r1cFotY6ll-40yRRpuPvy7i8QtH6L3aNkdNx9riqA +id: node.event.field_event_location +field_name: field_event_location +entity_type: node +bundle: event +label: 'Location name' +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.node.event.field_event_managers.yml b/drupal/config/sync/field.field.node.event.field_event_managers.yml new file mode 100644 index 0000000..f30c7a5 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_managers.yml @@ -0,0 +1,30 @@ +uuid: 3e3c1964-b681-4c17-b490-50f0c8d529c2 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_managers + - node.type.event +_core: + default_config_hash: euts9b7_bOz5mPGa1wdyjmJFRIFVUHErhcUciDY50QI +id: node.event.field_event_managers +field_name: field_event_managers +entity_type: node +bundle: event +label: Organizers +description: 'Assign event organisers to this event.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: + include_anonymous: false + filter: + type: _none + target_bundles: null + sort: + field: _none + auto_create: false +field_type: entity_reference diff --git a/drupal/config/sync/field.field.node.event.field_event_send_invite_by_user.yml b/drupal/config/sync/field.field.node.event.field_event_send_invite_by_user.yml new file mode 100644 index 0000000..f9255d9 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_event_send_invite_by_user.yml @@ -0,0 +1,25 @@ +uuid: 53803e83-18fd-47b5-86bb-31d331a82c1e +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_event_send_invite_by_user + - node.type.event +_core: + default_config_hash: 8A7b-12LvYhA8TWjFMfU1pYzYM8KZTOqQSYijknR-ik +id: node.event.field_event_send_invite_by_user +field_name: field_event_send_invite_by_user +entity_type: node +bundle: event +label: 'Allow users to share the event with others' +description: '' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/field.field.node.event.field_files.yml b/drupal/config/sync/field.field.node.event.field_files.yml new file mode 100644 index 0000000..aecd558 --- /dev/null +++ b/drupal/config/sync/field.field.node.event.field_files.yml @@ -0,0 +1,29 @@ +uuid: 05633b6f-de52-42c1-9a19-28bcf9c9b287 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_files + - node.type.event + module: + - file +_core: + default_config_hash: gcqe2fypcpYYvtxp-EAeSsL5YdLDZ-sMTLIN8PqwlYw +id: node.event.field_files +field_name: field_files +entity_type: node +bundle: event +label: Attachment +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt pdf doc docx xls xlsx ppt pptx csv jpg jpeg png gif' + max_filesize: '' + description_field: true + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/drupal/config/field.field.node.page.body.yml b/drupal/config/sync/field.field.node.page.body.yml similarity index 67% rename from drupal/config/field.field.node.page.body.yml rename to drupal/config/sync/field.field.node.page.body.yml index 77264f4..947dd18 100644 --- a/drupal/config/field.field.node.page.body.yml +++ b/drupal/config/sync/field.field.node.page.body.yml @@ -1,4 +1,4 @@ -uuid: 2beb001f-ee52-4492-bf8d-5a8d4e37332a +uuid: cf8a4b19-16db-4b1c-bb75-24a066bc77b9 langcode: en status: true dependencies: @@ -8,18 +8,18 @@ dependencies: module: - text _core: - default_config_hash: KgVkxLl_K3E3lvN6CEoWQIDT0V8J4Mv-fVYrAIc7-FE + default_config_hash: nF2KoVoTd47pjQV2o66dYOkX4KFthCw3CkMKd2Hola8 id: node.page.body field_name: body entity_type: node bundle: page -label: Body +label: Description description: '' -required: false +required: true translatable: true default_value: { } default_value_callback: '' settings: - display_summary: true + display_summary: false required_summary: false field_type: text_with_summary diff --git a/drupal/config/sync/field.field.node.page.field_content_visibility.yml b/drupal/config/sync/field.field.node.page.field_content_visibility.yml new file mode 100644 index 0000000..86fea5c --- /dev/null +++ b/drupal/config/sync/field.field.node.page.field_content_visibility.yml @@ -0,0 +1,23 @@ +uuid: 832a4a42-54cd-4dd6-ae33-f9da824825ac +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_content_visibility + - node.type.page + module: + - entity_access_by_field +_core: + default_config_hash: Cif_9GrczDSXr3x8VCzzlgOL6ouAZgIT7tiYAkHutto +id: node.page.field_content_visibility +field_name: field_content_visibility +entity_type: node +bundle: page +label: Visibility +description: '' +required: true +translatable: true +default_value: null +default_value_callback: '' +settings: { } +field_type: entity_access_field diff --git a/drupal/config/sync/field.field.node.page.field_files.yml b/drupal/config/sync/field.field.node.page.field_files.yml new file mode 100644 index 0000000..15a63b9 --- /dev/null +++ b/drupal/config/sync/field.field.node.page.field_files.yml @@ -0,0 +1,29 @@ +uuid: 276365d2-eee1-4684-b953-352af8c4606a +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_files + - node.type.page + module: + - file +_core: + default_config_hash: _GwcWhd2cqRePsp0FiMSNR7Jq4Ik30-MXdSj8auIp0g +id: node.page.field_files +field_name: field_files +entity_type: node +bundle: page +label: Attachment +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt pdf doc docx xls xlsx ppt pptx csv jpg jpeg png gif' + max_filesize: '' + description_field: true + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/drupal/config/sync/field.field.node.page.field_page_comments.yml b/drupal/config/sync/field.field.node.page.field_page_comments.yml new file mode 100644 index 0000000..b5e701b --- /dev/null +++ b/drupal/config/sync/field.field.node.page.field_page_comments.yml @@ -0,0 +1,35 @@ +uuid: 129892e9-af59-47ef-94ab-853613e9be64 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_page_comments + - node.type.page + module: + - comment +_core: + default_config_hash: 8GnjpCnb7Lf-s2Z5nQTvdN_fJ879XMD3Fj49R8yuABI +id: node.page.field_page_comments +field_name: field_page_comments +entity_type: node +bundle: page +label: Comments +description: '' +required: false +translatable: false +default_value: + - + status: 1 + cid: 0 + last_comment_timestamp: 0 + last_comment_name: null + last_comment_uid: 0 + comment_count: 0 +default_value_callback: '' +settings: + default_mode: 1 + per_page: 50 + anonymous: 0 + form_location: true + preview: 0 +field_type: comment diff --git a/drupal/config/sync/field.field.node.page.field_page_image.yml b/drupal/config/sync/field.field.node.page.field_page_image.yml new file mode 100644 index 0000000..623f5fe --- /dev/null +++ b/drupal/config/sync/field.field.node.page.field_page_image.yml @@ -0,0 +1,40 @@ +uuid: 59e2f00f-5f2d-45a0-a945-1f0390390efa +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_page_image + - node.type.page + module: + - image +_core: + default_config_hash: U8I1NkTJdcp2XhHbBStFMbuSw94jfetwCVz_GnKEZQQ +id: node.page.field_page_image +field_name: field_page_image +entity_type: node +bundle: page +label: Image +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.node.topic.body.yml b/drupal/config/sync/field.field.node.topic.body.yml new file mode 100644 index 0000000..e28b883 --- /dev/null +++ b/drupal/config/sync/field.field.node.topic.body.yml @@ -0,0 +1,25 @@ +uuid: 3fdd6995-2c1a-4a3d-89f3-e7a33b09beb1 +langcode: en +status: true +dependencies: + config: + - field.storage.node.body + - node.type.topic + module: + - text +_core: + default_config_hash: 5Li6MlHRH9LgHoAs-popNrAQf-HQIkatryfWXL4AZ3U +id: node.topic.body +field_name: body +entity_type: node +bundle: topic +label: Description +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: + display_summary: false + required_summary: false +field_type: text_with_summary diff --git a/drupal/config/sync/field.field.node.topic.field_content_visibility.yml b/drupal/config/sync/field.field.node.topic.field_content_visibility.yml new file mode 100644 index 0000000..f5ca82b --- /dev/null +++ b/drupal/config/sync/field.field.node.topic.field_content_visibility.yml @@ -0,0 +1,23 @@ +uuid: 39c1b519-6ad3-45f2-8d06-92aa6d7aeba2 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_content_visibility + - node.type.topic + module: + - entity_access_by_field +_core: + default_config_hash: DdSn1raBVSShaDshJEezM-9paipvfjYh-6FYK-XJmXA +id: node.topic.field_content_visibility +field_name: field_content_visibility +entity_type: node +bundle: topic +label: Visibility +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: entity_access_field diff --git a/drupal/config/sync/field.field.node.topic.field_files.yml b/drupal/config/sync/field.field.node.topic.field_files.yml new file mode 100644 index 0000000..e95fcd0 --- /dev/null +++ b/drupal/config/sync/field.field.node.topic.field_files.yml @@ -0,0 +1,29 @@ +uuid: 6bc4804e-b545-4327-bb59-e4b364a33238 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_files + - node.type.topic + module: + - file +_core: + default_config_hash: q96RRU5VDkBJxTvK5ABYUFFt-6b6xhxqi-RqNeRFzEM +id: node.topic.field_files +field_name: field_files +entity_type: node +bundle: topic +label: Attachment +description: '' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'txt pdf doc docx xls xlsx ppt pptx csv jpg jpeg png gif' + max_filesize: '' + description_field: true + handler: 'default:file' + handler_settings: { } +field_type: file diff --git a/drupal/config/sync/field.field.node.topic.field_topic_comments.yml b/drupal/config/sync/field.field.node.topic.field_topic_comments.yml new file mode 100644 index 0000000..4543faf --- /dev/null +++ b/drupal/config/sync/field.field.node.topic.field_topic_comments.yml @@ -0,0 +1,35 @@ +uuid: e660f0c8-a159-42aa-a0d9-a0f5d1b0b406 +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_topic_comments + - node.type.topic + module: + - comment +_core: + default_config_hash: luiSb8lAfZU-ywuqThHmCmoH6P47HKGQRv6F05t_c38 +id: node.topic.field_topic_comments +field_name: field_topic_comments +entity_type: node +bundle: topic +label: Comments +description: '' +required: false +translatable: false +default_value: + - + status: 2 + cid: 0 + last_comment_timestamp: 0 + last_comment_name: null + last_comment_uid: 0 + comment_count: 0 +default_value_callback: '' +settings: + default_mode: 1 + per_page: 50 + anonymous: 0 + form_location: true + preview: 0 +field_type: comment diff --git a/drupal/config/sync/field.field.node.topic.field_topic_image.yml b/drupal/config/sync/field.field.node.topic.field_topic_image.yml new file mode 100644 index 0000000..13d9e09 --- /dev/null +++ b/drupal/config/sync/field.field.node.topic.field_topic_image.yml @@ -0,0 +1,40 @@ +uuid: 009fd841-e786-4ef4-adb5-3045f6a1347b +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_topic_image + - node.type.topic + module: + - image +_core: + default_config_hash: _z7j7ba0zmHSPZ0Sg49JyDgrP1lJ1svZQtrQe2Ignq8 +id: node.topic.field_topic_image +field_name: field_topic_image +entity_type: node +bundle: topic +label: Image +description: 'Crop your image to select which part of your image to show on display.' +required: false +translatable: true +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.node.topic.field_topic_type.yml b/drupal/config/sync/field.field.node.topic.field_topic_type.yml new file mode 100644 index 0000000..8af0f2b --- /dev/null +++ b/drupal/config/sync/field.field.node.topic.field_topic_type.yml @@ -0,0 +1,29 @@ +uuid: a9eef8db-5ed6-4b70-8620-736a41df891d +langcode: en +status: true +dependencies: + config: + - field.storage.node.field_topic_type + - node.type.topic + - taxonomy.vocabulary.topic_types +_core: + default_config_hash: xhXWNs6CiVtAAoUOXFMH_UeNRXXy470sFEs0oNLeqP4 +id: node.topic.field_topic_type +field_name: field_topic_type +entity_type: node +bundle: topic +label: Type +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + topic_types: topic_types + sort: + field: _none + auto_create: false +field_type: entity_reference diff --git a/drupal/config/sync/field.field.post.photo.field_post.yml b/drupal/config/sync/field.field.post.photo.field_post.yml new file mode 100644 index 0000000..50bfcbf --- /dev/null +++ b/drupal/config/sync/field.field.post.photo.field_post.yml @@ -0,0 +1,23 @@ +uuid: fb87ce93-7dc2-49b6-8475-f22c4806a756 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_post + - social_post.post_type.photo + module: + - text +_core: + default_config_hash: ni1yGMypEqOQfTgZv9owGxWm01SxD8wXYKQMXGF7Ukg +id: post.photo.field_post +field_name: field_post +entity_type: post +bundle: photo +label: Post +description: '' +required: true +translatable: true +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.post.photo.field_post_comments.yml b/drupal/config/sync/field.field.post.photo.field_post_comments.yml new file mode 100644 index 0000000..1e3ce22 --- /dev/null +++ b/drupal/config/sync/field.field.post.photo.field_post_comments.yml @@ -0,0 +1,35 @@ +uuid: bf3deb03-75dc-4ae9-9ae6-8fccd859aeca +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_post_comments + - social_post.post_type.photo + module: + - comment +_core: + default_config_hash: TyMNwf-JJ0j5eflLVc5B78rNy5m7_CwaT2FF9e5sqGw +id: post.photo.field_post_comments +field_name: field_post_comments +entity_type: post +bundle: photo +label: 'Post comments' +description: '' +required: false +translatable: true +default_value: + - + status: 2 + cid: 0 + last_comment_timestamp: 0 + last_comment_name: null + last_comment_uid: 0 + comment_count: 0 +default_value_callback: '' +settings: + default_mode: 1 + per_page: 50 + anonymous: 0 + form_location: true + preview: 0 +field_type: comment diff --git a/drupal/config/field.field.node.article.field_image.yml b/drupal/config/sync/field.field.post.photo.field_post_image.yml similarity index 58% rename from drupal/config/field.field.node.article.field_image.yml rename to drupal/config/sync/field.field.post.photo.field_post_image.yml index 0c0e852..c98ed90 100644 --- a/drupal/config/field.field.node.article.field_image.yml +++ b/drupal/config/sync/field.field.post.photo.field_post_image.yml @@ -1,40 +1,40 @@ -uuid: 523dca17-53ac-43ec-ae73-c74fb4e081b4 +uuid: d397e880-011a-4401-bad9-32b72950e03d langcode: en status: true dependencies: config: - - field.storage.node.field_image - - node.type.article + - field.storage.post.field_post_image + - social_post.post_type.photo module: - image _core: - default_config_hash: PmVL51L3A9QGbPLoeLHw5epAPszeZRasCeC3imeeDRQ -id: node.article.field_image -field_name: field_image -entity_type: node -bundle: article + default_config_hash: IAdHB8i0J_7bI_Q-G5amRkJuADk0GhWMTMvs0G2s00U +id: post.photo.field_post_image +field_name: field_post_image +entity_type: post +bundle: photo label: Image description: '' required: false -translatable: true +translatable: false default_value: { } default_value_callback: '' settings: - handler: 'default:file' - handler_settings: { } - file_directory: '[date:custom:Y]-[date:custom:m]' + file_directory: post file_extensions: 'png gif jpg jpeg' max_filesize: '' max_resolution: '' min_resolution: '' - alt_field: true + alt_field: false alt_field_required: true title_field: false title_field_required: false default_image: - uuid: null + uuid: '' alt: '' title: '' width: null height: null + handler: 'default:file' + handler_settings: { } field_type: image diff --git a/drupal/config/sync/field.field.post.photo.field_recipient_group.yml b/drupal/config/sync/field.field.post.photo.field_recipient_group.yml new file mode 100644 index 0000000..d5d9e11 --- /dev/null +++ b/drupal/config/sync/field.field.post.photo.field_recipient_group.yml @@ -0,0 +1,27 @@ +uuid: 93b5fc97-fddb-4d02-9bb6-05da6193cac9 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_recipient_group + - social_post.post_type.photo +_core: + default_config_hash: fHVvLhsOkx_NA9hKZk_JyXqenpjuiIglt2M0P_ijtdY +id: post.photo.field_recipient_group +field_name: field_recipient_group +entity_type: post +bundle: photo +label: 'Recipient (group)' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: views + handler_settings: + view: + view_name: recipient_group_reference + display_name: entity_reference_1 + arguments: { } +field_type: entity_reference diff --git a/drupal/config/sync/field.field.post.photo.field_recipient_user.yml b/drupal/config/sync/field.field.post.photo.field_recipient_user.yml new file mode 100644 index 0000000..4c17f0f --- /dev/null +++ b/drupal/config/sync/field.field.post.photo.field_recipient_user.yml @@ -0,0 +1,29 @@ +uuid: 682e2485-58ea-49e0-9e48-40c59af7deb7 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_recipient_user + - social_post.post_type.photo +_core: + default_config_hash: 8IFGLjEaFo82qwlAVk50rSjrY5D7WIs32dKEtsIse40 +id: post.photo.field_recipient_user +field_name: field_recipient_user +entity_type: post +bundle: photo +label: 'Recipient (user)' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: + include_anonymous: false + filter: + type: _none + target_bundles: null + sort: + field: _none +field_type: entity_reference diff --git a/drupal/config/sync/field.field.post.photo.field_visibility.yml b/drupal/config/sync/field.field.post.photo.field_visibility.yml new file mode 100644 index 0000000..1187ea8 --- /dev/null +++ b/drupal/config/sync/field.field.post.photo.field_visibility.yml @@ -0,0 +1,23 @@ +uuid: 50cba03e-5d5a-4964-8467-e30f89f5928c +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_visibility + - social_post.post_type.photo + module: + - dropdown +_core: + default_config_hash: 1iWPzz3lG39ZtI8k8V9VyaG1yCFHJkWWyU4yAY0GeLY +id: post.photo.field_visibility +field_name: field_visibility +entity_type: post +bundle: photo +label: Visibility +description: '' +required: true +translatable: false +default_value: null +default_value_callback: '' +settings: { } +field_type: dropdown diff --git a/drupal/config/sync/field.field.post.post.field_post.yml b/drupal/config/sync/field.field.post.post.field_post.yml new file mode 100644 index 0000000..c3c7b90 --- /dev/null +++ b/drupal/config/sync/field.field.post.post.field_post.yml @@ -0,0 +1,23 @@ +uuid: cbe1e6d3-d1a9-420a-87ff-2bb50ce2eb66 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_post + - social_post.post_type.post + module: + - text +_core: + default_config_hash: 1fb6Z78K1xvRoc6lIFSEsMZU_nxQY4Qp4e_XM3_WnJw +id: post.post.field_post +field_name: field_post +entity_type: post +bundle: post +label: Post +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.post.post.field_post_comments.yml b/drupal/config/sync/field.field.post.post.field_post_comments.yml new file mode 100644 index 0000000..971bfed --- /dev/null +++ b/drupal/config/sync/field.field.post.post.field_post_comments.yml @@ -0,0 +1,35 @@ +uuid: ad7ac4ce-7c18-4487-b5ee-4849282cf12f +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_post_comments + - social_post.post_type.post + module: + - comment +_core: + default_config_hash: AQ9iC2hR5QGEr6dkImYd5RVm0egxSfZEDDaHShMANws +id: post.post.field_post_comments +field_name: field_post_comments +entity_type: post +bundle: post +label: 'Post comments' +description: '' +required: false +translatable: false +default_value: + - + status: 2 + cid: 0 + last_comment_timestamp: 0 + last_comment_name: null + last_comment_uid: 0 + comment_count: 0 +default_value_callback: '' +settings: + default_mode: 0 + per_page: 50 + anonymous: 0 + form_location: true + preview: 0 +field_type: comment diff --git a/drupal/config/sync/field.field.post.post.field_recipient_group.yml b/drupal/config/sync/field.field.post.post.field_recipient_group.yml new file mode 100644 index 0000000..0ead6ca --- /dev/null +++ b/drupal/config/sync/field.field.post.post.field_recipient_group.yml @@ -0,0 +1,27 @@ +uuid: 78a621c2-a639-43f7-a6fa-0fac48af5a11 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_recipient_group + - social_post.post_type.post +_core: + default_config_hash: SwwEbemUe_i8ALLpWSLa_4gV2nX_j0PB5p60lyLqBfc +id: post.post.field_recipient_group +field_name: field_recipient_group +entity_type: post +bundle: post +label: 'Recipient (group)' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: views + handler_settings: + view: + view_name: recipient_group_reference + display_name: entity_reference_1 + arguments: { } +field_type: entity_reference diff --git a/drupal/config/sync/field.field.post.post.field_recipient_user.yml b/drupal/config/sync/field.field.post.post.field_recipient_user.yml new file mode 100644 index 0000000..951ba66 --- /dev/null +++ b/drupal/config/sync/field.field.post.post.field_recipient_user.yml @@ -0,0 +1,29 @@ +uuid: f95773a5-7b19-4db7-ae5d-c73d531f01d1 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_recipient_user + - social_post.post_type.post +_core: + default_config_hash: lp10ScgbXp069od5iTgXkrk7824GuA4X6QIr4HvjZ7g +id: post.post.field_recipient_user +field_name: field_recipient_user +entity_type: post +bundle: post +label: 'Recipient (user)' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:user' + handler_settings: + include_anonymous: false + filter: + type: _none + target_bundles: null + sort: + field: _none +field_type: entity_reference diff --git a/drupal/config/sync/field.field.post.post.field_visibility.yml b/drupal/config/sync/field.field.post.post.field_visibility.yml new file mode 100644 index 0000000..6af4d59 --- /dev/null +++ b/drupal/config/sync/field.field.post.post.field_visibility.yml @@ -0,0 +1,23 @@ +uuid: 0f1f0f43-47ab-45d2-b629-f0ba66967082 +langcode: en +status: true +dependencies: + config: + - field.storage.post.field_visibility + - social_post.post_type.post + module: + - dropdown +_core: + default_config_hash: f_3E2Rlb8_M1NISovsA7IV5mWI4PbELyomXNVllV05A +id: post.post.field_visibility +field_name: field_visibility +entity_type: post +bundle: post +label: Visibility +description: '' +required: true +translatable: false +default_value: null +default_value_callback: '' +settings: { } +field_type: dropdown diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_address.yml b/drupal/config/sync/field.field.profile.profile.field_profile_address.yml new file mode 100644 index 0000000..b803a1e --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_address.yml @@ -0,0 +1,38 @@ +uuid: f03502da-ffa2-4f06-99d6-b954c7fbf52e +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_address + - profile.type.profile + module: + - address +_core: + default_config_hash: L2f723OTXUJLzb9SlvJofAAt_BUNxudTrmeaXysOhF8 +id: profile.profile.field_profile_address +field_name: field_profile_address +entity_type: profile +bundle: profile +label: Address +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + available_countries: { } + fields: + administrativeArea: administrativeArea + locality: locality + postalCode: postalCode + addressLine1: addressLine1 + dependentLocality: '0' + sortingCode: '0' + addressLine2: '0' + organization: '0' + givenName: '0' + additionalName: '0' + familyName: '0' + langcode_override: '' + field_overrides: { } +field_type: address diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_banner_image.yml b/drupal/config/sync/field.field.profile.profile.field_profile_banner_image.yml new file mode 100644 index 0000000..f50d171 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_banner_image.yml @@ -0,0 +1,40 @@ +uuid: 241fe8ae-9998-4be4-baa8-0ce2ecb95e24 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_banner_image + - profile.type.profile + module: + - image +_core: + default_config_hash: UawMZhFSdMC2-AAWiIopNZcwbmXdudFfo1gRND_A7Qg +id: profile.profile.field_profile_banner_image +field_name: field_profile_banner_image +entity_type: profile +bundle: profile +label: 'Banner Image' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_expertise.yml b/drupal/config/sync/field.field.profile.profile.field_profile_expertise.yml new file mode 100644 index 0000000..fbf3582 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_expertise.yml @@ -0,0 +1,30 @@ +uuid: 6f3bbbfa-6d14-4ff3-ba99-24a4253e8c7b +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_expertise + - profile.type.profile + - taxonomy.vocabulary.expertise +_core: + default_config_hash: 6rQZDIIzqv6dn5rfNV1R_uVO1uSISsC5Bb33ZX7WHfg +id: profile.profile.field_profile_expertise +field_name: field_profile_expertise +entity_type: profile +bundle: profile +label: Expertise +description: 'Separate multiple values by a comma.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + expertise: expertise + sort: + field: _none + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_first_name.yml b/drupal/config/sync/field.field.profile.profile.field_profile_first_name.yml new file mode 100644 index 0000000..da41f83 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_first_name.yml @@ -0,0 +1,21 @@ +uuid: 20aaf9d9-454f-4456-a43b-d1fd46d44cf0 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_first_name + - profile.type.profile +_core: + default_config_hash: AJUjf-s01_Y0pXAPGUHoSxHIQop4_nSV4suqed6qRAg +id: profile.profile.field_profile_first_name +field_name: field_profile_first_name +entity_type: profile +bundle: profile +label: 'First name' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_function.yml b/drupal/config/sync/field.field.profile.profile.field_profile_function.yml new file mode 100644 index 0000000..69aa825 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_function.yml @@ -0,0 +1,21 @@ +uuid: 77819d2f-2432-4f7a-986d-76e563421b4e +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_function + - profile.type.profile +_core: + default_config_hash: ay3MOEZlPmYKTqkwlwE4jRjEnzNzVED3G28CA2KHNa0 +id: profile.profile.field_profile_function +field_name: field_profile_function +entity_type: profile +bundle: profile +label: Function +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_image.yml b/drupal/config/sync/field.field.profile.profile.field_profile_image.yml new file mode 100644 index 0000000..3a5fb3a --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_image.yml @@ -0,0 +1,40 @@ +uuid: 4e2d7bd8-7abb-4be2-8a3d-41c933ac54d6 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_image + - profile.type.profile + module: + - image +_core: + default_config_hash: K9T4n5OtNsOsmxrxw9Mx4nuqQ5EnGCIsHq5b_OPpe7Y +id: profile.profile.field_profile_image +field_name: field_profile_image +entity_type: profile +bundle: profile +label: 'Profile image' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: 4096x4096 + min_resolution: '' + alt_field: true + alt_field_required: false + title_field: false + title_field_required: false + default_image: + uuid: 4eb1d927-28f4-402a-8c87-017e637f434a + alt: 'Default profile image' + title: 'Default profile image' + width: 200 + height: 200 + handler: 'default:file' + handler_settings: { } +field_type: image diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_interests.yml b/drupal/config/sync/field.field.profile.profile.field_profile_interests.yml new file mode 100644 index 0000000..74a03bb --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_interests.yml @@ -0,0 +1,30 @@ +uuid: baf77af5-aa01-4214-86c7-a78e3163bf77 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_interests + - profile.type.profile + - taxonomy.vocabulary.interests +_core: + default_config_hash: 3lITbyDH8RJ0nmopxGSVhcW4u3Nd2WGIqbcj5xyZ2gg +id: profile.profile.field_profile_interests +field_name: field_profile_interests +entity_type: profile +bundle: profile +label: Interests +description: 'Separate multiple values by a comma.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + interests: interests + sort: + field: _none + auto_create: true + auto_create_bundle: '' +field_type: entity_reference diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_last_name.yml b/drupal/config/sync/field.field.profile.profile.field_profile_last_name.yml new file mode 100644 index 0000000..808f73a --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_last_name.yml @@ -0,0 +1,21 @@ +uuid: 3f93e3b2-80a9-4d67-a867-248f64b83b9a +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_last_name + - profile.type.profile +_core: + default_config_hash: csNjl3bGScQ3rN5gozhGKMxRo1RKmw0EfFRjEEOEzK4 +id: profile.profile.field_profile_last_name +field_name: field_profile_last_name +entity_type: profile +bundle: profile +label: 'Last name' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_organization.yml b/drupal/config/sync/field.field.profile.profile.field_profile_organization.yml new file mode 100644 index 0000000..ee7a333 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_organization.yml @@ -0,0 +1,21 @@ +uuid: 8aa76b81-11bb-479c-89aa-f62e58823218 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_organization + - profile.type.profile +_core: + default_config_hash: KIkcp7sAw2x_W8-DLJ9NGnZ9f_rrqyPQD9FKsNwoFD4 +id: profile.profile.field_profile_organization +field_name: field_profile_organization +entity_type: profile +bundle: profile +label: Organization +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_phone_number.yml b/drupal/config/sync/field.field.profile.profile.field_profile_phone_number.yml new file mode 100644 index 0000000..fc9c5ec --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_phone_number.yml @@ -0,0 +1,23 @@ +uuid: c3721936-1a86-47ab-b14c-2c6ba32e8bf5 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_phone_number + - profile.type.profile + module: + - telephone +_core: + default_config_hash: 7upql6fv9ahKc2JfcLhygR5hetRvCj07z6CUuSP5gPw +id: profile.profile.field_profile_phone_number +field_name: field_profile_phone_number +entity_type: profile +bundle: profile +label: 'Phone number' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: telephone diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_profile_tag.yml b/drupal/config/sync/field.field.profile.profile.field_profile_profile_tag.yml new file mode 100644 index 0000000..8c122f2 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_profile_tag.yml @@ -0,0 +1,30 @@ +uuid: f79f8474-28f9-437f-8393-feacb96746d2 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_profile_tag + - profile.type.profile + - taxonomy.vocabulary.profile_tag +_core: + default_config_hash: 9nuh7_PtQan2tfsC1n-tRhfasDLLygRLrIGk5eB4mhg +id: profile.profile.field_profile_profile_tag +field_name: field_profile_profile_tag +entity_type: profile +bundle: profile +label: 'Profile tag' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: + handler: 'default:taxonomy_term' + handler_settings: + target_bundles: + profile_tag: profile_tag + sort: + field: _none + auto_create: false + auto_create_bundle: '' +field_type: entity_reference diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_self_introduction.yml b/drupal/config/sync/field.field.profile.profile.field_profile_self_introduction.yml new file mode 100644 index 0000000..a089049 --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_self_introduction.yml @@ -0,0 +1,23 @@ +uuid: 398b54fe-4e88-4858-b464-0a6fe26e4d01 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_self_introduction + - profile.type.profile + module: + - text +_core: + default_config_hash: EtzFYMBWMlgHvlBDKsZJubuEqQtKgMFRdNdTOd9C7Gc +id: profile.profile.field_profile_self_introduction +field_name: field_profile_self_introduction +entity_type: profile +bundle: profile +label: 'Self introduction' +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_show_email.yml b/drupal/config/sync/field.field.profile.profile.field_profile_show_email.yml new file mode 100644 index 0000000..799e1af --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_show_email.yml @@ -0,0 +1,25 @@ +uuid: d171d2d5-fed6-438f-a438-46a512ffa0f9 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_show_email + - profile.type.profile +_core: + default_config_hash: sUwWTGsv71PxDl7Av0XwlJ72HfrlddIXNJfZ6kcubcs +id: profile.profile.field_profile_show_email +field_name: field_profile_show_email +entity_type: profile +bundle: profile +label: 'Show email' +description: '' +required: false +translatable: false +default_value: + - + value: 0 +default_value_callback: '' +settings: + on_label: 'On' + off_label: 'Off' +field_type: boolean diff --git a/drupal/config/sync/field.field.profile.profile.field_profile_summary.yml b/drupal/config/sync/field.field.profile.profile.field_profile_summary.yml new file mode 100644 index 0000000..d98ef3c --- /dev/null +++ b/drupal/config/sync/field.field.profile.profile.field_profile_summary.yml @@ -0,0 +1,24 @@ +uuid: df24aa2b-5277-41b5-bcf8-d55578891085 +langcode: en +status: true +dependencies: + config: + - field.storage.profile.field_profile_summary + - profile.type.profile + enforced: + module: + - social_profile +_core: + default_config_hash: cSnAqktXSLjfGDKzeXoRTb3HHNXS7vz7Lpgwu9BIbNU +id: profile.profile.field_profile_summary +field_name: field_profile_summary +entity_type: profile +bundle: profile +label: Summary +description: 'The character limit is 140 characters including spaces.' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.queue_storage_entity.email.field_message.yml b/drupal/config/sync/field.field.queue_storage_entity.email.field_message.yml new file mode 100644 index 0000000..cfded37 --- /dev/null +++ b/drupal/config/sync/field.field.queue_storage_entity.email.field_message.yml @@ -0,0 +1,23 @@ +uuid: b6c00094-de9e-49df-9bc6-4986243cccd8 +langcode: en +status: true +dependencies: + config: + - field.storage.queue_storage_entity.field_message + - social_queue_storage.queue_storage_entity_type.email + module: + - text +_core: + default_config_hash: oU7oxq46hi0a5pwQXHjGwWj3ulrrIJHfbTZVakzI4XE +id: queue_storage_entity.email.field_message +field_name: field_message +entity_type: queue_storage_entity +bundle: email +label: message +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: text_long diff --git a/drupal/config/sync/field.field.queue_storage_entity.email.field_reply_to.yml b/drupal/config/sync/field.field.queue_storage_entity.email.field_reply_to.yml new file mode 100644 index 0000000..508b689 --- /dev/null +++ b/drupal/config/sync/field.field.queue_storage_entity.email.field_reply_to.yml @@ -0,0 +1,21 @@ +uuid: 791c6a6b-b620-4e69-8336-44e66617a485 +langcode: en +status: true +dependencies: + config: + - field.storage.queue_storage_entity.field_reply_to + - social_queue_storage.queue_storage_entity_type.email +_core: + default_config_hash: tMAxiqq1jn-yZjFesNiNSOSLAWMY_Zkh-qtr11wM0vw +id: queue_storage_entity.email.field_reply_to +field_name: field_reply_to +entity_type: queue_storage_entity +bundle: email +label: reply_to +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.queue_storage_entity.email.field_subject.yml b/drupal/config/sync/field.field.queue_storage_entity.email.field_subject.yml new file mode 100644 index 0000000..3ec38e5 --- /dev/null +++ b/drupal/config/sync/field.field.queue_storage_entity.email.field_subject.yml @@ -0,0 +1,21 @@ +uuid: fcb70b06-3143-4de9-8103-07aa2ca67106 +langcode: en +status: true +dependencies: + config: + - field.storage.queue_storage_entity.field_subject + - social_queue_storage.queue_storage_entity_type.email +_core: + default_config_hash: VXIxOrq_0BHfDR-tcNfslgy6JgwwkIjQAxIstg7dmp8 +id: queue_storage_entity.email.field_subject +field_name: field_subject +entity_type: queue_storage_entity +bundle: email +label: subject +description: '' +required: false +translatable: false +default_value: { } +default_value_callback: '' +settings: { } +field_type: string diff --git a/drupal/config/sync/field.field.taxonomy_term.group_type.field_group_type_icon.yml b/drupal/config/sync/field.field.taxonomy_term.group_type.field_group_type_icon.yml new file mode 100644 index 0000000..f37beb5 --- /dev/null +++ b/drupal/config/sync/field.field.taxonomy_term.group_type.field_group_type_icon.yml @@ -0,0 +1,23 @@ +uuid: 7dd6075d-3e48-4587-a6d1-6f3a3fcb1a6d +langcode: en +status: true +dependencies: + config: + - field.storage.taxonomy_term.field_group_type_icon + - taxonomy.vocabulary.group_type + module: + - options +_core: + default_config_hash: 3DoSGHv5-7myM_pOZkY3I0OnI-hUcQeHbtQh-sc8jKU +id: taxonomy_term.group_type.field_group_type_icon +field_name: field_group_type_icon +entity_type: taxonomy_term +bundle: group_type +label: Icon +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: social_group_flexible_group_type_default_value_function +settings: { } +field_type: list_string diff --git a/drupal/config/sync/field.field.taxonomy_term.topic_types.field_topic_type_icon.yml b/drupal/config/sync/field.field.taxonomy_term.topic_types.field_topic_type_icon.yml new file mode 100644 index 0000000..1a52877 --- /dev/null +++ b/drupal/config/sync/field.field.taxonomy_term.topic_types.field_topic_type_icon.yml @@ -0,0 +1,23 @@ +uuid: b930e79c-dcff-4371-b6d4-b7a91066eb46 +langcode: en +status: true +dependencies: + config: + - field.storage.taxonomy_term.field_topic_type_icon + - taxonomy.vocabulary.topic_types + module: + - options +_core: + default_config_hash: 3MnCdkn5x3ocCoRr3fJYoYWeZyc85C6vLdqDwWVoj5g +id: taxonomy_term.topic_types.field_topic_type_icon +field_name: field_topic_type_icon +entity_type: taxonomy_term +bundle: topic_types +label: Icon +description: '' +required: true +translatable: false +default_value: { } +default_value_callback: social_topic_default_value_function +settings: { } +field_type: list_string diff --git a/drupal/config/field.settings.yml b/drupal/config/sync/field.settings.yml similarity index 100% rename from drupal/config/field.settings.yml rename to drupal/config/sync/field.settings.yml index 2225b8f..95c042d 100644 --- a/drupal/config/field.settings.yml +++ b/drupal/config/sync/field.settings.yml @@ -1,3 +1,3 @@ +purge_batch_size: 50 _core: default_config_hash: nJk0TAQBzlNo52ehiHI7bIEPLGi0BYqZvPdEn7Chfu0 -purge_batch_size: 50 diff --git a/drupal/config/sync/field.storage.activity.field_activity_destinations.yml b/drupal/config/sync/field.storage.activity.field_activity_destinations.yml new file mode 100644 index 0000000..2fa671a --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_destinations.yml @@ -0,0 +1,23 @@ +uuid: ae8e6824-2937-4d9b-bf3b-1a71f612331c +langcode: en +status: true +dependencies: + module: + - activity_creator + - options +_core: + default_config_hash: _NjkNkF2ZYgYH0NiNJOohin2jNXHzl_3FXlYECgnexw +id: activity.field_activity_destinations +field_name: field_activity_destinations +entity_type: activity +type: list_string +settings: + allowed_values: { } + allowed_values_function: activity_creator_field_activity_destinations_allowed_values +module: options +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.activity.field_activity_entity.yml b/drupal/config/sync/field.storage.activity.field_activity_entity.yml new file mode 100644 index 0000000..c6fb4b9 --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_entity.yml @@ -0,0 +1,36 @@ +uuid: e40dd974-1438-4148-9d47-0331717fd165 +langcode: en +status: true +dependencies: + module: + - activity_creator + - comment + - dynamic_entity_reference + - group + - message + - node + - path_alias +_core: + default_config_hash: '-WUuqx-m7OF_oD5WaVM3HvkY9ysyR3x9cWYly_au0_I' +id: activity.field_activity_entity +field_name: field_activity_entity +entity_type: activity +type: dynamic_entity_reference +settings: + exclude_entity_types: true + entity_type_ids: + activity: activity + block_content: block_content + menu_link_content: menu_link_content + file: file + group_content: group_content + profile: profile + taxonomy_term: taxonomy_term + user: user +module: dynamic_entity_reference +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.activity.field_activity_message.yml b/drupal/config/sync/field.storage.activity.field_activity_message.yml new file mode 100644 index 0000000..3d3c811 --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_message.yml @@ -0,0 +1,22 @@ +uuid: 1c95f2ad-c12c-45d3-bafd-03b6feafa122 +langcode: en +status: true +dependencies: + module: + - activity_creator + - message +_core: + default_config_hash: Y1bywpHAtzII2nE4XTXEHxSsTgsA9UyiTxTuYMiuVXY +id: activity.field_activity_message +field_name: field_activity_message +entity_type: activity +type: entity_reference +settings: + target_type: message +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.activity.field_activity_output_text.yml b/drupal/config/sync/field.storage.activity.field_activity_output_text.yml new file mode 100644 index 0000000..52d8a39 --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_output_text.yml @@ -0,0 +1,21 @@ +uuid: 1788b793-c470-43d9-9d6c-6242c380be5e +langcode: en +status: true +dependencies: + module: + - activity_creator + - text +_core: + default_config_hash: 06cWTl_3baOiRi22wjKhCxOWsSII3Jlslk8-tpYDzuo +id: activity.field_activity_output_text +field_name: field_activity_output_text +entity_type: activity +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.activity.field_activity_recipient_group.yml b/drupal/config/sync/field.storage.activity.field_activity_recipient_group.yml new file mode 100644 index 0000000..a18cf92 --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_recipient_group.yml @@ -0,0 +1,22 @@ +uuid: b0589c84-c089-42b6-baf0-6878ec5c80c5 +langcode: en +status: true +dependencies: + module: + - activity_creator + - group +_core: + default_config_hash: s2hGkXtaE-KjS0f28HOxLbVwBVyX2rHpVF3PJ0Lpwyc +id: activity.field_activity_recipient_group +field_name: field_activity_recipient_group +entity_type: activity +type: entity_reference +settings: + target_type: group +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.activity.field_activity_recipient_user.yml b/drupal/config/sync/field.storage.activity.field_activity_recipient_user.yml new file mode 100644 index 0000000..d098321 --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_recipient_user.yml @@ -0,0 +1,22 @@ +uuid: ac38fb49-9757-4915-89be-669aa902019e +langcode: en +status: true +dependencies: + module: + - activity_creator + - user +_core: + default_config_hash: XPt4Sy6BenXvxKSVpl9Gfm30-dVxKklxxUjdmOy0jmQ +id: activity.field_activity_recipient_user +field_name: field_activity_recipient_user +entity_type: activity +type: entity_reference +settings: + target_type: user +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.activity.field_activity_status.yml b/drupal/config/sync/field.storage.activity.field_activity_status.yml new file mode 100644 index 0000000..ebac4e3 --- /dev/null +++ b/drupal/config/sync/field.storage.activity.field_activity_status.yml @@ -0,0 +1,23 @@ +uuid: cf22d8e2-77ca-4005-a7a8-05b2effe3ae5 +langcode: en +status: true +dependencies: + module: + - activity_creator + - options +_core: + default_config_hash: jGE58m_OhCvvH-BLcs8VfjxMZMSvcJ0mWeTbWaINUws +id: activity.field_activity_status +field_name: field_activity_status +entity_type: activity +type: list_string +settings: + allowed_values: { } + allowed_values_function: activity_creator_field_activity_status_allowed_values +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.block_content.body.yml b/drupal/config/sync/field.storage.block_content.body.yml similarity index 90% rename from drupal/config/field.storage.block_content.body.yml rename to drupal/config/sync/field.storage.block_content.body.yml index bb8b886..a52c1f4 100644 --- a/drupal/config/field.storage.block_content.body.yml +++ b/drupal/config/sync/field.storage.block_content.body.yml @@ -1,4 +1,4 @@ -uuid: ae5129f6-a148-41a3-97db-06564d035120 +uuid: 422c8131-1ce3-4725-9e29-7197ff9022f9 langcode: en status: true dependencies: diff --git a/drupal/config/sync/field.storage.block_content.field_basic_link.yml b/drupal/config/sync/field.storage.block_content.field_basic_link.yml new file mode 100644 index 0000000..9247f33 --- /dev/null +++ b/drupal/config/sync/field.storage.block_content.field_basic_link.yml @@ -0,0 +1,21 @@ +uuid: 15c5776c-24ab-4527-bba5-42f21ab65cb9 +langcode: en +status: true +dependencies: + module: + - block_content + - link +_core: + default_config_hash: 51JFVJJWyBBKPIsVW_IauTeU8GnEnNUw9JIeIOAbJsI +id: block_content.field_basic_link +field_name: field_basic_link +entity_type: block_content +type: link +settings: { } +module: link +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.block_content.field_call_to_action_link.yml b/drupal/config/sync/field.storage.block_content.field_call_to_action_link.yml new file mode 100644 index 0000000..b8878bd --- /dev/null +++ b/drupal/config/sync/field.storage.block_content.field_call_to_action_link.yml @@ -0,0 +1,21 @@ +uuid: 64b88751-abb3-43b2-a0c2-a1efed2b270b +langcode: en +status: true +dependencies: + module: + - block_content + - link +_core: + default_config_hash: l2yK8L53xxGJKfir57Q0rwD1EDcz0KT75dFFNSXxXpI +id: block_content.field_call_to_action_link +field_name: field_call_to_action_link +entity_type: block_content +type: link +settings: { } +module: link +locked: false +cardinality: 2 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.block_content.field_hero_image.yml b/drupal/config/sync/field.storage.block_content.field_hero_image.yml new file mode 100644 index 0000000..f819759 --- /dev/null +++ b/drupal/config/sync/field.storage.block_content.field_hero_image.yml @@ -0,0 +1,32 @@ +uuid: cd90a1f1-23f1-4aaf-b9bc-21bc97687712 +langcode: en +status: true +dependencies: + module: + - block_content + - file + - image +_core: + default_config_hash: luHEf-HUEp2GWRiQv0baeG3kja-o-UQvnET1eU-fdqs +id: block_content.field_hero_image +field_name: field_hero_image +entity_type: block_content +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.block_content.field_text_block.yml b/drupal/config/sync/field.storage.block_content.field_text_block.yml new file mode 100644 index 0000000..a431930 --- /dev/null +++ b/drupal/config/sync/field.storage.block_content.field_text_block.yml @@ -0,0 +1,21 @@ +uuid: e5e6295f-ee0d-4f30-b855-df3e558921c1 +langcode: en +status: true +dependencies: + module: + - block_content + - text +_core: + default_config_hash: bKn73jUZ6znmFyAFqeHp0ZU7_62ZyLR_inMVBNCboaU +id: block_content.field_text_block +field_name: field_text_block +entity_type: block_content +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.comment.comment_body.yml b/drupal/config/sync/field.storage.comment.comment_body.yml similarity index 89% rename from drupal/config/field.storage.comment.comment_body.yml rename to drupal/config/sync/field.storage.comment.comment_body.yml index 5c15165..8cfc02b 100644 --- a/drupal/config/field.storage.comment.comment_body.yml +++ b/drupal/config/sync/field.storage.comment.comment_body.yml @@ -1,4 +1,4 @@ -uuid: e17dd301-04ec-4e9c-8800-bd61cd854b32 +uuid: 7c89ac4a-9d5b-42fe-b01f-68bfb537e7e2 langcode: en status: true dependencies: diff --git a/drupal/config/sync/field.storage.comment.field_comment_body.yml b/drupal/config/sync/field.storage.comment.field_comment_body.yml new file mode 100644 index 0000000..d7b5ccc --- /dev/null +++ b/drupal/config/sync/field.storage.comment.field_comment_body.yml @@ -0,0 +1,21 @@ +uuid: 77b7de12-0540-46f0-854f-27ecc8682679 +langcode: en +status: true +dependencies: + module: + - comment + - text +_core: + default_config_hash: iZ42qu1xBw6qfL6CHPWCgYAhCBloVFtfsppScZaX2go +id: comment.field_comment_body +field_name: field_comment_body +entity_type: comment +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.comment.field_comment_files.yml b/drupal/config/sync/field.storage.comment.field_comment_files.yml new file mode 100644 index 0000000..674a9a8 --- /dev/null +++ b/drupal/config/sync/field.storage.comment.field_comment_files.yml @@ -0,0 +1,25 @@ +uuid: 880e5348-3a11-4213-9000-0e7d9562ec95 +langcode: en +status: true +dependencies: + module: + - comment + - file +_core: + default_config_hash: F7QhbVDPIDDOJdf171nvX55_kdBBTuwo-TMF9xxiAh0 +id: comment.field_comment_files +field_name: field_comment_files +entity_type: comment +type: file +settings: + display_field: false + display_default: false + uri_scheme: public + target_type: file +module: file +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.event_enrollment.field_account.yml b/drupal/config/sync/field.storage.event_enrollment.field_account.yml new file mode 100644 index 0000000..4b8286a --- /dev/null +++ b/drupal/config/sync/field.storage.event_enrollment.field_account.yml @@ -0,0 +1,22 @@ +uuid: eb7b7f46-2b4e-495b-899e-8c7dc0699b2f +langcode: en +status: true +dependencies: + module: + - social_event + - user +_core: + default_config_hash: _aXXBgWq3i2pnCB-pysXTS-g8QpHXnROSx0bhN8nyZw +id: event_enrollment.field_account +field_name: field_account +entity_type: event_enrollment +type: entity_reference +settings: + target_type: user +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.event_enrollment.field_email.yml b/drupal/config/sync/field.storage.event_enrollment.field_email.yml new file mode 100644 index 0000000..78c6c51 --- /dev/null +++ b/drupal/config/sync/field.storage.event_enrollment.field_email.yml @@ -0,0 +1,20 @@ +uuid: 88866327-67b0-4cba-b377-6d57e154bc1f +langcode: en +status: true +dependencies: + module: + - social_event +_core: + default_config_hash: MMc_Zq3gBwtSyIU7Q9zo1ahpROyQyrK0lP1x7QBUZMg +id: event_enrollment.field_email +field_name: field_email +entity_type: event_enrollment +type: email +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.event_enrollment.field_enrollment_status.yml b/drupal/config/sync/field.storage.event_enrollment.field_enrollment_status.yml new file mode 100644 index 0000000..cf92396 --- /dev/null +++ b/drupal/config/sync/field.storage.event_enrollment.field_enrollment_status.yml @@ -0,0 +1,29 @@ +uuid: 0556e914-1242-47ab-9ccd-0779eced7e7b +langcode: en +status: true +dependencies: + module: + - options + - social_event +_core: + default_config_hash: EwwLz17loR8Y3GotHFqIzv6lxIC6LhRtHqGaEGLgfs4 +id: event_enrollment.field_enrollment_status +field_name: field_enrollment_status +entity_type: event_enrollment +type: list_string +settings: + allowed_values: + - + value: '0' + label: 'Not enrolled' + - + value: '1' + label: Enrolled + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.event_enrollment.field_event.yml b/drupal/config/sync/field.storage.event_enrollment.field_event.yml new file mode 100644 index 0000000..1954d15 --- /dev/null +++ b/drupal/config/sync/field.storage.event_enrollment.field_event.yml @@ -0,0 +1,22 @@ +uuid: 72d48d30-38a4-405a-bb23-d6cdc9913f26 +langcode: en +status: true +dependencies: + module: + - node + - social_event +_core: + default_config_hash: W7T1QQuUjEeZCgC_3Vfpeljkf7jc54xyeDDZYKGx8wI +id: event_enrollment.field_event +field_name: field_event +entity_type: event_enrollment +type: entity_reference +settings: + target_type: node +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.event_enrollment.field_request_message.yml b/drupal/config/sync/field.storage.event_enrollment.field_request_message.yml new file mode 100644 index 0000000..038b7da --- /dev/null +++ b/drupal/config/sync/field.storage.event_enrollment.field_request_message.yml @@ -0,0 +1,21 @@ +uuid: ace64b67-208e-4d1b-af9c-7c803cb1f005 +langcode: en +status: true +dependencies: + module: + - social_event +_core: + default_config_hash: i5hn1CcGKwgaYHeq1FrjkSZoIadAltX-QkHSuVMfIgo +id: event_enrollment.field_request_message +field_name: field_request_message +entity_type: event_enrollment +type: string_long +settings: + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.event_enrollment.field_request_or_invite_status.yml b/drupal/config/sync/field.storage.event_enrollment.field_request_or_invite_status.yml new file mode 100644 index 0000000..eb33826 --- /dev/null +++ b/drupal/config/sync/field.storage.event_enrollment.field_request_or_invite_status.yml @@ -0,0 +1,44 @@ +uuid: 374609b1-756d-49fc-a805-13ec8bd8ed5d +langcode: en +status: true +dependencies: + module: + - options + - social_event +_core: + default_config_hash: SKVGAl1qlMNkOdz1iggJi8sYwGVjMdq98wLnB9mSGds +id: event_enrollment.field_request_or_invite_status +field_name: field_request_or_invite_status +entity_type: event_enrollment +type: list_integer +settings: + allowed_values: + - + value: 0 + label: Pending + - + value: 1 + label: Approved + - + value: 2 + label: Declined + - + value: 3 + label: Invited + - + value: 4 + label: 'Pending reply' + - + value: 5 + label: 'Accepted and joined' + - + value: 6 + label: 'Invalid or expired' + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.font.field_fallback.yml b/drupal/config/sync/field.storage.font.field_fallback.yml new file mode 100644 index 0000000..0e61e81 --- /dev/null +++ b/drupal/config/sync/field.storage.font.field_fallback.yml @@ -0,0 +1,29 @@ +uuid: 68d7499b-3bb2-40ed-91eb-33523c6117a8 +langcode: en +status: true +dependencies: + module: + - options + - social_font +_core: + default_config_hash: M9Ny4hfxD94qXg-6pNY68xIy8l2nrxGGEyEQp9-d5to +id: font.field_fallback +field_name: field_fallback +entity_type: font +type: list_string +settings: + allowed_values: + - + value: '0' + label: serif + - + value: '1' + label: sans-serif + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.font.field_fonts.yml b/drupal/config/sync/field.storage.font.field_fonts.yml new file mode 100644 index 0000000..f087e9a --- /dev/null +++ b/drupal/config/sync/field.storage.font.field_fonts.yml @@ -0,0 +1,25 @@ +uuid: 2df3d59a-b348-4bc0-a5cf-4187619548dd +langcode: en +status: true +dependencies: + module: + - file + - social_font +_core: + default_config_hash: trQQyQgHIQSpRpiS9n2DGY5j1Z_PYDWBKdmiwvYywqk +id: font.field_fonts +field_name: field_fonts +entity_type: font +type: file +settings: + display_field: false + display_default: false + uri_scheme: public + target_type: file +module: file +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_flexible_group_visibility.yml b/drupal/config/sync/field.storage.group.field_flexible_group_visibility.yml new file mode 100644 index 0000000..0e4e58a --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_flexible_group_visibility.yml @@ -0,0 +1,32 @@ +uuid: 5bf0e3fc-7c58-47b0-bec3-2e01c630e550 +langcode: en +status: true +dependencies: + module: + - group + - options +_core: + default_config_hash: IsscbdPFs7nD7JmhgYm6CpaIgv7bSzvIDiUy_bGw1Nc +id: group.field_flexible_group_visibility +field_name: field_flexible_group_visibility +entity_type: group +type: list_string +settings: + allowed_values: + - + value: public + label: Public + - + value: community + label: Community + - + value: members + label: 'Group members only (secret)' + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_address.yml b/drupal/config/sync/field.storage.group.field_group_address.yml new file mode 100644 index 0000000..4fe5a01 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_address.yml @@ -0,0 +1,21 @@ +uuid: 8408400d-c611-4170-91fc-9b9f1c9adbe9 +langcode: en +status: true +dependencies: + module: + - address + - group +_core: + default_config_hash: SThhVdsoT2cGEl1WixzKDeTriPp9zTmXWBNcUrUwIgs +id: group.field_group_address +field_name: field_group_address +entity_type: group +type: address +settings: { } +module: address +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_allowed_join_method.yml b/drupal/config/sync/field.storage.group.field_group_allowed_join_method.yml new file mode 100644 index 0000000..9534dc2 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_allowed_join_method.yml @@ -0,0 +1,29 @@ +uuid: 845b1fbd-a83d-4f2e-afff-46606ae9bf9c +langcode: en +status: true +dependencies: + module: + - group + - options +_core: + default_config_hash: X4MpjmJmGgzw_778qhXMP0hSUVb-ppthC_cj_Na4hak +id: group.field_group_allowed_join_method +field_name: field_group_allowed_join_method +entity_type: group +type: list_string +settings: + allowed_values: + - + value: direct + label: 'Join directly' + - + value: added + label: 'Be added' + allowed_values_function: '' +module: options +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_allowed_visibility.yml b/drupal/config/sync/field.storage.group.field_group_allowed_visibility.yml new file mode 100644 index 0000000..8659f98 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_allowed_visibility.yml @@ -0,0 +1,32 @@ +uuid: e088f0d5-e38f-4e4b-83bc-6320aaadead1 +langcode: en +status: true +dependencies: + module: + - group + - options +_core: + default_config_hash: rcofQoJONrsuzsXK450Frwl_cTiJTlSXux9JDA6UMPM +id: group.field_group_allowed_visibility +field_name: field_group_allowed_visibility +entity_type: group +type: list_string +settings: + allowed_values: + - + value: public + label: Public + - + value: community + label: Community + - + value: group + label: 'Group members' + allowed_values_function: '' +module: options +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_description.yml b/drupal/config/sync/field.storage.group.field_group_description.yml new file mode 100644 index 0000000..fb5cdb6 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_description.yml @@ -0,0 +1,21 @@ +uuid: c9949a94-b3e0-4017-95ac-d9fa3bd6dcf6 +langcode: en +status: true +dependencies: + module: + - group + - text +_core: + default_config_hash: X3uqFg12E2rJ3gtTAeDlxLm6xjW8zFqFHKCZkdG-UU8 +id: group.field_group_description +field_name: field_group_description +entity_type: group +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.user.user_picture.yml b/drupal/config/sync/field.storage.group.field_group_image.yml similarity index 61% rename from drupal/config/field.storage.user.user_picture.yml rename to drupal/config/sync/field.storage.group.field_group_image.yml index a96a8c9..fbb091a 100644 --- a/drupal/config/field.storage.user.user_picture.yml +++ b/drupal/config/sync/field.storage.group.field_group_image.yml @@ -1,34 +1,32 @@ -uuid: 167198d4-0670-4ca1-9db2-881bd77fdd37 +uuid: 171fd889-1f4d-48ca-8826-bfea6cb686a1 langcode: en status: true dependencies: module: - file + - group - image - - user _core: - default_config_hash: 0q8-mw8y-Ls5I578sIPQFLp4ljpH7WvVYpzY-I9O-8E -id: user.user_picture -field_name: user_picture -entity_type: user + default_config_hash: u7wTgG3APVnwXqEqtYhU-FN9kPGC5Rp3ha2eHf7rXas +id: group.field_group_image +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: null + uuid: '' alt: '' title: '' width: null height: null + target_type: file + display_field: false + display_default: false module: image locked: false cardinality: 1 translatable: true -indexes: - target_id: - - target_id +indexes: { } persist_with_no_fields: false custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_invite_by_member.yml b/drupal/config/sync/field.storage.group.field_group_invite_by_member.yml new file mode 100644 index 0000000..71283f1 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_invite_by_member.yml @@ -0,0 +1,23 @@ +uuid: ede7b236-a074-4909-8789-a61bffe5152c +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_invite + module: + - group +_core: + default_config_hash: oEndhBtD9aaHfAUJi4Ty5GXGCovADWDPpH-7s3Y_ook +id: group.field_group_invite_by_member +field_name: field_group_invite_by_member +entity_type: group +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_location.yml b/drupal/config/sync/field.storage.group.field_group_location.yml new file mode 100644 index 0000000..069b228 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_location.yml @@ -0,0 +1,23 @@ +uuid: 620de686-4f49-40df-8aa8-8cd1a53d4696 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: 9WJe5N1_nHZPgJdC-fvMqXz3RwdpduNqloBc5yteYWw +id: group.field_group_location +field_name: field_group_location +entity_type: group +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_posts_enabled.yml b/drupal/config/sync/field.storage.group.field_group_posts_enabled.yml new file mode 100644 index 0000000..921b247 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_posts_enabled.yml @@ -0,0 +1,23 @@ +uuid: 6fbff1d6-164a-4f62-8a82-593877d86ada +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_flexible_group + module: + - group +_core: + default_config_hash: I9_i1EGNSTez8FL1WWHOJjbtwJkLdj_3niNIwVijUX0 +id: group.field_group_posts_enabled +field_name: field_group_posts_enabled +entity_type: group +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group.field_group_type.yml b/drupal/config/sync/field.storage.group.field_group_type.yml new file mode 100644 index 0000000..3fd0494 --- /dev/null +++ b/drupal/config/sync/field.storage.group.field_group_type.yml @@ -0,0 +1,22 @@ +uuid: 57a8489f-074c-411f-860c-e17567b2a69f +langcode: en +status: true +dependencies: + module: + - group + - taxonomy +_core: + default_config_hash: vdB9o5YEHq6ZET64a2dAuhzbCryPN5MiC1XeoTeZZlI +id: group.field_group_type +field_name: field_group_type +entity_type: group +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group_content.field_grequest_message.yml b/drupal/config/sync/field.storage.group_content.field_grequest_message.yml new file mode 100644 index 0000000..579f790 --- /dev/null +++ b/drupal/config/sync/field.storage.group_content.field_grequest_message.yml @@ -0,0 +1,24 @@ +uuid: b8a72709-de8f-4dce-9d88-f3e02088d70e +langcode: en +status: true +dependencies: + enforced: + module: + - social_group_request + module: + - group +_core: + default_config_hash: a5rdmS15LQNWtLnPRg4k-gHdG_lh0bBQMm79yHv77aA +id: group_content.field_grequest_message +field_name: field_grequest_message +entity_type: group_content +type: string_long +settings: + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.group_content.grequest_status.yml b/drupal/config/sync/field.storage.group_content.grequest_status.yml new file mode 100644 index 0000000..c84f5a7 --- /dev/null +++ b/drupal/config/sync/field.storage.group_content.grequest_status.yml @@ -0,0 +1,22 @@ +uuid: 2002bd3a-3109-405b-ac23-4a3c02e9dc15 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: xeFWS5xJtaemyt0mmJJbKXGZx2msNjeARfSsHdLjsWw +id: group_content.grequest_status +field_name: grequest_status +entity_type: group_content +type: integer +settings: + unsigned: false + size: normal +module: core +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/drupal/config/sync/field.storage.group_content.grequest_updated_by.yml b/drupal/config/sync/field.storage.group_content.grequest_updated_by.yml new file mode 100644 index 0000000..83f83e9 --- /dev/null +++ b/drupal/config/sync/field.storage.group_content.grequest_updated_by.yml @@ -0,0 +1,22 @@ +uuid: b2b5cd6f-0c83-40e8-8517-d2f0b495772c +langcode: en +status: true +dependencies: + module: + - group + - user +_core: + default_config_hash: TlXJmcOmHrVFzc6A_QdXBjsRasK_nNTrIxWtBFr_C2I +id: group_content.grequest_updated_by +field_name: grequest_updated_by +entity_type: group_content +type: entity_reference +settings: + target_type: user +module: core +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/drupal/config/sync/field.storage.group_content.group_roles.yml b/drupal/config/sync/field.storage.group_content.group_roles.yml new file mode 100644 index 0000000..28f9fd1 --- /dev/null +++ b/drupal/config/sync/field.storage.group_content.group_roles.yml @@ -0,0 +1,21 @@ +uuid: 767a85ba-9ad2-433d-af91-085bfda4e9c1 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: Sgrm2nHDx7xKvByuR5oGB77nLvI0LikTM8ff3e_YlWY +id: group_content.group_roles +field_name: group_roles +entity_type: group_content +type: entity_reference +settings: + target_type: group_role +module: core +locked: true +cardinality: -1 +translatable: false +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/drupal/config/sync/field.storage.group_content.invitation_status.yml b/drupal/config/sync/field.storage.group_content.invitation_status.yml new file mode 100644 index 0000000..213005a --- /dev/null +++ b/drupal/config/sync/field.storage.group_content.invitation_status.yml @@ -0,0 +1,22 @@ +uuid: 5bc230ce-f753-46a2-9690-27b9a5bc35d4 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: aP4AjuNseqA2EDtQrOYcEUncxNkZzNKQ4XGKXkdD6Wo +id: group_content.invitation_status +field_name: invitation_status +entity_type: group_content +type: integer +settings: + unsigned: false + size: normal +module: core +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/drupal/config/sync/field.storage.group_content.invitee_mail.yml b/drupal/config/sync/field.storage.group_content.invitee_mail.yml new file mode 100644 index 0000000..6cb1b03 --- /dev/null +++ b/drupal/config/sync/field.storage.group_content.invitee_mail.yml @@ -0,0 +1,20 @@ +uuid: fa674175-0cf0-48ca-89df-cfa992a04671 +langcode: en +status: true +dependencies: + module: + - group +_core: + default_config_hash: sFNKZWBDgPSahxVndnw-GvRKjiwAeT80xyRALjjfnBM +id: group_content.invitee_mail +field_name: invitee_mail +entity_type: group_content +type: email +settings: { } +module: core +locked: true +cardinality: 1 +translatable: false +indexes: { } +persist_with_no_fields: true +custom_storage: false diff --git a/drupal/config/sync/field.storage.message.field_message_context.yml b/drupal/config/sync/field.storage.message.field_message_context.yml new file mode 100644 index 0000000..3caf70d --- /dev/null +++ b/drupal/config/sync/field.storage.message.field_message_context.yml @@ -0,0 +1,23 @@ +uuid: 35e0903c-754e-47ed-b0ff-128d208fdfc4 +langcode: en +status: true +dependencies: + module: + - message + - options +_core: + default_config_hash: JgBOStb2vC_3cRfD2wr5lf9WrMEDjJu6kHd-1frEeaA +id: message.field_message_context +field_name: field_message_context +entity_type: message +type: list_string +settings: + allowed_values: { } + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.message.field_message_destination.yml b/drupal/config/sync/field.storage.message.field_message_destination.yml new file mode 100644 index 0000000..260d072 --- /dev/null +++ b/drupal/config/sync/field.storage.message.field_message_destination.yml @@ -0,0 +1,23 @@ +uuid: a800181f-c112-4aea-9b49-8ff2e2fe91c1 +langcode: en +status: true +dependencies: + module: + - message + - options +_core: + default_config_hash: p2bBOxyAbd_owEFxYKDpB_A36JCb3CXP53SGGW7jQvU +id: message.field_message_destination +field_name: field_message_destination +entity_type: message +type: list_string +settings: + allowed_values: { } + allowed_values_function: activity_creator_field_activity_destinations_allowed_values +module: options +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.message.field_message_related_object.yml b/drupal/config/sync/field.storage.message.field_message_related_object.yml new file mode 100644 index 0000000..bf3177e --- /dev/null +++ b/drupal/config/sync/field.storage.message.field_message_related_object.yml @@ -0,0 +1,37 @@ +uuid: cd839e04-a0a9-40d3-9ca8-3c4096a8af3d +langcode: en +status: true +dependencies: + module: + - dynamic_entity_reference + - message + - node + - path_alias +_core: + default_config_hash: 7RqGynvwbDvk8F2RyQ6XmRN2xYrABvgpg1lhh9zJ5So +id: message.field_message_related_object +field_name: field_message_related_object +entity_type: message +type: dynamic_entity_reference +settings: + exclude_entity_types: true + entity_type_ids: + activity: activity + comment: comment + block_content: block_content + menu_link_content: menu_link_content + event_enrollment: event_enrollment + file: file + group_content: group_content + group: group + message: message + profile: profile + taxonomy_term: taxonomy_term + user: user +module: dynamic_entity_reference +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.node.body.yml b/drupal/config/sync/field.storage.node.body.yml similarity index 89% rename from drupal/config/field.storage.node.body.yml rename to drupal/config/sync/field.storage.node.body.yml index f16d610..9527e1a 100644 --- a/drupal/config/field.storage.node.body.yml +++ b/drupal/config/sync/field.storage.node.body.yml @@ -1,4 +1,4 @@ -uuid: 516297e9-ef99-4357-a012-3fd73739dc94 +uuid: 35374998-ed43-4a14-876f-ff0d39b15bd2 langcode: en status: true dependencies: diff --git a/drupal/config/sync/field.storage.node.field_content_visibility.yml b/drupal/config/sync/field.storage.node.field_content_visibility.yml new file mode 100644 index 0000000..33d5598 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_content_visibility.yml @@ -0,0 +1,32 @@ +uuid: 4d73fb22-231c-4ff6-ba7d-9ffffbc944c3 +langcode: en +status: true +dependencies: + module: + - entity_access_by_field + - node +_core: + default_config_hash: hJswp0rJk_hRH72sL8kPOmyyDtmTH_0pvVYdrLszwx0 +id: node.field_content_visibility +field_name: field_content_visibility +entity_type: node +type: entity_access_field +settings: + allowed_values: + - + value: public + label: Public + - + value: community + label: Community + - + value: group + label: 'Group members' + allowed_values_function: '' +module: entity_access_by_field +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_enroll_method.yml b/drupal/config/sync/field.storage.node.field_enroll_method.yml new file mode 100644 index 0000000..18a7045 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_enroll_method.yml @@ -0,0 +1,32 @@ +uuid: 6587ed68-ec39-4807-83de-699af6663217 +langcode: en +status: true +dependencies: + module: + - node + - options +_core: + default_config_hash: QXkros49ogj5NYLpqlN7zSdMlYUVI9dmejGnQu8565o +id: node.field_enroll_method +field_name: field_enroll_method +entity_type: node +type: list_integer +settings: + allowed_values: + - + value: 1 + label: 'Open to enroll' + - + value: 2 + label: 'Request to enroll' + - + value: 3 + label: Invite-only + allowed_values_function: '' +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_address.yml b/drupal/config/sync/field.storage.node.field_event_address.yml new file mode 100644 index 0000000..eba0f1f --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_address.yml @@ -0,0 +1,21 @@ +uuid: bf479892-9cd2-4328-95f1-c831df8b6947 +langcode: en +status: true +dependencies: + module: + - address + - node +_core: + default_config_hash: Cw4zMPX5baU9ygQFDu_ym2hMezfWv58GV6wdaAjHUXk +id: node.field_event_address +field_name: field_event_address +entity_type: node +type: address +settings: { } +module: address +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_all_day.yml b/drupal/config/sync/field.storage.node.field_event_all_day.yml new file mode 100644 index 0000000..1f6ccc0 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_all_day.yml @@ -0,0 +1,23 @@ +uuid: a9c8fe79-e833-48f6-b894-be38f16d4043 +langcode: en +status: true +dependencies: + enforced: + module: + - social_event + module: + - node +_core: + default_config_hash: vDHQAgbEt-K9-kQtuaJkL0DQHMXxpi4vhOuEUx9E9N0 +id: node.field_event_all_day +field_name: field_event_all_day +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_comments.yml b/drupal/config/sync/field.storage.node.field_event_comments.yml new file mode 100644 index 0000000..a06483f --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_comments.yml @@ -0,0 +1,22 @@ +uuid: 627b6e72-4f66-40d5-a069-f1b4ba4e2e95 +langcode: en +status: true +dependencies: + module: + - comment + - node +_core: + default_config_hash: q1MFwnpfOimodFTajUv32VLbO41BBTwymyLdROIjoq8 +id: node.field_event_comments +field_name: field_event_comments +entity_type: node +type: comment +settings: + comment_type: comment +module: comment +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_date.yml b/drupal/config/sync/field.storage.node.field_event_date.yml new file mode 100644 index 0000000..6adc66f --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_date.yml @@ -0,0 +1,22 @@ +uuid: 15a112e3-34e7-436f-a940-941fa88e3850 +langcode: en +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: Wy89Y-RqThburQ0cZc-SH08AgwXkjSxEba7sBkw1034 +id: node.field_event_date +field_name: field_event_date +entity_type: node +type: datetime +settings: + datetime_type: datetime +module: datetime +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_date_end.yml b/drupal/config/sync/field.storage.node.field_event_date_end.yml new file mode 100644 index 0000000..3336b82 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_date_end.yml @@ -0,0 +1,22 @@ +uuid: c08ae003-5772-47e4-a206-eae97b209ee4 +langcode: en +status: true +dependencies: + module: + - datetime + - node +_core: + default_config_hash: 7MJM1J1RJynow3ZTVPB0C9bGkvidD_LBMvwqMCquN2Q +id: node.field_event_date_end +field_name: field_event_date_end +entity_type: node +type: datetime +settings: + datetime_type: datetime +module: datetime +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_enroll.yml b/drupal/config/sync/field.storage.node.field_event_enroll.yml new file mode 100644 index 0000000..5508556 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_enroll.yml @@ -0,0 +1,20 @@ +uuid: b8a13fa3-10c6-400a-93d6-0f0e6b1a932b +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: q1L5aaKA7giAB3zZyc_ZiihldYteLZkEvut6Pi0jhPQ +id: node.field_event_enroll +field_name: field_event_enroll +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_enroll_outside_group.yml b/drupal/config/sync/field.storage.node.field_event_enroll_outside_group.yml new file mode 100644 index 0000000..759dd06 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_enroll_outside_group.yml @@ -0,0 +1,20 @@ +uuid: f3e3bc77-fbd5-4305-9e75-441dfe14c567 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: it50zSiheoidchnJJDrRHacZqZB21FcnaHLSlhbFZDc +id: node.field_event_enroll_outside_group +field_name: field_event_enroll_outside_group +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.node.field_image.yml b/drupal/config/sync/field.storage.node.field_event_image.yml similarity index 66% rename from drupal/config/field.storage.node.field_image.yml rename to drupal/config/sync/field.storage.node.field_event_image.yml index 0a84385..35cc504 100644 --- a/drupal/config/field.storage.node.field_image.yml +++ b/drupal/config/sync/field.storage.node.field_event_image.yml @@ -1,4 +1,4 @@ -uuid: aec2f628-71bf-4aa7-9bf4-b69ec87bda23 +uuid: d34e03db-4c0b-4f6f-87f9-230b4280dbf2 langcode: en status: true dependencies: @@ -7,28 +7,26 @@ dependencies: - image - node _core: - default_config_hash: EymokncRIZ7SgQT2IdOQhQJicX4nNc0K89ik-LxmOHE -id: node.field_image -field_name: field_image + default_config_hash: n_BOi0DfHp0aPnWWKoLJ_a42dGf-PmH1UM3JyhfWbv8 +id: node.field_event_image +field_name: field_event_image entity_type: node type: image settings: - target_type: file - display_field: false - display_default: false uri_scheme: public default_image: - uuid: null + uuid: '' alt: '' title: '' width: null height: null + target_type: file + display_field: false + display_default: false module: image locked: false cardinality: 1 translatable: true -indexes: - target_id: - - target_id +indexes: { } persist_with_no_fields: false custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_location.yml b/drupal/config/sync/field.storage.node.field_event_location.yml new file mode 100644 index 0000000..39f7211 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_location.yml @@ -0,0 +1,23 @@ +uuid: 54cded72-16f2-477c-b51d-b1519d41da95 +langcode: en +status: true +dependencies: + module: + - node +_core: + default_config_hash: e1C4rmrO-3L1I0l2J5EP0LneHwi2Ts398GxTX40rLIM +id: node.field_event_location +field_name: field_event_location +entity_type: node +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_managers.yml b/drupal/config/sync/field.storage.node.field_event_managers.yml new file mode 100644 index 0000000..a71161a --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_managers.yml @@ -0,0 +1,22 @@ +uuid: 0bf52a94-0df7-45e8-88e6-f53b770509ca +langcode: en +status: true +dependencies: + module: + - node + - user +_core: + default_config_hash: e-jiS90NXCV3iy4JG9hBvzHgxFafEWob5_KCvgSR4yQ +id: node.field_event_managers +field_name: field_event_managers +entity_type: node +type: entity_reference +settings: + target_type: user +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_event_send_invite_by_user.yml b/drupal/config/sync/field.storage.node.field_event_send_invite_by_user.yml new file mode 100644 index 0000000..5906547 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_event_send_invite_by_user.yml @@ -0,0 +1,23 @@ +uuid: 87a26abd-af4d-4524-8c83-a89471a55fda +langcode: en +status: true +dependencies: + enforced: + module: + - social_event_invite + module: + - node +_core: + default_config_hash: WL-B_9VO-m22uZjNaaJMT4pf97RDe8og4ddbNj41hb4 +id: node.field_event_send_invite_by_user +field_name: field_event_send_invite_by_user +entity_type: node +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_files.yml b/drupal/config/sync/field.storage.node.field_files.yml new file mode 100644 index 0000000..582a847 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_files.yml @@ -0,0 +1,25 @@ +uuid: 471c5de8-4f5b-499c-8729-44b7a4cb4411 +langcode: en +status: true +dependencies: + module: + - file + - node +_core: + default_config_hash: 0xdqy7Uw_dER7wQBvjVbAdwYyhN6TRjztM4HJNlDN30 +id: node.field_files +field_name: field_files +entity_type: node +type: file +settings: + display_field: false + display_default: false + uri_scheme: public + target_type: file +module: file +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.node.comment.yml b/drupal/config/sync/field.storage.node.field_page_comments.yml similarity index 61% rename from drupal/config/field.storage.node.comment.yml rename to drupal/config/sync/field.storage.node.field_page_comments.yml index 7049377..d552b52 100644 --- a/drupal/config/field.storage.node.comment.yml +++ b/drupal/config/sync/field.storage.node.field_page_comments.yml @@ -1,4 +1,4 @@ -uuid: f19060c4-d687-4e4d-bcbe-7f58591f13ef +uuid: a0c5a7e0-81d6-416c-a73d-6ffa9979c7a5 langcode: en status: true dependencies: @@ -6,9 +6,9 @@ dependencies: - comment - node _core: - default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc -id: node.comment -field_name: comment + default_config_hash: PHoIi90y7iXa0vCCGCCBBPOQB089rXIlr-5DvnXT9P8 +id: node.field_page_comments +field_name: field_page_comments entity_type: node type: comment settings: diff --git a/drupal/config/sync/field.storage.node.field_page_image.yml b/drupal/config/sync/field.storage.node.field_page_image.yml new file mode 100644 index 0000000..0b9604b --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_page_image.yml @@ -0,0 +1,32 @@ +uuid: a8ed390c-9ef5-4203-a373-be96d6ea02fc +langcode: en +status: true +dependencies: + module: + - file + - image + - node +_core: + default_config_hash: EOkGkoLCL_Dxpfdpq3cVK30o59SJhOWh7CYbaMPCmuk +id: node.field_page_image +field_name: field_page_image +entity_type: node +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_topic_comments.yml b/drupal/config/sync/field.storage.node.field_topic_comments.yml new file mode 100644 index 0000000..c852ce8 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_topic_comments.yml @@ -0,0 +1,22 @@ +uuid: 6ff9b31c-814b-462a-9372-b542efed0169 +langcode: en +status: true +dependencies: + module: + - comment + - node +_core: + default_config_hash: 7h3FwBNPeJAFmp_lY6ctJc0Xt7zRXCwJiPgD56UGyPY +id: node.field_topic_comments +field_name: field_topic_comments +entity_type: node +type: comment +settings: + comment_type: comment +module: comment +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.node.field_topic_image.yml b/drupal/config/sync/field.storage.node.field_topic_image.yml new file mode 100644 index 0000000..3c26653 --- /dev/null +++ b/drupal/config/sync/field.storage.node.field_topic_image.yml @@ -0,0 +1,32 @@ +uuid: 5392247a-7d10-4878-80ec-d72069a878ea +langcode: en +status: true +dependencies: + module: + - file + - image + - node +_core: + default_config_hash: p-l4-A2XLI2AChXR9bN6T4oZycn-9WMVcbTkwP4PHTo +id: node.field_topic_image +field_name: field_topic_image +entity_type: node +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/field.storage.node.field_tags.yml b/drupal/config/sync/field.storage.node.field_topic_type.yml similarity index 63% rename from drupal/config/field.storage.node.field_tags.yml rename to drupal/config/sync/field.storage.node.field_topic_type.yml index 92e82c9..7dc9702 100644 --- a/drupal/config/field.storage.node.field_tags.yml +++ b/drupal/config/sync/field.storage.node.field_topic_type.yml @@ -1,4 +1,4 @@ -uuid: b5495fd4-092a-4e01-b473-27fbc3c95f52 +uuid: 7075f40b-20b6-4bf3-8e10-14490892ed30 langcode: en status: true dependencies: @@ -6,9 +6,9 @@ dependencies: - node - taxonomy _core: - default_config_hash: WpOE_bs8Bs_HY2ns7n2r__de-xno0-Bxkqep5-MsHAs -id: node.field_tags -field_name: field_tags + default_config_hash: m4UIKJsOMRg82iqTWLbxi3jWKEZybpU-g5kGEzhdVeI +id: node.field_topic_type +field_name: field_topic_type entity_type: node type: entity_reference settings: diff --git a/drupal/config/sync/field.storage.post.field_post.yml b/drupal/config/sync/field.storage.post.field_post.yml new file mode 100644 index 0000000..04a6cfd --- /dev/null +++ b/drupal/config/sync/field.storage.post.field_post.yml @@ -0,0 +1,21 @@ +uuid: a17a0c32-7a48-439c-80af-4ddd45f26425 +langcode: en +status: true +dependencies: + module: + - social_post + - text +_core: + default_config_hash: c54Ovci6FJDLI_-xmGiTv17AFGkTVZt6jutqTQvS8ns +id: post.field_post +field_name: field_post +entity_type: post +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.post.field_post_comments.yml b/drupal/config/sync/field.storage.post.field_post_comments.yml new file mode 100644 index 0000000..b317253 --- /dev/null +++ b/drupal/config/sync/field.storage.post.field_post_comments.yml @@ -0,0 +1,22 @@ +uuid: cbcde377-885e-477c-ad27-44be49fa7bd7 +langcode: en +status: true +dependencies: + module: + - comment + - social_post +_core: + default_config_hash: 53vimJ-4WkdX5lHYUperAG-hJK0_g6Y4EPuhj7_Dp_A +id: post.field_post_comments +field_name: field_post_comments +entity_type: post +type: comment +settings: + comment_type: post_comment +module: comment +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.post.field_post_image.yml b/drupal/config/sync/field.storage.post.field_post_image.yml new file mode 100644 index 0000000..cee4dfa --- /dev/null +++ b/drupal/config/sync/field.storage.post.field_post_image.yml @@ -0,0 +1,32 @@ +uuid: 7ec70757-c0f0-42bd-ac0f-63027be43943 +langcode: en +status: true +dependencies: + module: + - file + - image + - social_post +_core: + default_config_hash: tkOw-OXqe3DGFPXPySFxxCgv4QqR7kJFpIjkIHf3giM +id: post.field_post_image +field_name: field_post_image +entity_type: post +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.post.field_recipient_group.yml b/drupal/config/sync/field.storage.post.field_recipient_group.yml new file mode 100644 index 0000000..342f78b --- /dev/null +++ b/drupal/config/sync/field.storage.post.field_recipient_group.yml @@ -0,0 +1,22 @@ +uuid: d9f4a038-1060-4a11-9795-392c963bf6fe +langcode: en +status: true +dependencies: + module: + - group + - social_post +_core: + default_config_hash: tU_PYT-wu36DVEwlFn0mtZn-2qkQ0S1Xv24V6KHI-K4 +id: post.field_recipient_group +field_name: field_recipient_group +entity_type: post +type: entity_reference +settings: + target_type: group +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.post.field_recipient_user.yml b/drupal/config/sync/field.storage.post.field_recipient_user.yml new file mode 100644 index 0000000..82c9035 --- /dev/null +++ b/drupal/config/sync/field.storage.post.field_recipient_user.yml @@ -0,0 +1,22 @@ +uuid: 0fd757d7-d458-4322-a358-ce8f828bd089 +langcode: en +status: true +dependencies: + module: + - social_post + - user +_core: + default_config_hash: 4PGg5JDZA1hH3j20SPuLfzO6U9S0f3_c62gypX_nwvI +id: post.field_recipient_user +field_name: field_recipient_user +entity_type: post +type: entity_reference +settings: + target_type: user +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.post.field_visibility.yml b/drupal/config/sync/field.storage.post.field_visibility.yml new file mode 100644 index 0000000..247999c --- /dev/null +++ b/drupal/config/sync/field.storage.post.field_visibility.yml @@ -0,0 +1,38 @@ +uuid: 8fc1d758-431a-4293-a336-c7984492cfa5 +langcode: en +status: true +dependencies: + module: + - dropdown + - social_post +_core: + default_config_hash: 9IChKT1xRW3I7-oWdWMhAXoRYjpyJzG7PIVhkHaOlzU +id: post.field_visibility +field_name: field_visibility +entity_type: post +type: dropdown +settings: + allowed_values: + - + value: '0' + label: Community + description: 'Visible only to members who are logged in' + - + value: '1' + label: Public + description: 'Visible to all visitors of the site' + - + value: '2' + label: Community + description: 'Visible only to members who are logged in' + - + value: '3' + label: 'Group members' + description: 'Visible only to group members' +module: dropdown +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_address.yml b/drupal/config/sync/field.storage.profile.field_profile_address.yml new file mode 100644 index 0000000..3a20212 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_address.yml @@ -0,0 +1,21 @@ +uuid: fe51203d-5016-49e0-9582-f88ae3049f68 +langcode: en +status: true +dependencies: + module: + - address + - profile +_core: + default_config_hash: l2okytkJohIWmU2T2NmxRzna88wCBVluBofI9VURZ4k +id: profile.field_profile_address +field_name: field_profile_address +entity_type: profile +type: address +settings: { } +module: address +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_banner_image.yml b/drupal/config/sync/field.storage.profile.field_profile_banner_image.yml new file mode 100644 index 0000000..52c599d --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_banner_image.yml @@ -0,0 +1,32 @@ +uuid: af29a1f5-a8af-4114-90e7-1fd1aebe2a3f +langcode: en +status: true +dependencies: + module: + - file + - image + - profile +_core: + default_config_hash: 0KW5AMbJi-9HVPSWZWvonnSGb9wM4107yFKKAd0Oxi0 +id: profile.field_profile_banner_image +field_name: field_profile_banner_image +entity_type: profile +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_expertise.yml b/drupal/config/sync/field.storage.profile.field_profile_expertise.yml new file mode 100644 index 0000000..c4644c6 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_expertise.yml @@ -0,0 +1,22 @@ +uuid: a6625e62-4fa0-438a-bb23-2905e65aae2e +langcode: en +status: true +dependencies: + module: + - profile + - taxonomy +_core: + default_config_hash: sWcQsnM2xvASI-H6QeowIEMTDMrz3lYcs5_eg6OCp9Q +id: profile.field_profile_expertise +field_name: field_profile_expertise +entity_type: profile +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_first_name.yml b/drupal/config/sync/field.storage.profile.field_profile_first_name.yml new file mode 100644 index 0000000..babb113 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_first_name.yml @@ -0,0 +1,23 @@ +uuid: 4df058f5-8064-4320-9093-f06c7d7ea89c +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: _gQ-Dr-WCOHq3QNzgr9gcxURxv8AInzkSwp8T97NkQk +id: profile.field_profile_first_name +field_name: field_profile_first_name +entity_type: profile +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_function.yml b/drupal/config/sync/field.storage.profile.field_profile_function.yml new file mode 100644 index 0000000..7d61736 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_function.yml @@ -0,0 +1,23 @@ +uuid: 8dd24f3c-5e7d-4b4a-8408-4207f6abe7d5 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: 95hSWaQBnRc3XkOwQi3mtBcxgKDg3KsZuZsB-Dooe8U +id: profile.field_profile_function +field_name: field_profile_function +entity_type: profile +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_image.yml b/drupal/config/sync/field.storage.profile.field_profile_image.yml new file mode 100644 index 0000000..01b448e --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_image.yml @@ -0,0 +1,32 @@ +uuid: 6d8eb9ae-811f-40fd-96b8-05dfd2719e53 +langcode: en +status: true +dependencies: + module: + - file + - image + - profile +_core: + default_config_hash: 8OO_sIuv7nQOIZRI03qMSZmDzW0zINwN6nM4j4v4XrM +id: profile.field_profile_image +field_name: field_profile_image +entity_type: profile +type: image +settings: + uri_scheme: public + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + target_type: file + display_field: false + display_default: false +module: image +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_interests.yml b/drupal/config/sync/field.storage.profile.field_profile_interests.yml new file mode 100644 index 0000000..c1002d3 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_interests.yml @@ -0,0 +1,22 @@ +uuid: 3797b2a7-d5f8-4c59-b926-e44e2b46ddf2 +langcode: en +status: true +dependencies: + module: + - profile + - taxonomy +_core: + default_config_hash: _dW0wlwL1YwfblcR4pQeVLiJzix15duG4bBA1P0IW2w +id: profile.field_profile_interests +field_name: field_profile_interests +entity_type: profile +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_last_name.yml b/drupal/config/sync/field.storage.profile.field_profile_last_name.yml new file mode 100644 index 0000000..e80f372 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_last_name.yml @@ -0,0 +1,23 @@ +uuid: 841c3513-052b-4d5e-a950-2098a5fe8e56 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: bKXsR9oEv2U_V06W-F-Hs8DrqUxH099-nGSKptXziaE +id: profile.field_profile_last_name +field_name: field_profile_last_name +entity_type: profile +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_organization.yml b/drupal/config/sync/field.storage.profile.field_profile_organization.yml new file mode 100644 index 0000000..a43b7b7 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_organization.yml @@ -0,0 +1,23 @@ +uuid: 254768c2-7a96-4f90-9266-3df5b4686988 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: D7EZM3YkqZXzO7eZ6aJNbAwQ4ETNy-yMk3N0lo49iPM +id: profile.field_profile_organization +field_name: field_profile_organization +entity_type: profile +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_phone_number.yml b/drupal/config/sync/field.storage.profile.field_profile_phone_number.yml new file mode 100644 index 0000000..20c1d87 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_phone_number.yml @@ -0,0 +1,21 @@ +uuid: e2f998d2-0b4b-4cc9-9e54-858a7049bb33 +langcode: en +status: true +dependencies: + module: + - profile + - telephone +_core: + default_config_hash: QWiaI2rMrX0hNgal4fCWX_9RIR14UD--KDQKhInEmtc +id: profile.field_profile_phone_number +field_name: field_profile_phone_number +entity_type: profile +type: telephone +settings: { } +module: telephone +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_profile_tag.yml b/drupal/config/sync/field.storage.profile.field_profile_profile_tag.yml new file mode 100644 index 0000000..405ca2f --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_profile_tag.yml @@ -0,0 +1,22 @@ +uuid: 153af21a-a40a-46de-b4d8-1809ff84b5a1 +langcode: en +status: true +dependencies: + module: + - profile + - taxonomy +_core: + default_config_hash: 0wGajjKhaMA7cSwI9XvyWSqeLIeaKB_PjWOo-TIo8lw +id: profile.field_profile_profile_tag +field_name: field_profile_profile_tag +entity_type: profile +type: entity_reference +settings: + target_type: taxonomy_term +module: core +locked: false +cardinality: -1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_self_introduction.yml b/drupal/config/sync/field.storage.profile.field_profile_self_introduction.yml new file mode 100644 index 0000000..664798d --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_self_introduction.yml @@ -0,0 +1,21 @@ +uuid: e2bc5d4c-a293-4940-8330-47e97dedd09c +langcode: en +status: true +dependencies: + module: + - profile + - text +_core: + default_config_hash: Pytz4MnaPg-k4HXKcKJqJ6b-5YcGYiEVexJflP6PQXQ +id: profile.field_profile_self_introduction +field_name: field_profile_self_introduction +entity_type: profile +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_show_email.yml b/drupal/config/sync/field.storage.profile.field_profile_show_email.yml new file mode 100644 index 0000000..0a2ded4 --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_show_email.yml @@ -0,0 +1,20 @@ +uuid: a51d953e-99f8-49d9-87ca-00150018bb71 +langcode: en +status: true +dependencies: + module: + - profile +_core: + default_config_hash: vGXUm3bNcLqNfEpuFnaYAV80fyySQCRzAYGKjyuQGYo +id: profile.field_profile_show_email +field_name: field_profile_show_email +entity_type: profile +type: boolean +settings: { } +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.profile.field_profile_summary.yml b/drupal/config/sync/field.storage.profile.field_profile_summary.yml new file mode 100644 index 0000000..ea91e0d --- /dev/null +++ b/drupal/config/sync/field.storage.profile.field_profile_summary.yml @@ -0,0 +1,26 @@ +uuid: 8fc46d0e-8bc6-47cf-9314-1d2e187b6e00 +langcode: en +status: true +dependencies: + enforced: + module: + - social_profile + module: + - profile +_core: + default_config_hash: pNkTWTv0fHJjC10bkBq43LguxRC1zafadt1R-d1eWsA +id: profile.field_profile_summary +field_name: field_profile_summary +entity_type: profile +type: string +settings: + max_length: 140 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.queue_storage_entity.field_message.yml b/drupal/config/sync/field.storage.queue_storage_entity.field_message.yml new file mode 100644 index 0000000..140db95 --- /dev/null +++ b/drupal/config/sync/field.storage.queue_storage_entity.field_message.yml @@ -0,0 +1,21 @@ +uuid: a761c7df-7e26-4d48-b761-fb26885597b4 +langcode: en +status: true +dependencies: + module: + - social_queue_storage + - text +_core: + default_config_hash: oST7MW34ZHZJx2H6qFJtxhXYjTxSf4g6w5zaYDzGbxQ +id: queue_storage_entity.field_message +field_name: field_message +entity_type: queue_storage_entity +type: text_long +settings: { } +module: text +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.queue_storage_entity.field_reply_to.yml b/drupal/config/sync/field.storage.queue_storage_entity.field_reply_to.yml new file mode 100644 index 0000000..9cd7109 --- /dev/null +++ b/drupal/config/sync/field.storage.queue_storage_entity.field_reply_to.yml @@ -0,0 +1,23 @@ +uuid: 0dcb80a6-5566-4fb4-86e0-1aa85d7e8a04 +langcode: en +status: true +dependencies: + module: + - social_queue_storage +_core: + default_config_hash: jbAW5kC1fS09QE54EhQzZdMY9XvvUYB7VqVZ2tw6PLk +id: queue_storage_entity.field_reply_to +field_name: field_reply_to +entity_type: queue_storage_entity +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.queue_storage_entity.field_subject.yml b/drupal/config/sync/field.storage.queue_storage_entity.field_subject.yml new file mode 100644 index 0000000..cda5036 --- /dev/null +++ b/drupal/config/sync/field.storage.queue_storage_entity.field_subject.yml @@ -0,0 +1,23 @@ +uuid: 883226e3-fdb6-4298-8c18-2e2fe2e41649 +langcode: en +status: true +dependencies: + module: + - social_queue_storage +_core: + default_config_hash: 1S_GQLLP41sMYXGTyWux_4XACEeNudw0G7UluPe5K8E +id: queue_storage_entity.field_subject +field_name: field_subject +entity_type: queue_storage_entity +type: string +settings: + max_length: 255 + is_ascii: false + case_sensitive: false +module: core +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.taxonomy_term.field_group_type_icon.yml b/drupal/config/sync/field.storage.taxonomy_term.field_group_type_icon.yml new file mode 100644 index 0000000..bfb4b65 --- /dev/null +++ b/drupal/config/sync/field.storage.taxonomy_term.field_group_type_icon.yml @@ -0,0 +1,23 @@ +uuid: 96770ee7-3e0b-432c-8623-7e63d95d226f +langcode: en +status: true +dependencies: + module: + - options + - taxonomy +_core: + default_config_hash: Dd2pb7Y6J3-wvGvJxhYEfWk_J1k-RPV1nhsxbAlY6XA +id: taxonomy_term.field_group_type_icon +field_name: field_group_type_icon +entity_type: taxonomy_term +type: list_string +settings: + allowed_values: { } + allowed_values_function: social_group_flexible_group_type_allowed_values_function +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/sync/field.storage.taxonomy_term.field_topic_type_icon.yml b/drupal/config/sync/field.storage.taxonomy_term.field_topic_type_icon.yml new file mode 100644 index 0000000..ae14404 --- /dev/null +++ b/drupal/config/sync/field.storage.taxonomy_term.field_topic_type_icon.yml @@ -0,0 +1,23 @@ +uuid: 21d4d73e-4bca-448f-a3f5-703e7ea44381 +langcode: en +status: true +dependencies: + module: + - options + - taxonomy +_core: + default_config_hash: CSEmweyU4vzATCTCoLQP-noqz-z8aQU7D1vPBpWm3jE +id: taxonomy_term.field_topic_type_icon +field_name: field_topic_type_icon +entity_type: taxonomy_term +type: list_string +settings: + allowed_values: { } + allowed_values_function: social_topic_allowed_values_function +module: options +locked: false +cardinality: 1 +translatable: true +indexes: { } +persist_with_no_fields: false +custom_storage: false diff --git a/drupal/config/file.settings.yml b/drupal/config/sync/file.settings.yml similarity index 100% rename from drupal/config/file.settings.yml rename to drupal/config/sync/file.settings.yml index 1ca5bd9..3315165 100644 --- a/drupal/config/file.settings.yml +++ b/drupal/config/sync/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/drupal/config/sync/file_mdm.file_metadata_plugin.getimagesize.yml b/drupal/config/sync/file_mdm.file_metadata_plugin.getimagesize.yml new file mode 100644 index 0000000..bc92769 --- /dev/null +++ b/drupal/config/sync/file_mdm.file_metadata_plugin.getimagesize.yml @@ -0,0 +1,9 @@ +configuration: + cache: + override: false + settings: + enabled: true + expiration: 172800 + disallowed_paths: { } +_core: + default_config_hash: o53U_2I-21Es-9iqxeUMDRcRxN0spL1OiHuAVQhh2oI diff --git a/drupal/config/sync/file_mdm.settings.yml b/drupal/config/sync/file_mdm.settings.yml new file mode 100644 index 0000000..10a8b74 --- /dev/null +++ b/drupal/config/sync/file_mdm.settings.yml @@ -0,0 +1,6 @@ +metadata_cache: + enabled: true + expiration: 172800 + disallowed_paths: { } +_core: + default_config_hash: Q8ZrmO8RU36KGMcNEaWFQOqYYO3z5Q4IZoS-xYy8MlA diff --git a/drupal/config/sync/file_mdm_exif.file_metadata_plugin.exif.yml b/drupal/config/sync/file_mdm_exif.file_metadata_plugin.exif.yml new file mode 100644 index 0000000..b22d765 --- /dev/null +++ b/drupal/config/sync/file_mdm_exif.file_metadata_plugin.exif.yml @@ -0,0 +1,35 @@ +ifd_map: + 0: + type: 0 + aliases: + - '0' + - IFD0 + - Main + 1: + type: 1 + aliases: + - '1' + - IFD1 + - Thumbnail + Exif: + type: 2 + aliases: + - Exif + GPS: + type: 3 + aliases: + - GPS + Interoperability: + type: 4 + aliases: + - Interoperability + - Interop +configuration: + cache: + override: false + settings: + enabled: true + expiration: 172800 + disallowed_paths: { } +_core: + default_config_hash: u0ZqkNrnyVSnHXGBP0zlKY9dP1ZARzJZ9VSovzU_eDg diff --git a/drupal/config/sync/file_mdm_font.file_metadata_plugin.font.yml b/drupal/config/sync/file_mdm_font.file_metadata_plugin.font.yml new file mode 100644 index 0000000..bc92769 --- /dev/null +++ b/drupal/config/sync/file_mdm_font.file_metadata_plugin.font.yml @@ -0,0 +1,9 @@ +configuration: + cache: + override: false + settings: + enabled: true + expiration: 172800 + disallowed_paths: { } +_core: + default_config_hash: o53U_2I-21Es-9iqxeUMDRcRxN0spL1OiHuAVQhh2oI diff --git a/drupal/config/sync/filter.format.basic_html.yml b/drupal/config/sync/filter.format.basic_html.yml new file mode 100644 index 0000000..da2d478 --- /dev/null +++ b/drupal/config/sync/filter.format.basic_html.yml @@ -0,0 +1,58 @@ +uuid: f956cea4-9296-451d-9aa3-c3d1fe2b51ec +langcode: en +status: true +dependencies: + module: + - editor +_core: + default_config_hash: ImGQaNNN5kK8Z7hCUTmkAtPrg9emjhU75SOrahNtiZ0 +name: 'Basic HTML' +format: basic_html +weight: 0 +filters: + filter_html: + id: filter_html + provider: filter + status: true + weight: -10 + settings: + allowed_html: '