diff --git a/.ahoy.yml b/.ahoy.yml index 16a8dc19f8..edcbb97644 100644 --- a/.ahoy.yml +++ b/.ahoy.yml @@ -128,6 +128,14 @@ commands: usage: Provision a site from the database dump or profile. cmd: ahoy cli ./scripts/drevops/provision.sh + provision-cms: + usage: Provision a site with Drupal CMS profile. + cmd: ahoy cli "DRUPAL_VERSION=CMS DRUPAL_PROFILE=/app/recipes/drupal_cms_starter ./scripts/drevops/provision.sh" + + provision-11: + usage: Provision a site with CivicTheme starter for Drupal 11. + cmd: ahoy cli "DRUPAL_PROFILE=/app/recipes/civictheme_starter DRUPAL_VERSION=11 ./scripts/drevops/provision.sh" + export-db: usage: Export database dump or database image (if DREVOPS_DB_DOCKER_IMAGE variable is set). cmd: ./scripts/drevops/export-db.sh "$@" diff --git a/.circleci/config.yml b/.circleci/config.yml index ac27e2dbf9..d6a8dc735e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -384,6 +384,13 @@ jobs: DREVOPS_CI_DRUPAL_THEME_CONFIG_LINT_IGNORE_FAILURE: 1 DREVOPS_EXPORT_CODE_DIR: '/tmp/workspace/code_unused' <<: *job-build + # Drupal CMS profile. + build-drupal-cms: + <<: *runner_config + environment: + DRUPAL_VERSION: CMS + DRUPAL_PROFILE: ../recipes/drupal_cms_starter + <<: *job-build # GovCMS profile, sub-theme. Longest test run. build-govcms-subtheme: @@ -625,6 +632,19 @@ workflows: ignore: /^content\/.*/ tags: only: /.*/ + - build-drupal-cms: + requires: + - build-isolated-php-82 + - build-isolated-php-83 + - build-isolated-php-83-legacy + - build-isolated-php-83-next + # - build-isolated-php-84 + # - build-isolated-php-84-next + filters: + branches: + ignore: /^content\/.*/ + tags: + only: /.*/ - build-govcms-subtheme: requires: - build-isolated-php-82 diff --git a/.docker/cli.dockerfile b/.docker/cli.dockerfile index 51c0579404..4cb99213e9 100644 --- a/.docker/cli.dockerfile +++ b/.docker/cli.dockerfile @@ -56,7 +56,8 @@ RUN curl -L -o shipshape "https://github.com/salsadigitalauorg/shipshape/release # Install updated version of NPM. RUN npm install -g npm@^8.6 && fix-permissions /home/.npm -# Adding patches and scripts. +# Adding recipes, patches and scripts. +COPY recipes /app/recipes COPY patches /app/patches COPY scripts /app/scripts diff --git a/.docker/cli.onlytheme.dockerfile b/.docker/cli.onlytheme.dockerfile index b4d12e119b..d1ccd2c6ee 100644 --- a/.docker/cli.onlytheme.dockerfile +++ b/.docker/cli.onlytheme.dockerfile @@ -55,7 +55,8 @@ RUN curl -L -o shipshape "https://github.com/salsadigitalauorg/shipshape/release # Install updated version of NPM. RUN npm install -g npm@^8.6 && fix-permissions /home/.npm -# Adding patches and scripts. +# Adding recipes, patches and scripts. +COPY recipes /app/recipes COPY patches /app/patches COPY scripts /app/scripts diff --git a/.docker/cli.sibling.dockerfile b/.docker/cli.sibling.dockerfile index dc4b36ca23..2bf9b2ac75 100644 --- a/.docker/cli.sibling.dockerfile +++ b/.docker/cli.sibling.dockerfile @@ -56,7 +56,8 @@ RUN curl -L -o shipshape "https://github.com/salsadigitalauorg/shipshape/release # Install updated version of NPM. RUN npm install -g npm@^8.6 && fix-permissions /home/.npm -# Adding patches and scripts. +# Adding recipes, patches and scripts. +COPY recipes /app/recipes COPY patches /app/patches COPY scripts /app/scripts diff --git a/.docker/entrypoints/cli/03-provision-site.sh b/.docker/entrypoints/cli/03-provision-site.sh index b9cf8b32f0..52d0aa1cf7 100755 --- a/.docker/entrypoints/cli/03-provision-site.sh +++ b/.docker/entrypoints/cli/03-provision-site.sh @@ -33,6 +33,7 @@ set -e # DrevOps provision script is not compatible with Quant Cloud because it relies # on Lagoon-specific tooling (e.g., rsync to Lagoon SSH). if [ -x "./scripts/quant/provision-quant.sh" ]; then + echo "Using Quant Provisioning script" ./scripts/quant/provision-quant.sh else echo "Quant provisioning script missing or not executable." >&2 diff --git a/.dockerignore b/.dockerignore index 2cf5b5166f..d918298199 100644 --- a/.dockerignore +++ b/.dockerignore @@ -42,4 +42,5 @@ node_modules !package-lock.json !patches !scripts +!recipes !.lagoon.env.* diff --git a/.env b/.env index afa1e94321..03c6227507 100644 --- a/.env +++ b/.env @@ -39,8 +39,18 @@ DREVOPS_TZ="Australia/Melbourne" # DRUPAL # ################################################################################ +# Drupal Version can be either: +# DRUPAL_VERSION=CMS +# DRUPAL_VERSION=11 +DRUPAL_VERSION=11 + # Drupal profile name (used only when installing from profile). -DRUPAL_PROFILE=minimal +# Supports two profiles: +# D11 +# DRUPAL_PROFILE=/app/recipes/civictheme_starter +# Drupal CMS +# DRUPAL_PROFILE=/app/recipes/drupal_cms_starter +DRUPAL_PROFILE=/app/recipes/civictheme_starter # Drupal theme name. DRUPAL_THEME=civictheme diff --git a/.env.local.default b/.env.local.default index 81de8bb4d5..badad9f4ae 100644 --- a/.env.local.default +++ b/.env.local.default @@ -16,6 +16,21 @@ # Set this variable to "1" to skip the wait. # AHOY_CONFIRM_WAIT_SKIP=1 +# CivicTheme Important Installation settings + +# Drupal Version can be either: +# DRUPAL_VERSION=CMS +# DRUPAL_VERSION=11 +DRUPAL_VERSION=11 + +# Drupal profile name (used only when installing from profile). +# Supports two profiles: +# D11 +# DRUPAL_PROFILE=/app/recipes/civictheme_starter +# If the version is Drupal CMS then Drupal profie should be: +# DRUPAL_PROFILE=/app/recipes/recipes/drupal_cms_starter +DRUPAL_PROFILE=/app/recipes/civictheme_starter + # Always override DB. DREVOPS_PROVISION_OVERRIDE_DB=1 diff --git a/.gitignore b/.gitignore index 8e171fe888..b0f5c9965b 100644 --- a/.gitignore +++ b/.gitignore @@ -62,3 +62,10 @@ docker-compose.override.yml # Build artifacts for twig linter. .twig-cs-fixer.cache + +# Ignore recipes directory except specific subdirectories +/recipes/* +!/recipes/civictheme_content_generated_static/ +!/recipes/civictheme_drupal_cms_preinstall/ +!/recipes/civictheme_drupal_cms_starter/ +!/recipes/civictheme_starter/ diff --git a/composer.json b/composer.json index 950c7fccc1..ac4e4d328c 100644 --- a/composer.json +++ b/composer.json @@ -7,6 +7,7 @@ "composer/installers": "^2.1", "cweagans/composer-patches": "^1.7", "drupal/admin_toolbar": "^3.6", + "drupal/cms": "^1.2.5", "drupal/components": "^3.1", "drupal/core-composer-scaffold": "^11", "drupal/core-project-message": "^11", @@ -97,7 +98,9 @@ "phpstan/extension-installer": true, "pyrech/composer-changelogs": true, "tbachert/spi": true, - "wikimedia/composer-merge-plugin": true + "wikimedia/composer-merge-plugin": true, + "drupal/core-vendor-hardening": true, + "drupal/core-recipe-unpack": true }, "platform": { "php": "8.3.8" diff --git a/composer.lock b/composer.lock index bc8f70de3b..4bb0c8b6ac 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "ef3ae12a7198da6816ba804f546c0e7c", + "content-hash": "05685337509666699ed372e6ae28e072", "packages": [ { "name": "asm89/stack-cors", - "version": "v2.2.0", + "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea" + "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea", - "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70", + "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70", "shasum": "" }, "require": { @@ -58,22 +58,22 @@ ], "support": { "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.2.0" + "source": "https://github.com/asm89/stack-cors/tree/v2.3.0" }, - "time": "2023-11-14T13:51:46+00:00" + "time": "2025-03-13T08:50:04+00:00" }, { "name": "chi-teck/drupal-code-generator", - "version": "4.1.0", + "version": "4.2.0", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "9a5501beb1a7aa2400afa5e5679bf21c526c497c" + "reference": "984dd69522b5839976df51470a00a51616a21f42" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/9a5501beb1a7aa2400afa5e5679bf21c526c497c", - "reference": "9a5501beb1a7aa2400afa5e5679bf21c526c497c", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/984dd69522b5839976df51470a00a51616a21f42", + "reference": "984dd69522b5839976df51470a00a51616a21f42", "shasum": "" }, "require": { @@ -92,7 +92,7 @@ "squizlabs/php_codesniffer": "<3.6" }, "require-dev": { - "chi-teck/drupal-coder-extension": "^2.0.0-beta3", + "chi-teck/drupal-coder-extension": "^2.0.0-rc2", "drupal/coder": "8.3.24", "drupal/core": "11.x-dev", "ext-simplexml": "*", @@ -119,47 +119,37 @@ "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/4.1.0" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/4.2.0" }, - "time": "2024-10-30T18:25:43+00:00" + "time": "2025-06-01T13:48:30+00:00" }, { - "name": "composer/installers", - "version": "v2.3.0", + "name": "clue/stream-filter", + "version": "v1.7.0", "source": { "type": "git", - "url": "https://github.com/composer/installers.git", - "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e" + "url": "https://github.com/clue/stream-filter.git", + "reference": "049509fef80032cb3f051595029ab75b49a3c2f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e", - "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e", + "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7", + "reference": "049509fef80032cb3f051595029ab75b49a3c2f7", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": "^7.2 || ^8.0" + "php": ">=5.3" }, "require-dev": { - "composer/composer": "^1.10.27 || ^2.7", - "composer/semver": "^1.7.2 || ^3.4.0", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-phpunit": "^1", - "symfony/phpunit-bridge": "^7.1.1", - "symfony/process": "^5 || ^6 || ^7" - }, - "type": "composer-plugin", - "extra": { - "class": "Composer\\Installers\\Plugin", - "branch-alias": { - "dev-main": "2.x-dev" - }, - "plugin-modifies-install-path": true + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36" }, + "type": "library", "autoload": { + "files": [ + "src/functions_include.php" + ], "psr-4": { - "Composer\\Installers\\": "src/Composer/Installers" + "Clue\\StreamFilter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -168,137 +158,74 @@ ], "authors": [ { - "name": "Kyle Robinson Young", - "email": "kyle@dontkry.com", - "homepage": "https://github.com/shama" + "name": "Christian Lück", + "email": "christian@clue.engineering" } ], - "description": "A multi-framework Composer library installer", - "homepage": "https://composer.github.io/installers/", + "description": "A simple and modern approach to stream filtering in PHP", + "homepage": "https://github.com/clue/stream-filter", "keywords": [ - "Dolibarr", - "Eliasis", - "Hurad", - "ImageCMS", - "Kanboard", - "Lan Management System", - "MODX Evo", - "MantisBT", - "Mautic", - "Maya", - "OXID", - "Plentymarkets", - "Porto", - "RadPHP", - "SMF", - "Starbug", - "Thelia", - "Whmcs", - "WolfCMS", - "agl", - "annotatecms", - "attogram", - "bitrix", - "cakephp", - "chef", - "cockpit", - "codeigniter", - "concrete5", - "concreteCMS", - "croogo", - "dokuwiki", - "drupal", - "eZ Platform", - "elgg", - "expressionengine", - "fuelphp", - "grav", - "installer", - "itop", - "known", - "kohana", - "laravel", - "lavalite", - "lithium", - "magento", - "majima", - "mako", - "matomo", - "mediawiki", - "miaoxing", - "modulework", - "modx", - "moodle", - "osclass", - "pantheon", - "phpbb", - "piwik", - "ppi", - "processwire", - "puppet", - "pxcms", - "reindex", - "roundcube", - "shopware", - "silverstripe", - "sydes", - "sylius", - "tastyigniter", - "wordpress", - "yawik", - "zend", - "zikula" + "bucket brigade", + "callback", + "filter", + "php_user_filter", + "stream", + "stream_filter_append", + "stream_filter_register" ], "support": { - "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v2.3.0" + "issues": "https://github.com/clue/stream-filter/issues", + "source": "https://github.com/clue/stream-filter/tree/v1.7.0" }, "funding": [ { - "url": "https://packagist.com", + "url": "https://clue.engineering/support", "type": "custom" }, { - "url": "https://github.com/composer", + "url": "https://github.com/clue", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" } ], - "time": "2024-06-24T20:46:46+00:00" + "time": "2023-12-20T15:40:13+00:00" }, { - "name": "composer/semver", - "version": "3.4.3", + "name": "commerceguys/addressing", + "version": "v2.2.4", "source": { "type": "git", - "url": "https://github.com/composer/semver.git", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + "url": "https://github.com/commerceguys/addressing.git", + "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda", + "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "doctrine/collections": "^1.6 || ^2.0", + "php": ">=8.0" }, "require-dev": { - "phpstan/phpstan": "^1.11", - "symfony/phpunit-bridge": "^3 || ^7" + "ext-json": "*", + "mikey179/vfsstream": "^1.6.11", + "phpunit/phpunit": "^9.6", + "squizlabs/php_codesniffer": "^3.7", + "symfony/validator": "^5.4 || ^6.3 || ^7.0" + }, + "suggest": { + "symfony/validator": "to validate addresses" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "Composer\\Semver\\": "src" + "CommerceGuys\\Addressing\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -307,86 +234,59 @@ ], "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": "Bojan Zivanovic" }, { - "name": "Rob Bast", - "email": "rob.bast@gmail.com", - "homepage": "http://robbast.nl" + "name": "Damien Tournoud" } ], - "description": "Semver library that offers utilities, version constraint parsing and validation.", + "description": "Addressing library powered by CLDR and Google's address data.", "keywords": [ - "semantic", - "semver", - "validation", - "versioning" + "address", + "internationalization", + "localization", + "postal" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.3" + "issues": "https://github.com/commerceguys/addressing/issues", + "source": "https://github.com/commerceguys/addressing/tree/v2.2.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": "2024-09-19T14:15:21+00:00" + "time": "2025-01-13T16:03:24+00:00" }, { - "name": "consolidation/annotated-command", - "version": "4.10.1", + "name": "composer/ca-bundle", + "version": "1.5.8", "source": { "type": "git", - "url": "https://github.com/consolidation/annotated-command.git", - "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b" + "url": "https://github.com/composer/ca-bundle.git", + "reference": "719026bb30813accb68271fee7e39552a58e9f65" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/362310b13ececa9f6f0a4a880811fa08fecc348b", - "reference": "362310b13ececa9f6f0a4a880811fa08fecc348b", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/719026bb30813accb68271fee7e39552a58e9f65", + "reference": "719026bb30813accb68271fee7e39552a58e9f65", "shasum": "" }, "require": { - "consolidation/output-formatters": "^4.3.1", - "php": ">=7.1.3", - "psr/log": "^1 || ^2 || ^3", - "symfony/console": "^4.4.8 || ^5 || ^6 || ^7", - "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7", - "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7" + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^7.2 || ^8.0" }, "require-dev": { - "composer-runtime-api": "^2.0", - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8 || ^9", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.x-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "Consolidation\\AnnotatedCommand\\": "src" + "Composer\\CaBundle\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -395,58 +295,72 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Initialize Symfony Console commands from annotated command class methods.", + "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": { - "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.10.1" + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.5.8" }, - "time": "2024-12-13T19:55:40+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + } + ], + "time": "2025-08-20T18:49:47+00:00" }, { - "name": "consolidation/config", - "version": "3.1.0", + "name": "composer/class-map-generator", + "version": "1.6.2", "source": { "type": "git", - "url": "https://github.com/consolidation/config.git", - "reference": "0615499781449ab773ffc609b97b934b3357b3f9" + "url": "https://github.com/composer/class-map-generator.git", + "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/0615499781449ab773ffc609b97b934b3357b3f9", - "reference": "0615499781449ab773ffc609b97b934b3357b3f9", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ba9f089655d4cdd64e762a6044f411ccdaec0076", + "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^3", - "grasmash/expander": "^3", - "php": ">=8.2.0", - "symfony/event-dispatcher": "^7" + "composer/pcre": "^2.1 || ^3.1", + "php": "^7.2 || ^8.0", + "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" }, "require-dev": { - "ext-json": "*", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3", - "symfony/console": "^7", - "symfony/yaml": "^7", - "yoast/phpunit-polyfills": "^1" - }, - "suggest": { - "symfony/event-dispatcher": "Required to inject configuration into Command options", - "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-deprecation-rules": "^1 || ^2", + "phpstan/phpstan-phpunit": "^1 || ^2", + "phpstan/phpstan-strict-rules": "^1.1 || ^2", + "phpunit/phpunit": "^8", + "symfony/filesystem": "^5.4 || ^6" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "Consolidation\\Config\\": "src" + "Composer\\ClassMapGenerator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -455,49 +369,98 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } ], - "description": "Provide configuration services for a commandline tool.", + "description": "Utilities to scan PHP code and generate class maps.", + "keywords": [ + "classmap" + ], "support": { - "issues": "https://github.com/consolidation/config/issues", - "source": "https://github.com/consolidation/config/tree/3.1.0" + "issues": "https://github.com/composer/class-map-generator/issues", + "source": "https://github.com/composer/class-map-generator/tree/1.6.2" }, - "time": "2024-11-28T14:37:27+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + } + ], + "time": "2025-08-20T18:52:43+00:00" }, { - "name": "consolidation/filter-via-dot-access-data", - "version": "2.0.2", + "name": "composer/composer", + "version": "2.8.6", "source": { "type": "git", - "url": "https://github.com/consolidation/filter-via-dot-access-data.git", - "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" + "url": "https://github.com/composer/composer.git", + "reference": "937c775a644bd7d2c3dfbb352747488463a6e673" }, "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/composer/composer/zipball/937c775a644bd7d2c3dfbb352747488463a6e673", + "reference": "937c775a644bd7d2c3dfbb352747488463a6e673", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", - "php": ">=7.1.3" + "composer/ca-bundle": "^1.5", + "composer/class-map-generator": "^1.4.0", + "composer/metadata-minifier": "^1.0", + "composer/pcre": "^2.2 || ^3.2", + "composer/semver": "^3.3", + "composer/spdx-licenses": "^1.5.7", + "composer/xdebug-handler": "^2.0.2 || ^3.0.3", + "justinrainbow/json-schema": "^5.3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "react/promise": "^2.11 || ^3.2", + "seld/jsonlint": "^1.4", + "seld/phar-utils": "^1.2", + "seld/signal-handler": "^2.0", + "symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/polyfill-php73": "^1.24", + "symfony/polyfill-php80": "^1.24", + "symfony/polyfill-php81": "^1.24", + "symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "phpstan/phpstan": "^1.11.8", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpstan/phpstan-symfony": "^1.4.0", + "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1" + }, + "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" }, + "bin": [ + "bin/composer" + ], "type": "library", "extra": { + "phpstan": { + "includes": [ + "phpstan/rules.neon" + ] + }, "branch-alias": { - "dev-main": "2.x-dev" + "dev-main": "2.8-dev" } }, "autoload": { "psr-4": { - "Consolidation\\Filter\\": "src" + "Composer\\": "src/Composer/" } }, "notification-url": "https://packagist.org/downloads/", @@ -506,49 +469,82 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "https://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } ], - "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.", + "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" + ], "support": { - "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2" + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/composer/issues", + "security": "https://github.com/composer/composer/security/policy", + "source": "https://github.com/composer/composer/tree/2.8.6" }, - "time": "2021-12-30T03:56:08+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": "2025-02-25T12:03:50+00:00" }, { - "name": "consolidation/log", - "version": "3.1.0", + "name": "composer/installers", + "version": "v2.3.0", "source": { "type": "git", - "url": "https://github.com/consolidation/log.git", - "reference": "c27a3beb36137c141ccbce0d89f64befb243c015" + "url": "https://github.com/composer/installers.git", + "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015", - "reference": "c27a3beb36137c141ccbce0d89f64befb243c015", + "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e", + "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e", "shasum": "" }, "require": { - "php": ">=8.0.0", - "psr/log": "^3", - "symfony/console": "^5 || ^6 || ^7" + "composer-plugin-api": "^1.0 || ^2.0", + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "composer/composer": "^1.10.27 || ^2.7", + "composer/semver": "^1.7.2 || ^3.4.0", + "phpstan/phpstan": "^1.11", + "phpstan/phpstan-phpunit": "^1", + "symfony/phpunit-bridge": "^7.1.1", + "symfony/process": "^5 || ^6 || ^7" }, - "type": "library", + "type": "composer-plugin", "extra": { - "platform": { - "php": "8.2.17" - } + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-main": "2.x-dev" + }, + "plugin-modifies-install-path": true }, "autoload": { "psr-4": { - "Consolidation\\Log\\": "src" + "Composer\\Installers\\": "src/Composer/Installers" } }, "notification-url": "https://packagist.org/downloads/", @@ -557,52 +553,138 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" } ], - "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", + "description": "A multi-framework Composer library installer", + "homepage": "https://composer.github.io/installers/", + "keywords": [ + "Dolibarr", + "Eliasis", + "Hurad", + "ImageCMS", + "Kanboard", + "Lan Management System", + "MODX Evo", + "MantisBT", + "Mautic", + "Maya", + "OXID", + "Plentymarkets", + "Porto", + "RadPHP", + "SMF", + "Starbug", + "Thelia", + "Whmcs", + "WolfCMS", + "agl", + "annotatecms", + "attogram", + "bitrix", + "cakephp", + "chef", + "cockpit", + "codeigniter", + "concrete5", + "concreteCMS", + "croogo", + "dokuwiki", + "drupal", + "eZ Platform", + "elgg", + "expressionengine", + "fuelphp", + "grav", + "installer", + "itop", + "known", + "kohana", + "laravel", + "lavalite", + "lithium", + "magento", + "majima", + "mako", + "matomo", + "mediawiki", + "miaoxing", + "modulework", + "modx", + "moodle", + "osclass", + "pantheon", + "phpbb", + "piwik", + "ppi", + "processwire", + "puppet", + "pxcms", + "reindex", + "roundcube", + "shopware", + "silverstripe", + "sydes", + "sylius", + "tastyigniter", + "wordpress", + "yawik", + "zend", + "zikula" + ], "support": { - "issues": "https://github.com/consolidation/log/issues", - "source": "https://github.com/consolidation/log/tree/3.1.0" + "issues": "https://github.com/composer/installers/issues", + "source": "https://github.com/composer/installers/tree/v2.3.0" }, - "time": "2024-04-04T23:50:25+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": "2024-06-24T20:46:46+00:00" }, { - "name": "consolidation/output-formatters", - "version": "4.6.0", + "name": "composer/metadata-minifier", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/consolidation/output-formatters.git", - "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe" + "url": "https://github.com/composer/metadata-minifier.git", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5fd5656718d7068a02d046f418a7ba873d5abbfe", - "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe", + "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", - "php": ">=7.1.3", - "symfony/console": "^4 || ^5 || ^6 || ^7", - "symfony/finder": "^4 || ^5 || ^6 || ^7" + "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.4.2", - "phpunit/phpunit": "^7 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4 || ^5 || ^6 || ^7", - "symfony/yaml": "^4 || ^5 || ^6 || ^7", - "yoast/phpunit-polyfills": "^1" - }, - "suggest": { - "symfony/var-dumper": "For using the var_dump formatter" + "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": { - "Consolidation\\OutputFormatters\\": "src" + "Composer\\MetadataMinifier\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -611,71 +693,75 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Format text by applying transformations provided by plug-in formatters.", + "description": "Small utility library that handles metadata minification and expansion.", + "keywords": [ + "composer", + "compression" + ], "support": { - "issues": "https://github.com/consolidation/output-formatters/issues", - "source": "https://github.com/consolidation/output-formatters/tree/4.6.0" + "issues": "https://github.com/composer/metadata-minifier/issues", + "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" }, - "time": "2024-10-18T14:02:48+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-04-07T13:37:33+00:00" }, { - "name": "consolidation/robo", - "version": "5.1.0", + "name": "composer/pcre", + "version": "3.3.2", "source": { "type": "git", - "url": "https://github.com/consolidation/robo.git", - "reference": "dde6bd88de5e1e8a7f6ed8906f80353817647ad9" + "url": "https://github.com/composer/pcre.git", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/robo/zipball/dde6bd88de5e1e8a7f6ed8906f80353817647ad9", - "reference": "dde6bd88de5e1e8a7f6ed8906f80353817647ad9", + "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.8.1", - "consolidation/config": "^3", - "consolidation/log": "^3", - "consolidation/output-formatters": "^4.1.2", - "league/container": "^3.3.1 || ^4.0", - "php": ">=8.2", - "phpowermove/docblock": "^4.0", - "symfony/console": "^6 || ^7", - "symfony/event-dispatcher": "^6 || ^7", - "symfony/filesystem": "^6 || ^7", - "symfony/finder": "^6 || ^7", - "symfony/process": "^6 || ^7", - "symfony/yaml": "^6 || ^7" + "php": "^7.4 || ^8.0" }, "conflict": { - "codegyre/robo": "*" + "phpstan/phpstan": "<1.11.10" }, "require-dev": { - "natxet/cssmin": "3.0.4", - "patchwork/jsqueeze": "^2", - "pear/archive_tar": "^1.4.4", - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3.6", - "yoast/phpunit-polyfills": "^0.2.0" - }, - "suggest": { - "consolidation/self-update": "For self-updating a phar-based app built with Robo", - "natxet/cssmin": "For minifying CSS files in taskMinify", - "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", - "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" + "phpstan/phpstan": "^1.12 || ^2", + "phpstan/phpstan-strict-rules": "^1 || ^2", + "phpunit/phpunit": "^8 || ^9" }, - "bin": [ - "robo" - ], "type": "library", + "extra": { + "phpstan": { + "includes": [ + "extension.neon" + ] + }, + "branch-alias": { + "dev-main": "3.x-dev" + } + }, "autoload": { "psr-4": { - "Robo\\": "src" + "Composer\\Pcre\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -684,53 +770,68 @@ ], "authors": [ { - "name": "Davert", - "email": "davert.php@resend.cc" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "Modern task runner", + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], "support": { - "issues": "https://github.com/consolidation/robo/issues", - "source": "https://github.com/consolidation/robo/tree/5.1.0" + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.2" }, - "time": "2024-10-22T13:18:54+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": "2024-11-12T16:29:46+00:00" }, { - "name": "consolidation/site-alias", - "version": "4.1.1", + "name": "composer/semver", + "version": "3.4.4", "source": { "type": "git", - "url": "https://github.com/consolidation/site-alias.git", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40" + "url": "https://github.com/composer/semver.git", + "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40", + "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95", + "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2 || ^3", - "php": ">=7.4", - "symfony/filesystem": "^5.4 || ^6 || ^7", - "symfony/finder": "^5 || ^6 || ^7" + "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.4.2", - "phpunit/phpunit": ">=7", - "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4", - "yoast/phpunit-polyfills": "^0.2.0" + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "4.x-dev" + "dev-main": "3.x-dev" } }, "autoload": { "psr-4": { - "Consolidation\\SiteAlias\\": "src" + "Composer\\Semver\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -739,55 +840,75 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" }, { - "name": "Moshe Weitzman", - "email": "weitzman@tejasa.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" } ], - "description": "Manage alias records for local and remote sites.", + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], "support": { - "issues": "https://github.com/consolidation/site-alias/issues", - "source": "https://github.com/consolidation/site-alias/tree/4.1.1" + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.4.4" }, - "time": "2024-12-13T19:05:11+00:00" + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + } + ], + "time": "2025-08-20T19:15:30+00:00" }, { - "name": "consolidation/site-process", - "version": "5.4.2", + "name": "composer/spdx-licenses", + "version": "1.5.9", "source": { "type": "git", - "url": "https://github.com/consolidation/site-process.git", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da" + "url": "https://github.com/composer/spdx-licenses.git", + "reference": "edf364cefe8c43501e21e88110aac10b284c3c9f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/edf364cefe8c43501e21e88110aac10b284c3c9f", + "reference": "edf364cefe8c43501e21e88110aac10b284c3c9f", "shasum": "" }, "require": { - "consolidation/config": "^2 || ^3", - "consolidation/site-alias": "^3 || ^4", - "php": ">=8.0.14", - "symfony/console": "^5.4 || ^6 || ^7", - "symfony/process": "^6 || ^7" + "php": "^5.3.2 || ^7.0 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3" + "phpstan/phpstan": "^1.11", + "symfony/phpunit-bridge": "^3 || ^7" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "5.x-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "Consolidation\\SiteProcess\\": "src" + "Composer\\Spdx\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -796,102 +917,151 @@ ], "authors": [ { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" }, { - "name": "Moshe Weitzman", - "email": "weitzman@tejasa.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" } ], - "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", + "description": "SPDX licenses list and validation library.", + "keywords": [ + "license", + "spdx", + "validator" + ], "support": { - "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/5.4.2" + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/spdx-licenses/issues", + "source": "https://github.com/composer/spdx-licenses/tree/1.5.9" }, - "time": "2024-12-13T19:25:56+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": "2025-05-12T21:07:07+00:00" }, { - "name": "cweagans/composer-patches", - "version": "1.7.3", + "name": "composer/xdebug-handler", + "version": "3.0.5", "source": { "type": "git", - "url": "https://github.com/cweagans/composer-patches.git", - "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", - "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3.0" + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" }, "require-dev": { - "composer/composer": "~1.0 || ~2.0", - "phpunit/phpunit": "~4.6" - }, - "type": "composer-plugin", - "extra": { - "class": "cweagans\\Composer\\Patches" + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" }, + "type": "library", "autoload": { "psr-4": { - "cweagans\\Composer\\": "src" + "Composer\\XdebugHandler\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Cameron Eagans", - "email": "me@cweagans.net" + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" } ], - "description": "Provides a way to patch Composer packages.", + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], "support": { - "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" }, - "time": "2022-12-20T22:53:13+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": "2024-05-06T16:37:16+00:00" }, { - "name": "dflydev/dot-access-data", - "version": "v3.0.3", + "name": "consolidation/annotated-command", + "version": "4.10.2", "source": { "type": "git", - "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + "url": "https://github.com/consolidation/annotated-command.git", + "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", - "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e550ea4f177f199e0e9451168342bf3f321d92b0", + "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "consolidation/output-formatters": "^4.3.1", + "php": ">=7.1.3", + "psr/log": "^1 || ^2 || ^3", + "symfony/console": "^4.4.8 || ^5 || ^6 || ^7", + "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7", + "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7" }, "require-dev": { - "phpstan/phpstan": "^0.12.42", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", - "scrutinizer/ocular": "1.6.0", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.0.0" + "composer-runtime-api": "^2.0", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-main": "4.x-dev" } }, "autoload": { "psr-4": { - "Dflydev\\DotAccessData\\": "src/" + "Consolidation\\AnnotatedCommand\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -900,75 +1070,58 @@ ], "authors": [ { - "name": "Dragonfly Development Inc.", - "email": "info@dflydev.com", - "homepage": "http://dflydev.com" - }, - { - "name": "Beau Simensen", - "email": "beau@dflydev.com", - "homepage": "http://beausimensen.com" - }, - { - "name": "Carlos Frutos", - "email": "carlos@kiwing.it", - "homepage": "https://github.com/cfrutos" - }, - { - "name": "Colin O'Dell", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" } ], - "description": "Given a deep data structure, access data by dot notation.", - "homepage": "https://github.com/dflydev/dflydev-dot-access-data", - "keywords": [ - "access", - "data", - "dot", - "notation" - ], + "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { - "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + "issues": "https://github.com/consolidation/annotated-command/issues", + "source": "https://github.com/consolidation/annotated-command/tree/4.10.2" }, - "time": "2024-07-08T12:26:09+00:00" + "time": "2025-07-16T20:54:09+00:00" }, { - "name": "doctrine/annotations", - "version": "2.0.2", + "name": "consolidation/config", + "version": "3.1.1", "source": { "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7" + "url": "https://github.com/consolidation/config.git", + "reference": "54bb59d156e01698cd52d4dbbf6df98924f9ff7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7", - "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7", + "url": "https://api.github.com/repos/consolidation/config/zipball/54bb59d156e01698cd52d4dbbf6df98924f9ff7e", + "reference": "54bb59d156e01698cd52d4dbbf6df98924f9ff7e", "shasum": "" }, "require": { - "doctrine/lexer": "^2 || ^3", - "ext-tokenizer": "*", - "php": "^7.2 || ^8.0", - "psr/cache": "^1 || ^2 || ^3" + "dflydev/dot-access-data": "^3", + "grasmash/expander": "^3", + "php": ">=8.2.0", + "symfony/event-dispatcher": "^6 || ^7" }, "require-dev": { - "doctrine/cache": "^2.0", - "doctrine/coding-standard": "^10", - "phpstan/phpstan": "^1.10.28", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "symfony/cache": "^5.4 || ^6.4 || ^7", - "vimeo/psalm": "^4.30 || ^5.14" + "ext-json": "*", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3", + "symfony/console": "^7", + "symfony/yaml": "^7", + "yoast/phpunit-polyfills": "^1" }, "suggest": { - "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + "symfony/event-dispatcher": "Required to inject configuration into Command options", + "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + "Consolidation\\Config\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -977,116 +1130,100 @@ ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" } ], - "description": "Docblock Annotations Parser", - "homepage": "https://www.doctrine-project.org/projects/annotations.html", - "keywords": [ - "annotations", - "docblock", - "parser" - ], + "description": "Provide configuration services for a commandline tool.", "support": { - "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/2.0.2" + "issues": "https://github.com/consolidation/config/issues", + "source": "https://github.com/consolidation/config/tree/3.1.1" }, - "time": "2024-09-05T10:17:24+00:00" + "time": "2025-07-07T13:37:38+00:00" }, { - "name": "doctrine/deprecations", - "version": "1.1.5", + "name": "consolidation/filter-via-dot-access-data", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/doctrine/deprecations.git", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" + "url": "https://github.com/consolidation/filter-via-dot-access-data.git", + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", + "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "conflict": { - "phpunit/phpunit": "<=7.5 || >=13" + "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", + "php": ">=7.1.3" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12 || ^13", - "phpstan/phpstan": "1.4.10 || 2.1.11", - "phpstan/phpstan-phpunit": "^1.0 || ^2", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", - "psr/log": "^1 || ^2 || ^3" - }, - "suggest": { - "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "src" + "Consolidation\\Filter\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", - "homepage": "https://www.doctrine-project.org/", + "authors": [ + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" + } + ], + "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.", "support": { - "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.5" + "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2" }, - "time": "2025-04-07T20:06:18+00:00" + "time": "2021-12-30T03:56:08+00:00" }, { - "name": "doctrine/lexer", - "version": "2.1.1", + "name": "consolidation/log", + "version": "3.1.0", "source": { "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6" + "url": "https://github.com/consolidation/log.git", + "reference": "c27a3beb36137c141ccbce0d89f64befb243c015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", + "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015", + "reference": "c27a3beb36137c141ccbce0d89f64befb243c015", "shasum": "" }, "require": { - "doctrine/deprecations": "^1.0", - "php": "^7.1 || ^8.0" + "php": ">=8.0.0", + "psr/log": "^3", + "symfony/console": "^5 || ^6 || ^7" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6", - "psalm/plugin-phpunit": "^0.18.3", - "vimeo/psalm": "^4.11 || ^5.21" + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", + "extra": { + "platform": { + "php": "8.2.17" + } + }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "src" + "Consolidation\\Log\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1095,408 +1232,8323 @@ ], "authors": [ { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" } ], - "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" - ], + "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", "support": { - "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/2.1.1" + "issues": "https://github.com/consolidation/log/issues", + "source": "https://github.com/consolidation/log/tree/3.1.0" }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", - "type": "tidelift" - } - ], - "time": "2024-02-05T11:35:39+00:00" + "time": "2024-04-04T23:50:25+00:00" }, { - "name": "drupal/admin_toolbar", - "version": "3.6.1", + "name": "consolidation/output-formatters", + "version": "4.6.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "3.6.1" + "url": "https://github.com/consolidation/output-formatters.git", + "reference": "b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip", - "reference": "3.6.1", - "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0" + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d", + "reference": "b6bcaf13bec9f4597e75ae853f3b3ac0d53b798d", + "shasum": "" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "php": ">=7.1.3", + "symfony/console": "^4 || ^5 || ^6 || ^7", + "symfony/finder": "^4 || ^5 || ^6 || ^7" }, "require-dev": { - "drupal/admin_toolbar_tools": "*" + "php-coveralls/php-coveralls": "^2.4.2", + "phpunit/phpunit": "^7 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3", + "symfony/var-dumper": "^4 || ^5 || ^6 || ^7", + "symfony/yaml": "^4 || ^5 || ^6 || ^7", + "yoast/phpunit-polyfills": "^1" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "suggest": { + "symfony/var-dumper": "For using the var_dump formatter" + }, + "type": "library", + "autoload": { + "psr-4": { + "Consolidation\\OutputFormatters\\": "src" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "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": "fethi.krout", - "homepage": "https://www.drupal.org/user/3206765" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "matio89", - "homepage": "https://www.drupal.org/user/2320090" - }, - { - "name": "musa.thomas", - "homepage": "https://www.drupal.org/user/1213824" - }, - { - "name": "romainj", - "homepage": "https://www.drupal.org/user/370706" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" } ], - "description": "Provides a drop-down menu interface to the core Drupal Toolbar.", - "homepage": "http://drupal.org/project/admin_toolbar", - "keywords": [ - "Drupal", - "Toolbar" - ], + "description": "Format text by applying transformations provided by plug-in formatters.", "support": { - "source": "https://git.drupalcode.org/project/admin_toolbar", - "issues": "https://www.drupal.org/project/issues/admin_toolbar" - } + "issues": "https://github.com/consolidation/output-formatters/issues", + "source": "https://github.com/consolidation/output-formatters/tree/4.6.1" + }, + "time": "2024-12-13T18:38:45+00:00" }, { - "name": "drupal/components", - "version": "3.1.0", + "name": "consolidation/robo", + "version": "5.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/components.git", - "reference": "3.1.0" + "url": "https://github.com/consolidation/robo.git", + "reference": "dde6bd88de5e1e8a7f6ed8906f80353817647ad9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/components-3.1.0.zip", - "reference": "3.1.0", - "shasum": "a9d9f7517f54038d0d6fa68185d80e26d2ad1d8d" + "url": "https://api.github.com/repos/consolidation/robo/zipball/dde6bd88de5e1e8a7f6ed8906f80353817647ad9", + "reference": "dde6bd88de5e1e8a7f6ed8906f80353817647ad9", + "shasum": "" }, "require": { - "drupal/core": "^10.2 || ^11" + "consolidation/annotated-command": "^4.8.1", + "consolidation/config": "^3", + "consolidation/log": "^3", + "consolidation/output-formatters": "^4.1.2", + "league/container": "^3.3.1 || ^4.0", + "php": ">=8.2", + "phpowermove/docblock": "^4.0", + "symfony/console": "^6 || ^7", + "symfony/event-dispatcher": "^6 || ^7", + "symfony/filesystem": "^6 || ^7", + "symfony/finder": "^6 || ^7", + "symfony/process": "^6 || ^7", + "symfony/yaml": "^6 || ^7" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.0", - "datestamp": "1725921122", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "conflict": { + "codegyre/robo": "*" + }, + "require-dev": { + "natxet/cssmin": "3.0.4", + "patchwork/jsqueeze": "^2", + "pear/archive_tar": "^1.4.4", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3.6", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "suggest": { + "consolidation/self-update": "For self-updating a phar-based app built with Robo", + "natxet/cssmin": "For minifying CSS files in taskMinify", + "patchwork/jsqueeze": "For minifying JS files in taskMinify", + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" + }, + "bin": [ + "robo" + ], + "type": "library", + "autoload": { + "psr-4": { + "Robo\\": "src" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "JohnAlbin", - "homepage": "https://www.drupal.org/user/1036766", - "email": "virtually.johnalbin@gmail.com" - }, - { - "name": "johnalbin", - "homepage": "https://www.drupal.org/user/32095" - }, - { - "name": "robloach", - "homepage": "https://www.drupal.org/user/61114" + "name": "Davert", + "email": "davert.php@resend.cc" } ], - "description": "Registers folders of components defined by your theme or module as Twig namespaces", - "homepage": "https://drupal.org/project/components", + "description": "Modern task runner", "support": { - "source": "https://git.drupalcode.org/project/components" - } + "issues": "https://github.com/consolidation/robo/issues", + "source": "https://github.com/consolidation/robo/tree/5.1.0" + }, + "time": "2024-10-22T13:18:54+00:00" }, { - "name": "drupal/config_devel", - "version": "1.10.0", + "name": "consolidation/site-alias", + "version": "4.1.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/config_devel.git", - "reference": "8.x-1.10" + "url": "https://github.com/consolidation/site-alias.git", + "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3" + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40", + "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40", + "shasum": "" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "consolidation/config": "^1.2.1 || ^2 || ^3", + "php": ">=7.4", + "symfony/filesystem": "^5.4 || ^6 || ^7", + "symfony/finder": "^5 || ^6 || ^7" }, - "type": "drupal-module", + "require-dev": { + "php-coveralls/php-coveralls": "^2.4.2", + "phpunit/phpunit": ">=7", + "squizlabs/php_codesniffer": "^3", + "symfony/var-dumper": "^4", + "yoast/phpunit-polyfills": "^0.2.0" + }, + "type": "library", "extra": { - "drupal": { - "version": "8.x-1.10", - "datestamp": "1727184343", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-main": "4.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Consolidation\\SiteAlias\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "alexpott", - "homepage": "https://www.drupal.org/user/157725" - }, - { - "name": "benjy", - "homepage": "https://www.drupal.org/user/1852732" - }, - { - "name": "chx", - "homepage": "https://www.drupal.org/user/9446" - }, - { - "name": "joachim", - "homepage": "https://www.drupal.org/user/107701" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" }, { - "name": "vijaycs85", - "homepage": "https://www.drupal.org/user/93488" + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" } ], - "description": "Helps developers work with configuration.", - "homepage": "https://www.drupal.org/project/config_devel", + "description": "Manage alias records for local and remote sites.", "support": { - "source": "https://git.drupalcode.org/project/config_devel" - } + "issues": "https://github.com/consolidation/site-alias/issues", + "source": "https://github.com/consolidation/site-alias/tree/4.1.1" + }, + "time": "2024-12-13T19:05:11+00:00" }, { - "name": "drupal/config_filter", - "version": "2.7.0", + "name": "consolidation/site-process", + "version": "5.4.2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-2.7" + "url": "https://github.com/consolidation/site-process.git", + "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip", - "reference": "8.x-2.7", - "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50" + "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", + "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", + "shasum": "" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" - }, - "conflict": { - "drush/drush": "<10" + "consolidation/config": "^2 || ^3", + "consolidation/site-alias": "^3 || ^4", + "php": ">=8.0.14", + "symfony/console": "^5.4 || ^6 || ^7", + "symfony/process": "^6 || ^7" }, - "suggest": { - "drupal/config_split": "Split site configuration for different environments." + "require-dev": { + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3" }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "8.x-2.7", - "datestamp": "1727472458", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-main": "5.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Consolidation\\SiteProcess\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Fabian Bircher", - "homepage": "https://www.drupal.org/u/bircher", - "email": "opensource@fabianbircher.com", - "role": "Maintainer" - }, - { - "name": "Nuvole Web", - "homepage": "http://nuvole.org", - "email": "info@nuvole.org", - "role": "Maintainer" + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" }, { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" + "name": "Moshe Weitzman", + "email": "weitzman@tejasa.com" } ], - "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.", - "homepage": "https://www.drupal.org/project/config_filter", - "keywords": [ - "Drupal", - "configuration", - "configuration management" - ], + "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", "support": { - "source": "https://git.drupalcode.org/project/config_filter", - "issues": "https://www.drupal.org/project/issues/config_filter", - "slack": "https://drupal.slack.com/archives/C45342CDD" - } + "issues": "https://github.com/consolidation/site-process/issues", + "source": "https://github.com/consolidation/site-process/tree/5.4.2" + }, + "time": "2024-12-13T19:25:56+00:00" }, { - "name": "drupal/config_ignore", - "version": "3.3.0", + "name": "cweagans/composer-patches", + "version": "1.7.3", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/config_ignore.git", - "reference": "8.x-3.3" + "url": "https://github.com/cweagans/composer-patches.git", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip", - "reference": "8.x-3.3", - "shasum": "4446811ecb023820a57c227d35c034e0d4363a70" + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "shasum": "" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3.0" }, "require-dev": { - "drupal/config_filter": "^1.8||^2.2", - "drush/drush": "^10 || ^11 || ^12" + "composer/composer": "~1.0 || ~2.0", + "phpunit/phpunit": "~4.6" }, - "type": "drupal-module", + "type": "composer-plugin", "extra": { - "drupal": { - "version": "8.x-3.3", - "datestamp": "1713299496", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "class": "cweagans\\Composer\\Patches" + }, + "autoload": { + "psr-4": { + "cweagans\\Composer\\": "src" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "Tommy Lynge Jørgensen", - "homepage": "https://www.drupal.org/u/tlyngej", - "email": "tlyngej@gmail.com", - "role": "Maintainer" - }, - { - "name": "Fabian Bircher", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" - }, - { - "name": "tlyngej", - "homepage": "https://www.drupal.org/user/413139" + "name": "Cameron Eagans", + "email": "me@cweagans.net" } ], - "description": "Ignore certain configuration during import and export.", - "homepage": "http://drupal.org/project/config_ignore", + "description": "Provides a way to patch Composer packages.", "support": { - "source": "https://git.drupalcode.org/project/config_ignore", - "issues": "http://drupal.org/project/config_ignore" - } + "issues": "https://github.com/cweagans/composer-patches/issues", + "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" + }, + "time": "2022-12-20T22:53:13+00:00" }, { - "name": "drupal/config_inspector", - "version": "2.1.9", + "name": "davedevelopment/stiphle", + "version": "0.9.4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/config_inspector.git", - "reference": "2.1.9" + "url": "https://github.com/davedevelopment/stiphle.git", + "reference": "5d1c244f0525d265e231a65db538b74eb5483768" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_inspector-2.1.9.zip", - "reference": "2.1.9", - "shasum": "e5df3444f9e9aec82ff136b66a6707196ef1f7eb" + "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768", + "reference": "5d1c244f0525d265e231a65db538b74eb5483768", + "shasum": "" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "php": "^5.6.0|^7.0|^8.0" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.9", - "datestamp": "1714470278", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" + "require-dev": { + "doctrine/cache": "^1.0", + "phpunit/phpunit": "^6.5|^7.5|^8.4", + "predis/predis": "^1.1", + "zendframework/zend-cache": "^2.8" + }, + "suggest": { + "doctrine/cache": "~1.0", + "predis/predis": "~1.1", + "zendframework/zend-cache": "^2.8" + }, + "type": "library", + "autoload": { + "psr-0": { + "Stiphle": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dave Marshall", + "email": "dave.marshall@atstsolutions.co.uk", + "homepage": "http://davedevelopment.co.uk" + } + ], + "description": "Simple rate limiting/throttling for php", + "homepage": "http://github.com/davedevelopment/stiphle", + "keywords": [ + "rate limit", + "rate limiting", + "throttle", + "throttling" + ], + "support": { + "issues": "https://github.com/davedevelopment/stiphle/issues", + "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4" + }, + "time": "2022-11-25T16:30:20+00:00" + }, + { + "name": "dflydev/dot-access-data", + "version": "v3.0.3", + "source": { + "type": "git", + "url": "https://github.com/dflydev/dflydev-dot-access-data.git", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.42", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", + "scrutinizer/ocular": "1.6.0", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^4.0.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Dflydev\\DotAccessData\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Dragonfly Development Inc.", + "email": "info@dflydev.com", + "homepage": "http://dflydev.com" + }, + { + "name": "Beau Simensen", + "email": "beau@dflydev.com", + "homepage": "http://beausimensen.com" + }, + { + "name": "Carlos Frutos", + "email": "carlos@kiwing.it", + "homepage": "https://github.com/cfrutos" + }, + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com" + } + ], + "description": "Given a deep data structure, access data by dot notation.", + "homepage": "https://github.com/dflydev/dflydev-dot-access-data", + "keywords": [ + "access", + "data", + "dot", + "notation" + ], + "support": { + "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", + "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" + }, + "time": "2024-07-08T12:26:09+00:00" + }, + { + "name": "doctrine/annotations", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7", + "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7", + "shasum": "" + }, + "require": { + "doctrine/lexer": "^2 || ^3", + "ext-tokenizer": "*", + "php": "^7.2 || ^8.0", + "psr/cache": "^1 || ^2 || ^3" + }, + "require-dev": { + "doctrine/cache": "^2.0", + "doctrine/coding-standard": "^10", + "phpstan/phpstan": "^1.10.28", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "symfony/cache": "^5.4 || ^6.4 || ^7", + "vimeo/psalm": "^4.30 || ^5.14" + }, + "suggest": { + "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Docblock Annotations Parser", + "homepage": "https://www.doctrine-project.org/projects/annotations.html", + "keywords": [ + "annotations", + "docblock", + "parser" + ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/2.0.2" + }, + "time": "2024-09-05T10:17:24+00:00" + }, + { + "name": "doctrine/collections", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d", + "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1", + "php": "^8.1", + "symfony/polyfill-php84": "^1.30" + }, + "require-dev": { + "doctrine/coding-standard": "^12", + "ext-json": "*", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/2.3.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections", + "type": "tidelift" + } + ], + "time": "2025-03-22T10:17:19+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "1.1.5", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "phpunit/phpunit": "<=7.5 || >=13" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^12 || ^13", + "phpstan/phpstan": "1.4.10 || 2.1.11", + "phpstan/phpstan-phpunit": "^1.0 || ^2", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", + "psr/log": "^1 || ^2 || ^3" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/1.1.5" + }, + "time": "2025-04-07T20:06:18+00:00" + }, + { + "name": "doctrine/lexer", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", + "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.0", + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9 || ^12", + "phpstan/phpstan": "^1.3", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6", + "psalm/plugin-phpunit": "^0.18.3", + "vimeo/psalm": "^4.11 || ^5.21" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "src" + } + }, + "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/2.1.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2024-02-05T11:35:39+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.4.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "8c784d071debd117328803d86b2097615b457500" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", + "reference": "8c784d071debd117328803d86b2097615b457500", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2024-10-09T13:47:03+00:00" + }, + { + "name": "drupal/add_content_by_bundle", + "version": "1.2.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/add_content_by_bundle.git", + "reference": "1.2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/add_content_by_bundle-1.2.2.zip", + "reference": "1.2.2", + "shasum": "47dc9c87c28b49e024d397299f08033a362b9a1a" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.2.2", + "datestamp": "1713171345", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" + } + ], + "description": "Add Content by Bundle Views Area Plugin", + "homepage": "https://www.drupal.org/project/add_content_by_bundle", + "support": { + "source": "https://git.drupalcode.org/project/add_content_by_bundle", + "issues": "https://www.drupal.org/project/issues/add_content_by_bundle" + } + }, + { + "name": "drupal/address", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/address.git", + "reference": "2.0.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip", + "reference": "2.0.4", + "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e" + }, + "require": { + "commerceguys/addressing": "^2.1.1", + "drupal/core": "^9.5 || ^10 || ^11", + "php": "^8.0" + }, + "require-dev": { + "drupal/diff": "^1", + "drupal/feeds": "^3", + "drupal/token": "^1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.4", + "datestamp": "1746462054", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bojanz", + "homepage": "https://www.drupal.org/user/86106" + }, + { + "name": "centarro", + "homepage": "https://www.drupal.org/user/3661446" + }, + { + "name": "dww", + "homepage": "https://www.drupal.org/user/46549" + }, + { + "name": "jsacksick", + "homepage": "https://www.drupal.org/user/972218" + }, + { + "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://git.drupalcode.org/project/address" + } + }, + { + "name": "drupal/addtocal_augment", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/addtocal_augment.git", + "reference": "1.2.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/addtocal_augment-1.2.4.zip", + "reference": "1.2.4", + "shasum": "498ad31b7c9079426577bc6a1282e66b93726816" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11", + "drupal/date_augmenter": "^1.1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.2.4", + "datestamp": "1741987945", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" + }, + { + "name": "mark_fullmer", + "homepage": "https://www.drupal.org/user/2612816" + } + ], + "description": "Provides a plugin to inject add to calendar links into date displays.", + "homepage": "https://www.drupal.org/project/addtocal_augment", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/addtocal_augment", + "issues": "https://www.drupal.org/project/issues/addtocal_augment" + } + }, + { + "name": "drupal/admin_toolbar", + "version": "3.6.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/admin_toolbar.git", + "reference": "3.6.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip", + "reference": "3.6.1", + "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0" + }, + "require": { + "drupal/core": "^9.5 || ^10 || ^11" + }, + "require-dev": { + "drupal/admin_toolbar_tools": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.6.1", + "datestamp": "1749079734", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "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": "fethi.krout", + "homepage": "https://www.drupal.org/user/3206765" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "matio89", + "homepage": "https://www.drupal.org/user/2320090" + }, + { + "name": "musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" + }, + { + "name": "romainj", + "homepage": "https://www.drupal.org/user/370706" + } + ], + "description": "Provides a drop-down menu interface to the core Drupal Toolbar.", + "homepage": "http://drupal.org/project/admin_toolbar", + "keywords": [ + "Drupal", + "Toolbar" + ], + "support": { + "source": "https://git.drupalcode.org/project/admin_toolbar", + "issues": "https://www.drupal.org/project/issues/admin_toolbar" + } + }, + { + "name": "drupal/ai", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ai.git", + "reference": "1.1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ai-1.1.4.zip", + "reference": "1.1.4", + "shasum": "cb52f84b53a3b36d5b2f7bf42592d3437a3718cb" + }, + "require": { + "drupal/core": "^10.2 || ^11", + "drupal/key": "^1.18", + "league/html-to-markdown": "^5.1", + "yethee/tiktoken": "^0.5.1" + }, + "require-dev": { + "allanpichardo/mysql-vector": "^2.0", + "drupal/ai_assistant_api": "*", + "drupal/ai_search-ai_search": "*", + "drupal/eca": "^2.0", + "drupal/eca_content-eca_content": "*", + "drupal/field_validation": "^3.0@beta", + "drupal/key": "*", + "drupal/search_api": "^1.x-dev", + "drupal/search_api_solr": "^4.0", + "drupal/token": "^1.14", + "drush/drush": "^12|^13" + }, + "suggest": { + "league/commonmark": "Allows previewing of chunked content when configuring the fields to be indexed in AI Search, and formats messages in the AI Chatbot module." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.4", + "datestamp": "1758118125", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" + }, + { + "name": "abhisekmazumdar", + "homepage": "https://www.drupal.org/user/3557964" + }, + { + "name": "andrewbelcher", + "homepage": "https://www.drupal.org/user/655282" + }, + { + "name": "gxleano", + "homepage": "https://www.drupal.org/user/3591999" + }, + { + "name": "kevinquillen", + "homepage": "https://www.drupal.org/user/317279" + }, + { + "name": "kristen pol", + "homepage": "https://www.drupal.org/user/8389" + }, + { + "name": "marcus_johansson", + "homepage": "https://www.drupal.org/user/385947" + }, + { + "name": "scott_euser", + "homepage": "https://www.drupal.org/user/3267594" + }, + { + "name": "seogow", + "homepage": "https://www.drupal.org/user/3065779" + }, + { + "name": "valthebald", + "homepage": "https://www.drupal.org/user/239562" + }, + { + "name": "wouters_f", + "homepage": "https://www.drupal.org/user/721548" + }, + { + "name": "yautja_cetanu", + "homepage": "https://www.drupal.org/user/626050" + } + ], + "description": "AI module for Drupal", + "homepage": "https://www.drupal.org/project/ai", + "support": { + "source": "https://git.drupalcode.org/project/ai" + } + }, + { + "name": "drupal/ai_agents", + "version": "1.1.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ai_agents.git", + "reference": "1.1.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ai_agents-1.1.3.zip", + "reference": "1.1.3", + "shasum": "e1af67a94452d93b3a8cb64258d0b492aad16726" + }, + "require": { + "drupal/ai": "^1.1.0", + "drupal/core": "^10.2 || ^11" + }, + "require-dev": { + "drupal/bpmn_io": "3.0.x-dev", + "drupal/modeler_api": "1.0.x-dev", + "drupal/webform": "^6.0" + }, + "suggest": { + "drupal/simple_crawler": "Allows the AI Form integrations to crawl websites.", + "drupal/unstructured": "Makes the AI Form integrations work better by allowing many file contexts." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.3", + "datestamp": "1758113722", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "akhil babu", + "homepage": "https://www.drupal.org/user/3632866" + }, + { + "name": "andrewbelcher", + "homepage": "https://www.drupal.org/user/655282" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + }, + { + "name": "marcus_johansson", + "homepage": "https://www.drupal.org/user/385947" + }, + { + "name": "michaellander", + "homepage": "https://www.drupal.org/user/636494" + }, + { + "name": "yautja_cetanu", + "homepage": "https://www.drupal.org/user/626050" + } + ], + "description": "Allows AI agents to be used on Drupal websites to do changes and lookup things.", + "homepage": "https://www.drupal.org/project/ai_agents", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/ai_agents" + } + }, + { + "name": "drupal/ai_image_alt_text", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ai_image_alt_text.git", + "reference": "1.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ai_image_alt_text-1.0.1.zip", + "reference": "1.0.1", + "shasum": "8fc44919418381ab34e79334df74ee81afd2c299" + }, + "require": { + "drupal/ai": "^1.0.0", + "drupal/core": "^10.2 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.1", + "datestamp": "1738761806", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "DXPR", + "homepage": "https://dxpr.com", + "role": "Maintainer" + }, + { + "name": "jurriaanroelofs", + "homepage": "https://www.drupal.org/user/52638" + }, + { + "name": "marcus_johansson", + "homepage": "https://www.drupal.org/user/385947" + }, + { + "name": "yautja_cetanu", + "homepage": "https://www.drupal.org/user/626050" + } + ], + "description": "Allows the possibility to set an alt text using AI.", + "homepage": "https://www.drupal.org/project/ai_image_alt_text", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/ai_image_alt_text" + } + }, + { + "name": "drupal/ai_provider_anthropic", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ai_provider_anthropic.git", + "reference": "1.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ai_provider_anthropic-1.1.0.zip", + "reference": "1.1.0", + "shasum": "2c010c2a97f1d62f413dc3c2f17f724a944c96c9" + }, + "require": { + "drupal/ai": "^1.1.0", + "drupal/core": "^10.3 || ^11", + "drupal/key": "^1.18", + "openai-php/client": ">=v0.10.1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.0", + "datestamp": "1749732163", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "kevinquillen", + "homepage": "https://www.drupal.org/user/317279" + }, + { + "name": "marcus_johansson", + "homepage": "https://www.drupal.org/user/385947" + }, + { + "name": "scott_euser", + "homepage": "https://www.drupal.org/user/3267594" + }, + { + "name": "seogow", + "homepage": "https://www.drupal.org/user/3065779" + }, + { + "name": "wouters_f", + "homepage": "https://www.drupal.org/user/721548" + }, + { + "name": "yautja_cetanu", + "homepage": "https://www.drupal.org/user/626050" + } + ], + "description": "Anthropic provider implementation for the AI module for Drupal", + "homepage": "https://www.drupal.org/project/ai_provider_anthropic", + "support": { + "source": "https://git.drupalcode.org/project/ai_provider_anthropic" + } + }, + { + "name": "drupal/ai_provider_openai", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ai_provider_openai.git", + "reference": "1.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ai_provider_openai-1.1.0.zip", + "reference": "1.1.0", + "shasum": "bc0c1bde2cc74726aed1c5a27bb3fb7ae452de1a" + }, + "require": { + "drupal/ai": "^1.1.0", + "drupal/core": "^10.3 || ^11", + "drupal/key": "^1.18", + "openai-php/client": ">=v0.10.1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.0", + "datestamp": "1749732136", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "kevinquillen", + "homepage": "https://www.drupal.org/user/317279" + }, + { + "name": "marcus_johansson", + "homepage": "https://www.drupal.org/user/385947" + }, + { + "name": "scott_euser", + "homepage": "https://www.drupal.org/user/3267594" + }, + { + "name": "seogow", + "homepage": "https://www.drupal.org/user/3065779" + }, + { + "name": "wouters_f", + "homepage": "https://www.drupal.org/user/721548" + }, + { + "name": "yautja_cetanu", + "homepage": "https://www.drupal.org/user/626050" + } + ], + "description": "OpenAI provider implementation for the AI module for Drupal", + "homepage": "https://www.drupal.org/project/ai_provider_openai", + "support": { + "source": "https://git.drupalcode.org/project/ai_provider_openai" + } + }, + { + "name": "drupal/automatic_updates", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/automatic_updates.git", + "reference": "4.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/automatic_updates-4.0.0.zip", + "reference": "4.0.0", + "shasum": "e15ad212d3dd608091d846ca8c63948b356ab32f" + }, + "require": { + "composer-runtime-api": "^2.1", + "drupal/core": "^11.2", + "ext-json": "*", + "symfony/console": "^6.2 || ^7" + }, + "conflict": { + "php-tuf/composer-integration": "<1-alpha11" + }, + "require-dev": { + "colinodell/psr-testlogger": "^1.2", + "symfony/config": "^6.2 || ^7" + }, + "bin": [ + "auto-update" + ], + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.0.0", + "datestamp": "1749659459", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "autoload": { + "psr-4": { + "Drupal\\automatic_updates\\Development\\": "scripts/src" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "scripts": { + "phpcbf": [ + "scripts/phpcbf.sh" + ], + "phpcs": [ + "scripts/phpcs.sh" + ], + "test": [ + "Composer\\Config::disableProcessTimeout", + "scripts/phpunit.sh" + ], + "core-convert": [ + "Drupal\\automatic_updates\\Development\\ConverterCommand" + ], + "core-commit": [ + "Drupal\\automatic_updates\\Development\\ConverterCommand::makeCommit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "david strauss", + "homepage": "https://www.drupal.org/user/93254" + }, + { + "name": "drumm", + "homepage": "https://www.drupal.org/user/3064" + }, + { + "name": "dstol", + "homepage": "https://www.drupal.org/user/329570" + }, + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "hestenet", + "homepage": "https://www.drupal.org/user/54034" + }, + { + "name": "mbaynton", + "homepage": "https://www.drupal.org/user/2303520" + }, + { + "name": "Mixologic", + "homepage": "https://www.drupal.org/user/391689" + }, + { + "name": "mlhess", + "homepage": "https://www.drupal.org/user/102818" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "pwolanin", + "homepage": "https://www.drupal.org/user/49851" + }, + { + "name": "tedbow", + "homepage": "https://www.drupal.org/user/240860" + }, + { + "name": "wim leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" + } + ], + "description": "Drupal Automatic Updates", + "homepage": "https://www.drupal.org/project/automatic_updates", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/automatic_updates", + "issues": "https://www.drupal.org/project/issues/automatic_updates" + } + }, + { + "name": "drupal/autosave_form", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/autosave_form.git", + "reference": "8.x-1.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "99e270c30bf09a2688a5b23814beced13f8f7ba4" + }, + "require": { + "drupal/core": "^9.5 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.10", + "datestamp": "1738605622", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "hchonov", + "homepage": "https://www.drupal.org/user/2901211" + } + ], + "description": "Adds autosave feature on forms.", + "homepage": "https://www.drupal.org/project/autosave_form", + "support": { + "source": "https://git.drupalcode.org/project/autosave_form" + } + }, + { + "name": "drupal/better_exposed_filters", + "version": "7.0.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/better_exposed_filters.git", + "reference": "7.0.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-7.0.5.zip", + "reference": "7.0.5", + "shasum": "a215444c39a6ae384710a6c707caf593f6dd1e2d" + }, + "require": { + "drupal/core": "^10 || ^11", + "drupal/nouislider_js": "^15.8" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "7.0.5", + "datestamp": "1738353781", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Mike Keran", + "homepage": "https://www.drupal.org/u/mikeker" + }, + { + "name": "Martin Keereman", + "homepage": "https://www.drupal.org/u/etroid" + }, + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/u/neslee-canil-pinto" + }, + { + "name": "mikeker", + "homepage": "https://www.drupal.org/user/192273" + }, + { + "name": "neslee canil pinto", + "homepage": "https://www.drupal.org/user/3580850" + }, + { + "name": "podarok", + "homepage": "https://www.drupal.org/user/116002" + }, + { + "name": "rlhawk", + "homepage": "https://www.drupal.org/user/352283" + }, + { + "name": "smustgrave", + "homepage": "https://www.drupal.org/user/3252890" + } + ], + "description": "Replaces the Views default single- or multi-select boxes with more advanced options.", + "homepage": "https://www.drupal.org/project/better_exposed_filters", + "support": { + "source": "https://git.drupalcode.org/project/better_exposed_filters", + "issues": "https://www.drupal.org/project/issues/better_exposed_filters" + } + }, + { + "name": "drupal/bpmn_io", + "version": "2.0.10", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/bpmn_io.git", + "reference": "2.0.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/bpmn_io-2.0.10.zip", + "reference": "2.0.10", + "shasum": "3068bbb5ea4df08279390d5749d62b3b1bcda654" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/eca": "^2.0", + "drupal/eca_modeller_bpmn": "^2", + "php": ">=8.1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.10", + "datestamp": "1751531607", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "boromino", + "homepage": "https://www.drupal.org/user/859722" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "BPMN modeller for ECA, integrated into Drupal's admin UI.", + "homepage": "https://www.drupal.org/project/bpmn_io", + "support": { + "source": "https://drupal.org/project/bpmn_io", + "issues": "https://drupal.org/project/issues/bpmn_io" + } + }, + { + "name": "drupal/captcha", + "version": "2.0.9", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/captcha.git", + "reference": "2.0.9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/captcha-2.0.9.zip", + "reference": "2.0.9", + "shasum": "15b2ba18fab75ea88bfa8f75fb1be09f7cd52cbb" + }, + "require": { + "drupal/core": "^9.5 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.9", + "datestamp": "1753701287", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "anybody", + "homepage": "https://www.drupal.org/user/291091" + }, + { + "name": "elachlan", + "homepage": "https://www.drupal.org/user/1021502" + }, + { + "name": "grevil", + "homepage": "https://www.drupal.org/user/3668491" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "naveenvalecha", + "homepage": "https://www.drupal.org/user/2665733" + }, + { + "name": "podarok", + "homepage": "https://www.drupal.org/user/116002" + }, + { + "name": "robloach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "name": "thomas.frobieter", + "homepage": "https://www.drupal.org/user/409335" + }, + { + "name": "wundo", + "homepage": "https://www.drupal.org/user/25523" + } + ], + "description": "The CAPTCHA module provides this feature to virtually any user facing web form on a Drupal site.", + "homepage": "https://www.drupal.org/project/captcha", + "support": { + "source": "https://git.drupalcode.org/project/captcha", + "issues": "https://www.drupal.org/project/issues/captcha" + } + }, + { + "name": "drupal/checklistapi", + "version": "2.1.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/checklistapi.git", + "reference": "2.1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/checklistapi-2.1.6.zip", + "reference": "2.1.6", + "shasum": "64f439b7dd09336c4b32480edf1796cbc911d9b4" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11", + "php": ">=7.3.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.6", + "datestamp": "1713801912", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Travis Carden", + "homepage": "https://www.drupal.org/user/3550392", + "email": "travis.carden@gmail.com" + }, + { + "name": "rajeshreeputra", + "homepage": "https://www.drupal.org/user/3418561" + }, + { + "name": "traviscarden", + "homepage": "https://www.drupal.org/user/236758" + }, + { + "name": "vladimiraus", + "homepage": "https://www.drupal.org/user/673120" + } + ], + "description": "Provides an API for creating fillable, persistent checklists.", + "homepage": "http://drupal.org/project/checklistapi", + "support": { + "source": "https://git.drupalcode.org/project/checklistapi", + "issues": "https://www.drupal.org/project/issues/checklistapi" + } + }, + { + "name": "drupal/cms", + "version": "1.2.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/cms.git", + "reference": "eab9d739689de0e882c75fbe2ad1a09370e40dd7" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fcms/repository/archive.zip?sha=eab9d739689de0e882c75fbe2ad1a09370e40dd7", + "reference": "eab9d739689de0e882c75fbe2ad1a09370e40dd7", + "shasum": "" + }, + "require": { + "composer/composer": "^2.8", + "composer/installers": "^2.3", + "drupal/core": "@rc", + "drupal/core-composer-scaffold": "^11.2.4", + "drupal/core-project-message": "^11.2.4", + "drupal/core-recipe-unpack": "^11.2.4", + "drupal/core-recommended": "^11.2.4", + "drupal/core-vendor-hardening": "^11.2.4", + "drupal/drupal_cms_accessibility_tools": "^1.2", + "drupal/drupal_cms_ai": "^1.2", + "drupal/drupal_cms_blog": "^1.2", + "drupal/drupal_cms_case_study": "^1.2", + "drupal/drupal_cms_events": "^1.2", + "drupal/drupal_cms_forms": "^1.2", + "drupal/drupal_cms_google_analytics": "^1.2", + "drupal/drupal_cms_news": "^1.2", + "drupal/drupal_cms_page": "^1.2", + "drupal/drupal_cms_person": "^1.2", + "drupal/drupal_cms_project": "^1.2", + "drupal/drupal_cms_seo_tools": "^1.2", + "drupal/drupal_cms_starter": "^1.2", + "drupal/project_browser": "@beta", + "drupal/recipe_installer_kit": "^1-alpha6@alpha", + "drupal/webform": "@beta" + }, + "conflict": { + "drupal/drupal": "*" + }, + "require-dev": { + "drush/drush": "^13.6.1" + }, + "type": "project", + "extra": { + "drupal-scaffold": { + "locations": { + "web-root": "web/" + } + }, + "installer-paths": { + "web/core": [ + "type:drupal-core" + ], + "./recipes/{$name}": [ + "type:drupal-recipe" + ], + "web/libraries/{$name}": [ + "type:drupal-library" + ], + "web/themes/custom/{$name}": [ + "type:drupal-custom-theme" + ], + "web/modules/custom/{$name}": [ + "type:drupal-custom-module" + ], + "web/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "web/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "web/profiles/custom/{$name}": [ + "type:drupal-custom-profile" + ], + "web/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "./drush/Commands/contrib/{$name}": [ + "type:drupal-drush" + ] + }, + "drupal-core-project-message": { + "include-keys": [ + "homepage", + "support" + ], + "post-create-project-cmd-message": [ + " ", + " Congratulations, you’ve installed Drupal CMS! ", + " ", + "", + "Next steps:", + " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html", + " * Get support: https://drupal.org/support", + " * Get involved with the Drupal community: https://drupal.org/getting-involved" + ] + }, + "drupal-core-vendor-hardening": { + "composer/composer": false + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Drupal CMS is a ready-to-use platform built on Drupal core, offering smart defaults to get started quickly and enterprise-grade tools for marketers, designers, and content creators.", + "homepage": "https://www.drupal.org/project/cms", + "support": { + "chat": "https://drupal.org/node/314178", + "docs": "https://new.drupal.org/docs/drupal-cms", + "source": "https://git.drupalcode.org/project/cms/-/tree/1.2.6" + }, + "time": "2025-09-29T13:06:27+00:00" + }, + { + "name": "drupal/coffee", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/coffee.git", + "reference": "2.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/coffee-2.0.1.zip", + "reference": "2.0.1", + "shasum": "cc19f67fbf48c5946f8053093e100cbd07e96167" + }, + "require": { + "drupal/core": "^10.2 || ^11.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.1", + "datestamp": "1736247807", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-8.x-1.x": "8.1.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Michael Mol", + "homepage": "https://www.drupal.org/u/michaelmol", + "role": "Maintainer" + }, + { + "name": "Marco", + "homepage": "https://www.drupal.org/u/willzyx", + "role": "Maintainer" + }, + { + "name": "Oliver Köhler", + "homepage": "https://www.drupal.org/u/nebel54", + "role": "Maintainer" + }, + { + "name": "Alli Price", + "homepage": "https://www.drupal.org/u/heylookalive", + "role": "Maintainer" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/1356930/committers", + "role": "contributor" + } + ], + "description": "Provides an Alfred like search box to navigate within your site.", + "homepage": "https://drupal.org/project/coffee", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/coffee", + "issues": "https://drupal.org/project/issues/coffee", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + }, + { + "name": "drupal/components", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/components.git", + "reference": "3.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/components-3.1.0.zip", + "reference": "3.1.0", + "shasum": "a9d9f7517f54038d0d6fa68185d80e26d2ad1d8d" + }, + "require": { + "drupal/core": "^10.2 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.1.0", + "datestamp": "1725921122", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "JohnAlbin", + "homepage": "https://www.drupal.org/user/1036766", + "email": "virtually.johnalbin@gmail.com" + }, + { + "name": "johnalbin", + "homepage": "https://www.drupal.org/user/32095" + }, + { + "name": "robloach", + "homepage": "https://www.drupal.org/user/61114" + } + ], + "description": "Registers folders of components defined by your theme or module as Twig namespaces", + "homepage": "https://drupal.org/project/components", + "support": { + "source": "https://git.drupalcode.org/project/components" + } + }, + { + "name": "drupal/config_devel", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_devel.git", + "reference": "8.x-1.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.10", + "datestamp": "1727184343", + "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": "alexpott", + "homepage": "https://www.drupal.org/user/157725" + }, + { + "name": "benjy", + "homepage": "https://www.drupal.org/user/1852732" + }, + { + "name": "chx", + "homepage": "https://www.drupal.org/user/9446" + }, + { + "name": "joachim", + "homepage": "https://www.drupal.org/user/107701" + }, + { + "name": "vijaycs85", + "homepage": "https://www.drupal.org/user/93488" + } + ], + "description": "Helps developers work with configuration.", + "homepage": "https://www.drupal.org/project/config_devel", + "support": { + "source": "https://git.drupalcode.org/project/config_devel" + } + }, + { + "name": "drupal/config_filter", + "version": "2.7.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_filter.git", + "reference": "8.x-2.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip", + "reference": "8.x-2.7", + "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10 || ^11" + }, + "conflict": { + "drush/drush": "<10" + }, + "suggest": { + "drupal/config_split": "Split site configuration for different environments." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.7", + "datestamp": "1727472458", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Fabian Bircher", + "homepage": "https://www.drupal.org/u/bircher", + "email": "opensource@fabianbircher.com", + "role": "Maintainer" + }, + { + "name": "Nuvole Web", + "homepage": "http://nuvole.org", + "email": "info@nuvole.org", + "role": "Maintainer" + }, + { + "name": "pescetti", + "homepage": "https://www.drupal.org/user/436244" + } + ], + "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.", + "homepage": "https://www.drupal.org/project/config_filter", + "keywords": [ + "Drupal", + "configuration", + "configuration management" + ], + "support": { + "source": "https://git.drupalcode.org/project/config_filter", + "issues": "https://www.drupal.org/project/issues/config_filter", + "slack": "https://drupal.slack.com/archives/C45342CDD" + } + }, + { + "name": "drupal/config_ignore", + "version": "3.3.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_ignore.git", + "reference": "8.x-3.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip", + "reference": "8.x-3.3", + "shasum": "4446811ecb023820a57c227d35c034e0d4363a70" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10 || ^11" + }, + "require-dev": { + "drupal/config_filter": "^1.8||^2.2", + "drush/drush": "^10 || ^11 || ^12" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-3.3", + "datestamp": "1713299496", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Tommy Lynge Jørgensen", + "homepage": "https://www.drupal.org/u/tlyngej", + "email": "tlyngej@gmail.com", + "role": "Maintainer" + }, + { + "name": "Fabian Bircher", + "homepage": "https://www.drupal.org/u/bircher", + "role": "Maintainer" + }, + { + "name": "tlyngej", + "homepage": "https://www.drupal.org/user/413139" + } + ], + "description": "Ignore certain configuration during import and export.", + "homepage": "http://drupal.org/project/config_ignore", + "support": { + "source": "https://git.drupalcode.org/project/config_ignore", + "issues": "http://drupal.org/project/config_ignore" + } + }, + { + "name": "drupal/config_inspector", + "version": "2.1.9", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_inspector.git", + "reference": "2.1.9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_inspector-2.1.9.zip", + "reference": "2.1.9", + "shasum": "e5df3444f9e9aec82ff136b66a6707196ef1f7eb" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.9", + "datestamp": "1714470278", + "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": "aspilicious", + "homepage": "https://www.drupal.org/user/172527" + }, + { + "name": "borisson_", + "homepage": "https://www.drupal.org/user/2393360" + }, + { + "name": "gábor hojtsy", + "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "jose reyero", + "homepage": "https://www.drupal.org/user/4299" + }, + { + "name": "vijaycs85", + "homepage": "https://www.drupal.org/user/93488" + }, + { + "name": "wim leers", + "homepage": "https://www.drupal.org/user/99777" + } + ], + "description": "Provides a configuration data and structure inspector tool", + "homepage": "https://drupal.org/project/config_inspector", + "support": { + "source": "https://cgit.drupalcode.org/config_inspector", + "issues": "https://drupal.org/project/issues/config_inspector", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + }, + { + "name": "drupal/core", + "version": "11.2.4", + "source": { + "type": "git", + "url": "https://github.com/drupal/core.git", + "reference": "6d684b0407541c61df4e3bd47b33de475d9f0418" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core/zipball/6d684b0407541c61df4e3bd47b33de475d9f0418", + "reference": "6d684b0407541c61df4e3bd47b33de475d9f0418", + "shasum": "" + }, + "require": { + "asm89/stack-cors": "^2.3", + "composer-runtime-api": "^2.1", + "composer/semver": "^3.3", + "doctrine/annotations": "^2.0", + "doctrine/lexer": "^2.0", + "egulias/email-validator": "^3.2.1|^4.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": "*", + "ext-zlib": "*", + "guzzlehttp/guzzle": "^7.5", + "guzzlehttp/psr7": "^2.4.5", + "masterminds/html5": "^2.7", + "mck89/peast": "^1.14", + "pear/archive_tar": "^1.4.14", + "php": ">=8.3.0", + "php-tuf/composer-stager": "^2.0", + "psr/log": "^3.0", + "revolt/event-loop": "^1.0", + "sebastian/diff": "^4 || ^5 || ^6 || ^7", + "symfony/console": "^7.3", + "symfony/dependency-injection": "^7.3", + "symfony/event-dispatcher": "^7.3", + "symfony/filesystem": "^7.3", + "symfony/finder": "^7.3", + "symfony/http-foundation": "^7.3", + "symfony/http-kernel": "^7.3", + "symfony/mailer": "^7.3", + "symfony/mime": "^7.3", + "symfony/polyfill-iconv": "^1.32", + "symfony/polyfill-php84": "^1.32", + "symfony/process": "^7.3", + "symfony/psr-http-message-bridge": "^7.3", + "symfony/routing": "^7.3", + "symfony/serializer": "^7.3", + "symfony/validator": "^7.3", + "symfony/yaml": "^7.3", + "twig/twig": "^3.21.0" + }, + "conflict": { + "dealerdirect/phpcodesniffer-composer-installer": "1.1.0", + "drupal/automatic_updates": "<4", + "drupal/project_browser": "<2.1", + "drush/drush": "<12.4.3" + }, + "replace": { + "drupal/core-annotation": "self.version", + "drupal/core-assertion": "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" + }, + "suggest": { + "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format." + }, + "type": "drupal-core", + "extra": { + "drupal-scaffold": { + "file-mapping": { + "[web-root]/.htaccess": "assets/scaffold/files/htaccess", + "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", + "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", + "[web-root]/update.php": "assets/scaffold/files/update.php", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", + "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", + "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", + "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[project-root]/recipes/README.txt": "assets/scaffold/files/recipes.README.txt", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", + "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", + "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", + "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php" + } + } + }, + "autoload": { + "files": [ + "includes/bootstrap.inc" + ], + "psr-4": { + "Drupal\\Core\\": "lib/Drupal/Core", + "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/StatementInterface.php", + "lib/Drupal/Core/DependencyInjection/Container.php", + "lib/Drupal/Core/DrupalKernel.php", + "lib/Drupal/Core/DrupalKernelInterface.php", + "lib/Drupal/Core/Installer/InstallerRedirectTrait.php", + "lib/Drupal/Core/Site/Settings.php", + "lib/Drupal/Component/Datetime/Time.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Drupal is an open source content management platform powering millions of websites and applications.", + "support": { + "source": "https://github.com/drupal/core/tree/11.2.4" + }, + "time": "2025-09-04T08:52:33+00:00" + }, + { + "name": "drupal/core-composer-scaffold", + "version": "11.2.4", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-composer-scaffold.git", + "reference": "891b4615c479e17245c81571c9be0156be4b03f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/891b4615c479e17245c81571c9be0156be4b03f8", + "reference": "891b4615c479e17245c81571c9be0156be4b03f8", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2", + "php": ">=7.3.0" + }, + "conflict": { + "drupal-composer/drupal-scaffold": "*" + }, + "require-dev": { + "composer/composer": "^1.8@stable" + }, + "type": "composer-plugin", + "extra": { + "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin", + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Drupal\\Composer\\Plugin\\Scaffold\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "A flexible Composer project scaffold builder.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ], + "support": { + "source": "https://github.com/drupal/core-composer-scaffold/tree/11.2.4" + }, + "time": "2025-05-05T16:18:58+00:00" + }, + { + "name": "drupal/core-project-message", + "version": "11.2.4", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-project-message.git", + "reference": "656efa00f296415ed6be2ff366ef67ae2725d7d6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-project-message/zipball/656efa00f296415ed6be2ff366ef67ae2725d7d6", + "reference": "656efa00f296415ed6be2ff366ef67ae2725d7d6", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2", + "php": ">=7.3.0" + }, + "type": "composer-plugin", + "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/11.2.4" + }, + "time": "2025-02-03T10:59:29+00:00" + }, + { + "name": "drupal/core-recipe-unpack", + "version": "11.2.4", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-recipe-unpack.git", + "reference": "fbdb482eb5e9d785e5840b3dbdfbcffd5af0e3e3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-recipe-unpack/zipball/fbdb482eb5e9d785e5840b3dbdfbcffd5af0e3e3", + "reference": "fbdb482eb5e9d785e5840b3dbdfbcffd5af0e3e3", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2", + "php": ">=8.3" + }, + "require-dev": { + "composer/composer": "^2.7" + }, + "type": "composer-plugin", + "extra": { + "class": "Drupal\\Composer\\Plugin\\RecipeUnpack\\Plugin" + }, + "autoload": { + "psr-4": { + "Drupal\\Composer\\Plugin\\RecipeUnpack\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "A Composer project unpacker for Drupal recipes.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ], + "support": { + "source": "https://github.com/drupal/core-recipe-unpack/tree/11.2.4" + }, + "time": "2025-07-22T05:40:47+00:00" + }, + { + "name": "drupal/core-recommended", + "version": "11.2.4", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-recommended.git", + "reference": "53d63022e07ded81964d295c50ffd76279869b07" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/53d63022e07ded81964d295c50ffd76279869b07", + "reference": "53d63022e07ded81964d295c50ffd76279869b07", + "shasum": "" + }, + "require": { + "asm89/stack-cors": "~v2.3.0", + "composer/semver": "~3.4.3", + "doctrine/annotations": "~2.0.2", + "doctrine/deprecations": "~1.1.5", + "doctrine/lexer": "~2.1.1", + "drupal/core": "11.2.4", + "egulias/email-validator": "~4.0.4", + "guzzlehttp/guzzle": "~7.9.3", + "guzzlehttp/promises": "~2.2.0", + "guzzlehttp/psr7": "~2.7.1", + "masterminds/html5": "~2.9.0", + "mck89/peast": "~v1.17.0", + "pear/archive_tar": "~1.5.0", + "pear/console_getopt": "~v1.4.3", + "pear/pear-core-minimal": "~v1.10.16", + "pear/pear_exception": "~v1.0.2", + "php-tuf/composer-stager": "~v2.0.1", + "psr/cache": "~3.0.0", + "psr/container": "~2.0.2", + "psr/event-dispatcher": "~1.0.0", + "psr/http-client": "~1.0.3", + "psr/http-factory": "~1.1.0", + "psr/log": "~3.0.2", + "ralouphie/getallheaders": "~3.0.3", + "revolt/event-loop": "~v1.0.7", + "symfony/console": "~v7.3.0", + "symfony/dependency-injection": "~v7.3.0", + "symfony/deprecation-contracts": "~v3.6.0", + "symfony/error-handler": "~v7.3.0", + "symfony/event-dispatcher": "~v7.3.0", + "symfony/event-dispatcher-contracts": "~v3.6.0", + "symfony/filesystem": "~v7.3.0", + "symfony/finder": "~v7.3.0", + "symfony/http-foundation": "~v7.3.0", + "symfony/http-kernel": "~v7.3.0", + "symfony/mailer": "~v7.3.0", + "symfony/mime": "~v7.3.0", + "symfony/polyfill-ctype": "~v1.32.0", + "symfony/polyfill-iconv": "~v1.32.0", + "symfony/polyfill-intl-grapheme": "~v1.32.0", + "symfony/polyfill-intl-idn": "~v1.32.0", + "symfony/polyfill-intl-normalizer": "~v1.32.0", + "symfony/polyfill-mbstring": "~v1.32.0", + "symfony/polyfill-php84": "~v1.32.0", + "symfony/process": "~v7.3.0", + "symfony/psr-http-message-bridge": "~v7.3.0", + "symfony/routing": "~v7.3.0", + "symfony/serializer": "~v7.3.0", + "symfony/service-contracts": "~v3.6.0", + "symfony/string": "~v7.3.0", + "symfony/translation-contracts": "~v3.6.0", + "symfony/validator": "~v7.3.0", + "symfony/var-dumper": "~v7.3.0", + "symfony/var-exporter": "~v7.3.0", + "symfony/yaml": "~v7.3.0", + "twig/twig": "~v3.21.1" + }, + "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/11.2.4" + }, + "time": "2025-09-04T08:52:33+00:00" + }, + { + "name": "drupal/core-vendor-hardening", + "version": "11.2.4", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-vendor-hardening.git", + "reference": "8526ec56f55995037b79aae19aeb7a503ca98145" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/8526ec56f55995037b79aae19aeb7a503ca98145", + "reference": "8526ec56f55995037b79aae19aeb7a503ca98145", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2", + "php": ">=7.3.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Drupal\\Composer\\Plugin\\VendorHardening\\VendorHardeningPlugin" + }, + "autoload": { + "psr-4": { + "Drupal\\Composer\\Plugin\\VendorHardening\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Hardens the vendor directory for when it's in the docroot.", + "homepage": "https://www.drupal.org/project/drupal", + "keywords": [ + "drupal" + ], + "support": { + "source": "https://github.com/drupal/core-vendor-hardening/tree/11.2.4" + }, + "time": "2025-08-12T14:01:32+00:00" + }, + { + "name": "drupal/crop", + "version": "2.4.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/crop.git", + "reference": "8.x-2.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "be11fad0abf1d53544d35cb4ca6cedd8e91d2542" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.4", + "datestamp": "1720455738", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Drupal Media Team", + "homepage": "https://www.drupal.org/user/3260690" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "slashrsm", + "homepage": "https://www.drupal.org/user/744628" + }, + { + "name": "woprrr", + "homepage": "https://www.drupal.org/user/858604" + } + ], + "description": "Provides storage and API for image crops.", + "homepage": "https://www.drupal.org/project/crop", + "support": { + "source": "https://git.drupalcode.org/project/crop", + "issues": "https://www.drupal.org/project/issues/crop" + } + }, + { + "name": "drupal/ctools", + "version": "4.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/ctools.git", + "reference": "4.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip", + "reference": "4.1.0", + "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874" + }, + "require": { + "drupal/core": "^9.5 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.1.0", + "datestamp": "1718144949", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-8.x-3.x": "3.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Kris Vanderwater (EclipseGc)", + "homepage": "https://www.drupal.org/u/eclipsegc", + "role": "Maintainer" + }, + { + "name": "Jakob Perry (japerry)", + "homepage": "https://www.drupal.org/u/japerry", + "role": "Maintainer" + }, + { + "name": "Tim Plunkett (tim.plunkett)", + "homepage": "https://www.drupal.org/u/timplunkett", + "role": "Maintainer" + }, + { + "name": "James Gilliland (neclimdul)", + "homepage": "https://www.drupal.org/u/neclimdul", + "role": "Maintainer" + }, + { + "name": "Daniel Wehner (dawehner)", + "homepage": "https://www.drupal.org/u/dawehner", + "role": "Maintainer" + }, + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, + { + "name": "merlinofchaos", + "homepage": "https://www.drupal.org/user/26979" + }, + { + "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": "Provides a number of utility and helper APIs for Drupal developers and site builders.", + "homepage": "https://www.drupal.org/project/ctools", + "support": { + "source": "https://git.drupalcode.org/project/ctools", + "issues": "https://www.drupal.org/project/issues/ctools" + } + }, + { + "name": "drupal/dashboard", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/dashboard.git", + "reference": "2.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/dashboard-2.1.0.zip", + "reference": "2.1.0", + "shasum": "5ba992bcf57db7df8f1e78463c410c974eee0999" + }, + "require": { + "drupal/core": "^11.2" + }, + "require-dev": { + "drupal/coffee": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.0", + "datestamp": "1756601749", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "See contributors", + "homepage": "https://www.drupal.org/node/35094/maintainers" + }, + { + "name": "Anonymous", + "homepage": "https://www.drupal.org/user/0" + }, + { + "name": "chrismiller627", + "homepage": "https://www.drupal.org/user/274027" + }, + { + "name": "ckrina", + "homepage": "https://www.drupal.org/user/1206650" + }, + { + "name": "dmitrig01", + "homepage": "https://www.drupal.org/user/47566" + }, + { + "name": "jtsnow", + "homepage": "https://www.drupal.org/user/171614" + }, + { + "name": "mtift", + "homepage": "https://www.drupal.org/user/751908" + }, + { + "name": "penyaskito", + "homepage": "https://www.drupal.org/user/959536" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "pingers", + "homepage": "https://www.drupal.org/user/56282" + }, + { + "name": "plopesc", + "homepage": "https://www.drupal.org/user/282415" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + } + ], + "description": "Provides customizable dashboards.", + "homepage": "https://www.drupal.org/project/dashboard", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/dashboard", + "issues": "https://www.drupal.org/project/issues/dashboard" + } + }, + { + "name": "drupal/date_augmenter", + "version": "1.1.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/date_augmenter.git", + "reference": "1.1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/date_augmenter-1.1.2.zip", + "reference": "1.1.2", + "shasum": "eabd119561d8679b0e86a71ada932d7e7efbc1b6" + }, + "require": { + "drupal/core": "^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.2", + "datestamp": "1750424025", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" + } + ], + "description": "Provides a plugin class for augmenting the display of dates and times.", + "homepage": "https://www.drupal.org/project/date_augmenter", + "support": { + "source": "https://git.drupalcode.org/project/date_augmenter" + } + }, + { + "name": "drupal/default_content", + "version": "2.0.0-alpha3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/default_content.git", + "reference": "2.0.0-alpha3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha3.zip", + "reference": "2.0.0-alpha3", + "shasum": "fdd90c70bd91896835f6ba5ec42c260c1a144a2b" + }, + "require": { + "drupal/core": "^9.1 || ^10 || ^11" + }, + "require-dev": { + "drupal/hal": "^1 || ^2", + "drupal/paragraphs": "^1" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0-alpha3", + "datestamp": "1724492420", + "security-coverage": { + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10 || ^11 || ^12" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "andypost", + "homepage": "https://www.drupal.org/user/118908" + }, + { + "name": "benjy", + "homepage": "https://www.drupal.org/user/1852732" + }, + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "dawehner", + "homepage": "https://www.drupal.org/user/99340" + }, + { + "name": "jibran", + "homepage": "https://www.drupal.org/user/1198144" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" + }, + { + "name": "sam152", + "homepage": "https://www.drupal.org/user/1485048" + } + ], + "description": "Imports default content when a module is enabled", + "homepage": "https://www.drupal.org/project/default_content", + "support": { + "source": "https://git.drupalcode.org/project/default_content" + } + }, + { + "name": "drupal/drupal_cms_accessibility_tools", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_accessibility_tools.git", + "reference": "2a84b30877a62a346033cf3b223e3befb2dd88ed" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_accessibility_tools/repository/archive.zip?sha=2a84b30877a62a346033cf3b223e3befb2dd88ed", + "reference": "2a84b30877a62a346033cf3b223e3befb2dd88ed", + "shasum": "" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/drupal_cms_page": "^1.2", + "drupal/editoria11y": "^2.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds automated checks to help ensure content conforms to web accessibility guidelines.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_accessibility_tools/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_admin_ui", + "version": "1.2.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_admin_ui.git", + "reference": "678669fb57ffe335060a1a5111be5395b7674b30" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_admin_ui/repository/archive.zip?sha=678669fb57ffe335060a1a5111be5395b7674b30", + "reference": "678669fb57ffe335060a1a5111be5395b7674b30", + "shasum": "" + }, + "require": { + "drupal/coffee": "^2", + "drupal/core": "^11.2", + "drupal/dashboard": "^2", + "drupal/gin": "^5", + "drupal/sam": "^1.2", + "drupal/tagify": "^1.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Sets up a nice administrative theme and navigation.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_admin_ui/-/tree/1.2.6" + }, + "time": "2025-09-29T13:06:27+00:00" + }, + { + "name": "drupal/drupal_cms_ai", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_ai.git", + "reference": "eba5e0e2bfc75c937f698fa7f7a4e0c466584310" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_ai/repository/archive.zip?sha=eba5e0e2bfc75c937f698fa7f7a4e0c466584310", + "reference": "eba5e0e2bfc75c937f698fa7f7a4e0c466584310", + "shasum": "" + }, + "require": { + "drupal/ai": "^1.1", + "drupal/ai_agents": "^1.1", + "drupal/ai_image_alt_text": "^1", + "drupal/ai_provider_anthropic": "^1.1", + "drupal/ai_provider_openai": "^1.1", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_privacy_basic": "^1.2", + "league/commonmark": "^2.4" + }, + "conflict": { + "drupal/project_browser": "<2-alpha7" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds integration with AI services, such as alt text generation and a chat bot to assist with site building. Requires an API key from Open AI or Anthropic.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_ai/-/tree/1.2.3" + }, + "time": "2025-07-09T13:09:00+00:00" + }, + { + "name": "drupal/drupal_cms_anti_spam", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_anti_spam.git", + "reference": "4905af18b215c5ef2a01ae2b0cace82800017d8f" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_anti_spam/repository/archive.zip?sha=4905af18b215c5ef2a01ae2b0cace82800017d8f", + "reference": "4905af18b215c5ef2a01ae2b0cace82800017d8f", + "shasum": "" + }, + "require": { + "drupal/captcha": "^2.0.7", + "drupal/core": "^10.4 || ^11", + "drupal/friendly_captcha_challenge": "^0.9", + "drupal/friendlycaptcha": "^1.1", + "drupal/honeypot": "^2.1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Sets up anti-spam and anti-abuse functionality.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_anti_spam/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_authentication", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_authentication.git", + "reference": "33ecef76d93287e01a9ace1e3f72ceecfa21b82c" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_authentication/repository/archive.zip?sha=33ecef76d93287e01a9ace1e3f72ceecfa21b82c", + "reference": "33ecef76d93287e01a9ace1e3f72ceecfa21b82c", + "shasum": "" + }, + "require": { + "drupal/bpmn_io": "^2.0.6", + "drupal/core": "^10.3 || ^11", + "drupal/eca": "^2.1.4", + "drupal/login_emailusername": "^3", + "drupal/token": "^1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Sets up a site with useful authentication features.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_authentication/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_blog", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_blog.git", + "reference": "f63648047d9ffc875becf83687c158b6f56056d6" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_blog/repository/archive.zip?sha=f63648047d9ffc875becf83687c158b6f56056d6", + "reference": "f63648047d9ffc875becf83687c158b6f56056d6", + "shasum": "" + }, + "require": { + "drupal/add_content_by_bundle": "^1.2.2", + "drupal/better_exposed_filters": "^7", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2", + "drupal/selective_better_exposed_filters": "^3" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a blog post content type and listing page.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_blog/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_case_study", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_case_study.git", + "reference": "e80e2a69c2fa9adbcb825de687035c9af4af5ac5" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_case_study/repository/archive.zip?sha=e80e2a69c2fa9adbcb825de687035c9af4af5ac5", + "reference": "e80e2a69c2fa9adbcb825de687035c9af4af5ac5", + "shasum": "" + }, + "require": { + "drupal/add_content_by_bundle": "^1.2.2", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a case study content type and listing page.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_case_study/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_content_type_base", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_content_type_base.git", + "reference": "b76ebda9c431a2957df7b26ae93f3dbe308d0664" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_content_type_base/repository/archive.zip?sha=b76ebda9c431a2957df7b26ae93f3dbe308d0664", + "reference": "b76ebda9c431a2957df7b26ae93f3dbe308d0664", + "shasum": "" + }, + "require": { + "drupal/autosave_form": "^1.10", + "drupal/bpmn_io": "^2.0.6", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_image": "^1.2", + "drupal/eca": "^2.1.4", + "drupal/linkit": "^7", + "drupal/pathauto": "^1.13", + "drupal/scheduler": "^2.2", + "drupal/scheduler_content_moderation_integration": "^3.0.4", + "drupal/tagify": "^1.2", + "drupal/token": "^1", + "drupal/trash": "^3.0.13" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Provides basic tools for creating content.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_content_type_base/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_events", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_events.git", + "reference": "f639b5a06f571fc9fbabb9d2cecf0e2fbbd80fb0" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_events/repository/archive.zip?sha=f639b5a06f571fc9fbabb9d2cecf0e2fbbd80fb0", + "reference": "f639b5a06f571fc9fbabb9d2cecf0e2fbbd80fb0", + "shasum": "" + }, + "require": { + "drupal/add_content_by_bundle": "^1.2.2", + "drupal/address": "^2", + "drupal/addtocal_augment": "^1.2.3", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2", + "drupal/drupal_cms_privacy_basic": "^1.2", + "drupal/geocoder": "^4.10", + "drupal/geofield": "^1.47", + "drupal/leaflet": "^10.3.4", + "drupal/smart_date": "^4.2.1", + "geocoder-php/nominatim-provider": "^5.7" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds an event content type and listing page.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_events/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_forms", + "version": "1.2.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_forms.git", + "reference": "62adf2008bbaeacd4fa6dfea89aaf538e04fa23e" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_forms/repository/archive.zip?sha=62adf2008bbaeacd4fa6dfea89aaf538e04fa23e", + "reference": "62adf2008bbaeacd4fa6dfea89aaf538e04fa23e", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_anti_spam": "^1.2", + "drupal/drupal_cms_page": "^1.2", + "drupal/webform": "^6.3-beta1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a simple contact form, and tools for building forms.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_forms/-/tree/1.2.6" + }, + "time": "2025-09-29T13:06:27+00:00" + }, + { + "name": "drupal/drupal_cms_google_analytics", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_google_analytics.git", + "reference": "2c06066875a658dece01ea75bd57f5099db856bf" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_google_analytics/repository/archive.zip?sha=2c06066875a658dece01ea75bd57f5099db856bf", + "reference": "2c06066875a658dece01ea75bd57f5099db856bf", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_privacy_basic": "^1.2", + "drupal/google_tag": "^2.0.7" + }, + "conflict": { + "drupal/project_browser": "<2-alpha7" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "description": "Adds tracking of website traffic using Google Analytics and Google Tag Manager. Requires a Google Tag Manager ID.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_google_analytics/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_helper", + "version": "1.2.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_helper.git", + "reference": "1.2.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drupal_cms_helper-1.2.6.zip", + "reference": "1.2.6", + "shasum": "ac76cf15daffbcc2c25f52daa87b7429bf1c821f" + }, + "require": { + "drupal/core": "^11.2.4" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.2.6", + "datestamp": "1759167506", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "drupal cms bot", + "homepage": "https://www.drupal.org/user/3833773" + } + ], + "description": "Provides functionality for Drupal CMS that is not yet in Drupal core or dependencies.", + "homepage": "https://www.drupal.org/project/drupal_cms_helper", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_helper" + } + }, + { + "name": "drupal/drupal_cms_image", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_image.git", + "reference": "c7acee811e53fb0d85ed88337ab6a4d35d7930d1" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_image/repository/archive.zip?sha=c7acee811e53fb0d85ed88337ab6a4d35d7930d1", + "reference": "c7acee811e53fb0d85ed88337ab6a4d35d7930d1", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/focal_point": "^2", + "drupal/svg_image": "^3.1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Sets up base image configuration including responsive image styles, view modes, focal point-based cropping and SVG images.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_image/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_news", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_news.git", + "reference": "854601bded054cfee7628ce91c872e2a6a58d7c2" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_news/repository/archive.zip?sha=854601bded054cfee7628ce91c872e2a6a58d7c2", + "reference": "854601bded054cfee7628ce91c872e2a6a58d7c2", + "shasum": "" + }, + "require": { + "drupal/add_content_by_bundle": "^1.2.2", + "drupal/better_exposed_filters": "^7", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2", + "drupal/selective_better_exposed_filters": "^3" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a news content type and listing page.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_news/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_olivero", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_olivero.git", + "reference": "06e203337755061e31082ffdb523c3aa05424ddc" + }, + "require": { + "drupal/core": "^11" + }, + "require-dev": { + "drupal/canvas": "@beta" + }, + "type": "drupal-theme", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "1.2.7+1-dev", + "datestamp": "1760626706", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "drupal cms bot", + "homepage": "https://www.drupal.org/user/3833773" + }, + { + "name": "pameeela", + "homepage": "https://www.drupal.org/user/1431110" + }, + { + "name": "penyaskito", + "homepage": "https://www.drupal.org/user/959536" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "thejimbirch", + "homepage": "https://www.drupal.org/user/2507260" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" + } + ], + "description": "A variant of the Olivero front-end theme, optimized for Drupal CMS.", + "homepage": "https://www.drupal.org/project/drupal_cms_olivero", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_olivero" + } + }, + { + "name": "drupal/drupal_cms_page", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_page.git", + "reference": "4d5184d404bdb79fb472073924cbb52ed394a988" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_page/repository/archive.zip?sha=4d5184d404bdb79fb472073924cbb52ed394a988", + "reference": "4d5184d404bdb79fb472073924cbb52ed394a988", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_content_type_base": "^1.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a content type for simple pages.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_page/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_person", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_person.git", + "reference": "44bfd4b6ad0159186ad7d1860de807e3f48c3e60" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_person/repository/archive.zip?sha=44bfd4b6ad0159186ad7d1860de807e3f48c3e60", + "reference": "44bfd4b6ad0159186ad7d1860de807e3f48c3e60", + "shasum": "" + }, + "require": { + "drupal/add_content_by_bundle": "^1.2.2", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a person profile content type.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_person/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_privacy_basic", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_privacy_basic.git", + "reference": "8f2ff3403edfba10420d1e41dff948e1e5e31af6" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_privacy_basic/repository/archive.zip?sha=8f2ff3403edfba10420d1e41dff948e1e5e31af6", + "reference": "8f2ff3403edfba10420d1e41dff948e1e5e31af6", + "shasum": "" + }, + "require": { + "drupal/bpmn_io": "^2.0.6", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2", + "drupal/eca": "^2.1.4", + "drupal/klaro": "^3", + "drupal/menu_link_attributes": "^1.5" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds basic privacy features such as consent management and remote content blocking.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_privacy_basic/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_project", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_project.git", + "reference": "43d63ff0549a8bdabc8f5748043bb928c3c4edbe" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_project/repository/archive.zip?sha=43d63ff0549a8bdabc8f5748043bb928c3c4edbe", + "reference": "43d63ff0549a8bdabc8f5748043bb928c3c4edbe", + "shasum": "" + }, + "require": { + "drupal/add_content_by_bundle": "^1.2.2", + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_page": "^1.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a project content type and listing page.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_project/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_remote_video", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_remote_video.git", + "reference": "3104e5d3203eea71e2a12b68e8a5c0b26236f787" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_remote_video/repository/archive.zip?sha=3104e5d3203eea71e2a12b68e8a5c0b26236f787", + "reference": "3104e5d3203eea71e2a12b68e8a5c0b26236f787", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_privacy_basic": "^1.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Configures display options for remote video.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_remote_video/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_search", + "version": "1.2.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_search.git", + "reference": "0d99e485fcf957d0b61f3bda9aff502b5327a1c4" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_search/repository/archive.zip?sha=0d99e485fcf957d0b61f3bda9aff502b5327a1c4", + "reference": "0d99e485fcf957d0b61f3bda9aff502b5327a1c4", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/drupal_cms_helper": "^1.2", + "drupal/search_api": "^1.39", + "drupal/search_api_autocomplete": "^1.9", + "drupal/search_api_exclude": "^2", + "drupal/simple_search_form": "^1.5" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds a search to help visitors find content.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_search/-/tree/1.2.6" + }, + "time": "2025-09-29T13:06:27+00:00" + }, + { + "name": "drupal/drupal_cms_seo_basic", + "version": "1.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_seo_basic.git", + "reference": "2990acbb8d94cd9e67e4928a9da354e56faa8626" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_seo_basic/repository/archive.zip?sha=2990acbb8d94cd9e67e4928a9da354e56faa8626", + "reference": "2990acbb8d94cd9e67e4928a9da354e56faa8626", + "shasum": "" + }, + "require": { + "drupal/core": "^10.4 || ^11", + "drupal/easy_breadcrumb": "^2.0.9", + "drupal/pathauto": "^1.13", + "drupal/redirect": "^1.10", + "drupal/token": "^1.15" + }, + "suggest": { + "drupal/drupal_cms_accessibility_tools": "Adds automated checks to help ensure content conforms to web accessibility guidelines.", + "drupal/drupal_cms_analytics": "Adds recipes for tracking website traffic.", + "drupal/drupal_cms_seo_tools": "Add additional SEO tools to help configure and manage meta tags, SEO analysis, sitemaps, with an SEO checklist and dashboard." + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Provides basic SEO best practices.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_seo_basic/-/tree/1.2.4" + }, + "time": "2025-09-04T10:06:53+00:00" + }, + { + "name": "drupal/drupal_cms_seo_tools", + "version": "1.2.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_seo_tools.git", + "reference": "4692e8e0e00a3bd50129358b540e568810f177d5" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_seo_tools/repository/archive.zip?sha=4692e8e0e00a3bd50129358b540e568810f177d5", + "reference": "4692e8e0e00a3bd50129358b540e568810f177d5", + "shasum": "" + }, + "require": { + "drupal/bpmn_io": "^2.0.6", + "drupal/core": "^10.4 || ^11", + "drupal/eca": "^2.1.4", + "drupal/field_group": "^3.6 || ^4", + "drupal/focal_point": "^2.1", + "drupal/metatag": "^2", + "drupal/robotstxt": "^1.6", + "drupal/seo_checklist": "^5.2.1", + "drupal/simple_sitemap": "^4.2.2", + "drupal/sitemap": "^2", + "drupal/token_or": "^2.2", + "drupal/yoast_seo": "^2.1" + }, + "suggest": { + "drupal/drupal_cms_accessibility_tools": "Adds automated checks to help ensure content conforms to web accessibility guidelines.", + "drupal/drupal_cms_analytics": "Adds recipes for tracking website traffic." + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Adds common search engine optimisation tools such as meta tags, XML sitemap, robots.txt management and more.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_seo_tools/-/tree/1.2.5" + }, + "time": "2025-09-09T08:41:31+00:00" + }, + { + "name": "drupal/drupal_cms_starter", + "version": "1.2.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drupal_cms_starter.git", + "reference": "1a26ac2b0f6eaf4dc7e3e32ef48d250cb8c15037" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fdrupal_cms_starter/repository/archive.zip?sha=1a26ac2b0f6eaf4dc7e3e32ef48d250cb8c15037", + "reference": "1a26ac2b0f6eaf4dc7e3e32ef48d250cb8c15037", + "shasum": "" + }, + "require": { + "drupal/automatic_updates": "^4", + "drupal/bpmn_io": "^2.0.6", + "drupal/core": "^11.2", + "drupal/dashboard": "^2", + "drupal/drupal_cms_admin_ui": "^1.2", + "drupal/drupal_cms_anti_spam": "^1.2", + "drupal/drupal_cms_authentication": "^1.2", + "drupal/drupal_cms_helper": "^1.2", + "drupal/drupal_cms_olivero": "^1.2.5", + "drupal/drupal_cms_page": "^1.2", + "drupal/drupal_cms_privacy_basic": "^1.2", + "drupal/drupal_cms_remote_video": "^1.2", + "drupal/drupal_cms_search": "^1.2", + "drupal/drupal_cms_seo_basic": "^1.2", + "drupal/easy_email_express": "^1.0.2", + "drupal/eca": "^2.1.4", + "drupal/project_browser": "^2.1-beta3", + "drupal/token": "^1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Applies the foundational Drupal CMS recipes.", + "support": { + "source": "https://git.drupalcode.org/project/drupal_cms_starter/-/tree/1.2.6" + }, + "time": "2025-09-29T13:06:27+00:00" + }, + { + "name": "drupal/easy_breadcrumb", + "version": "2.0.9", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_breadcrumb.git", + "reference": "2.0.9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.9.zip", + "reference": "2.0.9", + "shasum": "9e7c33e2ec0637d37d509776795a476f2f2d9bb8" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.9", + "datestamp": "1732752214", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Neslee Canil Pinto", + "homepage": "https://www.drupal.org/u/neslee-canil-pinto", + "role": "Maintainer" + }, + { + "name": "Greg Boggs", + "homepage": "https://www.drupal.org/u/greg-boggs", + "role": "Maintainer" + }, + { + "name": "diamondsea", + "homepage": "https://www.drupal.org/user/430714" + }, + { + "name": "greg boggs", + "homepage": "https://www.drupal.org/user/153069" + }, + { + "name": "hmartens", + "homepage": "https://www.drupal.org/user/622826" + }, + { + "name": "loopduplicate", + "homepage": "https://www.drupal.org/user/717290" + }, + { + "name": "neslee canil pinto", + "homepage": "https://www.drupal.org/user/3580850" + }, + { + "name": "nickdickinsonwilde", + "homepage": "https://www.drupal.org/user/3094661" + }, + { + "name": "rakesh.gectcr", + "homepage": "https://www.drupal.org/user/1177822" + }, + { + "name": "renatog", + "homepage": "https://www.drupal.org/user/3326031" + }, + { + "name": "sonemonu", + "homepage": "https://www.drupal.org/user/1667988" + }, + { + "name": "spuky", + "homepage": "https://www.drupal.org/user/209353" + }, + { + "name": "tatarbj", + "homepage": "https://www.drupal.org/user/649590" + } + ], + "description": "Adds configuration to the system breadcrumbs.", + "homepage": "https://www.drupal.org/project/easy_breadcrumb", + "support": { + "source": "https://git.drupalcode.org/project/easy_breadcrumb", + "issues": "https://www.drupal.org/project/issues/easy_breadcrumb" + } + }, + { + "name": "drupal/easy_email", + "version": "3.0.6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email.git", + "reference": "3.0.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/easy_email-3.0.6.zip", + "reference": "3.0.6", + "shasum": "ff6ecbe214d727487e9f604b834f98d131287599" + }, + "require": { + "drupal/core": "^10.1 || ^11", + "drupal/jquery_ui_resizable": "^2.0", + "drupal/token": "^1.0" + }, + "require-dev": { + "drupal/commerce": "^2.0", + "drupal/commerce_order": "*", + "drupal/commerce_price": "*", + "drupal/mailsystem": "^4.0", + "drupal/symfony_mailer_lite": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.6", + "datestamp": "1757509792", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" + }, + { + "name": "zengenuity", + "homepage": "https://www.drupal.org/user/326925" + } + ], + "description": "Easy Email is an HTML email system for Drupal, designed to be as simple as possible to configure, with a robust set of features.", + "homepage": "https://www.drupal.org/project/easy_email", + "support": { + "source": "https://git.drupalcode.org/project/easy_email" + } + }, + { + "name": "drupal/easy_email_express", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email_express.git", + "reference": "aff24f73fe8b2e04cbb524a7887c035385ba8662" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Feasy_email_express/repository/archive.zip?sha=aff24f73fe8b2e04cbb524a7887c035385ba8662", + "reference": "aff24f73fe8b2e04cbb524a7887c035385ba8662", + "shasum": "" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/easy_email_standard": "^1.0.2", + "drupal/easy_email_types_core": "^1.0.3", + "drupal/easy_email_types_default": "^1.0.1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "description": "Easy Email configuration that replaces all core emails with HTML formatted emails.", + "homepage": "https://www.drupal.org/project/easy_email_express", + "keywords": [ + "drupal" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/easy_email_express", + "source": "https://git.drupalcode.org/project/easy_email_express" + }, + "time": "2025-06-16T14:18:11+00:00" + }, + { + "name": "drupal/easy_email_standard", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email_standard.git", + "reference": "e252ab7285864d7e3d63ee3e78d5c7a518f00a17" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Feasy_email_standard/repository/archive.zip?sha=e252ab7285864d7e3d63ee3e78d5c7a518f00a17", + "reference": "e252ab7285864d7e3d63ee3e78d5c7a518f00a17", + "shasum": "" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/easy_email": "^3.0.2", + "drupal/easy_email_theme": "^1", + "drupal/mailsystem": "^4", + "drupal/symfony_mailer_lite": "^2.0.1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "description": "Easy Email module and theme for sending HTML emails from Drupal.", + "homepage": "https://www.drupal.org/project/easy_email_standard", + "keywords": [ + "drupal" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/easy_email_standard", + "source": "https://git.drupalcode.org/project/easy_email_standard" + }, + "time": "2025-06-16T14:15:30+00:00" + }, + { + "name": "drupal/easy_email_text_format", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email_text_format.git", + "reference": "568b1d97a91c4aab6aa2e6a3936f280cc49f8385" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Feasy_email_text_format/repository/archive.zip?sha=568b1d97a91c4aab6aa2e6a3936f280cc49f8385", + "reference": "568b1d97a91c4aab6aa2e6a3936f280cc49f8385", + "shasum": "" + }, + "require": { + "drupal/core": "^10.3 || ^11" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "description": "Text format and editor config for editing HTML body of Easy Email templates.", + "homepage": "https://www.drupal.org/project/easy_email_text_format", + "keywords": [ + "drupal" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/easy_email_text_format", + "source": "https://git.drupalcode.org/project/easy_email_text_format" + }, + "time": "2025-06-16T14:07:18+00:00" + }, + { + "name": "drupal/easy_email_theme", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email_theme.git", + "reference": "1.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/easy_email_theme-1.1.0.zip", + "reference": "1.1.0", + "shasum": "14270a75753e3c228a2a281b266b7e62c270b4f0" + }, + "require": { + "drupal/core": "^10.2 || ^11" + }, + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "1.1.0", + "datestamp": "1757509759", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "zengenuity", + "homepage": "https://www.drupal.org/user/326925" + } + ], + "description": "A theme for sending HTML emails", + "homepage": "https://www.drupal.org/project/easy_email_theme", + "support": { + "source": "https://git.drupalcode.org/project/easy_email_theme" + } + }, + { + "name": "drupal/easy_email_types_core", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email_types_core.git", + "reference": "d8e41ba370031d8978e4dc30efaed9d91be1a75c" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Feasy_email_types_core/repository/archive.zip?sha=d8e41ba370031d8978e4dc30efaed9d91be1a75c", + "reference": "d8e41ba370031d8978e4dc30efaed9d91be1a75c", + "shasum": "" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/easy_email": "^3.0.2", + "drupal/easy_email_text_format": "^1" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "description": "Easy Email templates that replicate and override the content of emails sent by Drupal core with HTML-formatted versions.", + "homepage": "https://www.drupal.org/project/easy_email_types_core", + "keywords": [ + "drupal" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/easy_email_types_core", + "source": "https://git.drupalcode.org/project/easy_email_types_core" + }, + "time": "2025-06-16T14:13:31+00:00" + }, + { + "name": "drupal/easy_email_types_default", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/easy_email_types_default.git", + "reference": "7f981984cd1d1d9e6eddf4a914210d7ae3d490e2" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Feasy_email_types_default/repository/archive.zip?sha=7f981984cd1d1d9e6eddf4a914210d7ae3d490e2", + "reference": "7f981984cd1d1d9e6eddf4a914210d7ae3d490e2", + "shasum": "" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/easy_email": "^3.0.2", + "drupal/easy_email_text_format": "^1.0.2" + }, + "type": "drupal-recipe", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0+" + ], + "description": "A default Easy Email template configured to override all emails sent from the site.", + "homepage": "https://www.drupal.org/project/easy_email_types_default", + "keywords": [ + "drupal" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/easy_email_types_default", + "source": "https://git.drupalcode.org/project/easy_email_types_default" + }, + "time": "2025-06-16T14:10:36+00:00" + }, + { + "name": "drupal/eca", + "version": "2.1.14", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/eca.git", + "reference": "2.1.14" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/eca-2.1.14.zip", + "reference": "2.1.14", + "shasum": "0cbf3a1e09d6fd4c9a68e2ca5f680d781b374d5a" + }, + "require": { + "dragonmantank/cron-expression": "^3.1", + "drupal/core": "^10.3||^11", + "ext-dom": "*", + "ext-json": "*", + "mtownsend/xml-to-array": "^2.0", + "php": ">=8.1" + }, + "require-dev": { + "drupal/ai": "^1.2", + "drupal/ai_agents": "^1.2", + "drupal/eca_ui": "*", + "drupal/entity_reference_revisions": "^1.12", + "drupal/inline_entity_form": "^3.0", + "drupal/paragraphs": "^1.18", + "drupal/project_browser": "^2.0", + "drupal/token": "^1.15", + "drupal/webform": "^6.3" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.14", + "datestamp": "1758633835", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "boromino", + "homepage": "https://www.drupal.org/user/859722" + }, + { + "name": "danielspeicher", + "homepage": "https://www.drupal.org/user/3621778" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "Event, Conditions, Actions - powerful, versatile, and user-friendly rules engine for Drupal", + "homepage": "https://www.drupal.org/project/eca", + "support": { + "source": "https://drupal.org/project/eca", + "issues": "https://drupal.org/project/issues/eca" + } + }, + { + "name": "drupal/eca_modeller_bpmn", + "version": "2.1.14", + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/eca": "^2", + "drupal/eca_ui": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "2.1.14", + "datestamp": "1758633835", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "boromino", + "homepage": "https://www.drupal.org/user/859722" + }, + { + "name": "danielspeicher", + "homepage": "https://www.drupal.org/user/3621778" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "Common functionality for all BPMN based modeller implementations.", + "homepage": "https://www.drupal.org/project/eca", + "support": { + "source": "https://git.drupalcode.org/project/eca" + } + }, + { + "name": "drupal/eca_ui", + "version": "3.0.4", + "require": { + "drupal/core": "^11.2", + "drupal/eca": "*", + "drupal/modeler_api": "*" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "3.0.4", + "datestamp": "1758633703", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "boromino", + "homepage": "https://www.drupal.org/user/859722" + }, + { + "name": "danielspeicher", + "homepage": "https://www.drupal.org/user/3621778" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "Provides a user interface for managing ECA models.", + "homepage": "https://www.drupal.org/project/eca", + "support": { + "source": "https://git.drupalcode.org/project/eca" + } + }, + { + "name": "drupal/editoria11y", + "version": "2.2.16", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/editoria11y.git", + "reference": "2.2.16" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/editoria11y-2.2.16.zip", + "reference": "2.2.16", + "shasum": "4bc5e0d7156d38cf42ac141f805740151ae5979e" + }, + "require": { + "drupal/core": "^9 || ^10 || ^11" + }, + "conflict": { + "drupal/csp": "<1.24" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.2.16", + "datestamp": "1759158377", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "John Jameson", + "homepage": "https://www.drupal.org/u/itmaybejj", + "role": "Maintainer" + }, + { + "name": "Brian Osborne", + "homepage": "https://www.drupal.org/u/bkosborne", + "role": "Maintainer" + }, + { + "name": "Jason Partyka", + "homepage": "https://www.drupal.org/u/partyka", + "role": "Maintainer" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/3187132/committers", + "role": "contributor" + } + ], + "description": "Editoria11y (\"editorial accessibility\") is a user-friendly accessibility checker.", + "homepage": "https://drupal.org/project/editoria11y", + "support": { + "source": "https://git.drupalcode.org/project/editoria11y", + "issues": "https://drupal.org/project/issues/editoria11y" + } + }, + { + "name": "drupal/entity_reference_revisions", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", + "reference": "8.x-1.12" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26" + }, + "require": { + "drupal/core": "^9 || ^10 || ^11" + }, + "require-dev": { + "drupal/diff": "^1 || ^2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.12", + "datestamp": "1722804497", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10 || ^11" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Frans", + "homepage": "https://www.drupal.org/user/514222" + }, + { + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + } + ], + "description": "Entity Reference Revisions", + "homepage": "https://www.drupal.org/project/entity_reference_revisions", + "support": { + "source": "https://git.drupalcode.org/project/entity_reference_revisions" + } + }, + { + "name": "drupal/environment_indicator", + "version": "4.0.25", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/environment_indicator.git", + "reference": "4.0.25" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.25.zip", + "reference": "4.0.25", + "shasum": "1bb58f759644efea79a44de2af5986eee9c1966e" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11" + }, + "require-dev": { + "drupal/gin": "^4.0", + "drupal/gin_toolbar": "^2.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.0.25", + "datestamp": "1753296518", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Tom Kirkpatrick (mrfelton)", + "homepage": "https://www.drupal.org/u/mrfelton", + "role": "Original author" + }, + { + "name": "Mateu Aguiló Bosch (e0ipso)", + "homepage": "https://www.drupal.org/u/e0ipso", + "email": "mateu@mateuaguilo.com", + "role": "Maintainer" + }, + { + "name": "Ignacio Sánchez (isholgueras)", + "homepage": "https://www.drupal.org/u/isholgueras", + "email": "nacho@isholgueras.com", + "role": "Co-maintainer" + }, + { + "name": "Chris Green (trackleft2)", + "homepage": "https://www.drupal.org/u/trackleft2", + "role": "Co-maintainer" + }, + { + "name": "trackleft2", + "homepage": "https://www.drupal.org/user/2860655" + } + ], + "description": "Environment Indicator adds some visual cues to indicate which copy of the site are you interacting with", + "homepage": "https://www.drupal.org/project/environment_indicator", + "support": { + "source": "https://git.drupal.org/project/environment_indicator.git", + "issues": "https://www.drupal.org/project/issues/environment_indicator" + } + }, + { + "name": "drupal/field_group", + "version": "4.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/field_group.git", + "reference": "4.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/field_group-4.0.0.zip", + "reference": "4.0.0", + "shasum": "d3ff81d8a64b6ac392989b668cfa417be5101642" + }, + "require": { + "drupal/core": "^10.3 || ^11" + }, + "require-dev": { + "drupal/jquery_ui_accordion": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.0.0", + "datestamp": "1745478894", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "anybody", + "homepage": "https://www.drupal.org/user/291091" + }, + { + "name": "grevil", + "homepage": "https://www.drupal.org/user/3668491" + }, + { + "name": "hydra", + "homepage": "https://www.drupal.org/user/647364" + }, + { + "name": "joevagyok", + "homepage": "https://www.drupal.org/user/2876343" + }, + { + "name": "jyve", + "homepage": "https://www.drupal.org/user/591438" + }, + { + "name": "nils.destoop", + "homepage": "https://www.drupal.org/user/361625" + }, + { + "name": "Stalski", + "homepage": "https://www.drupal.org/user/322618" + }, + { + "name": "swentel", + "homepage": "https://www.drupal.org/user/107403" + } + ], + "description": "Provides the field_group module.", + "homepage": "https://www.drupal.org/project/field_group", + "support": { + "source": "https://git.drupalcode.org/project/field_group", + "issues": "https://www.drupal.org/project/issues/field_group" + } + }, + { + "name": "drupal/focal_point", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/focal_point.git", + "reference": "2.1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/focal_point-2.1.2.zip", + "reference": "2.1.2", + "shasum": "5f8ffadd37748506c8f00314b1d45c947eb27cf7" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11", + "drupal/crop": "^2.3" + }, + "require-dev": { + "drupal/crop": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.2", + "datestamp": "1731556344", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Alexander Ross (bleen)", + "homepage": "https://www.drupal.org/u/bleen", + "role": "Maintainer" + }, + { + "name": "rajeshreeputra", + "homepage": "https://www.drupal.org/user/3418561" + } + ], + "description": "Focal Point allows content creators to mark the most important part of an image for easier cropping.", + "homepage": "https://drupal.org/project/focal_point", + "support": { + "source": "https://cgit.drupalcode.org/focal_point", + "issues": "https://drupal.org/project/issues/focal_point", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + }, + { + "name": "drupal/friendly_captcha_challenge", + "version": "0.9.18", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/friendly_captcha_challenge.git", + "reference": "4c2f561e5d99f7673b1f0e055d2340dea28990cf" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Ffriendly_captcha_challenge/repository/archive.zip?sha=4c2f561e5d99f7673b1f0e055d2340dea28990cf", + "reference": "4c2f561e5d99f7673b1f0e055d2340dea28990cf", + "shasum": "" + }, + "type": "drupal-library", + "extra": { + "installer-name": "friendly-challenge" + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "TBD", + "homepage": "https://github.com/FriendlyCaptcha/friendly-challenge", + "support": { + "source": "https://git.drupalcode.org/project/friendly_captcha_challenge/-/tree/0.9.18" + }, + "time": "2024-10-05T12:01:39+00:00" + }, + { + "name": "drupal/friendlycaptcha", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/friendlycaptcha.git", + "reference": "1.1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/friendlycaptcha-1.1.4.zip", + "reference": "1.1.4", + "shasum": "1ec2d274d1462a8eecba0d695a51d39df0149194" + }, + "require": { + "drupal/captcha": ">=1 || <=2", + "drupal/core": "^8.9 || ^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.1.4", + "datestamp": "1745330350", + "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": "anybody", + "homepage": "https://www.drupal.org/user/291091" + }, + { + "name": "grevil", + "homepage": "https://www.drupal.org/user/3668491" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + }, + { + "name": "webflo", + "homepage": "https://www.drupal.org/user/254778" + } + ], + "description": "Protect your website from spam and abuse while letting real people pass through with ease.", + "homepage": "https://www.drupal.org/project/friendlycaptcha", + "support": { + "source": "https://git.drupal.org/project/friendlycaptcha.git", + "issues": "https://www.drupal.org/project/issues/friendlycaptcha" + } + }, + { + "name": "drupal/generated_content", + "version": "1.5.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/generated_content.git", + "reference": "1.5.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/generated_content-1.5.4.zip", + "reference": "1.5.4", + "shasum": "e76f9ef956301fdbc5ff7fb6d012e5088b4d4bf8" + }, + "require": { + "drupal/core": "^9 || ^10 || ^11", + "php": ">=8.2" + }, + "suggest": { + "drupal/config_filter": "Provides API to modify the configuration when it is synchronized between the database and the exported yaml files." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.5.4", + "datestamp": "1747131918", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Alex Skrypnyk", + "homepage": "https://www.drupal.org/u/alexskrypnyk", + "email": "alex@drevops.com", + "role": "Maintainer" + } + ], + "description": "Drupal module to programmatically generate content.", + "homepage": "https://drupal.org/project/generated_content", + "keywords": [ + "drupal", + "generate", + "random" + ], + "support": { + "source": "https://git.drupalcode.org/project/generated_content", + "issues": "https://drupal.org/project/issues/generated_content" + } + }, + { + "name": "drupal/geocoder", + "version": "4.30.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/geocoder.git", + "reference": "8.x-4.30" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.30.zip", + "reference": "8.x-4.30", + "shasum": "701115afdf7435ab2ac8841e1d73ad531b465bc0" + }, + "require": { + "davedevelopment/stiphle": "^0.9.2", + "drupal/core": "^9.5 || ^10 || ^11", + "php": ">=7.3.0", + "php-http/guzzle7-adapter": "^1.0", + "php-http/message": "^1.6", + "willdurand/geocoder": "^4.0|^5.0" + }, + "require-dev": { + "drupal/address": "^1.11 || ^2.0", + "drupal/geocoder_field": "*", + "drupal/geofield": "^1.52", + "geo6/geocoder-php-addok-provider": "^1.0", + "geo6/geocoder-php-bpost-provider": "^1.3.0", + "geo6/geocoder-php-geopunt-provider": "^1.0", + "geo6/geocoder-php-spw-provider": "^1.0", + "geocoder-php/arcgis-online-provider": "^4.0", + "geocoder-php/azure-maps-provider": "^1.2", + "geocoder-php/bing-maps-provider": "^4.0", + "geocoder-php/free-geoip-provider": "^4.1", + "geocoder-php/geo-plugin-provider": "^4.0", + "geocoder-php/geonames-provider": "^4.1", + "geocoder-php/google-maps-provider": "^4.2", + "geocoder-php/graphhopper-provider": "^0.5.0", + "geocoder-php/host-ip-provider": "^4.0", + "geocoder-php/ip-info-db-provider": "^4.0", + "geocoder-php/locationiq-provider": "^1.5", + "geocoder-php/mapbox-provider": "^1.0", + "geocoder-php/mapquest-provider": "^4.0", + "geocoder-php/maptiler-provider": "^1.0", + "geocoder-php/maxmind-provider": "^4.1", + "geocoder-php/nominatim-provider": "^5.0", + "geocoder-php/open-cage-provider": "^4.0", + "geocoder-php/openrouteservice-provider": "^1.0", + "geocoder-php/pelias-provider": "^1.1", + "geocoder-php/photon-provider": "^0.6", + "geocoder-php/tomtom-provider": "^4.0", + "geocoder-php/yandex-provider": "^4.0", + "systonic/ban-france-provider": "^1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-4.30", + "datestamp": "1753886741", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Pol Dellaiera (@drupol)", + "homepage": "https://www.drupal.org/u/pol", + "role": "Maintainer" + }, + { + "name": "Italo Mairo (@itamair)", + "homepage": "https://www.drupal.org/u/itamair", + "role": "Co-maintainer" + }, + { + "name": "michaelfavia", + "homepage": "https://www.drupal.org/user/49137" + }, + { + "name": "poker10", + "homepage": "https://www.drupal.org/user/272316" + } + ], + "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.", + "homepage": "https://drupal.org/project/geocoder", + "support": { + "source": "https://git.drupalcode.org/project/geocoder", + "issues": "https://drupal.org/project/issues/geocoder", + "irc": "irc://irc.freenode.org/drupal-geo" + } + }, + { + "name": "drupal/geofield", + "version": "1.66.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/geofield.git", + "reference": "8.x-1.66" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.66.zip", + "reference": "8.x-1.66", + "shasum": "c217b8f506dcc6c4c581d2dd0dc6c02f9ce8bd14" + }, + "require": { + "drupal/core": "^9 || ^10 || ^11", + "itamair/geophp": "^1.6" + }, + "require-dev": { + "drupal/diff": "^1.3", + "drupal/feeds": "^3.0@beta" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.66", + "datestamp": "1757514238", + "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": "Italo Mairo", + "homepage": "https://www.drupal.org/u/itamair", + "role": "Drupal 8+ Maintainer" + }, + { + "name": "Brandon Morrison", + "homepage": "https://www.drupal.org/u/brandonian", + "role": "Drupal 7 Maintainer" + }, + { + "name": "Pablo López", + "homepage": "https://www.drupal.org/u/plopesc", + "role": "Drupal 7 Maintainer" + } + ], + "description": "Stores geographic and location data (points, lines, and polygons).", + "homepage": "https://www.drupal.org/project/geofield", + "support": { + "source": "https://git.drupalcode.org/project/geofield", + "issues": "https://www.drupal.org/project/issues/geofield", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + }, + { + "name": "drupal/gin", + "version": "5.0.5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/gin.git", + "reference": "5.0.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/gin-5.0.5.zip", + "reference": "5.0.5", + "shasum": "5d38d3b5c11bdd1ed77846276e094fc8fc6b4a8a" + }, + "require": { + "drupal/core": "^11.2", + "drupal/gin_toolbar": "^3.0" + }, + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "5.0.5", + "datestamp": "1760186640", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "scripts": { + "phpcs": [ + "phpcs -s --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 0 'web/modules/custom'" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Sascha Eggenberger (saschaeggi)", + "homepage": "https://www.drupal.org/u/saschaeggi", + "role": "Maintainer" + }, + { + "name": "saschaeggi", + "homepage": "https://www.drupal.org/user/1999056" + } + ], + "description": "For a better Admin and Content Editor Experience.", + "homepage": "https://www.drupal.org/project/gin", + "support": { + "source": "https://git.drupalcode.org/project/gin", + "issues": "https://www.drupal.org/project/issues/gin" + }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/saschaeggi" + }, + { + "type": "other", + "url": "https://paypal.me/saschaeggi" + } + ] + }, + { + "name": "drupal/gin_toolbar", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/gin_toolbar.git", + "reference": "3.0.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/gin_toolbar-3.0.2.zip", + "reference": "3.0.2", + "shasum": "6d041143d67440e5b68f6f927e8edb298866dd94" + }, + "require": { + "drupal/core": "^11.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.2", + "datestamp": "1752237929", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Sascha Eggenberger (saschaeggi)", + "homepage": "https://www.drupal.org/u/saschaeggi", + "role": "Maintainer" + }, + { + "name": "saschaeggi", + "homepage": "https://www.drupal.org/user/1999056" + } + ], + "description": "Gin Toolbar for Frontend use", + "homepage": "https://www.drupal.org/project/gin_toolbar", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/gin_toolbar", + "issues": "https://www.drupal.org/project/issues/gin_toolbar" + }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/saschaeggi" + }, + { + "type": "other", + "url": "https://paypal.me/saschaeggi" + } + ] + }, + { + "name": "drupal/google_tag", + "version": "2.0.9", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/google_tag.git", + "reference": "2.0.9" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/google_tag-2.0.9.zip", + "reference": "2.0.9", + "shasum": "78749a4520f6d89ca374061ac4f85f561118b3f1" + }, + "require": { + "drupal/core": "^9.5 || ^10 || ^11" + }, + "require-dev": { + "drupal/commerce": "^2.0 || ^3.0", + "drupal/commerce_wishlist": "^3.0@beta", + "drupal/csp": "^1.0 || ~2.1.1", + "drupal/google_analytics": "^4.0", + "drupal/search_api": "^1.28.0", + "drupal/token": "^1.11.0", + "drupal/webform": "^6.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.9", + "datestamp": "1756130983", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "acquia", + "homepage": "https://www.drupal.org/user/1231722" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "kaynen", + "homepage": "https://www.drupal.org/user/733308" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, + { + "name": "solotandem", + "homepage": "https://www.drupal.org/user/240748" + } + ], + "description": "Provides support for Google Tag and Google Tag Manager in Drupal.", + "homepage": "https://www.drupal.org/project/google_tag", + "support": { + "source": "https://git.drupalcode.org/project/google_tag" + } + }, + { + "name": "drupal/honeypot", + "version": "2.2.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/honeypot.git", + "reference": "2.2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip", + "reference": "2.2.2", + "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66" + }, + "require": { + "drupal/core": "^10.3 || ^11" + }, + "require-dev": { + "drupal/rules": "^4.0", + "drupal/webform": "^6.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.2.2", + "datestamp": "1739854442", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Jeff Geerling", + "homepage": "https://www.drupal.org/user/389011", + "email": "geerlingguy@mac.com" + }, + { + "name": "manuel garcia", + "homepage": "https://www.drupal.org/user/213194" + }, + { + "name": "tr", + "homepage": "https://www.drupal.org/user/202830" + }, + { + "name": "vijaycs85", + "homepage": "https://www.drupal.org/user/93488" + } + ], + "description": "Mitigates spam form submissions using the honeypot method.", + "homepage": "https://www.drupal.org/project/honeypot", + "keywords": [ + "deterrent", + "form", + "honeypot", + "honeytrap", + "php", + "spam" + ], + "support": { + "source": "https://git.drupalcode.org/project/honeypot", + "issues": "https://www.drupal.org/project/issues/honeypot" + } + }, + { + "name": "drupal/jquery_ui", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui.git", + "reference": "8.x-1.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "a53e99216a81d1e35fa357885656a2cf420f1a6a" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.8", + "datestamp": "1758954737", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "jjeff", + "homepage": "https://www.drupal.org/user/17190" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "litwol", + "homepage": "https://www.drupal.org/user/78134" + }, + { + "name": "mfb", + "homepage": "https://www.drupal.org/user/12302" + }, + { + "name": "mfer", + "homepage": "https://www.drupal.org/user/25701" + }, + { + "name": "mikelutz", + "homepage": "https://www.drupal.org/user/2972409" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "rajeshreeputra", + "homepage": "https://www.drupal.org/user/3418561" + }, + { + "name": "robloach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "wim leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI library.", + "homepage": "https://www.drupal.org/project/jquery_ui", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui" + } + }, + { + "name": "drupal/jquery_ui_resizable", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_resizable.git", + "reference": "2.1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_resizable-2.1.0.zip", + "reference": "2.1.0", + "shasum": "f1f15c5fe01f11e5348d502e2df836d0c492f507" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11", + "drupal/jquery_ui": "^1.7" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.0", + "datestamp": "1717031358", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Resizable library.", + "homepage": "https://www.drupal.org/project/jquery_ui_resizable", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_resizable" + } + }, + { + "name": "drupal/key", + "version": "1.20.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/key.git", + "reference": "8.x-1.20" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.20.zip", + "reference": "8.x-1.20", + "shasum": "f45415552de129e9976af72224393cd1d1f2ea65" + }, + "require": { + "drupal/core": ">=8.9 <12" + }, + "require-dev": { + "drush/drush": ">=9" + }, + "suggest": { + "drush/drush": ">=11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.20", + "datestamp": "1744582168", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": ">=9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "cellar door", + "homepage": "https://www.drupal.org/user/658076" + }, + { + "name": "crashtest_", + "homepage": "https://www.drupal.org/user/261457" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "nerdstein", + "homepage": "https://www.drupal.org/user/1557710" + }, + { + "name": "rlhawk", + "homepage": "https://www.drupal.org/user/352283" + } + ], + "description": "Provides the ability to manage site-wide keys", + "homepage": "http://drupal.org/project/key", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/key", + "issues": "http://drupal.org/project/key" + } + }, + { + "name": "drupal/klaro", + "version": "3.0.7", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/klaro.git", + "reference": "3.0.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/klaro-3.0.7.zip", + "reference": "3.0.7", + "shasum": "73a18961bd1073b5d58d1978562696af8a547c50" + }, + "require": { + "drupal/core": "^10.2 || ^11", + "drupal/klaro_js": "~3.0.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.7", + "datestamp": "1750877133", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "jan kellermann", + "homepage": "https://www.drupal.org/user/371731" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + }, + { + "name": "kulmjens", + "homepage": "https://www.drupal.org/user/3595515" + }, + { + "name": "metalbote", + "homepage": "https://www.drupal.org/user/2809357" + }, + { + "name": "sascha_meissner", + "homepage": "https://www.drupal.org/user/3678470" + } + ], + "description": "Implements the Klaro! consent manager utility into Drupal.", + "homepage": "https://www.drupal.org/project/klaro", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/klaro", + "issues": "https://www.drupal.org/project/issues/klaro" + } + }, + { + "name": "drupal/klaro_js", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/klaro_js.git", + "reference": "c5398a0bc9dccd3ccc2c33c9393966bc874bba8c" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fklaro_js/repository/archive.zip?sha=c5398a0bc9dccd3ccc2c33c9393966bc874bba8c", + "reference": "c5398a0bc9dccd3ccc2c33c9393966bc874bba8c", + "shasum": "" + }, + "type": "drupal-library", + "extra": { + "installer-name": "klaro", + "upstream-version": "v0.7.22" + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Mirror of the Klaro consent manager javascript library tagged as a Drupal library.", + "homepage": "https://github.com/klaro-org/klaro-js/", + "support": { + "source": "https://git.drupalcode.org/project/klaro_js/-/tree/3.0.1" + }, + "time": "2024-12-19T08:40:21+00:00" + }, + { + "name": "drupal/layout_builder_restrictions", + "version": "3.0.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/layout_builder_restrictions.git", + "reference": "3.0.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/layout_builder_restrictions-3.0.4.zip", + "reference": "3.0.4", + "shasum": "826edbab8ed665bccfb668092b155a60ec6da296" + }, + "require": { + "drupal/core": "^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.4", + "datestamp": "1752762015", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "The University of Texas at Austin", + "homepage": "https://www.drupal.org/university-of-texas-at-austin", + "role": "Maintainer" + }, + { + "name": "Eirik Morland (eiriksm)", + "homepage": "https://www.drupal.org/u/eiriksm", + "role": "Maintainer" + }, + { + "name": "eiriksm", + "homepage": "https://www.drupal.org/user/1014468" + }, + { + "name": "gravelpot", + "homepage": "https://www.drupal.org/user/748208" + }, + { + "name": "jeff cardwell", + "homepage": "https://www.drupal.org/user/2913129" + }, + { + "name": "lreynaga", + "homepage": "https://www.drupal.org/user/3400232" + }, + { + "name": "mark_fullmer", + "homepage": "https://www.drupal.org/user/2612816" + }, + { + "name": "mmarler", + "homepage": "https://www.drupal.org/user/500192" + }, + { + "name": "ricksta", + "homepage": "https://www.drupal.org/user/311042" + }, + { + "name": "texas_tater", + "homepage": "https://www.drupal.org/user/753614" + }, + { + "name": "twfahey", + "homepage": "https://www.drupal.org/user/3403722" + }, + { + "name": "utexas", + "homepage": "https://www.drupal.org/user/3716409" + } + ], + "description": "Manage which fields & layouts are available in Layout Builder", + "homepage": "https://www.drupal.org/project/layout_builder_restrictions", + "keywords": [ + "Drupal", + "Layout Builder Restrictions" + ], + "support": { + "source": "https://git.drupalcode.org/project/layout_builder_restrictions", + "issues": "https://www.drupal.org/project/issues/layout_builder_restrictions" + } + }, + { + "name": "drupal/leaflet", + "version": "10.3.11", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/leaflet.git", + "reference": "10.3.11" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.11.zip", + "reference": "10.3.11", + "shasum": "64a83207cd1bfc599d32ad5f338a3d6ee24a2bad" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11", + "drupal/geofield": "^1.31" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "10.3.11", + "datestamp": "1761727339", + "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": "Italo Mairo", + "homepage": "https://www.drupal.org/u/itamair", + "role": "Maintainer" + }, + { + "name": "Peter Vanhee (pvhee)", + "homepage": "https://www.drupal.org/u/pvhee", + "role": "Maintainer" + }, + { + "name": "Rik de Boer (RdeBoer)", + "homepage": "https://www.drupal.org/u/rdeboer", + "role": "Maintainer" + }, + { + "name": "Gabriel Carleton-Barnes (gcb)", + "homepage": "https://www.drupal.org/u/gcb", + "role": "Maintainer" + }, + { + "name": "Lev Tsypin (levelos)", + "homepage": "https://www.drupal.org/u/levelos", + "role": "Maintainer" + }, + { + "name": "Sean Larkin (seanberto)", + "homepage": "https://www.drupal.org/u/seanberto", + "role": "Maintainer" + } + ], + "description": "Integration with the Leaflet map scripting library.", + "homepage": "https://www.drupal.org/project/leaflet", + "support": { + "source": "https://git.drupalcode.org/project/leaflet", + "issues": "https://www.drupal.org/project/issues/leaflet" + } + }, + { + "name": "drupal/linkit", + "version": "7.0.10", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/linkit.git", + "reference": "7.0.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/linkit-7.0.10.zip", + "reference": "7.0.10", + "shasum": "10a7d4bce0038e887e597911b60919496c640f41" + }, + "require": { + "drupal/core": "^10.1 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "7.0.10", + "datestamp": "1760731845", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Emil Stjerneman", + "homepage": "https://stjerneman.com", + "email": "emil@stjerneman.com", + "role": "Maintainer" + }, + { + "name": "johnwebdev", + "homepage": "https://www.drupal.org/user/3331569" + }, + { + "name": "mark_fullmer", + "homepage": "https://www.drupal.org/user/2612816" + } + ], + "description": "Linkit - Enriched linking experience", + "homepage": "http://drupal.org/project/linkit", + "support": { + "source": "http://cgit.drupalcode.org/linkit", + "issues": "http://drupal.org/project/linkit" + } + }, + { + "name": "drupal/login_emailusername", + "version": "3.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/login_emailusername.git", + "reference": "3.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/login_emailusername-3.0.1.zip", + "reference": "3.0.1", + "shasum": "0617c5da79bb038dd1af3f9d5620b2f0d2156133" + }, + "require": { + "drupal/core": "^10.3 || ^11.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.1", + "datestamp": "1738619522", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "See contributors", + "homepage": "https://www.drupal.org/node/2820429/committers", + "role": "contributor" + }, + { + "name": "jannakha", + "homepage": "https://www.drupal.org/user/3085703" + }, + { + "name": "mably", + "homepage": "https://www.drupal.org/user/3375160" + }, + { + "name": "pameeela", + "homepage": "https://www.drupal.org/user/1431110" + }, + { + "name": "rjjakes", + "homepage": "https://www.drupal.org/user/3457245" + }, + { + "name": "vladimiraus", + "homepage": "https://www.drupal.org/user/673120" + } + ], + "description": "Login with Email or Username.", + "homepage": "https://drupal.org/project/login_emailusername", + "support": { + "source": "https://git.drupalcode.org/project/login_emailusername", + "issues": "https://drupal.org/project/issues/login_emailusername" + } + }, + { + "name": "drupal/mailsystem", + "version": "4.5.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/mailsystem.git", + "reference": "8.x-4.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip", + "reference": "8.x-4.5", + "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158" + }, + "require": { + "drupal/core": "^9 || ^10.1 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-4.5", + "datestamp": "1723379369", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "emartoni", + "homepage": "https://www.drupal.org/user/3225331" + }, + { + "name": "joseph.olstad", + "homepage": "https://www.drupal.org/user/1321830" + }, + { + "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" + }, + { + "name": "renatog", + "homepage": "https://www.drupal.org/user/3326031" + }, + { + "name": "tr", + "homepage": "https://www.drupal.org/user/202830" + } + ], + "description": "Mail System", + "homepage": "https://www.drupal.org/project/mailsystem", + "support": { + "source": "https://git.drupalcode.org/project/mailsystem" + } + }, + { + "name": "drupal/menu_block", + "version": "1.14.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/menu_block.git", + "reference": "8.x-1.14" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4" + }, + "require": { + "drupal/core": "^10.1 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.14", + "datestamp": "1740624449", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "dave reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, + { + "name": "johnalbin", + "homepage": "https://www.drupal.org/user/32095" + }, + { + "name": "kim.pepper", + "homepage": "https://www.drupal.org/user/370574" + }, + { + "name": "renatog", + "homepage": "https://www.drupal.org/user/3326031" + }, + { + "name": "rrrob", + "homepage": "https://www.drupal.org/user/273533" + } + ], + "description": "Provides configurable blocks of menu links.", + "homepage": "https://www.drupal.org/project/menu_block", + "support": { + "source": "https://git.drupalcode.org/project/menu_block" + } + }, + { + "name": "drupal/menu_link_attributes", + "version": "1.5.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/menu_link_attributes.git", + "reference": "8.x-1.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/menu_link_attributes-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "ad1db596ad8a76ba95fbf2d0a42d4777056587d5" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.5", + "datestamp": "1724848806", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "anybody", + "homepage": "https://www.drupal.org/user/291091" + }, + { + "name": "grevil", + "homepage": "https://www.drupal.org/user/3668491" + }, + { + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" + }, + { + "name": "yannickoo", + "homepage": "https://www.drupal.org/user/531118" + } + ], + "description": "Allows you to add attributes to menu links.", + "homepage": "http://drupal.org/project/menu_link_attributes", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/menu_link_attributes", + "issues": "http://drupal.org/project/issues/menu_link_attributes" + } + }, + { + "name": "drupal/metatag", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/metatag.git", + "reference": "2.2.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/metatag-2.2.0.zip", + "reference": "2.2.0", + "shasum": "b6ae4b665a49771d5139644c71cb3d5a68cb4828" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/token": "^1.0", + "php": ">=8.0" + }, + "require-dev": { + "drupal/forum": "1.x-dev", + "drupal/hal": "^1 || ^2 || ^9", + "drupal/metatag_dc": "*", + "drupal/metatag_open_graph": "*", + "drupal/page_manager": "^4.0", + "drupal/redirect": "^1.0", + "ergebnis/composer-normalize": "*", + "mpyw/phpunit-patch-serializable-comparison": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.2.0", + "datestamp": "1758622371", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "composer-normalize": { + "indent-size": 2, + "indent-style": "space" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "See contributors", + "homepage": "https://www.drupal.org/node/640498/committers", + "role": "Developer" + }, + { + "name": "dave reid", + "homepage": "https://www.drupal.org/user/53892" + } + ], + "description": "Manage meta tags for all entities.", + "homepage": "https://www.drupal.org/project/metatag", + "keywords": [ + "Drupal", + "seo" + ], + "support": { + "source": "https://git.drupalcode.org/project/metatag", + "issues": "https://www.drupal.org/project/issues/metatag", + "docs": "https://www.drupal.org/docs/8/modules/metatag" + } + }, + { + "name": "drupal/modeler_api", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/modeler_api.git", + "reference": "1.0.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/modeler_api-1.0.3.zip", + "reference": "1.0.3", + "shasum": "a0239640175c715506336aa0fa9ea763b476acfc" + }, + "require": { + "drupal/core": "^10.4 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.3", + "datestamp": "1758712784", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "benjifisher", + "homepage": "https://www.drupal.org/user/683300" + }, + { + "name": "cosmicdreams", + "homepage": "https://www.drupal.org/user/42579" + }, + { + "name": "jurgenhaas", + "homepage": "https://www.drupal.org/user/168924" + } + ], + "description": "Provides an API for modules to use modelers like BPMN.iO", + "homepage": "https://www.drupal.org/project/modeler_api", + "support": { + "source": "https://drupal.org/project/modeler_api", + "issues": "https://drupal.org/project/issues/modeler_api" + } + }, + { + "name": "drupal/mysql57", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/mysql57.git", + "reference": "1.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/mysql57-1.0.0.zip", + "reference": "1.0.0", + "shasum": "3d733fd6b0116999b110965d6dbf1c0f763d3f23" + }, + "require": { + "drupal/core": "^10.2 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.0", + "datestamp": "1722631498", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "effulgentsia", + "homepage": "https://www.drupal.org/user/78040" + } + ], + "description": "Database driver for MySQL with compatibility for MySQL 5.7.8 or higher and MariaDB 10.3.7 or higher.", + "homepage": "https://www.drupal.org/project/mysql57", + "support": { + "source": "https://git.drupalcode.org/project/mysql57" + } + }, + { + "name": "drupal/nouislider_js", + "version": "15.8.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/nouislider_js.git", + "reference": "b5610d5842784581e4c766cd1c3852ca0b355ed5" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Fnouislider_js/repository/archive.zip?sha=b5610d5842784581e4c766cd1c3852ca0b355ed5", + "reference": "b5610d5842784581e4c766cd1c3852ca0b355ed5", + "shasum": "" + }, + "type": "drupal-library", + "extra": { + "installer-name": "nouislider" + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT License" + ], + "description": "Mirror of the noUiSlider javascript library tagged as a Drupal library.", + "homepage": "https://github.com/leongersen/noUiSlider", + "support": { + "source": "https://git.drupalcode.org/project/nouislider_js/-/tree/15.8.0" + }, + "time": "2025-01-03T10:53:20+00:00" + }, + { + "name": "drupal/paragraphs", + "version": "1.19.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/paragraphs.git", + "reference": "8.x-1.19" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip", + "reference": "8.x-1.19", + "shasum": "831a81a11eac419e8410db45efef5b283c4d117c" + }, + "require": { + "drupal/core": "^10.2 || ^11", + "drupal/entity_reference_revisions": "~1.3" + }, + "require-dev": { + "drupal/block_field": "1.x-dev", + "drupal/diff": "1.x-dev", + "drupal/entity_browser": "2.x-dev", + "drupal/entity_usage": "2.x-dev", + "drupal/feeds": "^3", + "drupal/field_group": "3.x-dev", + "drupal/inline_entity_form": "3.x-dev", + "drupal/paragraphs-paragraphs_library": "*", + "drupal/replicate": "1.x-dev", + "drupal/search_api": "^1", + "drupal/search_api_db": "*" + }, + "suggest": { + "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.19", + "datestamp": "1740907076", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "frans", + "homepage": "https://www.drupal.org/user/514222" + }, + { + "name": "jeroen.b", + "homepage": "https://www.drupal.org/user/1853532" + }, + { + "name": "jstoller", + "homepage": "https://www.drupal.org/user/99012" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + }, + { + "name": "primsi", + "homepage": "https://www.drupal.org/user/282629" + } + ], + "description": "Enables the creation of Paragraphs entities.", + "homepage": "https://www.drupal.org/project/paragraphs", + "support": { + "source": "https://git.drupalcode.org/project/paragraphs" + } + }, + { + "name": "drupal/pathauto", + "version": "1.14.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/pathauto.git", + "reference": "8.x-1.14" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "07f0d2efcf0bfb450e2ab69a43921fa39dc5f25b" + }, + "require": { + "drupal/core": "^10 || ^11", + "drupal/ctools": "*", + "drupal/token": "*" + }, + "conflict": { + "drush/drush": "<12.5.1" + }, + "require-dev": { + "drupal/forum": "*" + }, + "suggest": { + "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.14", + "datestamp": "1759838097", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "dave reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "Freso", + "homepage": "https://www.drupal.org/user/27504" + }, + { + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" + } + ], + "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.", + "homepage": "https://www.drupal.org/project/pathauto", + "support": { + "source": "https://cgit.drupalcode.org/pathauto", + "issues": "https://www.drupal.org/project/issues/pathauto", + "documentation": "https://www.drupal.org/docs/8/modules/pathauto" + } + }, + { + "name": "drupal/project_browser", + "version": "2.1.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/project_browser.git", + "reference": "2.1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/project_browser-2.1.1.zip", + "reference": "2.1.1", + "shasum": "e3c07c9946c567b6c237f6668277be135445a05c" + }, + "require": { + "composer-runtime-api": "^2", + "composer/semver": "^3.2", + "drupal/core": "^11.2", + "ext-simplexml": "*", + "guzzlehttp/guzzle": "^6 || ^7", + "php": ">=8.1", + "symfony/finder": "^6.3 || ^7" + }, + "conflict": { + "drupal/automatic_updates": "<4", + "drupal/gin": "<4.0.6" + }, + "require-dev": { + "colinodell/psr-testlogger": "^1.2", + "drush/drush": "^12.5 || ^13", + "mglaman/phpstan-drupal": "^1.3.7 || ^2.0.5" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.1.1", + "datestamp": "1760712068", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "scripts": { + "cs": [ + "phpcs -n --standard=PSR2 src --exclude=Generic.Files.LineLength" + ], + "cbf": [ + "phpcbf -n --standard=PSR2 src --exclude=Generic.Files.LineLength" + ], + "unit": [ + "phpunit" + ], + "lint": [ + "find src -name '*.php' -print0 | xargs -0 -n1 php -l" + ], + "test": [ + "@lint", + "@cs" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "chrisfromredfin", + "homepage": "https://www.drupal.org/user/74392" + }, + { + "name": "fjgarlin", + "homepage": "https://www.drupal.org/user/2495842" + }, + { + "name": "grasmash", + "homepage": "https://www.drupal.org/user/455714" + }, + { + "name": "narendrar", + "homepage": "https://www.drupal.org/user/1730192" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" + } + ], + "description": "A project browser embedded in the Drupal UI.", + "homepage": "https://www.drupal.org/project/project_browser", + "support": { + "source": "https://git.drupalcode.org/project/project_browser" + } + }, + { + "name": "drupal/recipe_installer_kit", + "version": "1.0.0-alpha8", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/recipe_installer_kit.git", + "reference": "57545308c602ea012911987e0f3eae7820c5c865" + }, + "dist": { + "type": "zip", + "url": "https://git.drupalcode.org/api/v4/projects/project%2Frecipe_installer_kit/repository/archive.zip?sha=57545308c602ea012911987e0f3eae7820c5c865", + "reference": "57545308c602ea012911987e0f3eae7820c5c865", + "shasum": "" + }, + "require": { + "drupal/core": ">=10.4", + "drush/drush": "^13" + }, + "type": "library", + "autoload": { + "psr-4": { + "Drupal\\RecipeKit\\Installer\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "support": { + "source": "https://git.drupalcode.org/project/recipe_installer_kit/-/tree/1.0.0-alpha8" + }, + "time": "2025-09-25T18:11:08+00:00" + }, + { + "name": "drupal/redirect", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/redirect.git", + "reference": "8.x-1.12" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "1cdee11356a25b9f9a10329aec0eeb293e0023de" + }, + "require": { + "drupal/core": "^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.12", + "datestamp": "1756419163", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "dave reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "kristen pol", + "homepage": "https://www.drupal.org/user/8389" + }, + { + "name": "pifagor", + "homepage": "https://www.drupal.org/user/2375692" + } + ], + "description": "Allows users to redirect from old URLs to new URLs.", + "homepage": "https://www.drupal.org/project/redirect", + "support": { + "source": "https://git.drupalcode.org/project/redirect" + } + }, + { + "name": "drupal/robotstxt", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/robotstxt.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/robotstxt-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "157192b2c6b2cc9779336cb3a5e752ffa2409c6b" + }, + "require": { + "drupal/core": "^9.3 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.6", + "datestamp": "1723570930", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "hass", + "homepage": "https://www.drupal.org/u/hass" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/53579/committers" + }, + { + "name": "generalredneck", + "homepage": "https://www.drupal.org/user/368854" + }, + { + "name": "kevinquillen", + "homepage": "https://www.drupal.org/user/317279" + }, + { + "name": "mikeegoulding", + "homepage": "https://www.drupal.org/user/2867877" + }, + { + "name": "Todd Nienkerk", + "homepage": "https://www.drupal.org/user/92096" + } + ], + "description": "Generates the robots.txt file dynamically and gives you the chance to edit it, on a per-site basis, from the web UI.", + "homepage": "https://www.drupal.org/project/robotstxt", + "support": { + "source": "https://git.drupal.org/project/robotstxt.git", + "issues": "https://www.drupal.org/project/issues/robotstxt" + } + }, + { + "name": "drupal/sam", + "version": "1.3.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/sam.git", + "reference": "1.3.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/sam-1.3.2.zip", + "reference": "1.3.2", + "shasum": "455bbdaa3565842fb848ad5c7c38126cfa5e8e4c" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "require-dev": { + "drupal/entity_reference_revisions": "*", + "drupal/paragraphs": "dev-1.x" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.3.2", + "datestamp": "1733343161", + "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": "lullabot", + "homepage": "https://www.drupal.org/user/3815489" + }, + { + "name": "marcoscano", + "homepage": "https://www.drupal.org/user/1288796" + }, + { + "name": "penyaskito", + "homepage": "https://www.drupal.org/user/959536" + } + ], + "description": "Improves limited-cardinality widgets by displaying only one empty element at a time", + "homepage": "https://www.drupal.org/project/sam", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/sam", + "issues": "http://drupal.org/project/issues/sam" + } + }, + { + "name": "drupal/scheduler", + "version": "2.2.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/scheduler.git", + "reference": "2.2.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/scheduler-2.2.1.zip", + "reference": "2.2.1", + "shasum": "ce9a9405ea88140fbdd53f1e3ed3741b6f27266c" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11" + }, + "require-dev": { + "drupal/commerce": "^2 || ^3", + "drupal/devel_generate": ">=4", + "drupal/rules": "^3 || ^4", + "drupal/workbench_moderation": "*", + "drupal/workbench_moderation_actions": "*", + "drush/drush": ">=9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.2.1", + "datestamp": "1738771365", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9 || ^10" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Eric Schaefer (Eric Schaefer)", + "homepage": "https://www.drupal.org/u/eric-schaefer", + "role": "Maintainer" + }, + { + "name": "Jonathan Smith (jonathan1055)", + "homepage": "https://www.drupal.org/u/jonathan1055", + "role": "Maintainer" + }, + { + "name": "Pieter Frenssen (pfrenssen)", + "homepage": "https://www.drupal.org/u/pfrenssen", + "role": "Maintainer" + }, + { + "name": "Rick Manelius (rickmanelius)", + "homepage": "https://www.drupal.org/u/rickmanelius", + "role": "Maintainer" + } + ], + "description": "Automatically publish and unpublish content at specified dates and times.", + "homepage": "https://drupal.org/project/scheduler", + "support": { + "source": "https://git.drupalcode.org/project/scheduler", + "issues": "https://www.drupal.org/project/issues/scheduler" + } + }, + { + "name": "drupal/scheduler_content_moderation_integration", + "version": "3.0.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/scheduler_content_moderation_integration.git", + "reference": "3.0.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/scheduler_content_moderation_integration-3.0.4.zip", + "reference": "3.0.4", + "shasum": "07b57e1817c01902a5709cdcbd4578e65622ce53" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "drupal/scheduler": "^2.1" + }, + "require-dev": { + "drupal/commerce": "^3.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.4", + "datestamp": "1738679096", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "chr.fritsch", + "homepage": "https://www.drupal.org/user/2103716" + }, + { + "name": "daniel.bosen", + "homepage": "https://www.drupal.org/user/404865" + }, + { + "name": "jonathan1055", + "homepage": "https://www.drupal.org/user/92645" + }, + { + "name": "smustgrave", + "homepage": "https://www.drupal.org/user/3252890" + }, + { + "name": "volkerk", + "homepage": "https://www.drupal.org/user/57527" + } + ], + "description": "Scheduler sub-module providing content moderation functionality for publishing/unpublishing", + "homepage": "https://www.drupal.org/project/scheduler_content_moderation_integration", + "support": { + "source": "https://git.drupalcode.org/project/scheduler_content_moderation_integration", + "error": "Invalid dependency: \"scheduler\", Could not parse version constraint ~: Invalid version string \"~\"" + } + }, + { + "name": "drupal/sdc_devel", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/sdc_devel.git", + "reference": "1.0.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/sdc_devel-1.0.1.zip", + "reference": "1.0.1", + "shasum": "3faec9bc22931a53dfda2768b4fa923a75143498" + }, + "require": { + "drupal/core": "^10.3.12 || ^11.0.11 || ^11.1.2", + "twig/twig": "~3.19" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.0.1", + "datestamp": "1741451950", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mogtofu33", + "homepage": "https://www.drupal.org/user/278510" + }, + { + "name": "pdureau", + "homepage": "https://www.drupal.org/user/1903334" + } + ], + "description": "Provides development aids to Single-Directory Components developers.", + "homepage": "https://www.drupal.org/project/sdc_devel", + "support": { + "source": "https://git.drupalcode.org/project/sdc_devel" + } + }, + { + "name": "drupal/search_api", + "version": "1.39.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/search_api.git", + "reference": "8.x-1.39" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.39.zip", + "reference": "8.x-1.39", + "shasum": "faaf441950b7357203d3fa9ce92f3e59b55c0837" + }, + "require": { + "drupal/core": "^10.3 || ^11" + }, + "conflict": { + "drupal/search_api_solr": "2.* || 3.0 || 3.1" + }, + "require-dev": { + "drupal/config_readonly": "1.x-dev", + "drupal/language_fallback_fix": "1.x-dev", + "drupal/search_api_autocomplete": "1.x-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.39", + "datestamp": "1758968162", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Thomas Seidl", + "homepage": "https://www.drupal.org/u/drunken-monkey" + }, + { + "name": "Nick Veenhof", + "homepage": "https://www.drupal.org/u/nick_vh" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/790418/committers" + } + ], + "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": "drupal/search_api_autocomplete", + "version": "1.10.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/search_api_autocomplete.git", + "reference": "8.x-1.10" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "bd7d4a35a595efb866f6f5e2230d62d93b074927" + }, + "require": { + "drupal/core": "^10.2 || ^11", + "drupal/search_api": "^1.0" + }, + "require-dev": { + "drupal/search_api_page": "1.x-dev" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.10", + "datestamp": "1736941746", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Thomas Seidl", + "homepage": "https://www.drupal.org/u/drunken-monkey" + }, + { + "name": "See other contributors", + "homepage": "https://www.drupal.org/node/1142202/committers" + } + ], + "description": "Adds autocomplete functionality to searches.", + "homepage": "https://www.drupal.org/project/search_api_autocomplete", + "support": { + "source": "http://git.drupal.org/project/search_api_autocomplete.git", + "issues": "https://www.drupal.org/project/issues/search_api_autocomplete", + "irc": "irc://irc.freenode.org/drupal-search-api" + } + }, + { + "name": "drupal/search_api_exclude", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/search_api_exclude.git", + "reference": "2.0.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/search_api_exclude-2.0.3.zip", + "reference": "2.0.3", + "shasum": "e3a4bebe7be44417ad87e3a463678f89b5fdad0b" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11", + "drupal/search_api": "^1.3" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.3", + "datestamp": "1726853600", + "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": "kevinquillen", + "homepage": "https://www.drupal.org/user/317279" + }, + { + "name": "MiSc", + "homepage": "https://www.drupal.org/user/382892" + }, + { + "name": "stijnstroobants", + "homepage": "https://www.drupal.org/user/1787140" + } + ], + "description": "The Search API Exclude module allows users to prevent certain nodes from being indexed.", + "homepage": "https://www.drupal.org/project/search_api_exclude", + "support": { + "source": "https://git.drupalcode.org/project/search_api_exclude", + "issues": "https://www.drupal.org/project/issues/search_api_exclude" + } + }, + { + "name": "drupal/selective_better_exposed_filters", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/selective_better_exposed_filters.git", + "reference": "3.0.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/selective_better_exposed_filters-3.0.3.zip", + "reference": "3.0.3", + "shasum": "31890e23361bf22641b2355c78c5e21c02e2e1bc" + }, + "require": { + "drupal/better_exposed_filters": "^4.0 || ^5.0 || ^6.0 || ^7.0", + "drupal/core": "^8 || ^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.3", + "datestamp": "1719744192", + "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": "stomusic", + "homepage": "https://www.drupal.org/user/3405436" + } + ], + "description": "Provide extra option for better exposed filters to show only used terms in filter.", + "homepage": "https://www.drupal.org/project/selective_better_exposed_filters", + "keywords": [ + "Drupal" + ], + "support": { + "source": "http://cgit.drupalcode.org/selective_better_exposed_filters", + "issues": "https://www.drupal.org/project/issues/selective_better_exposed_filters" + } + }, + { + "name": "drupal/seo_checklist", + "version": "5.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/seo_checklist.git", + "reference": "5.2.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/seo_checklist-5.2.4.zip", + "reference": "5.2.4", + "shasum": "d50daa43114354755adbe449f9a948c9ce16cfae" + }, + "require": { + "drupal/checklistapi": "^2.0", + "drupal/core": "^8.8 || ^9 || ^10 || ^11" + }, + "require-dev": { + "drupal/addtoany": "*", + "drupal/admin_toolbar": "*", + "drupal/advagg": "*", + "drupal/cloudflare": "*", + "drupal/coffee": "*", + "drupal/diff": "*", + "drupal/easy_breadcrumb": "*", + "drupal/editor_advanced_link": "*", + "drupal/filefield_paths": "*", + "drupal/google_tag": "*", + "drupal/honeypot": "*", + "drupal/hreflang": "*", + "drupal/metatag": "*", + "drupal/pathauto": "*", + "drupal/redirect": "*", + "drupal/robotstxt": "*", + "drupal/scheduler": "*", + "drupal/search404": "*", + "drupal/security_review": "*", + "drupal/sitemap": "*", + "drupal/xmlsitemap": "*", + "drupal/yoast_seo": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "5.2.4", + "datestamp": "1736549430", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "ben finklea", + "homepage": "https://www.drupal.org/user/46676" + }, + { + "name": "thejimbirch", + "homepage": "https://www.drupal.org/user/2507260" + }, + { + "name": "traviscarden", + "homepage": "https://www.drupal.org/user/236758" + } + ], + "description": "Uses best practices to check for proper search engine optimization.", + "homepage": "https://www.drupal.org/project/seo_checklist", + "keywords": [ + "SEO" + ], + "support": { + "source": "http://drupalcode.org/seo_checklist", + "issues": "https://www.drupal.org/project/issues/seo_checklist" + } + }, + { + "name": "drupal/shield", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/shield.git", + "reference": "8.x-1.8" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "709b5580790a3b5bd8dda26f722cdb5a9c3911c5" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "require-dev": { + "drupal/key": "^1.16" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.8", + "datestamp": "1719947682", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "badjava", + "homepage": "https://www.drupal.org/user/83372" + }, + { + "name": "chx", + "homepage": "https://www.drupal.org/user/9446" + }, + { + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "kalman.hosszu", + "homepage": "https://www.drupal.org/user/267481" + }, + { + "name": "pkiraly", + "homepage": "https://www.drupal.org/user/352587" + }, + { + "name": "vbouchet", + "homepage": "https://www.drupal.org/user/1671428" + } + ], + "description": "Creates a general shield for the site.", + "homepage": "https://www.drupal.org/project/shield", + "support": { + "source": "https://git.drupalcode.org/project/shield" + } + }, + { + "name": "drupal/simple_search_form", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/simple_search_form.git", + "reference": "8.x-1.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/simple_search_form-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "5592a3bf24dd60df7e692c74520441751da66f9d" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.7", + "datestamp": "1755001399", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" + }, + { + "name": "antonnavi", + "homepage": "https://www.drupal.org/user/875410" + } + ], + "description": "Implements search form block for redirecting to a path with a parameter.", + "homepage": "https://www.drupal.org/project/simple_search_form", + "support": { + "source": "https://git.drupalcode.org/project/simple_search_form" + } + }, + { + "name": "drupal/simple_sitemap", + "version": "4.2.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/simple_sitemap.git", + "reference": "4.2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.2.zip", + "reference": "4.2.2", + "shasum": "1f9c9197d37450fb347a4fa3f10191f5f4b5ef13" + }, + "require": { + "drupal/core": "^10.2 || ^11", + "ext-xmlwriter": "*" + }, + "conflict": { + "drush/drush": "<12.5.1" + }, + "require-dev": { + "drupal/paragraphs": "^1.18" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.2.2", + "datestamp": "1750876597", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Pawel Ginalski (gbyte)", + "homepage": "https://www.drupal.org/u/gbyte", + "email": "contact@gbyte.dev", + "role": "Maintainer" + }, + { + "name": "walkingdexter", + "homepage": "https://www.drupal.org/user/3251330" + } + ], + "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", + "homepage": "https://drupal.org/project/simple_sitemap", + "support": { + "source": "https://cgit.drupalcode.org/simple_sitemap", + "issues": "https://drupal.org/project/issues/simple_sitemap" + } + }, + { + "name": "drupal/sitemap", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/sitemap.git", + "reference": "8.x-2.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/sitemap-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "adc889968982dd3538cb45c1772e264de229adbc" + }, + "require": { + "drupal/core": "^10.2 || ^11", + "php": ">=8.1" + }, + "require-dev": { + "drupal/book": "^1 || ^2", + "drupal/metatag": "^2", + "drush/drush": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.3", + "datestamp": "1756220334", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "akalata", + "homepage": "https://www.drupal.org/user/498926" + }, + { + "name": "colan", + "homepage": "https://www.drupal.org/user/58704" + }, + { + "name": "killes@www.drop.org", + "homepage": "https://www.drupal.org/user/227" + }, + { + "name": "mparker17", + "homepage": "https://www.drupal.org/user/536298" + }, + { + "name": "Nafes", + "homepage": "https://www.drupal.org/user/2489926" + }, + { + "name": "ridefree", + "homepage": "https://www.drupal.org/user/49148" + } + ], + "description": "A way for visitors to navigate your website using an overview of notable pages on the site, by displaying one or more human-readable lists of links on a page. Useful for sites with lots of lightly-organized content.", + "homepage": "https://www.drupal.org/project/sitemap", + "support": { + "source": "https://git.drupalcode.org/project/sitemap", + "issues": "http://drupal.org/project/issues/sitemap" + } + }, + { + "name": "drupal/smart_date", + "version": "4.2.4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/smart_date.git", + "reference": "4.2.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/smart_date-4.2.4.zip", + "reference": "4.2.4", + "shasum": "87638e15bd1878f402cdb9cd40154d481a849881" + }, + "require": { + "drupal/core": "^9 || ^10 || ^11", + "php": ">=8.1", + "simshaun/recurr": "^5" + }, + "require-dev": { + "drush/drush": "*" + }, + "suggest": { + "drupal/multiple_fields_remove_button": "Provides a button for editors to remove unwanted rows." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "4.2.4", + "datestamp": "1751143243", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" + }, + { + "name": "stefan.korn", + "homepage": "https://www.drupal.org/user/1942204" + }, + { + "name": "tyapchyc", + "homepage": "https://www.drupal.org/user/3351412" + } + ], + "description": "Adds app-like date and recurring date functionality.", + "homepage": "https://www.drupal.org/project/smart_date", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/smart_date", + "issues": "https://www.drupal.org/project/issues/smart_date", + "documentation": "https://www.drupal.org/docs/contributed-modules/smart-date" + } + }, + { + "name": "drupal/styleguide", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/styleguide.git", + "reference": "2.2.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/styleguide-2.2.0.zip", + "reference": "2.2.0", + "shasum": "18794275f5e21b7b38237b94b8463cd8e9be515b" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11 || ^12" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.2.0", + "datestamp": "1745808001", + "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": "agentrickard", + "homepage": "https://www.drupal.org/u/agentrickard", + "role": "Maintainer" + }, + { + "name": "bevan", + "homepage": "https://www.drupal.org/u/bevan", + "role": "Maintainer" + }, + { + "name": "dave-reid", + "homepage": "https://www.drupal.org/u/dave-reid", + "role": "Maintainer" + }, + { + "name": "dcam", + "homepage": "https://www.drupal.org/u/dcam", + "role": "Maintainer" + }, + { + "name": "dead_arm", + "homepage": "https://www.drupal.org/u/dead_arm", + "role": "Maintainer" + }, + { + "name": "geerlingguy", + "homepage": "https://www.drupal.org/u/geerlingguy", + "role": "Maintainer" + }, + { + "name": "greg-boggs", + "homepage": "https://www.drupal.org/u/greg-boggs", + "role": "Maintainer" + }, + { + "name": "irakli", + "homepage": "https://www.drupal.org/u/irakli", + "role": "Maintainer" + }, + { + "name": "markabur", + "homepage": "https://www.drupal.org/u/markabur", + "role": "Maintainer" + }, + { + "name": "mfer", + "homepage": "https://www.drupal.org/u/mfer", + "role": "Maintainer" + }, + { + "name": "oleksiy", + "homepage": "https://www.drupal.org/u/oleksiy", + "role": "Maintainer" + }, + { + "name": "psynaptic", + "homepage": "https://www.drupal.org/u/psynaptic", + "role": "Maintainer" + } + ], + "description": "Generates a theme style guide for proofing common elements", + "homepage": "https://www.drupal.org/project/styleguide", + "keywords": [ + "Drupal" + ], + "support": { + "source": "https://git.drupalcode.org/project/styleguide", + "issues": "https://www.drupal.org/project/issues/styleguide" + } + }, + { + "name": "drupal/svg_image", + "version": "3.2.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/svg_image.git", + "reference": "3.2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/svg_image-3.2.2.zip", + "reference": "3.2.2", + "shasum": "ce7226257ce332d82dedc21269bc73d12c29d6b2" + }, + "require": { + "drupal/core": "^10.3 || ^11", + "enshrined/svg-sanitize": ">=0.22 <1.0" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.2.2", + "datestamp": "1756292430", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Yaroslav Lushnikov", + "homepage": "https://www.drupal.org/u/imyaro", + "role": "Maintainer" + }, + { + "name": "See contributors", + "homepage": "https://www.drupal.org/node/2887125/committers" + }, + { + "name": "imyaro", + "homepage": "https://www.drupal.org/user/2870933" + }, + { + "name": "mably", + "homepage": "https://www.drupal.org/user/3375160" + }, + { + "name": "thomas.frobieter", + "homepage": "https://www.drupal.org/user/409335" + } + ], + "description": "Overrides the standard image formatter and widget to support SVG files.", + "homepage": "https://drupal.org/project/svg_image", + "support": { + "source": "https://git.drupalcode.org/project/svg_image", + "issues": "https://www.drupal.org/project/issues/svg_image" + } + }, + { + "name": "drupal/symfony_mailer_lite", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/symfony_mailer_lite.git", + "reference": "2.0.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/symfony_mailer_lite-2.0.3.zip", + "reference": "2.0.3", + "shasum": "50f1b02fcad01c902818a0df02cba59cc6b8f47a" + }, + "require": { + "drupal/core": "^10.1 || ^11", + "drupal/mailsystem": "^4.4", + "html2text/html2text": "^4.0.1", + "symfony/mailer": "^6.4 || ^7.1", + "tijsverkoyen/css-to-inline-styles": "^2.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.3", + "datestamp": "1750948870", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "zengenuity", + "homepage": "https://www.drupal.org/user/326925" + } + ], + "description": "Drupal Symfony Mailer Lite", + "homepage": "https://www.drupal.org/project/symfony_mailer_lite", + "support": { + "source": "https://git.drupalcode.org/project/symfony_mailer_lite" + } + }, + { + "name": "drupal/tagify", + "version": "1.2.42", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/tagify.git", + "reference": "1.2.42" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/tagify-1.2.42.zip", + "reference": "1.2.42", + "shasum": "3bc18ce2fad0ccdca0955900f69301824286d3d4" + }, + "require": { + "drupal/core": "^8.8 || ^9 || ^10 || ^11" + }, + "require-dev": { + "drupal/better_exposed_filters": "^7.0", + "drupal/facets": "^2.0", + "drupal/iconify_icons": "*", + "drupal/search_api": "^1.31", + "drupal/ui_icons": "*", + "drupal/ui_icons_field": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "1.2.42", + "datestamp": "1757084234", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "David Galeano", + "homepage": "https://www.drupal.org/u/gxleano" + } + ], + "description": "Integration with the Tagify JavaScript library.", + "homepage": "https://drupal.org/project/tagify", + "support": { + "source": "https://git.drupalcode.org/project/tagify", + "issues": "https://www.drupal.org/project/issues/tagify" + } + }, + { + "name": "drupal/testmode", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/testmode.git", + "reference": "2.6.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/testmode-2.6.0.zip", + "reference": "2.6.0", + "shasum": "62324042d517aa18db127e6d26bdb62ecd3c33ec" + }, + "require": { + "drupal/core": "^10 || ^11", + "php": ">=8.2" + }, + "require-dev": { + "drupal/autologout": "^2" + }, + "suggest": { + "drupal/search_api": "^1.25" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.6.0", + "datestamp": "1732698068", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Alex Skrypnyk", + "homepage": "https://www.drupal.org/u/alexskrypnyk", + "email": "alex@drevops.com", + "role": "Maintainer" + } + ], + "description": "Alter existing site content and other configurations when running tests.", + "homepage": "https://drupal.org/project/testmode", + "support": { + "source": "https://git.drupalcode.org/project/testmode", + "issues": "https://drupal.org/project/issues/testmode" + } + }, + { + "name": "drupal/token", + "version": "1.16.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/token.git", + "reference": "8.x-1.16" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "f7ae77316ef8135068d995c09507da7517b20572" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "require-dev": { + "drupal/book": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.16", + "datestamp": "1757151197", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": ">=9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "dave reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "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": "drupal/token_or", + "version": "2.3.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/token_or.git", + "reference": "2.3.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/token_or-2.3.2.zip", + "reference": "2.3.2", + "shasum": "a2ed893d2a538b7721a1ac12a23b7a9baeec44ad" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11", + "drupal/token": "^1.0" + }, + "require-dev": { + "drupal/webform": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.3.2", + "datestamp": "1748360075", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "danielbeeke", + "homepage": "https://www.drupal.org/user/2484978" + }, + { + "name": "jeroent", + "homepage": "https://www.drupal.org/user/2228934" + }, + { + "name": "pianomansam", + "homepage": "https://www.drupal.org/user/407020" + } + ], + "description": "Provides an 'or-able' token.", + "homepage": "https://www.drupal.org/project/token_or", + "support": { + "source": "https://git.drupalcode.org/project/token_or" + } + }, + { + "name": "drupal/trash", + "version": "3.0.21", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/trash.git", + "reference": "3.0.21" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/trash-3.0.21.zip", + "reference": "3.0.21", + "shasum": "8f5a297bea3efc2d2a1105378432e4ec86b833e7" + }, + "require": { + "drupal/core": "^10.3 | ^11" + }, + "conflict": { + "drush/drush": "<12.5.1" + }, + "require-dev": { + "drupal/redirect": "*", + "drupal/wse": "*" + }, + "suggest": { + "drush/drush": "^12 || ^13" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "3.0.21", + "datestamp": "1760707352", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "amateescu", + "homepage": "https://www.drupal.org/user/729614" + } + ], + "description": "This module adds a trash bin for all content entities.", + "homepage": "https://www.drupal.org/project/trash", + "support": { + "source": "https://git.drupalcode.org/project/trash" + } + }, + { + "name": "drupal/webform", + "version": "6.3.0-beta5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/webform.git", + "reference": "6.3.0-beta5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/webform-6.3.0-beta5.zip", + "reference": "6.3.0-beta5", + "shasum": "970ce4f5c2c2da450bd1edf245ac2ccd8705e281" + }, + "require": { + "drupal/core": "^10.3 || ^11.0" + }, + "require-dev": { + "drupal/address": "^2.0", + "drupal/captcha": "^2.0", + "drupal/chosen": "^4.0", + "drupal/clientside_validation": "^4.1", + "drupal/clientside_validation_jquery": "*", + "drupal/devel": "^5.3", + "drupal/entity": "^1.5", + "drupal/entity_print": "^2.15", + "drupal/hal": "^2.0", + "drupal/jquery_ui": "^1.7", + "drupal/jquery_ui_button": "^2.1", + "drupal/jquery_ui_checkboxradio": "^2.1", + "drupal/jquery_ui_datepicker": "^2.1", + "drupal/mailsystem": "^4.5", + "drupal/metatag": "^2.0", + "drupal/paragraphs": "^1.18", + "drupal/select2": "1.x-dev", + "drupal/smtp": "^1.4", + "drupal/styleguide": "^2.1", + "drupal/telephone_validation": "2.x-dev", + "drupal/token": "^1.15", + "drupal/webform_access": "*", + "drupal/webform_attachment": "*", + "drupal/webform_clientside_validation": "*", + "drupal/webform_devel": "*", + "drupal/webform_entity_print": "*", + "drupal/webform_node": "*", + "drupal/webform_options_limit": "*", + "drupal/webform_scheduled_email": "*", + "drupal/webform_share": "*", + "drupal/webform_ui": "*" + }, + "suggest": { + "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.", + "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained." + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "6.3.0-beta5", + "datestamp": "1758581720", + "security-coverage": { + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." + } + }, + "drush": { + "services": { + "drush.services.yml": ">=11" } } }, @@ -1506,2221 +9558,2112 @@ ], "authors": [ { - "name": "aspilicious", - "homepage": "https://www.drupal.org/user/172527" + "name": "Jacob Rockowitz (jrockowitz)", + "homepage": "https://www.drupal.org/u/jrockowitz", + "role": "Maintainer" }, { - "name": "borisson_", - "homepage": "https://www.drupal.org/user/2393360" + "name": "Contributors", + "homepage": "https://www.drupal.org/node/7404/committers", + "role": "Contributor" }, { - "name": "gábor hojtsy", - "homepage": "https://www.drupal.org/user/4166" + "name": "liam morland", + "homepage": "https://www.drupal.org/user/493050" }, { - "name": "jose reyero", - "homepage": "https://www.drupal.org/user/4299" + "name": "mandclu", + "homepage": "https://www.drupal.org/user/52136" }, { - "name": "vijaycs85", - "homepage": "https://www.drupal.org/user/93488" + "name": "quicksketch", + "homepage": "https://www.drupal.org/user/35821" + } + ], + "description": "Enables the creation of webforms and questionnaires.", + "homepage": "https://drupal.org/project/webform", + "support": { + "source": "https://git.drupalcode.org/project/webform", + "issues": "https://www.drupal.org/project/issues/webform?version=8.x", + "docs": "https://www.drupal.org/docs/8/modules/webform", + "forum": "https://drupal.stackexchange.com/questions/tagged/webform" + } + }, + { + "name": "drupal/yoast_seo", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/yoast_seo.git", + "reference": "8.x-2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/yoast_seo-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "02cbc1f35709fbf5a464e4686dfac10cedca0b67" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11", + "drupal/metatag": "^1.3 || ^2.0", + "goalgorilla/rtseo.js": "^2.0" + }, + "conflict": { + "drupal/commerce": ">2.0 <2.5" + }, + "require-dev": { + "drupal/paragraphs": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-2.2", + "datestamp": "1752684280", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "kingdutch", + "homepage": "https://www.drupal.org/user/1868952" }, { - "name": "wim leers", - "homepage": "https://www.drupal.org/user/99777" + "name": "Open Social", + "homepage": "https://www.drupal.org/user/272162" } ], - "description": "Provides a configuration data and structure inspector tool", - "homepage": "https://drupal.org/project/config_inspector", + "description": "Adds Real-time SEO page analysis and configuration.", + "homepage": "http://drupal.org/project/yoast_seo", "support": { - "source": "https://cgit.drupalcode.org/config_inspector", - "issues": "https://drupal.org/project/issues/config_inspector", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "http://cgit.drupalcode.org/yoast_seo", + "issues": "http://drupal.org/project/yoast_seo" } }, { - "name": "drupal/core", - "version": "11.1.7", + "name": "drush/drush", + "version": "13.6.2", "source": { "type": "git", - "url": "https://github.com/drupal/core.git", - "reference": "b0241948975ede8ca221971ecd3f71793447fded" + "url": "https://github.com/drush-ops/drush.git", + "reference": "635fce5f8223bae5c39495ee5709e993127ca413" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/b0241948975ede8ca221971ecd3f71793447fded", - "reference": "b0241948975ede8ca221971ecd3f71793447fded", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/635fce5f8223bae5c39495ee5709e993127ca413", + "reference": "635fce5f8223bae5c39495ee5709e993127ca413", "shasum": "" }, "require": { - "asm89/stack-cors": "^2.1", - "composer-runtime-api": "^2.1", - "composer/semver": "^3.3", - "doctrine/annotations": "^2.0", - "doctrine/lexer": "^2.0", - "egulias/email-validator": "^3.2.1|^4.0", - "ext-date": "*", + "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha", + "composer-runtime-api": "^2.2", + "composer/semver": "^1.4 || ^3", + "consolidation/annotated-command": "^4.9.2", + "consolidation/config": "^2.1.2 || ^3", + "consolidation/filter-via-dot-access-data": "^2.0.2", + "consolidation/output-formatters": "^4.3.2", + "consolidation/robo": "^4.0.6 || ^5", + "consolidation/site-alias": "^4", + "consolidation/site-process": "^5.2.0", + "dflydev/dot-access-data": "^3.0.2", "ext-dom": "*", - "ext-filter": "*", - "ext-gd": "*", - "ext-hash": "*", - "ext-json": "*", - "ext-pcre": "*", - "ext-pdo": "*", - "ext-session": "*", - "ext-simplexml": "*", - "ext-spl": "*", - "ext-tokenizer": "*", - "ext-xml": "*", - "ext-zlib": "*", - "guzzlehttp/guzzle": "^7.5", - "guzzlehttp/psr7": "^2.4.5", - "masterminds/html5": "^2.7", - "mck89/peast": "^1.14", - "pear/archive_tar": "^1.4.14", - "php": ">=8.3.0", - "php-tuf/composer-stager": "^2-rc5", - "psr/log": "^3.0", - "revolt/event-loop": "^1.0", - "sebastian/diff": "^4|^5", - "symfony/console": "^7.2", - "symfony/dependency-injection": "^7.2", - "symfony/event-dispatcher": "^7.2", - "symfony/filesystem": "^7.2", - "symfony/finder": "^7.2", - "symfony/http-foundation": "^7.2", - "symfony/http-kernel": "^7.2", - "symfony/mailer": "^7.2", - "symfony/mime": "^7.2", - "symfony/polyfill-iconv": "^1.26", - "symfony/process": "^7.2", - "symfony/psr-http-message-bridge": "^7.2", - "symfony/routing": "^7.2", - "symfony/serializer": "^7.2", - "symfony/validator": "^7.2", - "symfony/yaml": "^7.2", - "twig/twig": "^3.15.0" + "grasmash/yaml-cli": "^3.1", + "guzzlehttp/guzzle": "^7.0", + "laravel/prompts": "^0.3.5", + "league/container": "^4.2", + "php": ">=8.2", + "psy/psysh": "~0.12", + "symfony/event-dispatcher": "^6 || ^7", + "symfony/filesystem": "^6.1 || ^7", + "symfony/finder": "^6 || ^7", + "symfony/var-dumper": "^6.0 || ^7", + "symfony/yaml": "^6.0 || ^7" }, "conflict": { - "drush/drush": "<12.4.3" - }, - "replace": { - "drupal/core-annotation": "self.version", - "drupal/core-assertion": "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/core": "< 10.2", + "drupal/migrate_run": "*", + "drupal/migrate_tools": "<= 5" }, - "suggest": { - "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format." + "require-dev": { + "composer/installers": "^2", + "cweagans/composer-patches": "~1.7.3", + "drupal/core-recommended": "^10.3.0 || 11.x-dev", + "drupal/semver_example": "2.3.0", + "jetbrains/phpstorm-attributes": "^1.0", + "mglaman/phpstan-drupal": "^1.2", + "phpunit/phpunit": "^9 || ^10 || ^11", + "rector/rector": "^1", + "squizlabs/php_codesniffer": "^3.7" }, - "type": "drupal-core", + "bin": [ + "drush", + "drush.php" + ], + "type": "library", "extra": { - "drupal-scaffold": { - "file-mapping": { - "[web-root]/.htaccess": "assets/scaffold/files/htaccess", - "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", - "[web-root]/index.php": "assets/scaffold/files/index.php", - "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", - "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", - "[web-root]/update.php": "assets/scaffold/files/update.php", - "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", - "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", - "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", - "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", - "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", - "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", - "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", - "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt", - "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", - "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", - "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", - "[project-root]/recipes/README.txt": "assets/scaffold/files/recipes.README.txt", - "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", - "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", - "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", - "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", - "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php" - } + "installer-paths": { + "sut/core": [ + "type:drupal-core" + ], + "sut/libraries/{$name}": [ + "type:drupal-library" + ], + "sut/themes/unish/{$name}": [ + "drupal/empty_theme" + ], + "sut/drush/contrib/{$name}": [ + "type:drupal-drush" + ], + "sut/modules/unish/{$name}": [ + "drupal/devel" + ], + "sut/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "sut/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "sut/profiles/contrib/{$name}": [ + "type:drupal-profile" + ] } }, "autoload": { - "files": [ - "includes/bootstrap.inc" - ], "psr-4": { - "Drupal\\Core\\": "lib/Drupal/Core", - "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/StatementInterface.php", - "lib/Drupal/Core/DependencyInjection/Container.php", - "lib/Drupal/Core/DrupalKernel.php", - "lib/Drupal/Core/DrupalKernelInterface.php", - "lib/Drupal/Core/Installer/InstallerRedirectTrait.php", - "lib/Drupal/Core/Site/Settings.php", - "lib/Drupal/Component/Datetime/Time.php" - ] + "Drush\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], - "description": "Drupal is an open source content management platform powering millions of websites and applications.", + "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/drupal/core/tree/11.1.7" + "forum": "http://drupal.stackexchange.com/questions/tagged/drush", + "issues": "https://github.com/drush-ops/drush/issues", + "security": "https://github.com/drush-ops/drush/security/advisories", + "slack": "https://drupal.slack.com/messages/C62H9CWQM", + "source": "https://github.com/drush-ops/drush/tree/13.6.2" }, - "time": "2025-05-08T03:56:29+00:00" + "funding": [ + { + "url": "https://github.com/weitzman", + "type": "github" + } + ], + "time": "2025-08-04T21:21:58+00:00" }, { - "name": "drupal/core-composer-scaffold", - "version": "11.1.7", + "name": "egulias/email-validator", + "version": "4.0.4", "source": { "type": "git", - "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "30e2dce1d08858236ae2703c0a72d120d8075bc5" + "url": "https://github.com/egulias/EmailValidator.git", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/30e2dce1d08858236ae2703c0a72d120d8075bc5", - "reference": "30e2dce1d08858236ae2703c0a72d120d8075bc5", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", "shasum": "" }, "require": { - "composer-plugin-api": "^2", - "php": ">=7.3.0" - }, - "conflict": { - "drupal-composer/drupal-scaffold": "*" + "doctrine/lexer": "^2.0 || ^3.0", + "php": ">=8.1", + "symfony/polyfill-intl-idn": "^1.26" }, "require-dev": { - "composer/composer": "^1.8@stable" + "phpunit/phpunit": "^10.2", + "vimeo/psalm": "^5.12" }, - "type": "composer-plugin", + "suggest": { + "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + }, + "type": "library", "extra": { - "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin", "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "4.0.x-dev" } }, "autoload": { "psr-4": { - "Drupal\\Composer\\Plugin\\Scaffold\\": "" + "Egulias\\EmailValidator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], - "description": "A flexible Composer project scaffold builder.", - "homepage": "https://www.drupal.org/project/drupal", + "authors": [ + { + "name": "Eduardo Gulias Davis" + } + ], + "description": "A library for validating emails against several RFCs", + "homepage": "https://github.com/egulias/EmailValidator", "keywords": [ - "drupal" + "email", + "emailvalidation", + "emailvalidator", + "validation", + "validator" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/11.1.7" + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" }, - "time": "2024-11-02T22:49:15+00:00" + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2025-03-06T22:45:56+00:00" }, { - "name": "drupal/core-project-message", - "version": "11.1.7", + "name": "enshrined/svg-sanitize", + "version": "0.22.0", "source": { "type": "git", - "url": "https://github.com/drupal/core-project-message.git", - "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8" + "url": "https://github.com/darylldoyle/svg-sanitizer.git", + "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8", - "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8", + "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/0afa95ea74be155a7bcd6c6fb60c276c39984500", + "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500", "shasum": "" }, "require": { - "composer-plugin-api": "^2", - "php": ">=7.3.0" + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.1 || ^8.0" }, - "type": "composer-plugin", - "extra": { - "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin" + "require-dev": { + "phpunit/phpunit": "^6.5 || ^8.5" }, + "type": "library", "autoload": { "psr-4": { - "Drupal\\Composer\\Plugin\\ProjectMessage\\": "." + "enshrined\\svgSanitize\\": "src" } }, "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" + "authors": [ + { + "name": "Daryll Doyle", + "email": "daryll@enshrined.co.uk" + } ], + "description": "An SVG sanitizer for PHP", "support": { - "source": "https://github.com/drupal/core-project-message/tree/11.1.7" + "issues": "https://github.com/darylldoyle/svg-sanitizer/issues", + "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.22.0" }, - "time": "2023-07-24T07:55:25+00:00" + "time": "2025-08-12T10:13:48+00:00" }, { - "name": "drupal/core-recommended", - "version": "11.1.7", + "name": "geocoder-php/common-http", + "version": "4.7.0", "source": { "type": "git", - "url": "https://github.com/drupal/core-recommended.git", - "reference": "bf6c2fcee9e0fd402f32af70632ed8094ced34a3" + "url": "https://github.com/geocoder-php/php-common-http.git", + "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/bf6c2fcee9e0fd402f32af70632ed8094ced34a3", - "reference": "bf6c2fcee9e0fd402f32af70632ed8094ced34a3", + "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61", + "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61", "shasum": "" }, "require": { - "asm89/stack-cors": "~v2.2.0", - "composer/semver": "~3.4.3", - "doctrine/annotations": "~2.0.2", - "doctrine/deprecations": "~1.1.3", - "doctrine/lexer": "~2.1.1", - "drupal/core": "11.1.7", - "egulias/email-validator": "~4.0.2", - "guzzlehttp/guzzle": "~7.9.2", - "guzzlehttp/promises": "~2.0.4", - "guzzlehttp/psr7": "~2.7.0", - "masterminds/html5": "~2.9.0", - "mck89/peast": "~v1.16.3", - "pear/archive_tar": "~1.5.0", - "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.16", - "pear/pear_exception": "~v1.0.2", - "php-tuf/composer-stager": "~v2.0.1", - "psr/cache": "~3.0.0", - "psr/container": "~2.0.2", - "psr/event-dispatcher": "~1.0.0", - "psr/http-client": "~1.0.3", - "psr/http-factory": "~1.1.0", - "psr/log": "~3.0.2", - "ralouphie/getallheaders": "~3.0.3", - "revolt/event-loop": "~v1.0.6", - "sebastian/diff": "~5.1.1", - "symfony/console": "~v7.2.0", - "symfony/dependency-injection": "~v7.2.0", - "symfony/deprecation-contracts": "~v3.5.1", - "symfony/error-handler": "~v7.2.0", - "symfony/event-dispatcher": "~v7.2.0", - "symfony/event-dispatcher-contracts": "~v3.5.1", - "symfony/filesystem": "~v7.2.0", - "symfony/finder": "~v7.2.0", - "symfony/http-foundation": "~v7.2.0", - "symfony/http-kernel": "~v7.2.0", - "symfony/mailer": "~v7.2.0", - "symfony/mime": "~v7.2.0", - "symfony/polyfill-ctype": "~v1.31.0", - "symfony/polyfill-iconv": "~v1.31.0", - "symfony/polyfill-intl-grapheme": "~v1.31.0", - "symfony/polyfill-intl-idn": "~v1.31.0", - "symfony/polyfill-intl-normalizer": "~v1.31.0", - "symfony/polyfill-mbstring": "~v1.31.0", - "symfony/process": "~v7.2.0", - "symfony/psr-http-message-bridge": "~v7.2.0", - "symfony/routing": "~v7.2.0", - "symfony/serializer": "~v7.2.0", - "symfony/service-contracts": "~v3.5.1", - "symfony/string": "~v7.2.0", - "symfony/translation-contracts": "~v3.5.1", - "symfony/validator": "~v7.2.0", - "symfony/var-dumper": "~v7.2.0", - "symfony/var-exporter": "~v7.2.0", - "symfony/yaml": "~v7.2.0", - "twig/twig": "~v3.19.0" - }, - "conflict": { - "webflo/drupal-core-strict": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", - "support": { - "source": "https://github.com/drupal/core-recommended/tree/11.1.7" - }, - "time": "2025-05-08T03:56:29+00:00" - }, - { - "name": "drupal/crop", - "version": "2.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-2.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "be11fad0abf1d53544d35cb4ca6cedd8e91d2542" + "php": "^8.0", + "php-http/discovery": "^1.17", + "psr/http-client-implementation": "^1.0", + "psr/http-factory-implementation": "^1.0", + "willdurand/geocoder": "^4.0|^5.0" }, - "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "require-dev": { + "nyholm/psr7": "^1.0", + "php-http/message": "^1.0", + "php-http/mock-client": "^1.0", + "phpunit/phpunit": "^9.5", + "symfony/stopwatch": "~2.5 || ~5.0" }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "8.x-2.4", - "datestamp": "1720455738", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-master": "4.0-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Drupal Media Team", - "homepage": "https://www.drupal.org/user/3260690" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" + "autoload": { + "psr-4": { + "Geocoder\\Http\\": "" }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { - "name": "woprrr", - "homepage": "https://www.drupal.org/user/858604" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" } ], - "description": "Provides storage and API for image crops.", - "homepage": "https://www.drupal.org/project/crop", + "description": "Common files for HTTP based Geocoders", + "homepage": "http://geocoder-php.org", + "keywords": [ + "http geocoder" + ], "support": { - "source": "https://git.drupalcode.org/project/crop", - "issues": "https://www.drupal.org/project/issues/crop" - } + "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0" + }, + "time": "2025-04-15T12:38:11+00:00" }, { - "name": "drupal/ctools", - "version": "4.1.0", + "name": "geocoder-php/nominatim-provider", + "version": "5.8.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "4.1.0" + "url": "https://github.com/geocoder-php/nominatim-provider.git", + "reference": "1b6852d33e9b558a13d98510fff66e76f4aed9b2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip", - "reference": "4.1.0", - "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874" + "url": "https://api.github.com/repos/geocoder-php/nominatim-provider/zipball/1b6852d33e9b558a13d98510fff66e76f4aed9b2", + "reference": "1b6852d33e9b558a13d98510fff66e76f4aed9b2", + "shasum": "" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "geocoder-php/common-http": "^4.1", + "php": "^8.0", + "willdurand/geocoder": "^4.0|^5.0" }, - "type": "drupal-module", + "provide": { + "geocoder-php/provider-implementation": "1.0" + }, + "require-dev": { + "geocoder-php/provider-integration-tests": "^1.6.3", + "php-http/message": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "library", "extra": { - "drupal": { - "version": "4.1.0", - "datestamp": "1718144949", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "branch-alias": { - "dev-8.x-3.x": "3.x-dev" + "dev-master": "4.0-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Geocoder\\Provider\\Nominatim\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Kris Vanderwater (EclipseGc)", - "homepage": "https://www.drupal.org/u/eclipsegc", - "role": "Maintainer" - }, - { - "name": "Jakob Perry (japerry)", - "homepage": "https://www.drupal.org/u/japerry", - "role": "Maintainer" - }, - { - "name": "Tim Plunkett (tim.plunkett)", - "homepage": "https://www.drupal.org/u/timplunkett", - "role": "Maintainer" - }, - { - "name": "James Gilliland (neclimdul)", - "homepage": "https://www.drupal.org/u/neclimdul", - "role": "Maintainer" - }, - { - "name": "Daniel Wehner (dawehner)", - "homepage": "https://www.drupal.org/u/dawehner", - "role": "Maintainer" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "merlinofchaos", - "homepage": "https://www.drupal.org/user/26979" - }, - { - "name": "neclimdul", - "homepage": "https://www.drupal.org/user/48673" - }, + "name": "William Durand", + "email": "william.durand1@gmail.com" + } + ], + "description": "Geocoder Nominatim adapter", + "homepage": "http://geocoder-php.org/Geocoder/", + "support": { + "source": "https://github.com/geocoder-php/nominatim-provider/tree/5.8.0" + }, + "time": "2025-04-15T13:24:32+00:00" + }, + { + "name": "goalgorilla/rtseo.js", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/Kingdutch/RTSEO.js.git", + "reference": "ab5f9c3ff478e0e9d61f5cc3831038e4f22bbbb0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Kingdutch/RTSEO.js/zipball/ab5f9c3ff478e0e9d61f5cc3831038e4f22bbbb0", + "reference": "ab5f9c3ff478e0e9d61f5cc3831038e4f22bbbb0", + "shasum": "" + }, + "type": "drupal-library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0" + ], + "description": "Text analysis application for use with the Real-Time SEO Drupal module.", + "homepage": "https://github.com/goalgorilla/RTSEO.js", + "support": { + "source": "https://github.com/Kingdutch/RTSEO.js/tree/2.1.0" + }, + "funding": [ { - "name": "sdboyer", - "homepage": "https://www.drupal.org/user/146719" + "url": "https://symfony.com/sponsor", + "type": "custom" }, { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" + "url": "https://github.com/fabpot", + "type": "github" }, { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.", - "homepage": "https://www.drupal.org/project/ctools", - "support": { - "source": "https://git.drupalcode.org/project/ctools", - "issues": "https://www.drupal.org/project/issues/ctools" - } + "time": "2018-01-19T23:11:36+00:00" }, { - "name": "drupal/default_content", - "version": "2.0.0-alpha3", + "name": "graham-campbell/result-type", + "version": "v1.1.3", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/default_content.git", - "reference": "2.0.0-alpha3" + "url": "https://github.com/GrahamCampbell/Result-Type.git", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha3.zip", - "reference": "2.0.0-alpha3", - "shasum": "fdd90c70bd91896835f6ba5ec42c260c1a144a2b" + "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", + "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "shasum": "" }, "require": { - "drupal/core": "^9.1 || ^10 || ^11" + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3" }, "require-dev": { - "drupal/hal": "^1 || ^2", - "drupal/paragraphs": "^1" + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-alpha3", - "datestamp": "1724492420", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11 || ^12" - } + "type": "library", + "autoload": { + "psr-4": { + "GrahamCampbell\\ResultType\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "andypost", - "homepage": "https://www.drupal.org/user/118908" - }, - { - "name": "benjy", - "homepage": "https://www.drupal.org/user/1852732" - }, - { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "jibran", - "homepage": "https://www.drupal.org/user/1198144" - }, + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "An Implementation Of The Result Type", + "keywords": [ + "Graham Campbell", + "GrahamCampbell", + "Result Type", + "Result-Type", + "result" + ], + "support": { + "issues": "https://github.com/GrahamCampbell/Result-Type/issues", + "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + }, + "funding": [ { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "name": "sam152", - "homepage": "https://www.drupal.org/user/1485048" + "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", + "type": "tidelift" } ], - "description": "Imports default content when a module is enabled", - "homepage": "https://www.drupal.org/project/default_content", - "support": { - "source": "https://git.drupalcode.org/project/default_content" - } + "time": "2024-07-20T21:45:45+00:00" }, { - "name": "drupal/entity_reference_revisions", - "version": "1.12.0", + "name": "grasmash/expander", + "version": "3.0.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.12" + "url": "https://github.com/grasmash/expander.git", + "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26" + "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "shasum": "" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "dflydev/dot-access-data": "^3.0.0", + "php": ">=8.0", + "psr/log": "^2 | ^3" }, "require-dev": { - "drupal/diff": "^1 || ^2" + "greg-1-anderson/composer-test-scenarios": "^1", + "php-coveralls/php-coveralls": "^2.5", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.3" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.12", - "datestamp": "1722804497", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11" - } + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Grasmash\\Expander\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "Frans", - "homepage": "https://www.drupal.org/user/514222" - }, - { - "name": "jeroen.b", - "homepage": "https://www.drupal.org/user/1853532" - }, - { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" + "name": "Matthew Grasmick" } ], - "description": "Entity Reference Revisions", - "homepage": "https://www.drupal.org/project/entity_reference_revisions", + "description": "Expands internal property references in PHP arrays file.", "support": { - "source": "https://git.drupalcode.org/project/entity_reference_revisions" - } + "issues": "https://github.com/grasmash/expander/issues", + "source": "https://github.com/grasmash/expander/tree/3.0.1" + }, + "time": "2024-11-25T23:28:05+00:00" }, { - "name": "drupal/environment_indicator", - "version": "4.0.25", + "name": "grasmash/yaml-cli", + "version": "3.2.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "4.0.25" + "url": "https://github.com/grasmash/yaml-cli.git", + "reference": "09a8860566958a1576cc54bbe910a03477e54971" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.25.zip", - "reference": "4.0.25", - "shasum": "1bb58f759644efea79a44de2af5986eee9c1966e" + "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971", + "reference": "09a8860566958a1576cc54bbe910a03477e54971", + "shasum": "" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "dflydev/dot-access-data": "^3", + "php": ">=8.0", + "symfony/console": "^6 || ^7", + "symfony/filesystem": "^6 || ^7", + "symfony/yaml": "^6 || ^7" }, "require-dev": { - "drupal/gin": "^4.0", - "drupal/gin_toolbar": "^2.0" + "php-coveralls/php-coveralls": "^2", + "phpunit/phpunit": "^9", + "squizlabs/php_codesniffer": "^3.0" }, - "type": "drupal-module", + "bin": [ + "bin/yaml-cli" + ], + "type": "library", "extra": { - "drupal": { - "version": "4.0.25", - "datestamp": "1753296518", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-master": "3.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Grasmash\\YamlCli\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Tom Kirkpatrick (mrfelton)", - "homepage": "https://www.drupal.org/u/mrfelton", - "role": "Original author" - }, - { - "name": "Mateu Aguiló Bosch (e0ipso)", - "homepage": "https://www.drupal.org/u/e0ipso", - "email": "mateu@mateuaguilo.com", - "role": "Maintainer" - }, - { - "name": "Ignacio Sánchez (isholgueras)", - "homepage": "https://www.drupal.org/u/isholgueras", - "email": "nacho@isholgueras.com", - "role": "Co-maintainer" - }, - { - "name": "Chris Green (trackleft2)", - "homepage": "https://www.drupal.org/u/trackleft2", - "role": "Co-maintainer" - }, - { - "name": "trackleft2", - "homepage": "https://www.drupal.org/user/2860655" + "name": "Matthew Grasmick" } ], - "description": "Environment Indicator adds some visual cues to indicate which copy of the site are you interacting with", - "homepage": "https://www.drupal.org/project/environment_indicator", + "description": "A command line tool for reading and manipulating yaml files.", "support": { - "source": "https://git.drupal.org/project/environment_indicator.git", - "issues": "https://www.drupal.org/project/issues/environment_indicator" - } + "issues": "https://github.com/grasmash/yaml-cli/issues", + "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1" + }, + "time": "2024-04-23T02:10:57+00:00" }, { - "name": "drupal/field_group", - "version": "4.0.0", + "name": "guzzlehttp/guzzle", + "version": "7.9.3", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "4.0.0" + "url": "https://github.com/guzzle/guzzle.git", + "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-4.0.0.zip", - "reference": "4.0.0", - "shasum": "d3ff81d8a64b6ac392989b668cfa417be5101642" + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "shasum": "" }, "require": { - "drupal/core": "^10.3 || ^11" + "ext-json": "*", + "guzzlehttp/promises": "^1.5.3 || ^2.0.3", + "guzzlehttp/psr7": "^2.7.0", + "php": "^7.2.5 || ^8.0", + "psr/http-client": "^1.0", + "symfony/deprecation-contracts": "^2.2 || ^3.0" + }, + "provide": { + "psr/http-client-implementation": "1.0" }, "require-dev": { - "drupal/jquery_ui_accordion": "*" + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-curl": "*", + "guzzle/client-integration-tests": "3.0.2", + "php-http/message-factory": "^1.1", + "phpunit/phpunit": "^8.5.39 || ^9.6.20", + "psr/log": "^1.1 || ^2.0 || ^3.0" }, - "type": "drupal-module", + "suggest": { + "ext-curl": "Required for CURL handler support", + "ext-intl": "Required for Internationalized Domain Name (IDN) support", + "psr/log": "Required for using the Log middleware" + }, + "type": "library", "extra": { - "drupal": { - "version": "4.0.0", - "datestamp": "1745478894", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "anybody", - "homepage": "https://www.drupal.org/user/291091" - }, - { - "name": "grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "hydra", - "homepage": "https://www.drupal.org/user/647364" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "joevagyok", - "homepage": "https://www.drupal.org/user/2876343" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" }, { - "name": "jyve", - "homepage": "https://www.drupal.org/user/591438" + "name": "Jeremy Lindblom", + "email": "jeremeamia@gmail.com", + "homepage": "https://github.com/jeremeamia" }, { - "name": "nils.destoop", - "homepage": "https://www.drupal.org/user/361625" + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" }, { - "name": "Stalski", - "homepage": "https://www.drupal.org/user/322618" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" }, { - "name": "swentel", - "homepage": "https://www.drupal.org/user/107403" - } - ], - "description": "Provides the field_group module.", - "homepage": "https://www.drupal.org/project/field_group", - "support": { - "source": "https://git.drupalcode.org/project/field_group", - "issues": "https://www.drupal.org/project/issues/field_group" - } - }, - { - "name": "drupal/focal_point", - "version": "2.1.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "2.1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-2.1.2.zip", - "reference": "2.1.2", - "shasum": "5f8ffadd37748506c8f00314b1d45c947eb27cf7" - }, - "require": { - "drupal/core": "^9.3 || ^10 || ^11", - "drupal/crop": "^2.3" - }, - "require-dev": { - "drupal/crop": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.2", - "datestamp": "1731556344", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "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" } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" ], - "authors": [ + "description": "Guzzle is a PHP HTTP client library", + "keywords": [ + "client", + "curl", + "framework", + "http", + "http client", + "psr-18", + "psr-7", + "rest", + "web service" + ], + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + }, + "funding": [ { - "name": "Alexander Ross (bleen)", - "homepage": "https://www.drupal.org/u/bleen", - "role": "Maintainer" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "name": "rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", + "type": "tidelift" } ], - "description": "Focal Point allows content creators to mark the most important part of an image for easier cropping.", - "homepage": "https://drupal.org/project/focal_point", - "support": { - "source": "https://cgit.drupalcode.org/focal_point", - "issues": "https://drupal.org/project/issues/focal_point", - "irc": "irc://irc.freenode.org/drupal-contribute" - } + "time": "2025-03-27T13:37:11+00:00" }, { - "name": "drupal/generated_content", - "version": "1.5.4", + "name": "guzzlehttp/promises", + "version": "2.2.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/generated_content.git", - "reference": "1.5.4" + "url": "https://github.com/guzzle/promises.git", + "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/generated_content-1.5.4.zip", - "reference": "1.5.4", - "shasum": "e76f9ef956301fdbc5ff7fb6d012e5088b4d4bf8" + "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", + "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "shasum": "" }, "require": { - "drupal/core": "^9 || ^10 || ^11", - "php": ">=8.2" + "php": "^7.2.5 || ^8.0" }, - "suggest": { - "drupal/config_filter": "Provides API to modify the configuration when it is synchronized between the database and the exported yaml files." + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "1.5.4", - "datestamp": "1747131918", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "GuzzleHttp\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Alex Skrypnyk", - "homepage": "https://www.drupal.org/u/alexskrypnyk", - "email": "alex@drevops.com", - "role": "Maintainer" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" } ], - "description": "Drupal module to programmatically generate content.", - "homepage": "https://drupal.org/project/generated_content", + "description": "Guzzle promises library", "keywords": [ - "drupal", - "generate", - "random" + "promise" ], "support": { - "source": "https://git.drupalcode.org/project/generated_content", - "issues": "https://drupal.org/project/issues/generated_content" - } + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/2.2.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", + "type": "tidelift" + } + ], + "time": "2025-03-27T13:27:01+00:00" }, { - "name": "drupal/layout_builder_restrictions", - "version": "3.0.4", + "name": "guzzlehttp/psr7", + "version": "2.7.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/layout_builder_restrictions.git", - "reference": "3.0.4" + "url": "https://github.com/guzzle/psr7.git", + "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_restrictions-3.0.4.zip", - "reference": "3.0.4", - "shasum": "826edbab8ed665bccfb668092b155a60ec6da296" + "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "shasum": "" }, "require": { - "drupal/core": "^10 || ^11" + "php": "^7.2.5 || ^8.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.1 || ^2.0", + "ralouphie/getallheaders": "^3.0" }, - "type": "drupal-module", + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "http-interop/http-factory-tests": "0.9.0", + "phpunit/phpunit": "^8.5.39 || ^9.6.20" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", "extra": { - "drupal": { - "version": "3.0.4", - "datestamp": "1752762015", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "bamarni-bin": { + "bin-links": true, + "forward-command": false } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "The University of Texas at Austin", - "homepage": "https://www.drupal.org/university-of-texas-at-austin", - "role": "Maintainer" - }, - { - "name": "Eirik Morland (eiriksm)", - "homepage": "https://www.drupal.org/u/eiriksm", - "role": "Maintainer" - }, - { - "name": "eiriksm", - "homepage": "https://www.drupal.org/user/1014468" - }, - { - "name": "gravelpot", - "homepage": "https://www.drupal.org/user/748208" - }, - { - "name": "jeff cardwell", - "homepage": "https://www.drupal.org/user/2913129" - }, - { - "name": "lreynaga", - "homepage": "https://www.drupal.org/user/3400232" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { - "name": "mark_fullmer", - "homepage": "https://www.drupal.org/user/2612816" + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" }, { - "name": "mmarler", - "homepage": "https://www.drupal.org/user/500192" + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" }, { - "name": "ricksta", - "homepage": "https://www.drupal.org/user/311042" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" }, { - "name": "texas_tater", - "homepage": "https://www.drupal.org/user/753614" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" }, { - "name": "twfahey", - "homepage": "https://www.drupal.org/user/3403722" + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" }, { - "name": "utexas", - "homepage": "https://www.drupal.org/user/3716409" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], - "description": "Manage which fields & layouts are available in Layout Builder", - "homepage": "https://www.drupal.org/project/layout_builder_restrictions", + "description": "PSR-7 message implementation that also provides common utility methods", "keywords": [ - "Drupal", - "Layout Builder Restrictions" + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" ], "support": { - "source": "https://git.drupalcode.org/project/layout_builder_restrictions", - "issues": "https://www.drupal.org/project/issues/layout_builder_restrictions" - } - }, - { - "name": "drupal/linkit", - "version": "7.0.10", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "7.0.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-7.0.10.zip", - "reference": "7.0.10", - "shasum": "10a7d4bce0038e887e597911b60919496c640f41" - }, - "require": { - "drupal/core": "^10.1 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "7.0.10", - "datestamp": "1760731845", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/2.7.1" }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ + "funding": [ { - "name": "Emil Stjerneman", - "homepage": "https://stjerneman.com", - "email": "emil@stjerneman.com", - "role": "Maintainer" + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "name": "johnwebdev", - "homepage": "https://www.drupal.org/user/3331569" + "url": "https://github.com/Nyholm", + "type": "github" }, { - "name": "mark_fullmer", - "homepage": "https://www.drupal.org/user/2612816" + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" } ], - "description": "Linkit - Enriched linking experience", - "homepage": "http://drupal.org/project/linkit", - "support": { - "source": "http://cgit.drupalcode.org/linkit", - "issues": "http://drupal.org/project/linkit" - } + "time": "2025-03-27T12:30:47+00:00" }, { - "name": "drupal/menu_block", - "version": "1.14.0", + "name": "html2text/html2text", + "version": "4.3.2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.14" + "url": "https://github.com/mtibben/html2text.git", + "reference": "3b443cbe302b52eb5806a21a9dbd79524203970a" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4" + "url": "https://api.github.com/repos/mtibben/html2text/zipball/3b443cbe302b52eb5806a21a9dbd79524203970a", + "reference": "3b443cbe302b52eb5806a21a9dbd79524203970a", + "shasum": "" }, - "require": { - "drupal/core": "^10.1 || ^11" + "require-dev": { + "phpunit/phpunit": "~4|^9.0" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.14", - "datestamp": "1740624449", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "suggest": { + "ext-mbstring": "For best performance", + "symfony/polyfill-mbstring": "If you can't install ext-mbstring" + }, + "type": "library", + "autoload": { + "psr-4": { + "Html2Text\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], - "authors": [ - { - "name": "dave reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "johnalbin", - "homepage": "https://www.drupal.org/user/32095" - }, - { - "name": "kim.pepper", - "homepage": "https://www.drupal.org/user/370574" - }, - { - "name": "renatog", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "rrrob", - "homepage": "https://www.drupal.org/user/273533" - } - ], - "description": "Provides configurable blocks of menu links.", - "homepage": "https://www.drupal.org/project/menu_block", + "description": "Converts HTML to formatted plain text", "support": { - "source": "https://git.drupalcode.org/project/menu_block" - } + "issues": "https://github.com/mtibben/html2text/issues", + "source": "https://github.com/mtibben/html2text/tree/4.3.2" + }, + "time": "2024-08-20T02:43:29+00:00" }, { - "name": "drupal/mysql57", - "version": "1.0.0", + "name": "itamair/geophp", + "version": "1.7", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/mysql57.git", - "reference": "1.0.0" + "url": "https://github.com/itamair/geoPHP.git", + "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mysql57-1.0.0.zip", - "reference": "1.0.0", - "shasum": "3d733fd6b0116999b110965d6dbf1c0f763d3f23" + "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956", + "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956", + "shasum": "" }, - "require": { - "drupal/core": "^10.2 || ^11" + "require-dev": { + "phpunit/phpunit": "4.1.* || 9.5.*" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.0", - "datestamp": "1722631498", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } + "type": "library", + "autoload": { + "classmap": [ + "geoPHP.inc" + ] }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "effulgentsia", - "homepage": "https://www.drupal.org/user/78040" + "name": "Italo Mairo", + "homepage": "https://www.linkedin.com/in/italomairo/", + "role": "Maintanier of this Library Repo" + }, + { + "name": "Patrick Hayes", + "homepage": "https://www.linkedin.com/in/patrickdhayes/", + "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)" } ], - "description": "Database driver for MySQL with compatibility for MySQL 5.7.8 or higher and MariaDB 10.3.7 or higher.", - "homepage": "https://www.drupal.org/project/mysql57", + "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.", + "homepage": "https://github.com/itamair/geoPHP", "support": { - "source": "https://git.drupalcode.org/project/mysql57" - } + "source": "https://github.com/itamair/geoPHP/tree/1.7" + }, + "time": "2025-05-31T05:12:53+00:00" }, { - "name": "drupal/paragraphs", - "version": "1.19.0", + "name": "justinrainbow/json-schema", + "version": "5.3.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.19" + "url": "https://github.com/jsonrainbow/json-schema.git", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip", - "reference": "8.x-1.19", - "shasum": "831a81a11eac419e8410db45efef5b283c4d117c" + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "shasum": "" }, "require": { - "drupal/core": "^10.2 || ^11", - "drupal/entity_reference_revisions": "~1.3" + "php": ">=7.1" }, "require-dev": { - "drupal/block_field": "1.x-dev", - "drupal/diff": "1.x-dev", - "drupal/entity_browser": "2.x-dev", - "drupal/entity_usage": "2.x-dev", - "drupal/feeds": "^3", - "drupal/field_group": "3.x-dev", - "drupal/inline_entity_form": "3.x-dev", - "drupal/paragraphs-paragraphs_library": "*", - "drupal/replicate": "1.x-dev", - "drupal/search_api": "^1", - "drupal/search_api_db": "*" - }, - "suggest": { - "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module" + "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", + "json-schema/json-schema-test-suite": "1.2.0", + "phpunit/phpunit": "^4.8.35" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.19", - "datestamp": "1740907076", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "bin": [ + "bin/validate-json" + ], + "type": "library", + "autoload": { + "psr-4": { + "JsonSchema\\": "src/JsonSchema/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "frans", - "homepage": "https://www.drupal.org/user/514222" - }, - { - "name": "jeroen.b", - "homepage": "https://www.drupal.org/user/1853532" + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" }, { - "name": "jstoller", - "homepage": "https://www.drupal.org/user/99012" + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" }, { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" }, { - "name": "primsi", - "homepage": "https://www.drupal.org/user/282629" + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" } ], - "description": "Enables the creation of Paragraphs entities.", - "homepage": "https://www.drupal.org/project/paragraphs", + "description": "A library to validate a json schema.", + "homepage": "https://github.com/justinrainbow/json-schema", + "keywords": [ + "json", + "schema" + ], "support": { - "source": "https://git.drupalcode.org/project/paragraphs" - } + "issues": "https://github.com/jsonrainbow/json-schema/issues", + "source": "https://github.com/jsonrainbow/json-schema/tree/5.3.0" + }, + "time": "2024-07-06T21:00:26+00:00" }, { - "name": "drupal/pathauto", - "version": "1.14.0", + "name": "laravel/prompts", + "version": "v0.3.7", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.14" + "url": "https://github.com/laravel/prompts.git", + "reference": "a1891d362714bc40c8d23b0b1d7090f022ea27cc" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "07f0d2efcf0bfb450e2ab69a43921fa39dc5f25b" + "url": "https://api.github.com/repos/laravel/prompts/zipball/a1891d362714bc40c8d23b0b1d7090f022ea27cc", + "reference": "a1891d362714bc40c8d23b0b1d7090f022ea27cc", + "shasum": "" }, "require": { - "drupal/core": "^10 || ^11", - "drupal/ctools": "*", - "drupal/token": "*" + "composer-runtime-api": "^2.2", + "ext-mbstring": "*", + "php": "^8.1", + "symfony/console": "^6.2|^7.0" }, "conflict": { - "drush/drush": "<12.5.1" + "illuminate/console": ">=10.17.0 <10.25.0", + "laravel/framework": ">=10.17.0 <10.25.0" }, "require-dev": { - "drupal/forum": "*" + "illuminate/collections": "^10.0|^11.0|^12.0", + "mockery/mockery": "^1.5", + "pestphp/pest": "^2.3|^3.4", + "phpstan/phpstan": "^1.12.28", + "phpstan/phpstan-mockery": "^1.1.3" }, "suggest": { - "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability." + "ext-pcntl": "Required for the spinner to be animated." }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "8.x-1.14", - "datestamp": "1759838097", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-main": "0.3.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "dave reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "Freso", - "homepage": "https://www.drupal.org/user/27504" - }, - { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Laravel\\Prompts\\": "src/" } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" ], - "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.", - "homepage": "https://www.drupal.org/project/pathauto", + "description": "Add beautiful and user-friendly forms to your command-line applications.", "support": { - "source": "https://cgit.drupalcode.org/pathauto", - "issues": "https://www.drupal.org/project/issues/pathauto", - "documentation": "https://www.drupal.org/docs/8/modules/pathauto" - } + "issues": "https://github.com/laravel/prompts/issues", + "source": "https://github.com/laravel/prompts/tree/v0.3.7" + }, + "time": "2025-09-19T13:47:56+00:00" }, { - "name": "drupal/redirect", - "version": "1.12.0", + "name": "league/commonmark", + "version": "2.7.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.12" + "url": "https://github.com/thephpleague/commonmark.git", + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "1cdee11356a25b9f9a10329aec0eeb293e0023de" + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca", + "reference": "10732241927d3971d28e7ea7b5712721fa2296ca", + "shasum": "" }, "require": { - "drupal/core": "^10 || ^11" + "ext-mbstring": "*", + "league/config": "^1.1.1", + "php": "^7.4 || ^8.0", + "psr/event-dispatcher": "^1.0", + "symfony/deprecation-contracts": "^2.1 || ^3.0", + "symfony/polyfill-php80": "^1.16" }, - "type": "drupal-module", + "require-dev": { + "cebe/markdown": "^1.0", + "commonmark/cmark": "0.31.1", + "commonmark/commonmark.js": "0.31.1", + "composer/package-versions-deprecated": "^1.8", + "embed/embed": "^4.4", + "erusev/parsedown": "^1.0", + "ext-json": "*", + "github/gfm": "0.29.0", + "michelf/php-markdown": "^1.4 || ^2.0", + "nyholm/psr7": "^1.5", + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0", + "scrutinizer/ocular": "^1.8.1", + "symfony/finder": "^5.3 | ^6.0 | ^7.0", + "symfony/process": "^5.4 | ^6.0 | ^7.0", + "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0", + "unleashedtech/php-coding-standard": "^3.1.1", + "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0" + }, + "suggest": { + "symfony/yaml": "v2.3+ required if using the Front Matter extension" + }, + "type": "library", "extra": { - "drupal": { - "version": "8.x-1.12", - "datestamp": "1756419163", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-main": "2.8-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "League\\CommonMark\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)", + "homepage": "https://commonmark.thephpleague.com", + "keywords": [ + "commonmark", + "flavored", + "gfm", + "github", + "github-flavored", + "markdown", + "md", + "parser" + ], + "support": { + "docs": "https://commonmark.thephpleague.com/", + "forum": "https://github.com/thephpleague/commonmark/discussions", + "issues": "https://github.com/thephpleague/commonmark/issues", + "rss": "https://github.com/thephpleague/commonmark/releases.atom", + "source": "https://github.com/thephpleague/commonmark" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" }, { - "name": "dave reid", - "homepage": "https://www.drupal.org/user/53892" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" }, { - "name": "kristen pol", - "homepage": "https://www.drupal.org/user/8389" + "url": "https://github.com/colinodell", + "type": "github" }, { - "name": "pifagor", - "homepage": "https://www.drupal.org/user/2375692" + "url": "https://tidelift.com/funding/github/packagist/league/commonmark", + "type": "tidelift" } ], - "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" - } + "time": "2025-07-20T12:47:49+00:00" }, { - "name": "drupal/sdc_devel", - "version": "1.0.1", + "name": "league/config", + "version": "v1.2.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/sdc_devel.git", - "reference": "1.0.1" + "url": "https://github.com/thephpleague/config.git", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/sdc_devel-1.0.1.zip", - "reference": "1.0.1", - "shasum": "3faec9bc22931a53dfda2768b4fa923a75143498" + "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3", + "shasum": "" }, "require": { - "drupal/core": "^10.3.12 || ^11.0.11 || ^11.1.2", - "twig/twig": "~3.19" + "dflydev/dot-access-data": "^3.0.1", + "nette/schema": "^1.2", + "php": "^7.4 || ^8.0" }, - "type": "drupal-module", + "require-dev": { + "phpstan/phpstan": "^1.8.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.7.3" + }, + "type": "library", "extra": { - "drupal": { - "version": "1.0.1", - "datestamp": "1741451950", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-main": "1.2-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "League\\Config\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "mogtofu33", - "homepage": "https://www.drupal.org/user/278510" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "Define configuration arrays with strict schemas and access values with dot notation", + "homepage": "https://config.thephpleague.com", + "keywords": [ + "array", + "config", + "configuration", + "dot", + "dot-access", + "nested", + "schema" + ], + "support": { + "docs": "https://config.thephpleague.com/", + "issues": "https://github.com/thephpleague/config/issues", + "rss": "https://github.com/thephpleague/config/releases.atom", + "source": "https://github.com/thephpleague/config" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" }, { - "name": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" } ], - "description": "Provides development aids to Single-Directory Components developers.", - "homepage": "https://www.drupal.org/project/sdc_devel", - "support": { - "source": "https://git.drupalcode.org/project/sdc_devel" - } + "time": "2022-12-11T20:36:23+00:00" }, { - "name": "drupal/search_api", - "version": "1.38.0", + "name": "league/container", + "version": "4.2.5", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.38" + "url": "https://github.com/thephpleague/container.git", + "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip", - "reference": "8.x-1.38", - "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496" + "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00", + "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00", + "shasum": "" }, "require": { - "drupal/core": "^10.2 || ^11" + "php": "^7.2 || ^8.0", + "psr/container": "^1.1 || ^2.0" }, - "conflict": { - "drupal/search_api_solr": "2.* || 3.0 || 3.1" + "provide": { + "psr/container-implementation": "^1.0" }, - "require-dev": { - "drupal/language_fallback_fix": "@dev", - "drupal/search_api_autocomplete": "@dev", - "drupal/search_api_db": "*" + "replace": { + "orno/di": "~2.0" }, - "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." + "require-dev": { + "nette/php-generator": "^3.4", + "nikic/php-parser": "^4.10", + "phpstan/phpstan": "^0.12.47", + "phpunit/phpunit": "^8.5.17", + "roave/security-advisories": "dev-latest", + "scrutinizer/ocular": "^1.8", + "squizlabs/php_codesniffer": "^3.6" }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-1.x": "1.x-dev", + "dev-2.x": "2.x-dev", + "dev-3.x": "3.x-dev", + "dev-4.x": "4.x-dev", + "dev-master": "4.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "League\\Container\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Thomas Seidl", - "homepage": "https://www.drupal.org/u/drunken-monkey" - }, - { - "name": "Nick Veenhof", - "homepage": "https://www.drupal.org/u/nick_vh" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/790418/committers" + "name": "Phil Bennett", + "email": "mail@philbennett.co.uk", + "role": "Developer" } ], - "description": "Provides a generic framework for modules offering search capabilities.", - "homepage": "https://www.drupal.org/project/search_api", + "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://git.drupalcode.org/project/search_api", - "issues": "https://www.drupal.org/project/issues/search_api", - "irc": "irc://irc.freenode.org/drupal-search-api" - } + "issues": "https://github.com/thephpleague/container/issues", + "source": "https://github.com/thephpleague/container/tree/4.2.5" + }, + "funding": [ + { + "url": "https://github.com/philipobenito", + "type": "github" + } + ], + "time": "2025-05-20T12:55:37+00:00" }, { - "name": "drupal/shield", - "version": "1.8.0", + "name": "league/html-to-markdown", + "version": "5.1.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/shield.git", - "reference": "8.x-1.8" + "url": "https://github.com/thephpleague/html-to-markdown.git", + "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "709b5580790a3b5bd8dda26f722cdb5a9c3911c5" + "url": "https://api.github.com/repos/thephpleague/html-to-markdown/zipball/0b4066eede55c48f38bcee4fb8f0aa85654390fd", + "reference": "0b4066eede55c48f38bcee4fb8f0aa85654390fd", + "shasum": "" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "ext-dom": "*", + "ext-xml": "*", + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "drupal/key": "^1.16" + "mikehaertl/php-shellcommand": "^1.1.0", + "phpstan/phpstan": "^1.8.8", + "phpunit/phpunit": "^8.5 || ^9.2", + "scrutinizer/ocular": "^1.6", + "unleashedtech/php-coding-standard": "^2.7 || ^3.0", + "vimeo/psalm": "^4.22 || ^5.0" }, - "type": "drupal-module", + "bin": [ + "bin/html-to-markdown" + ], + "type": "library", "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1719947682", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "branch-alias": { - "dev-8.x-1.x": "1.x-dev" + "dev-master": "5.2-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "League\\HTMLToMarkdown\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "badjava", - "homepage": "https://www.drupal.org/user/83372" - }, - { - "name": "chx", - "homepage": "https://www.drupal.org/user/9446" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" }, { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, + "name": "Nick Cernis", + "email": "nick@cern.is", + "homepage": "http://modernnerd.net", + "role": "Original Author" + } + ], + "description": "An HTML-to-markdown conversion helper for PHP", + "homepage": "https://github.com/thephpleague/html-to-markdown", + "keywords": [ + "html", + "markdown" + ], + "support": { + "issues": "https://github.com/thephpleague/html-to-markdown/issues", + "source": "https://github.com/thephpleague/html-to-markdown/tree/5.1.1" + }, + "funding": [ { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" + "url": "https://www.colinodell.com/sponsor", + "type": "custom" }, { - "name": "kalman.hosszu", - "homepage": "https://www.drupal.org/user/267481" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" }, { - "name": "pkiraly", - "homepage": "https://www.drupal.org/user/352587" + "url": "https://github.com/colinodell", + "type": "github" }, { - "name": "vbouchet", - "homepage": "https://www.drupal.org/user/1671428" + "url": "https://tidelift.com/funding/github/packagist/league/html-to-markdown", + "type": "tidelift" } ], - "description": "Creates a general shield for the site.", - "homepage": "https://www.drupal.org/project/shield", - "support": { - "source": "https://git.drupalcode.org/project/shield" - } + "time": "2023-07-12T21:21:09+00:00" }, { - "name": "drupal/simple_sitemap", - "version": "4.2.2", + "name": "masterminds/html5", + "version": "2.9.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/simple_sitemap.git", - "reference": "4.2.2" + "url": "https://github.com/Masterminds/html5-php.git", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.2.zip", - "reference": "4.2.2", - "shasum": "1f9c9197d37450fb347a4fa3f10191f5f4b5ef13" + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "shasum": "" }, "require": { - "drupal/core": "^10.2 || ^11", - "ext-xmlwriter": "*" - }, - "conflict": { - "drush/drush": "<12.5.1" + "ext-dom": "*", + "php": ">=5.3.0" }, "require-dev": { - "drupal/paragraphs": "^1.18" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "4.2.2", - "datestamp": "1750876597", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Pawel Ginalski (gbyte)", - "homepage": "https://www.drupal.org/u/gbyte", - "email": "contact@gbyte.dev", - "role": "Maintainer" - }, - { - "name": "walkingdexter", - "homepage": "https://www.drupal.org/user/3251330" + "branch-alias": { + "dev-master": "2.7-dev" } - ], - "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", - "homepage": "https://drupal.org/project/simple_sitemap", - "support": { - "source": "https://cgit.drupalcode.org/simple_sitemap", - "issues": "https://drupal.org/project/issues/simple_sitemap" - } - }, - { - "name": "drupal/styleguide", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/styleguide.git", - "reference": "2.2.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/styleguide-2.2.0.zip", - "reference": "2.2.0", - "shasum": "18794275f5e21b7b38237b94b8463cd8e9be515b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11 || ^12" }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.0", - "datestamp": "1745808001", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "autoload": { + "psr-4": { + "Masterminds\\": "src" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "MIT" ], "authors": [ { - "name": "agentrickard", - "homepage": "https://www.drupal.org/u/agentrickard", - "role": "Maintainer" - }, - { - "name": "bevan", - "homepage": "https://www.drupal.org/u/bevan", - "role": "Maintainer" - }, - { - "name": "dave-reid", - "homepage": "https://www.drupal.org/u/dave-reid", - "role": "Maintainer" - }, - { - "name": "dcam", - "homepage": "https://www.drupal.org/u/dcam", - "role": "Maintainer" - }, - { - "name": "dead_arm", - "homepage": "https://www.drupal.org/u/dead_arm", - "role": "Maintainer" - }, - { - "name": "geerlingguy", - "homepage": "https://www.drupal.org/u/geerlingguy", - "role": "Maintainer" - }, - { - "name": "greg-boggs", - "homepage": "https://www.drupal.org/u/greg-boggs", - "role": "Maintainer" - }, - { - "name": "irakli", - "homepage": "https://www.drupal.org/u/irakli", - "role": "Maintainer" - }, - { - "name": "markabur", - "homepage": "https://www.drupal.org/u/markabur", - "role": "Maintainer" - }, - { - "name": "mfer", - "homepage": "https://www.drupal.org/u/mfer", - "role": "Maintainer" + "name": "Matt Butcher", + "email": "technosophos@gmail.com" }, { - "name": "oleksiy", - "homepage": "https://www.drupal.org/u/oleksiy", - "role": "Maintainer" + "name": "Matt Farina", + "email": "matt@mattfarina.com" }, { - "name": "psynaptic", - "homepage": "https://www.drupal.org/u/psynaptic", - "role": "Maintainer" + "name": "Asmir Mustafic", + "email": "goetas@gmail.com" } ], - "description": "Generates a theme style guide for proofing common elements", - "homepage": "https://www.drupal.org/project/styleguide", + "description": "An HTML5 parser and serializer.", + "homepage": "http://masterminds.github.io/html5-php", "keywords": [ - "Drupal" + "HTML5", + "dom", + "html", + "parser", + "querypath", + "serializer", + "xml" ], "support": { - "source": "https://git.drupalcode.org/project/styleguide", - "issues": "https://www.drupal.org/project/issues/styleguide" - } + "issues": "https://github.com/Masterminds/html5-php/issues", + "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + }, + "time": "2024-03-31T07:05:07+00:00" }, { - "name": "drupal/testmode", - "version": "2.6.0", + "name": "mck89/peast", + "version": "v1.17.2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/testmode.git", - "reference": "2.6.0" + "url": "https://github.com/mck89/peast.git", + "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/testmode-2.6.0.zip", - "reference": "2.6.0", - "shasum": "62324042d517aa18db127e6d26bdb62ecd3c33ec" + "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea", + "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea", + "shasum": "" }, "require": { - "drupal/core": "^10 || ^11", - "php": ">=8.2" + "ext-mbstring": "*", + "php": ">=5.4.0" }, "require-dev": { - "drupal/autologout": "^2" - }, - "suggest": { - "drupal/search_api": "^1.25" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "2.6.0", - "datestamp": "1732698068", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } + "branch-alias": { + "dev-master": "1.17.2-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "psr-4": { + "Peast\\": "lib/Peast/" + } + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause" ], "authors": [ { - "name": "Alex Skrypnyk", - "homepage": "https://www.drupal.org/u/alexskrypnyk", - "email": "alex@drevops.com", - "role": "Maintainer" + "name": "Marco Marchiò", + "email": "marco.mm89@gmail.com" } ], - "description": "Alter existing site content and other configurations when running tests.", - "homepage": "https://drupal.org/project/testmode", + "description": "Peast is PHP library that generates AST for JavaScript code", "support": { - "source": "https://git.drupalcode.org/project/testmode", - "issues": "https://drupal.org/project/issues/testmode" - } + "issues": "https://github.com/mck89/peast/issues", + "source": "https://github.com/mck89/peast/tree/v1.17.2" + }, + "time": "2025-07-01T09:30:45+00:00" }, { - "name": "drupal/token", - "version": "1.15.0", + "name": "mglaman/composer-drupal-lenient", + "version": "1.0.7", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.15" + "url": "https://github.com/mglaman/composer-drupal-lenient.git", + "reference": "bcb9be7f2d3160be43cd1d13a44580734a5afee0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip", - "reference": "8.x-1.15", - "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf" + "url": "https://api.github.com/repos/mglaman/composer-drupal-lenient/zipball/bcb9be7f2d3160be43cd1d13a44580734a5afee0", + "reference": "bcb9be7f2d3160be43cd1d13a44580734a5afee0", + "shasum": "" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "composer-plugin-api": "^2.0", + "php": ">=8.1" }, "require-dev": { - "drupal/book": "*" + "composer/composer": "^2.3", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.6", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.2", + "phpunit/phpunit": "^9.5", + "squizlabs/php_codesniffer": "^3.6" }, - "type": "drupal-module", + "type": "composer-plugin", "extra": { - "drupal": { - "version": "8.x-1.15", - "datestamp": "1722206211", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": ">=9" - } + "class": "ComposerDrupalLenient\\Plugin" + }, + "autoload": { + "psr-4": { + "ComposerDrupalLenient\\": "src/" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "authors": [ { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "dave reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "eaton", - "homepage": "https://www.drupal.org/user/16496" - }, - { - "name": "fago", - "homepage": "https://www.drupal.org/user/16747" - }, + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "support": { + "issues": "https://github.com/mglaman/composer-drupal-lenient/issues", + "source": "https://github.com/mglaman/composer-drupal-lenient/tree/1.0.7" + }, + "funding": [ { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" - }, + "url": "https://github.com/mglaman", + "type": "github" + } + ], + "time": "2024-11-21T15:59:26+00:00" + }, + { + "name": "mtownsend/xml-to-array", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/mtownsend5512/xml-to-array.git", + "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mtownsend5512/xml-to-array/zipball/0734720a8462dba36d90fb8b2723bf46af0091f4", + "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4", + "shasum": "" + }, + "require": { + "php": "~7.0|~8.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.4" + }, + "type": "library", + "autoload": { + "files": [ + "src/helpers.php" + ], + "psr-4": { + "Mtownsend\\XmlToArray\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { - "name": "mikeryan", - "homepage": "https://www.drupal.org/user/4420" + "name": "Mark Townsend", + "email": "mtownsend5512@gmail.com", + "role": "Developer" } ], - "description": "Provides a user interface for the Token API, some missing core tokens.", - "homepage": "https://www.drupal.org/project/token", + "description": "Easily convert valid xml to a php array.", + "keywords": [ + "array", + "convert", + "laravel", + "xml" + ], "support": { - "source": "https://git.drupalcode.org/project/token" - } + "issues": "https://github.com/mtownsend5512/xml-to-array/issues", + "source": "https://github.com/mtownsend5512/xml-to-array/tree/2.0.0" + }, + "time": "2021-02-27T22:39:18+00:00" }, { - "name": "drupal/webform", - "version": "6.3.0-beta5", + "name": "nette/schema", + "version": "v1.3.2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.3.0-beta5" + "url": "https://github.com/nette/schema.git", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.3.0-beta5.zip", - "reference": "6.3.0-beta5", - "shasum": "970ce4f5c2c2da450bd1edf245ac2ccd8705e281" + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", + "shasum": "" }, "require": { - "drupal/core": "^10.3 || ^11.0" + "nette/utils": "^4.0", + "php": "8.1 - 8.4" }, "require-dev": { - "drupal/address": "^2.0", - "drupal/captcha": "^2.0", - "drupal/chosen": "^4.0", - "drupal/clientside_validation": "^4.1", - "drupal/clientside_validation_jquery": "*", - "drupal/devel": "^5.3", - "drupal/entity": "^1.5", - "drupal/entity_print": "^2.15", - "drupal/hal": "^2.0", - "drupal/jquery_ui": "^1.7", - "drupal/jquery_ui_button": "^2.1", - "drupal/jquery_ui_checkboxradio": "^2.1", - "drupal/jquery_ui_datepicker": "^2.1", - "drupal/mailsystem": "^4.5", - "drupal/metatag": "^2.0", - "drupal/paragraphs": "^1.18", - "drupal/select2": "1.x-dev", - "drupal/smtp": "^1.4", - "drupal/styleguide": "^2.1", - "drupal/telephone_validation": "2.x-dev", - "drupal/token": "^1.15", - "drupal/webform_access": "*", - "drupal/webform_attachment": "*", - "drupal/webform_clientside_validation": "*", - "drupal/webform_devel": "*", - "drupal/webform_entity_print": "*", - "drupal/webform_node": "*", - "drupal/webform_options_limit": "*", - "drupal/webform_scheduled_email": "*", - "drupal/webform_share": "*", - "drupal/webform_ui": "*" + "nette/tester": "^2.5.2", + "phpstan/phpstan-nette": "^1.0", + "tracy/tracy": "^2.8" }, - "suggest": { - "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.", - "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained." - }, - "type": "drupal-module", + "type": "library", "extra": { - "drupal": { - "version": "6.3.0-beta5", - "datestamp": "1758581720", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } - }, - "drush": { - "services": { - "drush.services.yml": ">=11" - } + "branch-alias": { + "dev-master": "1.3-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" ], "authors": [ { - "name": "Jacob Rockowitz (jrockowitz)", - "homepage": "https://www.drupal.org/u/jrockowitz", - "role": "Maintainer" - }, - { - "name": "Contributors", - "homepage": "https://www.drupal.org/node/7404/committers", - "role": "Contributor" - }, - { - "name": "liam morland", - "homepage": "https://www.drupal.org/user/493050" - }, - { - "name": "mandclu", - "homepage": "https://www.drupal.org/user/52136" + "name": "David Grudl", + "homepage": "https://davidgrudl.com" }, { - "name": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "description": "Enables the creation of webforms and questionnaires.", - "homepage": "https://drupal.org/project/webform", + "description": "📐 Nette Schema: validating data structures against a given Schema.", + "homepage": "https://nette.org", + "keywords": [ + "config", + "nette" + ], "support": { - "source": "https://git.drupalcode.org/project/webform", - "issues": "https://www.drupal.org/project/issues/webform?version=8.x", - "docs": "https://www.drupal.org/docs/8/modules/webform", - "forum": "https://drupal.stackexchange.com/questions/tagged/webform" - } + "issues": "https://github.com/nette/schema/issues", + "source": "https://github.com/nette/schema/tree/v1.3.2" + }, + "time": "2024-10-06T23:10:23+00:00" }, { - "name": "drush/drush", - "version": "13.6.0", + "name": "nette/utils", + "version": "v4.0.8", "source": { "type": "git", - "url": "https://github.com/drush-ops/drush.git", - "reference": "570a05dce7aea9770f17306808804290764127ad" + "url": "https://github.com/nette/utils.git", + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/570a05dce7aea9770f17306808804290764127ad", - "reference": "570a05dce7aea9770f17306808804290764127ad", + "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede", + "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha", - "composer-runtime-api": "^2.2", - "composer/semver": "^1.4 || ^3", - "consolidation/annotated-command": "^4.9.2", - "consolidation/config": "^2.1.2 || ^3", - "consolidation/filter-via-dot-access-data": "^2.0.2", - "consolidation/output-formatters": "^4.3.2", - "consolidation/robo": "^4.0.6 || ^5", - "consolidation/site-alias": "^4", - "consolidation/site-process": "^5.2.0", - "dflydev/dot-access-data": "^3.0.2", - "ext-dom": "*", - "grasmash/yaml-cli": "^3.1", - "guzzlehttp/guzzle": "^7.0", - "laravel/prompts": "^0.3.5", - "league/container": "^4.2", - "php": ">=8.2", - "psy/psysh": "~0.12", - "symfony/event-dispatcher": "^6 || ^7", - "symfony/filesystem": "^6.1 || ^7", - "symfony/finder": "^6 || ^7", - "symfony/var-dumper": "^6.0 || ^7", - "symfony/yaml": "^6.0 || ^7" + "php": "8.0 - 8.5" }, "conflict": { - "drupal/core": "< 10.2", - "drupal/migrate_run": "*", - "drupal/migrate_tools": "<= 5" + "nette/finder": "<3", + "nette/schema": "<1.2.2" }, "require-dev": { - "composer/installers": "^2", - "cweagans/composer-patches": "~1.7.3", - "drupal/core-recommended": "^10.2.5 || 11.x-dev", - "drupal/semver_example": "2.3.0", - "jetbrains/phpstorm-attributes": "^1.0", - "mglaman/phpstan-drupal": "^1.2", - "phpunit/phpunit": "^9 || ^10", - "rector/rector": "^1", - "squizlabs/php_codesniffer": "^3.7" + "jetbrains/phpstorm-attributes": "^1.2", + "nette/tester": "^2.5", + "phpstan/phpstan-nette": "^2.0@stable", + "tracy/tracy": "^2.9" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()" }, - "bin": [ - "drush", - "drush.php" - ], "type": "library", "extra": { - "installer-paths": { - "sut/core": [ - "type:drupal-core" - ], - "sut/libraries/{$name}": [ - "type:drupal-library" - ], - "sut/themes/unish/{$name}": [ - "drupal/empty_theme" - ], - "sut/drush/contrib/{$name}": [ - "type:drupal-drush" - ], - "sut/modules/unish/{$name}": [ - "drupal/devel" - ], - "sut/themes/contrib/{$name}": [ - "type:drupal-theme" - ], - "sut/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "sut/profiles/contrib/{$name}": [ - "type:drupal-profile" - ] + "branch-alias": { + "dev-master": "4.0-dev" } }, "autoload": { "psr-4": { - "Drush\\": "src/" - } + "Nette\\": "src" + }, + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" ], "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": "David Grudl", + "homepage": "https://davidgrudl.com" }, { - "name": "Damian Lee", - "email": "damiankloip@googlemail.com" + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "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": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], "support": { - "forum": "http://drupal.stackexchange.com/questions/tagged/drush", - "issues": "https://github.com/drush-ops/drush/issues", - "security": "https://github.com/drush-ops/drush/security/advisories", - "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/13.6.0" + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v4.0.8" }, - "funding": [ - { - "url": "https://github.com/weitzman", - "type": "github" - } - ], - "time": "2025-04-22T12:14:13+00:00" + "time": "2025-08-06T21:43:34+00:00" }, { - "name": "egulias/email-validator", - "version": "4.0.4", + "name": "nikic/php-parser", + "version": "v5.6.1", "source": { "type": "git", - "url": "https://github.com/egulias/EmailValidator.git", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", + "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "shasum": "" }, "require": { - "doctrine/lexer": "^2.0 || ^3.0", - "php": ">=8.1", - "symfony/polyfill-intl-idn": "^1.26" + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" }, "require-dev": { - "phpunit/phpunit": "^10.2", - "vimeo/psalm": "^5.12" - }, - "suggest": { - "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" }, + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0.x-dev" + "dev-master": "5.x-dev" } }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "src" + "PhpParser\\": "lib/PhpParser" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Eduardo Gulias Davis" + "name": "Nikita Popov" } ], - "description": "A library for validating emails against several RFCs", - "homepage": "https://github.com/egulias/EmailValidator", + "description": "A PHP parser written in PHP", "keywords": [ - "email", - "emailvalidation", - "emailvalidator", - "validation", - "validator" + "parser", + "php" ], "support": { - "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1" }, - "funding": [ + "time": "2025-08-13T20:13:15+00:00" + }, + { + "name": "oomphinc/composer-installers-extender", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/oomphinc/composer-installers-extender.git", + "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/cbf4b6f9a24153b785d09eee755b995ba87bd5f9", + "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1 || ^2.0", + "composer/installers": "^1.0 || ^2.0", + "php": ">=7.1" + }, + "require-dev": { + "composer/composer": "^2.0", + "phpunit/phpunit": "^7.2", + "squizlabs/php_codesniffer": "^3.3" + }, + "type": "composer-plugin", + "extra": { + "class": "OomphInc\\ComposerInstallersExtender\\Plugin" + }, + "autoload": { + "psr-4": { + "OomphInc\\ComposerInstallersExtender\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { - "url": "https://github.com/egulias", - "type": "github" + "name": "Stephen Beemsterboer", + "email": "stephen@oomphinc.com", + "homepage": "https://github.com/balbuf" + }, + { + "name": "Nathan Dentzau", + "email": "nate@oomphinc.com", + "homepage": "http://oomph.is/ndentzau" } ], - "time": "2025-03-06T22:45:56+00:00" + "description": "Extend the composer/installers plugin to accept any arbitrary package type.", + "homepage": "http://www.oomphinc.com/", + "support": { + "issues": "https://github.com/oomphinc/composer-installers-extender/issues", + "source": "https://github.com/oomphinc/composer-installers-extender/tree/2.0.1" + }, + "time": "2021-12-15T12:32:42+00:00" }, { - "name": "graham-campbell/result-type", - "version": "v1.1.3", + "name": "openai-php/client", + "version": "v0.16.1", "source": { "type": "git", - "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" + "url": "https://github.com/openai-php/client.git", + "reference": "7a59e4d896d83f8c923e0b3a5ebae0a5cddad2d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", + "url": "https://api.github.com/repos/openai-php/client/zipball/7a59e4d896d83f8c923e0b3a5ebae0a5cddad2d6", + "reference": "7a59e4d896d83f8c923e0b3a5ebae0a5cddad2d6", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3" + "php": "^8.2.0", + "php-http/discovery": "^1.20.0", + "php-http/multipart-stream-builder": "^1.4.2", + "psr/http-client": "^1.0.3", + "psr/http-client-implementation": "^1.0.1", + "psr/http-factory-implementation": "*", + "psr/http-message": "^1.1.0|^2.0.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "guzzlehttp/guzzle": "^7.9.3", + "guzzlehttp/psr7": "^2.7.1", + "laravel/pint": "^1.24.0", + "mockery/mockery": "^1.6.12", + "nunomaduro/collision": "^8.8.0", + "pestphp/pest": "^3.8.2|^4.0.0", + "pestphp/pest-plugin-arch": "^3.1.1|^4.0.0", + "pestphp/pest-plugin-type-coverage": "^3.5.1|^4.0.0", + "phpstan/phpstan": "^1.12.25", + "symfony/var-dumper": "^7.2.6" }, "type": "library", "autoload": { + "files": [ + "src/OpenAI.php" + ], "psr-4": { - "GrahamCampbell\\ResultType\\": "src/" + "OpenAI\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3729,394 +11672,298 @@ ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "name": "Nuno Maduro", + "email": "enunomaduro@gmail.com" + }, + { + "name": "Sandro Gehri" } ], - "description": "An Implementation Of The Result Type", + "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API", "keywords": [ - "Graham Campbell", - "GrahamCampbell", - "Result Type", - "Result-Type", - "result" + "GPT-3", + "api", + "client", + "codex", + "dall-e", + "language", + "natural", + "openai", + "php", + "processing", + "sdk" ], "support": { - "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" + "issues": "https://github.com/openai-php/client/issues", + "source": "https://github.com/openai-php/client/tree/v0.16.1" }, "funding": [ { - "url": "https://github.com/GrahamCampbell", + "url": "https://www.paypal.com/paypalme/enunomaduro", + "type": "custom" + }, + { + "url": "https://github.com/gehrisandro", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", - "type": "tidelift" + "url": "https://github.com/nunomaduro", + "type": "github" } ], - "time": "2024-07-20T21:45:45+00:00" + "time": "2025-09-04T14:32:16+00:00" }, { - "name": "grasmash/expander", - "version": "3.0.1", + "name": "pear/archive_tar", + "version": "1.5.0", "source": { "type": "git", - "url": "https://github.com/grasmash/expander.git", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4" + "url": "https://github.com/pear/Archive_Tar.git", + "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602", + "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^3.0.0", - "php": ">=8.0", - "psr/log": "^2 | ^3" + "pear/pear-core-minimal": "^1.10.0alpha2", + "php": ">=5.2.0" }, "require-dev": { - "greg-1-anderson/composer-test-scenarios": "^1", - "php-coveralls/php-coveralls": "^2.5", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.3" + "phpunit/phpunit": "*" + }, + "suggest": { + "ext-bz2": "Bz2 compression support.", + "ext-xz": "Lzma2 compression support.", + "ext-zlib": "Gzip compression support." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { - "psr-4": { - "Grasmash\\Expander\\": "src/" + "psr-0": { + "Archive_Tar": "" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Matthew Grasmick" + "name": "Vincent Blavet", + "email": "vincent@phpconcept.net" + }, + { + "name": "Greg Beaver", + "email": "greg@chiaraquartet.net" + }, + { + "name": "Michiel Rook", + "email": "mrook@php.net" } ], - "description": "Expands internal property references in PHP arrays file.", + "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/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/3.0.1" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", + "source": "https://github.com/pear/Archive_Tar" }, - "time": "2024-11-25T23:28:05+00:00" + "time": "2024-03-16T16:21:40+00:00" }, { - "name": "grasmash/yaml-cli", - "version": "3.2.1", + "name": "pear/console_getopt", + "version": "v1.4.3", "source": { "type": "git", - "url": "https://github.com/grasmash/yaml-cli.git", - "reference": "09a8860566958a1576cc54bbe910a03477e54971" + "url": "https://github.com/pear/Console_Getopt.git", + "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971", - "reference": "09a8860566958a1576cc54bbe910a03477e54971", + "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0", + "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0", "shasum": "" }, - "require": { - "dflydev/dot-access-data": "^3", - "php": ">=8.0", - "symfony/console": "^6 || ^7", - "symfony/filesystem": "^6 || ^7", - "symfony/yaml": "^6 || ^7" - }, - "require-dev": { - "php-coveralls/php-coveralls": "^2", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.0" - }, - "bin": [ - "bin/yaml-cli" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, "autoload": { - "psr-4": { - "Grasmash\\YamlCli\\": "src/" + "psr-0": { + "Console": "./" } }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "./" + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Matthew Grasmick" + "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": "A command line tool for reading and manipulating yaml files.", + "description": "More info available on: http://pear.php.net/package/Console_Getopt", "support": { - "issues": "https://github.com/grasmash/yaml-cli/issues", - "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt", + "source": "https://github.com/pear/Console_Getopt" }, - "time": "2024-04-23T02:10:57+00:00" + "time": "2019-11-20T18:27:48+00:00" }, { - "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "name": "pear/pear-core-minimal", + "version": "v1.10.16", "source": { "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "url": "https://github.com/pear/pear-core-minimal.git", + "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033", + "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033", "shasum": "" }, "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", - "php": "^7.2.5 || ^8.0", - "psr/http-client": "^1.0", - "symfony/deprecation-contracts": "^2.2 || ^3.0" - }, - "provide": { - "psr/http-client-implementation": "1.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "ext-curl": "*", - "guzzle/client-integration-tests": "3.0.2", - "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.39 || ^9.6.20", - "psr/log": "^1.1 || ^2.0 || ^3.0" + "pear/console_getopt": "~1.4", + "pear/pear_exception": "~1.0", + "php": ">=5.4" }, - "suggest": { - "ext-curl": "Required for CURL handler support", - "ext-intl": "Required for Internationalized Domain Name (IDN) support", - "psr/log": "Required for using the Log middleware" + "replace": { + "rsky/pear-core-min": "self.version" }, "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - } - }, "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "GuzzleHttp\\": "src/" - } + "classmap": [ + "src/" + ] }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "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" - } + "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "src/" ], - "description": "Guzzle is a PHP HTTP client library", - "keywords": [ - "client", - "curl", - "framework", - "http", - "http client", - "psr-18", - "psr-7", - "rest", - "web service" + "license": [ + "BSD-3-Clause" ], - "support": { - "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, + "authors": [ { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", - "type": "tidelift" + "name": "Christian Weiske", + "email": "cweiske@php.net", + "role": "Lead" } ], - "time": "2025-03-27T13:37:11+00:00" + "description": "Minimal set of PEAR core files to be used as composer dependency", + "support": { + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", + "source": "https://github.com/pear/pear-core-minimal" + }, + "time": "2024-11-24T22:27:58+00:00" }, { - "name": "guzzlehttp/promises", - "version": "2.0.4", + "name": "pear/pear_exception", + "version": "v1.0.2", "source": { "type": "git", - "url": "https://github.com/guzzle/promises.git", - "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" + "url": "https://github.com/pear/PEAR_Exception.git", + "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", - "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", + "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0" + "php": ">=5.2.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "<9" }, - "type": "library", + "type": "class", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false + "branch-alias": { + "dev-master": "1.0.x-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\Promise\\": "src/" - } + "classmap": [ + "PEAR/" + ] }, "notification-url": "https://packagist.org/downloads/", + "include-path": [ + "." + ], "license": [ - "MIT" + "BSD-2-Clause" ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" + "name": "Helgi Thormar", + "email": "dufuz@php.net" }, { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" + "name": "Greg Beaver", + "email": "cellog@php.net" } ], - "description": "Guzzle promises library", + "description": "The PEAR Exception base class.", + "homepage": "https://github.com/pear/PEAR_Exception", "keywords": [ - "promise" + "exception" ], "support": { - "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.4" + "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", + "source": "https://github.com/pear/PEAR_Exception" }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", - "type": "tidelift" - } - ], - "time": "2024-10-17T10:06:22+00:00" + "time": "2021-03-21T15:43:46+00:00" }, { - "name": "guzzlehttp/psr7", - "version": "2.7.1", + "name": "phootwork/collection", + "version": "v3.2.3", "source": { "type": "git", - "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "url": "https://github.com/phootwork/collection.git", + "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa", + "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.1 || ^2.0", - "ralouphie/getallheaders": "^3.0" - }, - "provide": { - "psr/http-factory-implementation": "1.0", - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" - }, - "suggest": { - "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + "phootwork/lang": "^3.0", + "php": ">=8.0" }, "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - } - }, "autoload": { "psr-4": { - "GuzzleHttp\\Psr7\\": "src/" + "phootwork\\collection\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -4125,178 +11972,130 @@ ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" - }, - { - "name": "George Mponos", - "email": "gmponos@gmail.com", - "homepage": "https://github.com/gmponos" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://github.com/sagikazarmark" - }, - { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" + "name": "Thomas Gossmann", + "homepage": "http://gos.si" } ], - "description": "PSR-7 message implementation that also provides common utility methods", + "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.", + "homepage": "https://phootwork.github.io/collection/", "keywords": [ - "http", - "message", - "psr-7", - "request", - "response", - "stream", - "uri", - "url" + "Array object", + "Text object", + "collection", + "collections", + "json", + "list", + "map", + "queue", + "set", + "stack", + "xml" ], "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" + "issues": "https://github.com/phootwork/phootwork/issues", + "source": "https://github.com/phootwork/collection/tree/v3.2.3" }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", - "type": "tidelift" - } - ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2022-08-27T12:51:24+00:00" }, { - "name": "laravel/prompts", - "version": "v0.3.5", + "name": "phootwork/lang", + "version": "v3.2.3", "source": { "type": "git", - "url": "https://github.com/laravel/prompts.git", - "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1" + "url": "https://github.com/phootwork/lang.git", + "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1", - "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1", + "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", + "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", "shasum": "" }, - "require": { - "composer-runtime-api": "^2.2", - "ext-mbstring": "*", - "php": "^8.1", - "symfony/console": "^6.2|^7.0" - }, - "conflict": { - "illuminate/console": ">=10.17.0 <10.25.0", - "laravel/framework": ">=10.17.0 <10.25.0" - }, - "require-dev": { - "illuminate/collections": "^10.0|^11.0|^12.0", - "mockery/mockery": "^1.5", - "pestphp/pest": "^2.3|^3.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-mockery": "^1.1" - }, - "suggest": { - "ext-pcntl": "Required for the spinner to be animated." + "require": { + "php": ">=8.0", + "symfony/polyfill-mbstring": "^1.12", + "symfony/polyfill-php81": "^1.22" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "0.3.x-dev" - } - }, "autoload": { - "files": [ - "src/helpers.php" - ], "psr-4": { - "Laravel\\Prompts\\": "src/" + "phootwork\\lang\\": "" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Add beautiful and user-friendly forms to your command-line applications.", + "authors": [ + { + "name": "Thomas Gossmann", + "homepage": "http://gos.si" + } + ], + "description": "Missing PHP language constructs", + "homepage": "https://phootwork.github.io/lang/", + "keywords": [ + "array", + "comparator", + "comparison", + "string" + ], "support": { - "issues": "https://github.com/laravel/prompts/issues", - "source": "https://github.com/laravel/prompts/tree/v0.3.5" + "issues": "https://github.com/phootwork/phootwork/issues", + "source": "https://github.com/phootwork/lang/tree/v3.2.3" }, - "time": "2025-02-11T13:34:40+00:00" + "time": "2024-10-03T13:43:19+00:00" }, { - "name": "league/container", - "version": "4.2.4", + "name": "php-http/discovery", + "version": "1.20.0", "source": { "type": "git", - "url": "https://github.com/thephpleague/container.git", - "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec" + "url": "https://github.com/php-http/discovery.git", + "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/7ea728b013b9a156c409c6f0fc3624071b742dec", - "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec", + "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d", + "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "psr/container": "^1.1 || ^2.0" + "composer-plugin-api": "^1.0|^2.0", + "php": "^7.1 || ^8.0" }, - "provide": { - "psr/container-implementation": "^1.0" + "conflict": { + "nyholm/psr7": "<1.0", + "zendframework/zend-diactoros": "*" }, - "replace": { - "orno/di": "~2.0" + "provide": { + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "*", + "psr/http-factory-implementation": "*", + "psr/http-message-implementation": "*" }, "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" + "composer/composer": "^1.0.2|^2.0", + "graham-campbell/phpspec-skip-example-extension": "^5.0", + "php-http/httplug": "^1.0 || ^2.0", + "php-http/message-factory": "^1.0", + "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3", + "sebastian/comparator": "^3.0.5 || ^4.0.8", + "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1" }, - "type": "library", + "type": "composer-plugin", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev", - "dev-2.x": "2.x-dev", - "dev-3.x": "3.x-dev", - "dev-4.x": "4.x-dev", - "dev-master": "4.x-dev" - } + "class": "Http\\Discovery\\Composer\\Plugin", + "plugin-optional": true }, "autoload": { "psr-4": { - "League\\Container\\": "src" - } + "Http\\Discovery\\": "src/" + }, + "exclude-from-classmap": [ + "src/Composer/Plugin.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -4304,64 +12103,63 @@ ], "authors": [ { - "name": "Phil Bennett", - "email": "mail@philbennett.co.uk", - "role": "Developer" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" } ], - "description": "A fast and intuitive dependency injection container.", - "homepage": "https://github.com/thephpleague/container", + "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations", + "homepage": "http://php-http.org", "keywords": [ - "container", - "dependency", - "di", - "injection", - "league", - "provider", - "service" + "adapter", + "client", + "discovery", + "factory", + "http", + "message", + "psr17", + "psr7" ], "support": { - "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.4" + "issues": "https://github.com/php-http/discovery/issues", + "source": "https://github.com/php-http/discovery/tree/1.20.0" }, - "funding": [ - { - "url": "https://github.com/philipobenito", - "type": "github" - } - ], - "time": "2024-11-10T12:42:13+00:00" + "time": "2024-10-02T11:20:13+00:00" }, { - "name": "masterminds/html5", - "version": "2.9.0", + "name": "php-http/guzzle7-adapter", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + "url": "https://github.com/php-http/guzzle7-adapter.git", + "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb", + "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb", "shasum": "" }, "require": { - "ext-dom": "*", - "php": ">=5.3.0" + "guzzlehttp/guzzle": "^7.0", + "php": "^7.3 | ^8.0", + "php-http/httplug": "^2.0", + "psr/http-client": "^1.0" + }, + "provide": { + "php-http/async-client-implementation": "1.0", + "php-http/client-implementation": "1.0", + "psr/http-client-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + "php-http/client-integration-tests": "^3.0", + "php-http/message-factory": "^1.1", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^8.0|^9.3" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.7-dev" - } - }, "autoload": { "psr-4": { - "Masterminds\\": "src" + "Http\\Adapter\\Guzzle7\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4370,231 +12168,229 @@ ], "authors": [ { - "name": "Matt Butcher", - "email": "technosophos@gmail.com" - }, - { - "name": "Matt Farina", - "email": "matt@mattfarina.com" - }, - { - "name": "Asmir Mustafic", - "email": "goetas@gmail.com" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" } ], - "description": "An HTML5 parser and serializer.", - "homepage": "http://masterminds.github.io/html5-php", + "description": "Guzzle 7 HTTP Adapter", + "homepage": "http://httplug.io", "keywords": [ - "HTML5", - "dom", - "html", - "parser", - "querypath", - "serializer", - "xml" + "Guzzle", + "http" ], "support": { - "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" + "issues": "https://github.com/php-http/guzzle7-adapter/issues", + "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0" }, - "time": "2024-03-31T07:05:07+00:00" + "time": "2024-11-26T11:14:36+00:00" }, { - "name": "mck89/peast", - "version": "v1.16.3", + "name": "php-http/httplug", + "version": "2.4.1", "source": { "type": "git", - "url": "https://github.com/mck89/peast.git", - "reference": "645ec21b650bc2aced18285c85f220d22afc1430" + "url": "https://github.com/php-http/httplug.git", + "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430", - "reference": "645ec21b650bc2aced18285c85f220d22afc1430", + "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4", + "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">=5.4.0" + "php": "^7.1 || ^8.0", + "php-http/promise": "^1.1", + "psr/http-client": "^1.0", + "psr/http-message": "^1.0 || ^2.0" }, "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.16.3-dev" - } - }, "autoload": { "psr-4": { - "Peast\\": "lib/Peast/" + "Http\\Client\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Marco Marchiò", - "email": "marco.mm89@gmail.com" + "name": "Eric GELOEN", + "email": "geloen.eric@gmail.com" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" } ], - "description": "Peast is PHP library that generates AST for JavaScript code", + "description": "HTTPlug, the HTTP client abstraction for PHP", + "homepage": "http://httplug.io", + "keywords": [ + "client", + "http" + ], "support": { - "issues": "https://github.com/mck89/peast/issues", - "source": "https://github.com/mck89/peast/tree/v1.16.3" + "issues": "https://github.com/php-http/httplug/issues", + "source": "https://github.com/php-http/httplug/tree/2.4.1" }, - "time": "2024-07-23T14:00:32+00:00" + "time": "2024-09-23T11:39:58+00:00" }, { - "name": "mglaman/composer-drupal-lenient", - "version": "1.0.7", + "name": "php-http/message", + "version": "1.16.2", "source": { "type": "git", - "url": "https://github.com/mglaman/composer-drupal-lenient.git", - "reference": "bcb9be7f2d3160be43cd1d13a44580734a5afee0" + "url": "https://github.com/php-http/message.git", + "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/composer-drupal-lenient/zipball/bcb9be7f2d3160be43cd1d13a44580734a5afee0", - "reference": "bcb9be7f2d3160be43cd1d13a44580734a5afee0", + "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a", + "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a", "shasum": "" }, - "require": { - "composer-plugin-api": "^2.0", - "php": ">=8.1" - }, - "require-dev": { - "composer/composer": "^2.3", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.6", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.2", - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "^3.6" + "require": { + "clue/stream-filter": "^1.5", + "php": "^7.2 || ^8.0", + "psr/http-message": "^1.1 || ^2.0" }, - "type": "composer-plugin", - "extra": { - "class": "ComposerDrupalLenient\\Plugin" + "provide": { + "php-http/message-factory-implementation": "1.0" + }, + "require-dev": { + "ergebnis/composer-normalize": "^2.6", + "ext-zlib": "*", + "guzzlehttp/psr7": "^1.0 || ^2.0", + "laminas/laminas-diactoros": "^2.0 || ^3.0", + "php-http/message-factory": "^1.0.2", + "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", + "slim/slim": "^3.0" + }, + "suggest": { + "ext-zlib": "Used with compressor/decompressor streams", + "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories", + "laminas/laminas-diactoros": "Used with Diactoros Factories", + "slim/slim": "Used with Slim Framework PSR-7 implementation" }, + "type": "library", "autoload": { + "files": [ + "src/filters.php" + ], "psr-4": { - "ComposerDrupalLenient\\": "src/" + "Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Matt Glaman", - "email": "nmd.matt@gmail.com" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" } ], + "description": "HTTP Message related tools", + "homepage": "http://php-http.org", + "keywords": [ + "http", + "message", + "psr-7" + ], "support": { - "issues": "https://github.com/mglaman/composer-drupal-lenient/issues", - "source": "https://github.com/mglaman/composer-drupal-lenient/tree/1.0.7" + "issues": "https://github.com/php-http/message/issues", + "source": "https://github.com/php-http/message/tree/1.16.2" }, - "funding": [ - { - "url": "https://github.com/mglaman", - "type": "github" - } - ], - "time": "2024-11-21T15:59:26+00:00" + "time": "2024-10-02T11:34:13+00:00" }, { - "name": "nikic/php-parser", - "version": "v5.4.0", + "name": "php-http/multipart-stream-builder", + "version": "1.4.2", "source": { "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494" + "url": "https://github.com/php-http/multipart-stream-builder.git", + "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494", - "reference": "447a020a1f875a434d62f2a401f53b82a396e494", + "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e", + "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e", "shasum": "" }, "require": { - "ext-ctype": "*", - "ext-json": "*", - "ext-tokenizer": "*", - "php": ">=7.4" + "php": "^7.1 || ^8.0", + "php-http/discovery": "^1.15", + "psr/http-factory-implementation": "^1.0" }, "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^9.0" + "nyholm/psr7": "^1.0", + "php-http/message": "^1.5", + "php-http/message-factory": "^1.0.2", + "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3" }, - "bin": [ - "bin/php-parse" - ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "5.0-dev" - } - }, "autoload": { "psr-4": { - "PhpParser\\": "lib/PhpParser" + "Http\\Message\\MultipartStream\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Nikita Popov" + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" } ], - "description": "A PHP parser written in PHP", + "description": "A builder class that help you create a multipart stream", + "homepage": "http://php-http.org", "keywords": [ - "parser", - "php" + "factory", + "http", + "message", + "multipart stream", + "stream" ], "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0" + "issues": "https://github.com/php-http/multipart-stream-builder/issues", + "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2" }, - "time": "2024-12-30T11:07:19+00:00" + "time": "2024-09-04T13:22:54+00:00" }, { - "name": "oomphinc/composer-installers-extender", - "version": "2.0.1", + "name": "php-http/promise", + "version": "1.3.1", "source": { "type": "git", - "url": "https://github.com/oomphinc/composer-installers-extender.git", - "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9" + "url": "https://github.com/php-http/promise.git", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/cbf4b6f9a24153b785d09eee755b995ba87bd5f9", - "reference": "cbf4b6f9a24153b785d09eee755b995ba87bd5f9", + "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1 || ^2.0", - "composer/installers": "^1.0 || ^2.0", - "php": ">=7.1" + "php": "^7.1 || ^8.0" }, "require-dev": { - "composer/composer": "^2.0", - "phpunit/phpunit": "^7.2", - "squizlabs/php_codesniffer": "^3.3" - }, - "type": "composer-plugin", - "extra": { - "class": "OomphInc\\ComposerInstallersExtender\\Plugin" + "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3", + "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4" }, + "type": "library", "autoload": { "psr-4": { - "OomphInc\\ComposerInstallersExtender\\": "src/" + "Http\\Promise\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4603,275 +12399,300 @@ ], "authors": [ { - "name": "Stephen Beemsterboer", - "email": "stephen@oomphinc.com", - "homepage": "https://github.com/balbuf" + "name": "Joel Wurtz", + "email": "joel.wurtz@gmail.com" }, { - "name": "Nathan Dentzau", - "email": "nate@oomphinc.com", - "homepage": "http://oomph.is/ndentzau" + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" } ], - "description": "Extend the composer/installers plugin to accept any arbitrary package type.", - "homepage": "http://www.oomphinc.com/", + "description": "Promise used for asynchronous HTTP requests", + "homepage": "http://httplug.io", + "keywords": [ + "promise" + ], "support": { - "issues": "https://github.com/oomphinc/composer-installers-extender/issues", - "source": "https://github.com/oomphinc/composer-installers-extender/tree/2.0.1" + "issues": "https://github.com/php-http/promise/issues", + "source": "https://github.com/php-http/promise/tree/1.3.1" }, - "time": "2021-12-15T12:32:42+00:00" + "time": "2024-03-15T13:55:21+00:00" }, { - "name": "pear/archive_tar", - "version": "1.5.0", + "name": "php-tuf/composer-stager", + "version": "v2.0.1", "source": { "type": "git", - "url": "https://github.com/pear/Archive_Tar.git", - "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602" + "url": "https://github.com/php-tuf/composer-stager.git", + "reference": "95ea147ae5eccb4ac19fd9b978549634bb9f46d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602", - "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602", + "url": "https://api.github.com/repos/php-tuf/composer-stager/zipball/95ea147ae5eccb4ac19fd9b978549634bb9f46d4", + "reference": "95ea147ae5eccb4ac19fd9b978549634bb9f46d4", "shasum": "" }, "require": { - "pear/pear-core-minimal": "^1.10.0alpha2", - "php": ">=5.2.0" + "ext-json": "*", + "php": ">=8.1.0", + "symfony/filesystem": "^6.2 || ^7.0", + "symfony/process": "^6.4.14 || ^7.1.7", + "symfony/translation-contracts": "^3.1" + }, + "conflict": { + "symfony/process": ">=6 <6.4.14 || >=7 <7.1.7", + "symfony/symfony": ">=6 <6.4.14 || >=7 <7.1.7" }, "require-dev": { - "phpunit/phpunit": "*" + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ext-simplexml": "*", + "phpspec/prophecy": "^1.17", + "phpspec/prophecy-phpunit": "^2.0", + "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^10.5.19", + "slevomat/coding-standard": "^8.13", + "squizlabs/php_codesniffer": "^3.7", + "symfony/config": "^6.3", + "symfony/dependency-injection": "^6.3", + "symfony/yaml": "^6.3", + "thecodingmachine/phpstan-strict-rules": "^1.0" }, "suggest": { - "ext-bz2": "Bz2 compression support.", - "ext-xz": "Lzma2 compression support.", - "ext-zlib": "Gzip compression support." + "symfony/dependency-injection": "For dependency injection", + "symfony/translation": "For internationalization tools" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-develop": "2.x-dev" } }, "autoload": { - "psr-0": { - "Archive_Tar": "" + "psr-4": { + "PhpTuf\\ComposerStager\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "./" - ], "license": [ - "BSD-2-Clause" + "MIT" ], "authors": [ { - "name": "Vincent Blavet", - "email": "vincent@phpconcept.net" - }, - { - "name": "Greg Beaver", - "email": "greg@chiaraquartet.net" - }, - { - "name": "Michiel Rook", - "email": "mrook@php.net" + "name": "Travis Carden", + "email": "travis.carden@gmail.com", + "role": "Developer" } ], - "description": "Tar file management class with compression support (gzip, bzip2, lzma2)", - "homepage": "https://github.com/pear/Archive_Tar", - "keywords": [ - "archive", - "tar" - ], + "description": "Stages Composer commands so they can be safely run on a production codebase.", + "homepage": "https://github.com/php-tuf/composer-stager", "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", - "source": "https://github.com/pear/Archive_Tar" + "issues": "https://github.com/php-tuf/composer-stager/issues", + "source": "https://github.com/php-tuf/composer-stager" }, - "time": "2024-03-16T16:21:40+00:00" + "time": "2025-04-21T15:27:20+00:00" }, { - "name": "pear/console_getopt", - "version": "v1.4.3", + "name": "phpoption/phpoption", + "version": "1.9.3", "source": { "type": "git", - "url": "https://github.com/pear/Console_Getopt.git", - "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0" + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0", - "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", + "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", "shasum": "" }, + "require": { + "php": "^7.2.5 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + }, "type": "library", + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, + "branch-alias": { + "dev-master": "1.9-dev" + } + }, "autoload": { - "psr-0": { - "Console": "./" + "psr-4": { + "PhpOption\\": "src/PhpOption/" } }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "./" - ], "license": [ - "BSD-2-Clause" + "Apache-2.0" ], "authors": [ { - "name": "Andrei Zmievski", - "email": "andrei@php.net", - "role": "Lead" + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" }, { - "name": "Stig Bakken", - "email": "stig@php.net", - "role": "Developer" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "support": { + "issues": "https://github.com/schmittjoh/php-option/issues", + "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" }, { - "name": "Greg Beaver", - "email": "cellog@php.net", - "role": "Helper" + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" } ], - "description": "More info available on: http://pear.php.net/package/Console_Getopt", - "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt", - "source": "https://github.com/pear/Console_Getopt" - }, - "time": "2019-11-20T18:27:48+00:00" + "time": "2024-07-20T21:41:07+00:00" }, { - "name": "pear/pear-core-minimal", - "version": "v1.10.16", + "name": "phpowermove/docblock", + "version": "v4.0", "source": { "type": "git", - "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033" + "url": "https://github.com/phpowermove/docblock.git", + "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033", - "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033", + "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826", + "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826", "shasum": "" }, "require": { - "pear/console_getopt": "~1.4", - "pear/pear_exception": "~1.0", - "php": ">=5.4" + "phootwork/collection": "^3.0", + "phootwork/lang": "^3.0", + "php": ">=8.0" }, - "replace": { - "rsky/pear-core-min": "self.version" + "require-dev": { + "phootwork/php-cs-fixer-config": "^0.4", + "phpunit/phpunit": "^9.0", + "psalm/phar": "^4.3" }, "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "phpowermove\\docblock\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "src/" - ], "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Christian Weiske", - "email": "cweiske@php.net", - "role": "Lead" + "name": "Thomas Gossmann", + "homepage": "http://gos.si" } ], - "description": "Minimal set of PEAR core files to be used as composer dependency", + "description": "PHP Docblock parser and generator. An API to read and write Docblocks.", + "keywords": [ + "docblock", + "generator", + "parser" + ], "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", - "source": "https://github.com/pear/pear-core-minimal" + "issues": "https://github.com/phpowermove/docblock/issues", + "source": "https://github.com/phpowermove/docblock/tree/v4.0" }, - "time": "2024-11-24T22:27:58+00:00" + "time": "2021-09-22T16:57:06+00:00" }, { - "name": "pear/pear_exception", - "version": "v1.0.2", + "name": "psr/cache", + "version": "3.0.0", "source": { "type": "git", - "url": "https://github.com/pear/PEAR_Exception.git", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" + "url": "https://github.com/php-fig/cache.git", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", + "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", "shasum": "" }, "require": { - "php": ">=5.2.0" - }, - "require-dev": { - "phpunit/phpunit": "<9" + "php": ">=8.0.0" }, - "type": "class", + "type": "library", "extra": { "branch-alias": { "dev-master": "1.0.x-dev" } }, "autoload": { - "classmap": [ - "PEAR/" - ] + "psr-4": { + "Psr\\Cache\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", - "include-path": [ - "." - ], "license": [ - "BSD-2-Clause" + "MIT" ], "authors": [ { - "name": "Helgi Thormar", - "email": "dufuz@php.net" - }, - { - "name": "Greg Beaver", - "email": "cellog@php.net" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "The PEAR Exception base class.", - "homepage": "https://github.com/pear/PEAR_Exception", + "description": "Common interface for caching libraries", "keywords": [ - "exception" + "cache", + "psr", + "psr-6" ], "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", - "source": "https://github.com/pear/PEAR_Exception" + "source": "https://github.com/php-fig/cache/tree/3.0.0" }, - "time": "2021-03-21T15:43:46+00:00" + "time": "2021-02-03T23:26:27+00:00" }, { - "name": "phootwork/collection", - "version": "v3.2.3", + "name": "psr/container", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/phootwork/collection.git", - "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa" + "url": "https://github.com/php-fig/container.git", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa", - "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa", + "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", "shasum": "" }, "require": { - "phootwork/lang": "^3.0", - "php": ">=8.0" + "php": ">=7.4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, "autoload": { "psr-4": { - "phootwork\\collection\\": "" + "Psr\\Container\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4880,54 +12701,51 @@ ], "authors": [ { - "name": "Thomas Gossmann", - "homepage": "http://gos.si" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.", - "homepage": "https://phootwork.github.io/collection/", + "description": "Common Container Interface (PHP FIG PSR-11)", + "homepage": "https://github.com/php-fig/container", "keywords": [ - "Array object", - "Text object", - "collection", - "collections", - "json", - "list", - "map", - "queue", - "set", - "stack", - "xml" + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" ], "support": { - "issues": "https://github.com/phootwork/phootwork/issues", - "source": "https://github.com/phootwork/collection/tree/v3.2.3" + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/2.0.2" }, - "time": "2022-08-27T12:51:24+00:00" + "time": "2021-11-05T16:47:00+00:00" }, { - "name": "phootwork/lang", - "version": "v3.2.3", + "name": "psr/event-dispatcher", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/phootwork/lang.git", - "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e" + "url": "https://github.com/php-fig/event-dispatcher.git", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", - "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", + "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", + "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", "shasum": "" }, "require": { - "php": ">=8.0", - "symfony/polyfill-mbstring": "^1.12", - "symfony/polyfill-php81": "^1.22" + "php": ">=7.2.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { "psr-4": { - "phootwork\\lang\\": "" + "Psr\\EventDispatcher\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -4936,76 +12754,49 @@ ], "authors": [ { - "name": "Thomas Gossmann", - "homepage": "http://gos.si" + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" } ], - "description": "Missing PHP language constructs", - "homepage": "https://phootwork.github.io/lang/", + "description": "Standard interfaces for event handling.", "keywords": [ - "array", - "comparator", - "comparison", - "string" + "events", + "psr", + "psr-14" ], "support": { - "issues": "https://github.com/phootwork/phootwork/issues", - "source": "https://github.com/phootwork/lang/tree/v3.2.3" + "issues": "https://github.com/php-fig/event-dispatcher/issues", + "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" }, - "time": "2024-10-03T13:43:19+00:00" + "time": "2019-01-08T18:20:26+00:00" }, { - "name": "php-tuf/composer-stager", - "version": "v2.0.1", + "name": "psr/http-client", + "version": "1.0.3", "source": { "type": "git", - "url": "https://github.com/php-tuf/composer-stager.git", - "reference": "95ea147ae5eccb4ac19fd9b978549634bb9f46d4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-tuf/composer-stager/zipball/95ea147ae5eccb4ac19fd9b978549634bb9f46d4", - "reference": "95ea147ae5eccb4ac19fd9b978549634bb9f46d4", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": ">=8.1.0", - "symfony/filesystem": "^6.2 || ^7.0", - "symfony/process": "^6.4.14 || ^7.1.7", - "symfony/translation-contracts": "^3.1" - }, - "conflict": { - "symfony/process": ">=6 <6.4.14 || >=7 <7.1.7", - "symfony/symfony": ">=6 <6.4.14 || >=7 <7.1.7" - }, - "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^1.0", - "ext-simplexml": "*", - "phpspec/prophecy": "^1.17", - "phpspec/prophecy-phpunit": "^2.0", - "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^10.5.19", - "slevomat/coding-standard": "^8.13", - "squizlabs/php_codesniffer": "^3.7", - "symfony/config": "^6.3", - "symfony/dependency-injection": "^6.3", - "symfony/yaml": "^6.3", - "thecodingmachine/phpstan-strict-rules": "^1.0" + "url": "https://github.com/php-fig/http-client.git", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" }, - "suggest": { - "symfony/dependency-injection": "For dependency injection", - "symfony/translation": "For internationalization tools" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", + "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "shasum": "" + }, + "require": { + "php": "^7.0 || ^8.0", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-develop": "2.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "PhpTuf\\ComposerStager\\": "src/" + "Psr\\Http\\Client\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5014,122 +12805,104 @@ ], "authors": [ { - "name": "Travis Carden", - "email": "travis.carden@gmail.com", - "role": "Developer" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Stages Composer commands so they can be safely run on a production codebase.", - "homepage": "https://github.com/php-tuf/composer-stager", + "description": "Common interface for HTTP clients", + "homepage": "https://github.com/php-fig/http-client", + "keywords": [ + "http", + "http-client", + "psr", + "psr-18" + ], "support": { - "issues": "https://github.com/php-tuf/composer-stager/issues", - "source": "https://github.com/php-tuf/composer-stager" + "source": "https://github.com/php-fig/http-client" }, - "time": "2025-04-21T15:27:20+00:00" + "time": "2023-09-23T14:17:50+00:00" }, { - "name": "phpoption/phpoption", - "version": "1.9.3", + "name": "psr/http-factory", + "version": "1.1.0", "source": { "type": "git", - "url": "https://github.com/schmittjoh/php-option.git", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" + "url": "https://github.com/php-fig/http-factory.git", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" + "php": ">=7.1", + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - }, "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "PhpOption\\": "src/PhpOption/" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "MIT" ], "authors": [ { - "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com", - "homepage": "https://github.com/schmittjoh" - }, - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "Option Type for PHP", + "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", "keywords": [ - "language", - "option", - "php", - "type" + "factory", + "http", + "message", + "psr", + "psr-17", + "psr-7", + "request", + "response" ], "support": { - "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" + "source": "https://github.com/php-fig/http-factory" }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", - "type": "tidelift" - } - ], - "time": "2024-07-20T21:41:07+00:00" + "time": "2024-04-15T12:06:14+00:00" }, { - "name": "phpowermove/docblock", - "version": "v4.0", + "name": "psr/http-message", + "version": "2.0", "source": { "type": "git", - "url": "https://github.com/phpowermove/docblock.git", - "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826" + "url": "https://github.com/php-fig/http-message.git", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826", - "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", "shasum": "" }, "require": { - "phootwork/collection": "^3.0", - "phootwork/lang": "^3.0", - "php": ">=8.0" - }, - "require-dev": { - "phootwork/php-cs-fixer-config": "^0.4", - "phpunit/phpunit": "^9.0", - "psalm/phar": "^4.3" + "php": "^7.2 || ^8.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, "autoload": { "psr-4": { - "phpowermove\\docblock\\": "src/" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5138,34 +12911,37 @@ ], "authors": [ { - "name": "Thomas Gossmann", - "homepage": "http://gos.si" + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" } ], - "description": "PHP Docblock parser and generator. An API to read and write Docblocks.", + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", "keywords": [ - "docblock", - "generator", - "parser" + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" ], "support": { - "issues": "https://github.com/phpowermove/docblock/issues", - "source": "https://github.com/phpowermove/docblock/tree/v4.0" + "source": "https://github.com/php-fig/http-message/tree/2.0" }, - "time": "2021-09-22T16:57:06+00:00" + "time": "2023-04-04T09:54:51+00:00" }, { - "name": "psr/cache", - "version": "3.0.0", + "name": "psr/log", + "version": "3.0.2", "source": { "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" + "url": "https://github.com/php-fig/log.git", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", "shasum": "" }, "require": { @@ -5174,12 +12950,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Cache\\": "src/" + "Psr\\Log\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -5192,43 +12968,70 @@ "homepage": "https://www.php-fig.org/" } ], - "description": "Common interface for caching libraries", + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", "keywords": [ - "cache", + "log", "psr", - "psr-6" + "psr-3" ], "support": { - "source": "https://github.com/php-fig/cache/tree/3.0.0" + "source": "https://github.com/php-fig/log/tree/3.0.2" }, - "time": "2021-02-03T23:26:27+00:00" + "time": "2024-09-11T13:17:53+00:00" }, { - "name": "psr/container", - "version": "2.0.2", + "name": "psy/psysh", + "version": "v0.12.12", "source": { "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" + "url": "https://github.com/bobthecow/psysh.git", + "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7", + "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7", "shasum": "" }, "require": { - "php": ">=7.4.0" + "ext-json": "*", + "ext-tokenizer": "*", + "nikic/php-parser": "^5.0 || ^4.0", + "php": "^8.0 || ^7.4", + "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", + "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" + }, + "conflict": { + "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + }, + "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." }, + "bin": [ + "bin/psysh" + ], "type": "library", "extra": { + "bamarni-bin": { + "bin-links": false, + "forward-command": false + }, "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-main": "0.12.x-dev" } }, "autoload": { + "files": [ + "src/functions.php" + ], "psr-4": { - "Psr\\Container\\": "src/" + "Psy\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5237,52 +13040,50 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Justin Hileman", + "email": "justin@justinhileman.info" } ], - "description": "Common Container Interface (PHP FIG PSR-11)", - "homepage": "https://github.com/php-fig/container", + "description": "An interactive shell for modern PHP.", + "homepage": "https://psysh.org", "keywords": [ - "PSR-11", - "container", - "container-interface", - "container-interop", - "psr" + "REPL", + "console", + "interactive", + "shell" ], "support": { - "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/2.0.2" + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.12.12" }, - "time": "2021-11-05T16:47:00+00:00" + "time": "2025-09-20T13:46:31+00:00" }, { - "name": "psr/event-dispatcher", - "version": "1.0.0", + "name": "ralouphie/getallheaders", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/php-fig/event-dispatcher.git", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, - "require": { - "php": ">=7.2.0" + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { - "psr-4": { - "Psr\\EventDispatcher\\": "src/" - } + "files": [ + "src/getallheaders.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5290,49 +13091,45 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" } ], - "description": "Standard interfaces for event handling.", - "keywords": [ - "events", - "psr", - "psr-14" - ], + "description": "A polyfill for getallheaders.", "support": { - "issues": "https://github.com/php-fig/event-dispatcher/issues", - "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" }, - "time": "2019-01-08T18:20:26+00:00" + "time": "2019-03-08T08:55:37+00:00" }, { - "name": "psr/http-client", - "version": "1.0.3", + "name": "react/promise", + "version": "v3.3.0", "source": { "type": "git", - "url": "https://github.com/php-fig/http-client.git", - "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" + "url": "https://github.com/reactphp/promise.git", + "reference": "23444f53a813a3296c1368bb104793ce8d88f04a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", - "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", + "url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a", + "reference": "23444f53a813a3296c1368bb104793ce8d88f04a", "shasum": "" }, "require": { - "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0 || ^2.0" + "php": ">=7.1.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } + "require-dev": { + "phpstan/phpstan": "1.12.28 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" }, + "type": "library", "autoload": { + "files": [ + "src/functions_include.php" + ], "psr-4": { - "Psr\\Http\\Client\\": "src/" + "React\\Promise\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5341,50 +13138,75 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "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": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" } ], - "description": "Common interface for HTTP clients", - "homepage": "https://github.com/php-fig/http-client", + "description": "A lightweight implementation of CommonJS Promises/A for PHP", "keywords": [ - "http", - "http-client", - "psr", - "psr-18" + "promise", + "promises" ], "support": { - "source": "https://github.com/php-fig/http-client" + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.3.0" }, - "time": "2023-09-23T14:17:50+00:00" + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2025-08-19T18:57:03+00:00" }, { - "name": "psr/http-factory", - "version": "1.1.0", + "name": "revolt/event-loop", + "version": "v1.0.7", "source": { "type": "git", - "url": "https://github.com/php-fig/http-factory.git", - "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" + "url": "https://github.com/revoltphp/event-loop.git", + "reference": "09bf1bf7f7f574453efe43044b06fafe12216eb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", - "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", + "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/09bf1bf7f7f574453efe43044b06fafe12216eb3", + "reference": "09bf1bf7f7f574453efe43044b06fafe12216eb3", "shasum": "" }, "require": { - "php": ">=7.1", - "psr/http-message": "^1.0 || ^2.0" + "php": ">=8.1" + }, + "require-dev": { + "ext-json": "*", + "jetbrains/phpstorm-stubs": "^2019.3", + "phpunit/phpunit": "^9", + "psalm/phar": "^5.15" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Http\\Message\\": "src/" + "Revolt\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -5393,105 +13215,133 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Aaron Piotrowski", + "email": "aaron@trowski.com" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "ceesjank@gmail.com" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering" + }, + { + "name": "Niklas Keller", + "email": "me@kelunik.com" } ], - "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", + "description": "Rock-solid event loop for concurrent PHP applications.", "keywords": [ - "factory", - "http", - "message", - "psr", - "psr-17", - "psr-7", - "request", - "response" + "async", + "asynchronous", + "concurrency", + "event", + "event-loop", + "non-blocking", + "scheduler" ], "support": { - "source": "https://github.com/php-fig/http-factory" + "issues": "https://github.com/revoltphp/event-loop/issues", + "source": "https://github.com/revoltphp/event-loop/tree/v1.0.7" }, - "time": "2024-04-15T12:06:14+00:00" + "time": "2025-01-25T19:27:39+00:00" }, { - "name": "psr/http-message", - "version": "2.0", + "name": "sebastian/diff", + "version": "5.1.1", "source": { "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", - "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", + "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0", + "symfony/process": "^6.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-main": "5.1-dev" } }, "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" } ], - "description": "Common interface for HTTP messages", - "homepage": "https://github.com/php-fig/http-message", + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", "keywords": [ - "http", - "http-message", - "psr", - "psr-7", - "request", - "response" + "diff", + "udiff", + "unidiff", + "unified diff" ], "support": { - "source": "https://github.com/php-fig/http-message/tree/2.0" + "issues": "https://github.com/sebastianbergmann/diff/issues", + "security": "https://github.com/sebastianbergmann/diff/security/policy", + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1" }, - "time": "2023-04-04T09:54:51+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T07:15:17+00:00" }, { - "name": "psr/log", - "version": "3.0.2", + "name": "seld/jsonlint", + "version": "1.11.0", "source": { "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + "url": "https://github.com/Seldaek/jsonlint.git", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2", "shasum": "" }, "require": { - "php": ">=8.0.0" + "php": "^5.3 || ^7.0 || ^8.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } + "require-dev": { + "phpstan/phpstan": "^1.11", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" }, + "bin": [ + "bin/jsonlint" + ], + "type": "library", "autoload": { "psr-4": { - "Psr\\Log\\": "src" + "Seld\\JsonLint\\": "src/Seld/JsonLint/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5500,74 +13350,60 @@ ], "authors": [ { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", + ], + "description": "JSON Linter", "keywords": [ - "log", - "psr", - "psr-3" + "json", + "linter", + "parser", + "validator" ], "support": { - "source": "https://github.com/php-fig/log/tree/3.0.2" + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.11.0" }, - "time": "2024-09-11T13:17:53+00:00" + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "type": "tidelift" + } + ], + "time": "2024-07-11T14:55:45+00:00" }, { - "name": "psy/psysh", - "version": "v0.12.8", + "name": "seld/phar-utils", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/bobthecow/psysh.git", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625" + "url": "https://github.com/Seldaek/phar-utils.git", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625", - "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", "shasum": "" }, "require": { - "ext-json": "*", - "ext-tokenizer": "*", - "nikic/php-parser": "^5.0 || ^4.0", - "php": "^8.0 || ^7.4", - "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", - "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" - }, - "conflict": { - "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" - }, - "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." + "php": ">=5.3" }, - "bin": [ - "bin/psysh" - ], "type": "library", "extra": { - "bamarni-bin": { - "bin-links": false, - "forward-command": false - }, "branch-alias": { - "dev-main": "0.12.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { - "files": [ - "src/functions.php" - ], "psr-4": { - "Psy\\": "src/" + "Seld\\PharUtils\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5576,51 +13412,55 @@ ], "authors": [ { - "name": "Justin Hileman", - "email": "justin@justinhileman.info", - "homepage": "http://justinhileman.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" } ], - "description": "An interactive shell for modern PHP.", - "homepage": "http://psysh.org", + "description": "PHAR file format utilities, for when PHP phars you up", "keywords": [ - "REPL", - "console", - "interactive", - "shell" + "phar" ], "support": { - "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.8" + "issues": "https://github.com/Seldaek/phar-utils/issues", + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" }, - "time": "2025-03-16T03:05:19+00:00" + "time": "2022-08-31T10:31:18+00:00" }, { - "name": "ralouphie/getallheaders", - "version": "3.0.3", + "name": "seld/signal-handler", + "version": "2.0.2", "source": { "type": "git", - "url": "https://github.com/ralouphie/getallheaders.git", - "reference": "120b605dfeb996808c31b6477290a714d356e822" + "url": "https://github.com/Seldaek/signal-handler.git", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", - "reference": "120b605dfeb996808c31b6477290a714d356e822", + "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", "shasum": "" }, "require": { - "php": ">=5.6" + "php": ">=7.2.0" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.1", - "phpunit/phpunit": "^5 || ^6.5" + "phpstan/phpstan": "^1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^7.5.20 || ^8.5.23", + "psr/log": "^1 || ^2 || ^3" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, "autoload": { - "files": [ - "src/getallheaders.php" - ] + "psr-4": { + "Seld\\Signal\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -5628,49 +13468,56 @@ ], "authors": [ { - "name": "Ralph Khattar", - "email": "ralph.khattar@gmail.com" + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" } ], - "description": "A polyfill for getallheaders.", + "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development", + "keywords": [ + "posix", + "sigint", + "signal", + "sigterm", + "unix" + ], "support": { - "issues": "https://github.com/ralouphie/getallheaders/issues", - "source": "https://github.com/ralouphie/getallheaders/tree/develop" + "issues": "https://github.com/Seldaek/signal-handler/issues", + "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2" }, - "time": "2019-03-08T08:55:37+00:00" + "time": "2023-09-03T09:24:00+00:00" }, { - "name": "revolt/event-loop", - "version": "v1.0.7", + "name": "simshaun/recurr", + "version": "v5.0.3", "source": { "type": "git", - "url": "https://github.com/revoltphp/event-loop.git", - "reference": "09bf1bf7f7f574453efe43044b06fafe12216eb3" + "url": "https://github.com/simshaun/recurr.git", + "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/09bf1bf7f7f574453efe43044b06fafe12216eb3", - "reference": "09bf1bf7f7f574453efe43044b06fafe12216eb3", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/7b136768d64f257065e38a804ee6d2f9af6ba6d1", + "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1", "shasum": "" }, "require": { - "php": ">=8.1" + "doctrine/collections": "~1.6||^2.0", + "php": "^7.2||^8.0" }, "require-dev": { - "ext-json": "*", - "jetbrains/phpstorm-stubs": "^2019.3", - "phpunit/phpunit": "^9", - "psalm/phar": "^5.15" + "phpunit/phpunit": "^8.5.16", + "symfony/yaml": "^5.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-master": "0.x-dev" } }, "autoload": { "psr-4": { - "Revolt\\": "src" + "Recurr\\": "src/Recurr/" } }, "notification-url": "https://packagist.org/downloads/", @@ -5679,152 +13526,145 @@ ], "authors": [ { - "name": "Aaron Piotrowski", - "email": "aaron@trowski.com" - }, - { - "name": "Cees-Jan Kiewiet", - "email": "ceesjank@gmail.com" - }, - { - "name": "Christian Lück", - "email": "christian@clue.engineering" - }, - { - "name": "Niklas Keller", - "email": "me@kelunik.com" + "name": "Shaun Simmons", + "email": "shaun@shaun.pub", + "homepage": "https://shaun.pub" } ], - "description": "Rock-solid event loop for concurrent PHP applications.", + "description": "PHP library for working with recurrence rules", + "homepage": "https://github.com/simshaun/recurr", "keywords": [ - "async", - "asynchronous", - "concurrency", - "event", - "event-loop", - "non-blocking", - "scheduler" + "dates", + "events", + "recurrence", + "recurring", + "rrule" ], "support": { - "issues": "https://github.com/revoltphp/event-loop/issues", - "source": "https://github.com/revoltphp/event-loop/tree/v1.0.7" + "issues": "https://github.com/simshaun/recurr/issues", + "source": "https://github.com/simshaun/recurr/tree/v5.0.3" }, - "time": "2025-01-25T19:27:39+00:00" + "time": "2024-12-12T15:39:24+00:00" }, { - "name": "sebastian/diff", - "version": "5.1.1", + "name": "symfony/console", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e" + "url": "https://github.com/symfony/console.git", + "reference": "2b9c5fafbac0399a20a2e82429e2bd735dcfb7db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e", - "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e", + "url": "https://api.github.com/repos/symfony/console/zipball/2b9c5fafbac0399a20a2e82429e2bd735dcfb7db", + "reference": "2b9c5fafbac0399a20a2e82429e2bd735dcfb7db", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/service-contracts": "^2.5|^3", + "symfony/string": "^7.2" + }, + "conflict": { + "symfony/dependency-injection": "<6.4", + "symfony/dotenv": "<6.4", + "symfony/event-dispatcher": "<6.4", + "symfony/lock": "<6.4", + "symfony/process": "<6.4" + }, + "provide": { + "psr/log-implementation": "1.0|2.0|3.0" }, "require-dev": { - "phpunit/phpunit": "^10.0", - "symfony/process": "^6.4" + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/stopwatch": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "5.1-dev" - } - }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Component\\Console\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", + "description": "Eases the creation of beautiful and testable command line interfaces", + "homepage": "https://symfony.com", "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" + "cli", + "command-line", + "console", + "terminal" ], "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "security": "https://github.com/sebastianbergmann/diff/security/policy", - "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1" + "source": "https://github.com/symfony/console/tree/v7.3.4" }, "funding": [ { - "url": "https://github.com/sebastianbergmann", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" } ], - "time": "2024-03-02T07:15:17+00:00" + "time": "2025-09-22T15:31:00+00:00" }, { - "name": "symfony/console", - "version": "v7.2.6", + "name": "symfony/css-selector", + "version": "v7.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "0e2e3f38c192e93e622e41ec37f4ca70cfedf218" + "url": "https://github.com/symfony/css-selector.git", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0e2e3f38c192e93e622e41ec37f4ca70cfedf218", - "reference": "0e2e3f38c192e93e622e41ec37f4ca70cfedf218", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2", + "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/polyfill-mbstring": "~1.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^6.4|^7.0" - }, - "conflict": { - "symfony/dependency-injection": "<6.4", - "symfony/dotenv": "<6.4", - "symfony/event-dispatcher": "<6.4", - "symfony/lock": "<6.4", - "symfony/process": "<6.4" - }, - "provide": { - "psr/log-implementation": "1.0|2.0|3.0" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/lock": "^6.4|^7.0", - "symfony/messenger": "^6.4|^7.0", - "symfony/process": "^6.4|^7.0", - "symfony/stopwatch": "^6.4|^7.0", - "symfony/var-dumper": "^6.4|^7.0" + "php": ">=8.2" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Console\\": "" + "Symfony\\Component\\CssSelector\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -5839,21 +13679,19 @@ "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": "Eases the creation of beautiful and testable command line interfaces", + "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", - "keywords": [ - "cli", - "command-line", - "console", - "terminal" - ], "support": { - "source": "https://github.com/symfony/console/tree/v7.2.6" + "source": "https://github.com/symfony/css-selector/tree/v7.3.0" }, "funding": [ { @@ -5869,20 +13707,20 @@ "type": "tidelift" } ], - "time": "2025-04-07T19:09:28+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/dependency-injection", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "2ca85496cde37f825bd14f7e3548e2793ca90712" + "reference": "82119812ab0bf3425c1234d413efd1b19bb92ae4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ca85496cde37f825bd14f7e3548e2793ca90712", - "reference": "2ca85496cde37f825bd14f7e3548e2793ca90712", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/82119812ab0bf3425c1234d413efd1b19bb92ae4", + "reference": "82119812ab0bf3425c1234d413efd1b19bb92ae4", "shasum": "" }, "require": { @@ -5933,7 +13771,7 @@ "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/v7.2.6" + "source": "https://github.com/symfony/dependency-injection/tree/v7.3.4" }, "funding": [ { @@ -5944,25 +13782,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-27T13:37:55+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -5975,7 +13817,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -6000,7 +13842,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -6016,20 +13858,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/error-handler", - "version": "v7.2.5", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b" + "reference": "99f81bc944ab8e5dae4f21b4ca9972698bbad0e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", - "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/99f81bc944ab8e5dae4f21b4ca9972698bbad0e4", + "reference": "99f81bc944ab8e5dae4f21b4ca9972698bbad0e4", "shasum": "" }, "require": { @@ -6042,9 +13884,11 @@ "symfony/http-kernel": "<6.4" }, "require-dev": { + "symfony/console": "^6.4|^7.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0" + "symfony/serializer": "^6.4|^7.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -6075,7 +13919,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.2.5" + "source": "https://github.com/symfony/error-handler/tree/v7.3.4" }, "funding": [ { @@ -6086,25 +13930,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-03T07:12:39+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.2.0", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1" + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1", - "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191", + "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191", "shasum": "" }, "require": { @@ -6155,7 +14003,7 @@ "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/v7.2.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3" }, "funding": [ { @@ -6166,25 +14014,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-25T14:21:43+00:00" + "time": "2025-08-13T11:49:31+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", "shasum": "" }, "require": { @@ -6198,7 +14050,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -6231,7 +14083,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" }, "funding": [ { @@ -6247,20 +14099,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/filesystem", - "version": "v7.2.0", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb" + "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb", - "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/edcbb768a186b5c3f25d0643159a787d3e63b7fd", + "reference": "edcbb768a186b5c3f25d0643159a787d3e63b7fd", "shasum": "" }, "require": { @@ -6297,7 +14149,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v7.2.0" + "source": "https://github.com/symfony/filesystem/tree/v7.3.2" }, "funding": [ { @@ -6308,25 +14160,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-10-25T15:15:23+00:00" + "time": "2025-07-07T08:17:47+00:00" }, { "name": "symfony/finder", - "version": "v7.2.2", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "87a71856f2f56e4100373e92529eed3171695cfb" + "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb", - "reference": "87a71856f2f56e4100373e92529eed3171695cfb", + "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe", + "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe", "shasum": "" }, "require": { @@ -6361,7 +14217,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.2.2" + "source": "https://github.com/symfony/finder/tree/v7.3.2" }, "funding": [ { @@ -6372,25 +14228,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-12-30T19:00:17+00:00" + "time": "2025-07-15T13:41:35+00:00" }, { "name": "symfony/http-foundation", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "6023ec7607254c87c5e69fb3558255aca440d72b" + "reference": "c061c7c18918b1b64268771aad04b40be41dd2e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6023ec7607254c87c5e69fb3558255aca440d72b", - "reference": "6023ec7607254c87c5e69fb3558255aca440d72b", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/c061c7c18918b1b64268771aad04b40be41dd2e6", + "reference": "c061c7c18918b1b64268771aad04b40be41dd2e6", "shasum": "" }, "require": { @@ -6407,6 +14267,7 @@ "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", "symfony/cache": "^6.4.12|^7.1.5", + "symfony/clock": "^6.4|^7.0", "symfony/dependency-injection": "^6.4|^7.0", "symfony/expression-language": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", @@ -6439,7 +14300,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.2.6" + "source": "https://github.com/symfony/http-foundation/tree/v7.3.4" }, "funding": [ { @@ -6450,25 +14311,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-09T08:14:01+00:00" + "time": "2025-09-16T08:38:17+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f9dec01e6094a063e738f8945ef69c0cfcf792ec" + "reference": "b796dffea7821f035047235e076b60ca2446e3cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f9dec01e6094a063e738f8945ef69c0cfcf792ec", - "reference": "f9dec01e6094a063e738f8945ef69c0cfcf792ec", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b796dffea7821f035047235e076b60ca2446e3cf", + "reference": "b796dffea7821f035047235e076b60ca2446e3cf", "shasum": "" }, "require": { @@ -6476,8 +14341,8 @@ "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", + "symfony/event-dispatcher": "^7.3", + "symfony/http-foundation": "^7.3", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -6553,7 +14418,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.2.6" + "source": "https://github.com/symfony/http-kernel/tree/v7.3.4" }, "funding": [ { @@ -6564,25 +14429,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-05-02T09:04:03+00:00" + "time": "2025-09-27T12:32:17+00:00" }, { "name": "symfony/mailer", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356" + "reference": "ab97ef2f7acf0216955f5845484235113047a31d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/998692469d6e698c6eadc7ef37a6530a9eabb356", - "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356", + "url": "https://api.github.com/repos/symfony/mailer/zipball/ab97ef2f7acf0216955f5845484235113047a31d", + "reference": "ab97ef2f7acf0216955f5845484235113047a31d", "shasum": "" }, "require": { @@ -6633,7 +14502,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.2.6" + "source": "https://github.com/symfony/mailer/tree/v7.3.4" }, "funding": [ { @@ -6644,25 +14513,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-04T09:50:51+00:00" + "time": "2025-09-17T05:51:54+00:00" }, { "name": "symfony/mime", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "706e65c72d402539a072d0d6ad105fff6c161ef1" + "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/706e65c72d402539a072d0d6ad105fff6c161ef1", - "reference": "706e65c72d402539a072d0d6ad105fff6c161ef1", + "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35", + "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35", "shasum": "" }, "require": { @@ -6717,7 +14590,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.2.6" + "source": "https://github.com/symfony/mime/tree/v7.3.4" }, "funding": [ { @@ -6728,16 +14601,20 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-27T13:34:41+00:00" + "time": "2025-09-16T08:38:17+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", @@ -6796,7 +14673,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0" }, "funding": [ { @@ -6816,16 +14693,16 @@ }, { "name": "symfony/polyfill-iconv", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" + "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa", + "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa", "shasum": "" }, "require": { @@ -6876,7 +14753,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0" }, "funding": [ { @@ -6892,11 +14769,11 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-09-17T14:58:18+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", @@ -6954,7 +14831,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0" }, "funding": [ { @@ -6974,16 +14851,16 @@ }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3", + "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3", "shasum": "" }, "require": { @@ -7037,7 +14914,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0" }, "funding": [ { @@ -7053,11 +14930,11 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-09-10T14:38:51+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", + "version": "v1.32.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", @@ -7066,173 +14943,15 @@ "dist": { "type": "zip", "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", - "reference": "3833d7255cc303546435cb650316bff708a1c75c", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for intl's Normalizer class and related functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "provide": { - "ext-mbstring": "*" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-php80", - "version": "v1.32.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "3833d7255cc303546435cb650316bff708a1c75c", "shasum": "" }, "require": { "php": ">=7.2" }, + "suggest": { + "ext-intl": "For best performance" + }, "type": "library", "extra": { "thanks": { @@ -7245,7 +14964,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, "classmap": [ "Resources/stubs" @@ -7256,10 +14975,6 @@ "MIT" ], "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, { "name": "Nicolas Grekas", "email": "p@tchwork.com" @@ -7269,16 +14984,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "intl", + "normalizer", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0" }, "funding": [ { @@ -7294,25 +15011,32 @@ "type": "tidelift" } ], - "time": "2025-01-02T08:10:11+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/polyfill-php81", + "name": "symfony/polyfill-mbstring", "version": "v1.32.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493", + "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493", "shasum": "" }, "require": { + "ext-iconv": "*", "php": ">=7.2" }, + "provide": { + "ext-mbstring": "*" + }, + "suggest": { + "ext-mbstring": "For best performance" + }, "type": "library", "extra": { "thanks": { @@ -7325,11 +15049,8 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" - }, - "classmap": [ - "Resources/stubs" - ] + "Symfony\\Polyfill\\Mbstring\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -7345,16 +15066,17 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", "keywords": [ "compatibility", + "mbstring", "polyfill", "portable", "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0" }, "funding": [ { @@ -7370,20 +15092,20 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-12-23T08:48:59+00:00" }, { - "name": "symfony/polyfill-php83", - "version": "v1.32.0", + "name": "symfony/polyfill-php73", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb", "shasum": "" }, "require": { @@ -7401,7 +15123,7 @@ "bootstrap.php" ], "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" + "Symfony\\Polyfill\\Php73\\": "" }, "classmap": [ "Resources/stubs" @@ -7421,7 +15143,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -7430,7 +15152,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.33.0" }, "funding": [ { @@ -7441,6 +15163,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -7449,29 +15175,38 @@ "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/process", - "version": "v7.2.5", + "name": "symfony/polyfill-php80", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "87b7c93e57df9d8e39a093d32587702380ff045d" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/87b7c93e57df9d8e39a093d32587702380ff045d", - "reference": "87b7c93e57df9d8e39a093d32587702380ff045d", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", "shasum": "" }, "require": { - "php": ">=8.2" + "php": ">=7.2" }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Process\\": "" + "Symfony\\Polyfill\\Php80\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -7480,18 +15215,28 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Executes commands in sub-processes", + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/process/tree/v7.2.5" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0" }, "funding": [ { @@ -7502,53 +15247,50 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-03-13T12:21:46+00:00" + "time": "2025-01-02T08:10:11+00:00" }, { - "name": "symfony/psr-http-message-bridge", - "version": "v7.2.0", + "name": "symfony/polyfill-php81", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f" + "url": "https://github.com/symfony/polyfill-php81.git", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", - "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", + "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", "shasum": "" }, "require": { - "php": ">=8.2", - "psr/http-message": "^1.0|^2.0", - "symfony/http-foundation": "^6.4|^7.0" - }, - "conflict": { - "php-http/discovery": "<1.15", - "symfony/http-kernel": "<6.4" + "php": ">=7.2" }, - "require-dev": { - "nyholm/psr7": "^1.1", - "php-http/discovery": "^1.15", - "psr/log": "^1.1.4|^2|^3", - "symfony/browser-kit": "^6.4|^7.0", - "symfony/config": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/framework-bundle": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0" + "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } }, - "type": "symfony-bridge", "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Bridge\\PsrHttpMessage\\": "" + "Symfony\\Polyfill\\Php81\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -7557,24 +15299,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "PSR HTTP message bridge", + "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "http", - "http-message", - "psr-17", - "psr-7" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.2.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0" }, "funding": [ { @@ -7585,51 +15327,50 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-26T08:57:56+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { - "name": "symfony/routing", - "version": "v7.2.3", + "name": "symfony/polyfill-php83", + "version": "v1.33.0", "source": { "type": "git", - "url": "https://github.com/symfony/routing.git", - "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" + "url": "https://github.com/symfony/polyfill-php83.git", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", - "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5", + "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "conflict": { - "symfony/config": "<6.4", - "symfony/dependency-injection": "<6.4", - "symfony/yaml": "<6.4" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^6.4|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/expression-language": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/yaml": "^6.4|^7.0" + "php": ">=7.2" }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Routing\\": "" + "Symfony\\Polyfill\\Php83\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -7638,24 +15379,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Maps an HTTP request to a set of configuration variables", + "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "router", - "routing", - "uri", - "url" + "compatibility", + "polyfill", + "portable", + "shim" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.2.3" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0" }, "funding": [ { @@ -7666,74 +15407,50 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-01-17T10:56:55+00:00" + "time": "2025-07-08T02:45:35+00:00" }, { - "name": "symfony/serializer", - "version": "v7.2.6", + "name": "symfony/polyfill-php84", + "version": "v1.32.0", "source": { "type": "git", - "url": "https://github.com/symfony/serializer.git", - "reference": "be549655b034edc1a16ed23d8164aa04318c5ec1" + "url": "https://github.com/symfony/polyfill-php84.git", + "reference": "000df7860439609837bbe28670b0be15783b7fbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/be549655b034edc1a16ed23d8164aa04318c5ec1", - "reference": "be549655b034edc1a16ed23d8164aa04318c5ec1", + "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf", + "reference": "000df7860439609837bbe28670b0be15783b7fbf", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", - "symfony/dependency-injection": "<6.4", - "symfony/property-access": "<6.4", - "symfony/property-info": "<6.4", - "symfony/uid": "<6.4", - "symfony/validator": "<6.4", - "symfony/yaml": "<6.4" - }, - "require-dev": { - "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", - "phpstan/phpdoc-parser": "^1.0|^2.0", - "seld/jsonlint": "^1.10", - "symfony/cache": "^6.4|^7.0", - "symfony/config": "^6.4|^7.0", - "symfony/console": "^6.4|^7.0", - "symfony/dependency-injection": "^7.2", - "symfony/error-handler": "^6.4|^7.0", - "symfony/filesystem": "^6.4|^7.0", - "symfony/form": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/messenger": "^6.4|^7.0", - "symfony/mime": "^6.4|^7.0", - "symfony/property-access": "^6.4|^7.0", - "symfony/property-info": "^6.4|^7.0", - "symfony/translation-contracts": "^2.5|^3", - "symfony/type-info": "^7.1", - "symfony/uid": "^6.4|^7.0", - "symfony/validator": "^6.4|^7.0", - "symfony/var-dumper": "^6.4|^7.0", - "symfony/var-exporter": "^6.4|^7.0", - "symfony/yaml": "^6.4|^7.0" + "php": ">=7.2" }, "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/polyfill", + "name": "symfony/polyfill" + } + }, "autoload": { + "files": [ + "bootstrap.php" + ], "psr-4": { - "Symfony\\Component\\Serializer\\": "" + "Symfony\\Polyfill\\Php84\\": "" }, - "exclude-from-classmap": [ - "/Tests/" + "classmap": [ + "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -7742,18 +15459,24 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", + "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], "support": { - "source": "https://github.com/symfony/serializer/tree/v7.2.6" + "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0" }, "funding": [ { @@ -7769,46 +15492,32 @@ "type": "tidelift" } ], - "time": "2025-04-27T13:34:41+00:00" + "time": "2025-02-20T12:04:08+00:00" }, { - "name": "symfony/service-contracts", - "version": "v3.5.1", + "name": "symfony/process", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "url": "https://github.com/symfony/process.git", + "reference": "f24f8f316367b30810810d4eb30c543d7003ff3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/process/zipball/f24f8f316367b30810810d4eb30c543d7003ff3b", + "reference": "f24f8f316367b30810810d4eb30c543d7003ff3b", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/container": "^1.1|^2.0", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "conflict": { - "ext-psr": "<1.1|>=2" + "php": ">=8.2" }, "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.5-dev" - } - }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Service\\": "" + "Symfony\\Component\\Process\\": "" }, "exclude-from-classmap": [ - "/Test/" + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -7817,26 +15526,18 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to writing services", + "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/process/tree/v7.3.4" }, "funding": [ { @@ -7847,52 +15548,54 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { - "name": "symfony/string", - "version": "v7.2.6", + "name": "symfony/psr-http-message-bridge", + "version": "v7.3.0", "source": { "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "a214fe7d62bd4df2a76447c67c6b26e1d5e74931" + "url": "https://github.com/symfony/psr-http-message-bridge.git", + "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/a214fe7d62bd4df2a76447c67c6b26e1d5e74931", - "reference": "a214fe7d62bd4df2a76447c67c6b26e1d5e74931", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", + "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f", "shasum": "" }, "require": { "php": ">=8.2", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.0", - "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0" + "psr/http-message": "^1.0|^2.0", + "symfony/http-foundation": "^6.4|^7.0" }, "conflict": { - "symfony/translation-contracts": "<2.5" + "php-http/discovery": "<1.15", + "symfony/http-kernel": "<6.4" }, "require-dev": { - "symfony/emoji": "^7.1", - "symfony/error-handler": "^6.4|^7.0", - "symfony/http-client": "^6.4|^7.0", - "symfony/intl": "^6.4|^7.0", - "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^6.4|^7.0" + "nyholm/psr7": "^1.1", + "php-http/discovery": "^1.15", + "psr/log": "^1.1.4|^2|^3", + "symfony/browser-kit": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/framework-bundle": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0" }, - "type": "library", + "type": "symfony-bridge", "autoload": { - "files": [ - "Resources/functions.php" - ], "psr-4": { - "Symfony\\Component\\String\\": "" + "Symfony\\Bridge\\PsrHttpMessage\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -7904,26 +15607,24 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", + "description": "PSR HTTP message bridge", "homepage": "https://symfony.com", "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" + "http", + "http-message", + "psr-17", + "psr-7" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.2.6" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.3.0" }, "funding": [ { @@ -7939,41 +15640,46 @@ "type": "tidelift" } ], - "time": "2025-04-20T20:18:16+00:00" + "time": "2024-09-26T08:57:56+00:00" }, { - "name": "symfony/translation-contracts", - "version": "v3.5.1", + "name": "symfony/routing", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "url": "https://github.com/symfony/routing.git", + "reference": "8dc648e159e9bac02b703b9fbd937f19ba13d07c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/routing/zipball/8dc648e159e9bac02b703b9fbd937f19ba13d07c", + "reference": "8dc648e159e9bac02b703b9fbd937f19ba13d07c", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.5-dev" - } + "conflict": { + "symfony/config": "<6.4", + "symfony/dependency-injection": "<6.4", + "symfony/yaml": "<6.4" + }, + "require-dev": { + "psr/log": "^1|^2|^3", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/yaml": "^6.4|^7.0" }, + "type": "library", "autoload": { "psr-4": { - "Symfony\\Contracts\\Translation\\": "" + "Symfony\\Component\\Routing\\": "" }, "exclude-from-classmap": [ - "/Test/" + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -7982,26 +15688,24 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Generic abstractions related to translation", + "description": "Maps an HTTP request to a set of configuration variables", "homepage": "https://symfony.com", "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" + "router", + "routing", + "uri", + "url" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/routing/tree/v7.3.4" }, "funding": [ { @@ -8012,73 +15716,79 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { - "name": "symfony/validator", - "version": "v7.2.6", + "name": "symfony/serializer", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/validator.git", - "reference": "f7c32e309885a97fc9572335e22c2c2d31f328c4" + "url": "https://github.com/symfony/serializer.git", + "reference": "0df5af266c6fe9a855af7db4fea86e13b9ca3ab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/f7c32e309885a97fc9572335e22c2c2d31f328c4", - "reference": "f7c32e309885a97fc9572335e22c2c2d31f328c4", + "url": "https://api.github.com/repos/symfony/serializer/zipball/0df5af266c6fe9a855af7db4fea86e13b9ca3ab1", + "reference": "0df5af266c6fe9a855af7db4fea86e13b9ca3ab1", "shasum": "" }, "require": { "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php83": "^1.27", - "symfony/translation-contracts": "^2.5|^3" + "symfony/polyfill-php84": "^1.30" }, "conflict": { - "doctrine/lexer": "<1.1", + "phpdocumentor/reflection-docblock": "<3.2.2", + "phpdocumentor/type-resolver": "<1.4.0", "symfony/dependency-injection": "<6.4", - "symfony/doctrine-bridge": "<7.0", - "symfony/expression-language": "<6.4", - "symfony/http-kernel": "<6.4", - "symfony/intl": "<6.4", + "symfony/property-access": "<6.4", "symfony/property-info": "<6.4", - "symfony/translation": "<6.4.3|>=7.0,<7.0.3", + "symfony/uid": "<6.4", + "symfony/validator": "<6.4", "symfony/yaml": "<6.4" }, "require-dev": { - "egulias/email-validator": "^2.1.10|^3|^4", + "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", + "phpstan/phpdoc-parser": "^1.0|^2.0", + "seld/jsonlint": "^1.10", "symfony/cache": "^6.4|^7.0", "symfony/config": "^6.4|^7.0", "symfony/console": "^6.4|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/expression-language": "^6.4|^7.0", - "symfony/finder": "^6.4|^7.0", - "symfony/http-client": "^6.4|^7.0", + "symfony/dependency-injection": "^7.2", + "symfony/error-handler": "^6.4|^7.0", + "symfony/filesystem": "^6.4|^7.0", + "symfony/form": "^6.4|^7.0", "symfony/http-foundation": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", - "symfony/intl": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", "symfony/mime": "^6.4|^7.0", "symfony/property-access": "^6.4|^7.0", "symfony/property-info": "^6.4|^7.0", - "symfony/translation": "^6.4.3|^7.0.3", - "symfony/type-info": "^7.1", + "symfony/translation-contracts": "^2.5|^3", + "symfony/type-info": "^7.1.8", + "symfony/uid": "^6.4|^7.0", + "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0", + "symfony/var-exporter": "^6.4|^7.0", "symfony/yaml": "^6.4|^7.0" }, "type": "library", "autoload": { "psr-4": { - "Symfony\\Component\\Validator\\": "" + "Symfony\\Component\\Serializer\\": "" }, "exclude-from-classmap": [ - "/Tests/", - "/Resources/bin/" + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -8095,10 +15805,10 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to validate values", + "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/validator/tree/v7.2.6" + "source": "https://github.com/symfony/serializer/tree/v7.3.4" }, "funding": [ { @@ -8109,55 +15819,55 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-05-02T08:36:00+00:00" + "time": "2025-09-15T13:39:02+00:00" }, { - "name": "symfony/var-dumper", - "version": "v7.2.6", + "name": "symfony/service-contracts", + "version": "v3.6.0", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb" + "url": "https://github.com/symfony/service-contracts.git", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9c46038cd4ed68952166cf7001b54eb539184ccb", - "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=8.1", + "psr/container": "^1.1|^2.0", + "symfony/deprecation-contracts": "^2.5|^3" }, "conflict": { - "symfony/console": "<6.4" - }, - "require-dev": { - "ext-iconv": "*", - "symfony/console": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/process": "^6.4|^7.0", - "symfony/uid": "^6.4|^7.0", - "twig/twig": "^3.12" + "ext-psr": "<1.1|>=2" }, - "bin": [ - "Resources/bin/var-dump-server" - ], "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, "autoload": { - "files": [ - "Resources/functions/dump.php" - ], "psr-4": { - "Symfony\\Component\\VarDumper\\": "" + "Symfony\\Contracts\\Service\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -8174,14 +15884,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "description": "Generic abstractions related to writing services", "homepage": "https://symfony.com", "keywords": [ - "debug", - "dump" + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.2.6" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.0" }, "funding": [ { @@ -8197,34 +15911,46 @@ "type": "tidelift" } ], - "time": "2025-04-09T08:14:01+00:00" + "time": "2025-04-25T09:37:31+00:00" }, { - "name": "symfony/var-exporter", - "version": "v7.2.6", + "name": "symfony/string", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "422b8de94c738830a1e071f59ad14d67417d7007" + "url": "https://github.com/symfony/string.git", + "reference": "f96476035142921000338bad71e5247fbc138872" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/422b8de94c738830a1e071f59ad14d67417d7007", - "reference": "422b8de94c738830a1e071f59ad14d67417d7007", + "url": "https://api.github.com/repos/symfony/string/zipball/f96476035142921000338bad71e5247fbc138872", + "reference": "f96476035142921000338bad71e5247fbc138872", "shasum": "" }, "require": { - "php": ">=8.2" + "php": ">=8.2", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/property-access": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0", - "symfony/var-dumper": "^6.4|^7.0" + "symfony/emoji": "^7.1", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/translation-contracts": "^2.5|^3.0", + "symfony/var-exporter": "^6.4|^7.0" }, "type": "library", "autoload": { + "files": [ + "Resources/functions.php" + ], "psr-4": { - "Symfony\\Component\\VarExporter\\": "" + "Symfony\\Component\\String\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -8244,20 +15970,18 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Allows exporting any serializable PHP data structure to plain PHP code", + "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", "keywords": [ - "clone", - "construct", - "export", - "hydrate", - "instantiate", - "lazy-loading", - "proxy", - "serialize" + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v7.2.6" + "source": "https://github.com/symfony/string/tree/v7.3.4" }, "funding": [ { @@ -8268,48 +15992,50 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-05-02T08:36:00+00:00" + "time": "2025-09-11T14:36:48+00:00" }, { - "name": "symfony/yaml", - "version": "v7.2.6", + "name": "symfony/translation-contracts", + "version": "v3.6.0", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "0feafffb843860624ddfd13478f481f4c3cd8b23" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/0feafffb843860624ddfd13478f481f4c3cd8b23", - "reference": "0feafffb843860624ddfd13478f481f4c3cd8b23", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/deprecation-contracts": "^2.5|^3.0", - "symfony/polyfill-ctype": "^1.8" - }, - "conflict": { - "symfony/console": "<6.4" - }, - "require-dev": { - "symfony/console": "^6.4|^7.0" + "php": ">=8.1" }, - "bin": [ - "Resources/bin/yaml-lint" - ], "type": "library", + "extra": { + "thanks": { + "url": "https://github.com/symfony/contracts", + "name": "symfony/contracts" + }, + "branch-alias": { + "dev-main": "3.6-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\Yaml\\": "" + "Symfony\\Contracts\\Translation\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Test/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -8318,18 +16044,26 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" } ], - "description": "Loads and dumps YAML files", + "description": "Generic abstractions related to translation", "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], "support": { - "source": "https://github.com/symfony/yaml/tree/v7.2.6" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0" }, "funding": [ { @@ -8345,253 +16079,314 @@ "type": "tidelift" } ], - "time": "2025-04-04T10:10:11+00:00" + "time": "2024-09-27T08:32:26+00:00" }, { - "name": "twig/twig", - "version": "v3.19.0", + "name": "symfony/validator", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "d4f8c2b86374f08efc859323dbcd95c590f7124e" + "url": "https://github.com/symfony/validator.git", + "reference": "5e29a348b5fac2227b6938a54db006d673bb813a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/d4f8c2b86374f08efc859323dbcd95c590f7124e", - "reference": "d4f8c2b86374f08efc859323dbcd95c590f7124e", + "url": "https://api.github.com/repos/symfony/validator/zipball/5e29a348b5fac2227b6938a54db006d673bb813a", + "reference": "5e29a348b5fac2227b6938a54db006d673bb813a", "shasum": "" }, "require": { - "php": ">=8.0.2", + "php": ">=8.2", "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php81": "^1.29" + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php83": "^1.27", + "symfony/translation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/lexer": "<1.1", + "symfony/dependency-injection": "<6.4", + "symfony/doctrine-bridge": "<7.0", + "symfony/expression-language": "<6.4", + "symfony/http-kernel": "<6.4", + "symfony/intl": "<6.4", + "symfony/property-info": "<6.4", + "symfony/translation": "<6.4.3|>=7.0,<7.0.3", + "symfony/yaml": "<6.4" }, "require-dev": { - "phpstan/phpstan": "^2.0", - "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" + "egulias/email-validator": "^2.1.10|^3|^4", + "symfony/cache": "^6.4|^7.0", + "symfony/config": "^6.4|^7.0", + "symfony/console": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/finder": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/string": "^6.4|^7.0", + "symfony/translation": "^6.4.3|^7.0.3", + "symfony/type-info": "^7.1.8", + "symfony/yaml": "^6.4|^7.0" }, "type": "library", "autoload": { - "files": [ - "src/Resources/core.php", - "src/Resources/debug.php", - "src/Resources/escaper.php", - "src/Resources/string_loader.php" - ], "psr-4": { - "Twig\\": "src/" - } + "Symfony\\Component\\Validator\\": "" + }, + "exclude-from-classmap": [ + "/Tests/", + "/Resources/bin/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" - }, - { - "name": "Twig Team", - "role": "Contributors" + "email": "fabien@symfony.com" }, { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", - "keywords": [ - "templating" - ], + "description": "Provides tools to validate values", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.19.0" + "source": "https://github.com/symfony/validator/tree/v7.3.4" }, "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, { "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-01-29T07:06:14+00:00" + "time": "2025-09-24T06:32:27+00:00" }, { - "name": "vlucas/phpdotenv", - "version": "v5.6.2", + "name": "symfony/var-dumper", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" + "url": "https://github.com/symfony/var-dumper.git", + "reference": "b8abe7daf2730d07dfd4b2ee1cecbf0dd2fbdabb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b8abe7daf2730d07dfd4b2ee1cecbf0dd2fbdabb", + "reference": "b8abe7daf2730d07dfd4b2ee1cecbf0dd2fbdabb", "shasum": "" }, "require": { - "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.3", - "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3", - "symfony/polyfill-ctype": "^1.24", - "symfony/polyfill-mbstring": "^1.24", - "symfony/polyfill-php80": "^1.24" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-mbstring": "~1.0" }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "ext-filter": "*", - "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + "conflict": { + "symfony/console": "<6.4" }, - "suggest": { - "ext-filter": "Required to use the boolean validator." + "require-dev": { + "symfony/console": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/process": "^6.4|^7.0", + "symfony/uid": "^6.4|^7.0", + "twig/twig": "^3.12" }, + "bin": [ + "Resources/bin/var-dump-server" + ], "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - }, - "branch-alias": { - "dev-master": "5.6-dev" - } - }, "autoload": { + "files": [ + "Resources/functions/dump.php" + ], "psr-4": { - "Dotenv\\": "src/" - } + "Symfony\\Component\\VarDumper\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, { - "name": "Vance Lucas", - "email": "vance@vancelucas.com", - "homepage": "https://github.com/vlucas" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "homepage": "https://symfony.com", "keywords": [ - "dotenv", - "env", - "environment" + "debug", + "dump" ], "support": { - "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" + "source": "https://github.com/symfony/var-dumper/tree/v7.3.4" }, "funding": [ { - "url": "https://github.com/GrahamCampbell", + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-30T23:37:27+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { - "name": "webflo/drupal-finder", - "version": "1.3.1", + "name": "symfony/var-exporter", + "version": "v7.3.4", "source": { "type": "git", - "url": "https://github.com/webflo/drupal-finder.git", - "reference": "73045060b0894c77962a10cff047f72872d8810c" + "url": "https://github.com/symfony/var-exporter.git", + "reference": "0f020b544a30a7fe8ba972e53ee48a74c0bc87f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c", - "reference": "73045060b0894c77962a10cff047f72872d8810c", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f020b544a30a7fe8ba972e53ee48a74c0bc87f4", + "reference": "0f020b544a30a7fe8ba972e53ee48a74c0bc87f4", "shasum": "" }, "require": { - "composer-runtime-api": "^2.2", - "php": ">=8.1" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { - "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^10.4", - "symfony/process": "^6.4" + "symfony/property-access": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0", + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { "psr-4": { - "DrupalFinder\\": "src/" - } + "Symfony\\Component\\VarExporter\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" ], "authors": [ { - "name": "Florian Weber", - "email": "florian@webflo.org" + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Helper class to locate a Drupal installation.", + "description": "Allows exporting any serializable PHP data structure to plain PHP code", + "homepage": "https://symfony.com", + "keywords": [ + "clone", + "construct", + "export", + "hydrate", + "instantiate", + "lazy-loading", + "proxy", + "serialize" + ], "support": { - "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.3.1" + "source": "https://github.com/symfony/var-exporter/tree/v7.3.4" }, - "time": "2024-06-28T13:45:36+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-09-11T10:12:26+00:00" }, { - "name": "webmozart/assert", - "version": "1.11.0", + "name": "symfony/yaml", + "version": "v7.3.3", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/symfony/yaml.git", + "reference": "d4f4a66866fe2451f61296924767280ab5732d9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/symfony/yaml/zipball/d4f4a66866fe2451f61296924767280ab5732d9d", + "reference": "d4f4a66866fe2451f61296924767280ab5732d9d", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" + "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/polyfill-ctype": "^1.8" }, "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "symfony/console": "<6.4" }, "require-dev": { - "phpunit/phpunit": "^8.5.13" + "symfony/console": "^6.4|^7.0" }, + "bin": [ + "Resources/bin/yaml-lint" + ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, "autoload": { "psr-4": { - "Webmozart\\Assert\\": "src/" - } + "Symfony\\Component\\Yaml\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -8599,331 +16394,337 @@ ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "description": "Assertions to validate method input/output with nice error messages.", - "keywords": [ - "assert", - "check", - "validate" - ], + "description": "Loads and dumps YAML files", + "homepage": "https://symfony.com", "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" + "source": "https://github.com/symfony/yaml/tree/v7.3.3" }, - "time": "2022-06-03T18:03:27+00:00" + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2025-08-27T11:34:33+00:00" }, { - "name": "webmozart/path-util", - "version": "2.3.0", + "name": "tijsverkoyen/css-to-inline-styles", + "version": "v2.3.0", "source": { "type": "git", - "url": "https://github.com/webmozart/path-util.git", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" + "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", - "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d", + "reference": "0d72ac1c00084279c1816675284073c5a337c20d", "shasum": "" }, "require": { - "php": ">=5.3.3", - "webmozart/assert": "~1.0" + "ext-dom": "*", + "ext-libxml": "*", + "php": "^7.4 || ^8.0", + "symfony/css-selector": "^5.4 || ^6.0 || ^7.0" }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpstan/phpstan": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^8.5.21 || ^9.5.10" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "Webmozart\\PathUtil\\": "src/" + "TijsVerkoyen\\CssToInlineStyles\\": "src" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Bernhard Schussek", - "email": "bschussek@gmail.com" + "name": "Tijs Verkoyen", + "email": "css_to_inline_styles@verkoyen.eu", + "role": "Developer" } ], - "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "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/webmozart/path-util/issues", - "source": "https://github.com/webmozart/path-util/tree/2.3.0" + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0" }, - "abandoned": "symfony/filesystem", - "time": "2015-12-17T08:42:14+00:00" + "time": "2024-12-21T16:25:41+00:00" }, { - "name": "wikimedia/composer-merge-plugin", - "version": "v2.1.0", + "name": "twig/twig", + "version": "v3.21.1", "source": { "type": "git", - "url": "https://github.com/wikimedia/composer-merge-plugin.git", - "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc" + "url": "https://github.com/twigphp/Twig.git", + "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc", - "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d", + "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1||^2.0", - "php": ">=7.2.0" + "php": ">=8.1.0", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/polyfill-ctype": "^1.8", + "symfony/polyfill-mbstring": "^1.3" }, "require-dev": { - "composer/composer": "^1.1||^2.0", - "ext-json": "*", - "mediawiki/mediawiki-phan-config": "0.11.1", - "php-parallel-lint/php-parallel-lint": "~1.3.1", - "phpspec/prophecy": "~1.15.0", - "phpunit/phpunit": "^8.5||^9.0", - "squizlabs/php_codesniffer": "~3.7.1" - }, - "type": "composer-plugin", - "extra": { - "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin", - "branch-alias": { - "dev-master": "2.x-dev" - } + "phpstan/phpstan": "^2.0", + "psr/container": "^1.0|^2.0", + "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" }, + "type": "library", "autoload": { + "files": [ + "src/Resources/core.php", + "src/Resources/debug.php", + "src/Resources/escaper.php", + "src/Resources/string_loader.php" + ], "psr-4": { - "Wikimedia\\Composer\\Merge\\V2\\": "src/" + "Twig\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Bryan Davis", - "email": "bd808@wikimedia.org" + "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" + } + ], + "description": "Twig, the flexible, fast, and secure template language for PHP", + "homepage": "https://twig.symfony.com", + "keywords": [ + "templating" + ], + "support": { + "issues": "https://github.com/twigphp/Twig/issues", + "source": "https://github.com/twigphp/Twig/tree/v3.21.1" + }, + "funding": [ + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/twig/twig", + "type": "tidelift" } ], - "description": "Composer plugin to merge multiple composer.json files", - "support": { - "issues": "https://github.com/wikimedia/composer-merge-plugin/issues", - "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0" - }, - "time": "2023-04-15T19:07:00+00:00" - } - ], - "packages-dev": [ + "time": "2025-05-03T07:21:55+00:00" + }, { - "name": "behat/behat", - "version": "v3.22.0", + "name": "vlucas/phpdotenv", + "version": "v5.6.2", "source": { "type": "git", - "url": "https://github.com/Behat/Behat.git", - "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93" + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/a93098a77753c3cfdc4c485d75141924a78ceb93", - "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", "shasum": "" }, "require": { - "behat/gherkin": "^4.12.0", - "composer-runtime-api": "^2.2", - "composer/xdebug-handler": "^3.0", - "ext-mbstring": "*", - "nikic/php-parser": "^5.2", - "php": "8.1.* || 8.2.* || 8.3.* || 8.4.* ", - "psr/container": "^1.0 || ^2.0", - "symfony/config": "^5.4 || ^6.4 || ^7.0", - "symfony/console": "^5.4 || ^6.4 || ^7.0", - "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", - "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", - "symfony/translation": "^5.4 || ^6.4 || ^7.0", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + "ext-pcre": "*", + "graham-campbell/result-type": "^1.1.3", + "php": "^7.2.5 || ^8.0", + "phpoption/phpoption": "^1.9.3", + "symfony/polyfill-ctype": "^1.24", + "symfony/polyfill-mbstring": "^1.24", + "symfony/polyfill-php80": "^1.24" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.68", - "phpstan/phpstan": "^2.0", - "phpunit/phpunit": "^9.6", - "sebastian/diff": "^4.0", - "symfony/polyfill-php84": "^1.31", - "symfony/process": "^5.4 || ^6.4 || ^7.0" + "bamarni/composer-bin-plugin": "^1.8.2", + "ext-filter": "*", + "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" }, "suggest": { - "ext-dom": "Needed to output test results in JUnit format." + "ext-filter": "Required to use the boolean validator." }, - "bin": [ - "bin/behat" - ], "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": false + }, "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "5.6-dev" } }, "autoload": { "psr-4": { - "Behat\\Hook\\": "src/Behat/Hook/", - "Behat\\Step\\": "src/Behat/Step/", - "Behat\\Behat\\": "src/Behat/Behat/", - "Behat\\Config\\": "src/Behat/Config/", - "Behat\\Testwork\\": "src/Behat/Testwork/", - "Behat\\Transformation\\": "src/Behat/Transformation/" + "Dotenv\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://github.com/vlucas" } ], - "description": "Scenario-oriented BDD framework for PHP", - "homepage": "https://behat.org/", + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", "keywords": [ - "Agile", - "BDD", - "ScenarioBDD", - "Scrum", - "StoryBDD", - "User story", - "business", - "development", - "documentation", - "examples", - "symfony", - "testing" + "dotenv", + "env", + "environment" ], "support": { - "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.22.0" + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" }, - "time": "2025-05-06T15:25:03+00:00" + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2025-04-30T23:37:27+00:00" }, { - "name": "behat/gherkin", - "version": "v4.13.0", + "name": "webflo/drupal-finder", + "version": "1.3.1", "source": { "type": "git", - "url": "https://github.com/Behat/Gherkin.git", - "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70" + "url": "https://github.com/webflo/drupal-finder.git", + "reference": "73045060b0894c77962a10cff047f72872d8810c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/9294d26bb75f1718441b89f3a10e15ecb2c67f70", - "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c", + "reference": "73045060b0894c77962a10cff047f72872d8810c", "shasum": "" }, "require": { "composer-runtime-api": "^2.2", - "php": "8.1.* || 8.2.* || 8.3.* || 8.4.*" + "php": ">=8.1" }, "require-dev": { - "cucumber/gherkin-monorepo": "dev-gherkin-v32.1.1", - "friendsofphp/php-cs-fixer": "^3.65", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^2", - "phpstan/phpstan-phpunit": "^2", - "phpunit/phpunit": "^10.5", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" - }, - "suggest": { - "symfony/yaml": "If you want to parse features, represented in YAML files" + "mikey179/vfsstream": "^1.6", + "phpunit/phpunit": "^10.4", + "symfony/process": "^6.4" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.x-dev" - } - }, "autoload": { "psr-4": { - "Behat\\Gherkin\\": "src/" + "DrupalFinder\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "GPL-2.0-or-later" ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "https://everzet.com" + "name": "Florian Weber", + "email": "florian@webflo.org" } ], - "description": "Gherkin DSL parser for PHP", - "homepage": "https://behat.org/", - "keywords": [ - "BDD", - "Behat", - "Cucumber", - "DSL", - "gherkin", - "parser" - ], + "description": "Helper class to locate a Drupal installation.", "support": { - "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.13.0" + "issues": "https://github.com/webflo/drupal-finder/issues", + "source": "https://github.com/webflo/drupal-finder/tree/1.3.1" }, - "time": "2025-05-06T15:26:21+00:00" + "time": "2024-06-28T13:45:36+00:00" }, { - "name": "behat/mink", - "version": "v1.12.0", + "name": "webmozart/assert", + "version": "1.11.0", "source": { "type": "git", - "url": "https://github.com/minkphp/Mink.git", - "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a" + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/7e4edec6c335937029cb3569ce7ef81182804d0a", - "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0" + "ext-ctype": "*", + "php": "^7.2 || ^8.0" }, - "require-dev": { - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0" + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" }, - "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)" + "require-dev": { + "phpunit/phpunit": "^8.5.13" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.10-dev" } }, "autoload": { "psr-4": { - "Behat\\Mink\\": "src/" + "Webmozart\\Assert\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -8932,65 +16733,53 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Browser controller/emulator abstraction for PHP", - "homepage": "https://mink.behat.org/", + "description": "Assertions to validate method input/output with nice error messages.", "keywords": [ - "browser", - "testing", - "web" + "assert", + "check", + "validate" ], "support": { - "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.12.0" + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" }, - "time": "2024-10-30T18:48:14+00:00" + "time": "2022-06-03T18:03:27+00:00" }, { - "name": "behat/mink-browserkit-driver", - "version": "v2.2.0", + "name": "webmozart/path-util", + "version": "2.3.0", "source": { "type": "git", - "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", - "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50" + "url": "https://github.com/webmozart/path-util.git", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/16d53476e42827ed3aafbfa4fde17a1743eafd50", - "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50", - "shasum": "" - }, - "require": { - "behat/mink": "^1.11.0@dev", - "ext-dom": "*", - "php": ">=7.2", - "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0" + "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "webmozart/assert": "~1.0" }, "require-dev": { - "mink/driver-testsuite": "dev-master", - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5 || ^9.5", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "yoast/phpunit-polyfills": "^1.0" + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" }, - "type": "mink-driver", + "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "2.3-dev" } }, "autoload": { "psr-4": { - "Behat\\Mink\\Driver\\": "src/" + "Webmozart\\PathUtil\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -8999,118 +16788,112 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Symfony2 BrowserKit driver for Mink framework", - "homepage": "https://mink.behat.org/", - "keywords": [ - "Mink", - "Symfony2", - "browser", - "testing" - ], + "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", "support": { - "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", - "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.2.0" + "issues": "https://github.com/webmozart/path-util/issues", + "source": "https://github.com/webmozart/path-util/tree/2.3.0" }, - "time": "2023-12-09T11:30:50+00:00" + "abandoned": "symfony/filesystem", + "time": "2015-12-17T08:42:14+00:00" }, { - "name": "brick/math", - "version": "0.12.3", + "name": "wikimedia/composer-merge-plugin", + "version": "v2.1.0", "source": { "type": "git", - "url": "https://github.com/brick/math.git", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" + "url": "https://github.com/wikimedia/composer-merge-plugin.git", + "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", - "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", + "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc", + "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc", "shasum": "" }, "require": { - "php": "^8.1" + "composer-plugin-api": "^1.1||^2.0", + "php": ">=7.2.0" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^10.1", - "vimeo/psalm": "6.8.8" + "composer/composer": "^1.1||^2.0", + "ext-json": "*", + "mediawiki/mediawiki-phan-config": "0.11.1", + "php-parallel-lint/php-parallel-lint": "~1.3.1", + "phpspec/prophecy": "~1.15.0", + "phpunit/phpunit": "^8.5||^9.0", + "squizlabs/php_codesniffer": "~3.7.1" + }, + "type": "composer-plugin", + "extra": { + "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin", + "branch-alias": { + "dev-master": "2.x-dev" + } }, - "type": "library", "autoload": { "psr-4": { - "Brick\\Math\\": "src/" + "Wikimedia\\Composer\\Merge\\V2\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "Arbitrary-precision arithmetic library", - "keywords": [ - "Arbitrary-precision", - "BigInteger", - "BigRational", - "arithmetic", - "bigdecimal", - "bignum", - "bignumber", - "brick", - "decimal", - "integer", - "math", - "mathematics", - "rational" - ], - "support": { - "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.12.3" - }, - "funding": [ + "authors": [ { - "url": "https://github.com/BenMorel", - "type": "github" + "name": "Bryan Davis", + "email": "bd808@wikimedia.org" } ], - "time": "2025-02-28T13:11:00+00:00" + "description": "Composer plugin to merge multiple composer.json files", + "support": { + "issues": "https://github.com/wikimedia/composer-merge-plugin/issues", + "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0" + }, + "time": "2023-04-15T19:07:00+00:00" }, { - "name": "colinodell/psr-testlogger", - "version": "v1.3.0", + "name": "willdurand/geocoder", + "version": "5.0.0", "source": { "type": "git", - "url": "https://github.com/colinodell/psr-testlogger.git", - "reference": "291f5b70ea0d3139787d18f442365a8e2784a462" + "url": "https://github.com/geocoder-php/php-common.git", + "reference": "a749e00819d2929bd0ec40fb79853956332970ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/colinodell/psr-testlogger/zipball/291f5b70ea0d3139787d18f442365a8e2784a462", - "reference": "291f5b70ea0d3139787d18f442365a8e2784a462", + "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/a749e00819d2929bd0ec40fb79853956332970ba", + "reference": "a749e00819d2929bd0ec40fb79853956332970ba", "shasum": "" }, "require": { - "php": "^8.0", - "psr/log": "^1.0 || ^2.0 || ^3.0" - }, - "provide": { - "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + "php": ">=8.2" }, "require-dev": { - "phpstan/phpstan": "^1.9.2", - "phpunit/phpunit": "^9.5.5", - "scrutinizer/ocular": "^1.8.1", - "unleashedtech/php-coding-standard": "^3.1", - "vimeo/psalm": "^4.30.0" + "nyholm/nsa": "^1.1", + "phpunit/phpunit": "^9.5", + "symfony/stopwatch": "~2.5 || ~5.0" + }, + "suggest": { + "symfony/stopwatch": "If you want to use the TimedGeocoder" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, "autoload": { "psr-4": { - "ColinODell\\PsrTestLogger\\": "src" - } + "Geocoder\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -9118,157 +16901,133 @@ ], "authors": [ { - "name": "Colin O'Dell", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com", - "role": "Lead Developer" + "name": "William Durand", + "email": "william.durand1@gmail.com" } ], - "description": "PSR-3 compliant test logger based on psr/log v1's, but compatible with v2 and v3 too!", - "homepage": "https://github.com/colinodell/psr-testlogger", + "description": "Common files for PHP Geocoder", + "homepage": "http://geocoder-php.org", "keywords": [ - "log", - "logger", - "logging", - "mock", - "phpunit", - "psr", - "test", - "unit" + "abstraction", + "geocoder", + "geocoding", + "geoip" ], "support": { - "issues": "https://github.com/colinodell/psr-testlogger/issues", - "rss": "https://github.com/colinodell/psr-testlogger/releases.atom", - "source": "https://github.com/colinodell/psr-testlogger" + "source": "https://github.com/geocoder-php/php-common/tree/5.0.0" }, - "funding": [ - { - "url": "https://www.colinodell.com/sponsor", - "type": "custom" - }, - { - "url": "https://www.paypal.me/colinpodell/10.00", - "type": "custom" - }, - { - "url": "https://github.com/colinodell", - "type": "github" - } - ], - "time": "2023-11-29T23:03:34+00:00" + "time": "2025-01-01T15:52:42+00:00" }, { - "name": "composer/ca-bundle", - "version": "1.5.6", + "name": "yethee/tiktoken", + "version": "0.5.1", "source": { "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "f65c239c970e7f072f067ab78646e9f0b2935175" + "url": "https://github.com/yethee/tiktoken-php.git", + "reference": "94a4ac18ab505198f5a0955948ab29ce659c1697" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175", - "reference": "f65c239c970e7f072f067ab78646e9f0b2935175", + "url": "https://api.github.com/repos/yethee/tiktoken-php/zipball/94a4ac18ab505198f5a0955948ab29ce659c1697", + "reference": "94a4ac18ab505198f5a0955948ab29ce659c1697", "shasum": "" }, "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^7.2 || ^8.0" + "php": "^8.1", + "symfony/service-contracts": "^2.5 || ^3.0" }, "require-dev": { - "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8 || ^9", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" + "doctrine/coding-standard": "^12.0", + "mikey179/vfsstream": "^1.6.11", + "phpbench/phpbench": "^1.2", + "phpunit/phpunit": "^10.5.20", + "psalm/plugin-phpunit": "^0.19.0", + "vimeo/psalm": "5.25.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Composer\\CaBundle\\": "src" + "Yethee\\Tiktoken\\": "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.", + "description": "PHP version of tiktoken", "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" + "bpe", + "decode", + "encode", + "openai", + "tiktoken", + "tokenizer" ], "support": { - "irc": "irc://irc.freenode.org/composer", - "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.5.6" + "issues": "https://github.com/yethee/tiktoken-php/issues", + "source": "https://github.com/yethee/tiktoken-php/tree/0.5.1" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2025-03-06T14:30:56+00:00" - }, + "time": "2024-07-17T10:09:02+00:00" + } + ], + "packages-dev": [ { - "name": "composer/class-map-generator", - "version": "1.6.1", + "name": "behat/behat", + "version": "v3.22.0", "source": { "type": "git", - "url": "https://github.com/composer/class-map-generator.git", - "reference": "134b705ddb0025d397d8318a75825fe3c9d1da34" + "url": "https://github.com/Behat/Behat.git", + "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/class-map-generator/zipball/134b705ddb0025d397d8318a75825fe3c9d1da34", - "reference": "134b705ddb0025d397d8318a75825fe3c9d1da34", + "url": "https://api.github.com/repos/Behat/Behat/zipball/a93098a77753c3cfdc4c485d75141924a78ceb93", + "reference": "a93098a77753c3cfdc4c485d75141924a78ceb93", "shasum": "" }, "require": { - "composer/pcre": "^2.1 || ^3.1", - "php": "^7.2 || ^8.0", - "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" + "behat/gherkin": "^4.12.0", + "composer-runtime-api": "^2.2", + "composer/xdebug-handler": "^3.0", + "ext-mbstring": "*", + "nikic/php-parser": "^5.2", + "php": "8.1.* || 8.2.* || 8.3.* || 8.4.* ", + "psr/container": "^1.0 || ^2.0", + "symfony/config": "^5.4 || ^6.4 || ^7.0", + "symfony/console": "^5.4 || ^6.4 || ^7.0", + "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", + "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", + "symfony/translation": "^5.4 || ^6.4 || ^7.0", + "symfony/yaml": "^5.4 || ^6.4 || ^7.0" }, "require-dev": { - "phpstan/phpstan": "^1.12 || ^2", - "phpstan/phpstan-deprecation-rules": "^1 || ^2", - "phpstan/phpstan-phpunit": "^1 || ^2", - "phpstan/phpstan-strict-rules": "^1.1 || ^2", - "phpunit/phpunit": "^8", - "symfony/filesystem": "^5.4 || ^6" + "friendsofphp/php-cs-fixer": "^3.68", + "phpstan/phpstan": "^2.0", + "phpunit/phpunit": "^9.6", + "sebastian/diff": "^4.0", + "symfony/polyfill-php84": "^1.31", + "symfony/process": "^5.4 || ^6.4 || ^7.0" + }, + "suggest": { + "ext-dom": "Needed to output test results in JUnit format." }, + "bin": [ + "bin/behat" + ], "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { "psr-4": { - "Composer\\ClassMapGenerator\\": "src" + "Behat\\Hook\\": "src/Behat/Hook/", + "Behat\\Step\\": "src/Behat/Step/", + "Behat\\Behat\\": "src/Behat/Behat/", + "Behat\\Config\\": "src/Behat/Config/", + "Behat\\Testwork\\": "src/Behat/Testwork/", + "Behat\\Transformation\\": "src/Behat/Transformation/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9277,102 +17036,72 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], - "description": "Utilities to scan PHP code and generate class maps.", + "description": "Scenario-oriented BDD framework for PHP", + "homepage": "https://behat.org/", "keywords": [ - "classmap" + "Agile", + "BDD", + "ScenarioBDD", + "Scrum", + "StoryBDD", + "User story", + "business", + "development", + "documentation", + "examples", + "symfony", + "testing" ], "support": { - "issues": "https://github.com/composer/class-map-generator/issues", - "source": "https://github.com/composer/class-map-generator/tree/1.6.1" + "issues": "https://github.com/Behat/Behat/issues", + "source": "https://github.com/Behat/Behat/tree/v3.22.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": "2025-03-24T13:50:44+00:00" + "time": "2025-05-06T15:25:03+00:00" }, { - "name": "composer/composer", - "version": "2.8.6", + "name": "behat/gherkin", + "version": "v4.13.0", "source": { "type": "git", - "url": "https://github.com/composer/composer.git", - "reference": "937c775a644bd7d2c3dfbb352747488463a6e673" + "url": "https://github.com/Behat/Gherkin.git", + "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/937c775a644bd7d2c3dfbb352747488463a6e673", - "reference": "937c775a644bd7d2c3dfbb352747488463a6e673", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/9294d26bb75f1718441b89f3a10e15ecb2c67f70", + "reference": "9294d26bb75f1718441b89f3a10e15ecb2c67f70", "shasum": "" }, "require": { - "composer/ca-bundle": "^1.5", - "composer/class-map-generator": "^1.4.0", - "composer/metadata-minifier": "^1.0", - "composer/pcre": "^2.2 || ^3.2", - "composer/semver": "^3.3", - "composer/spdx-licenses": "^1.5.7", - "composer/xdebug-handler": "^2.0.2 || ^3.0.3", - "justinrainbow/json-schema": "^5.3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "react/promise": "^2.11 || ^3.2", - "seld/jsonlint": "^1.4", - "seld/phar-utils": "^1.2", - "seld/signal-handler": "^2.0", - "symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3", - "symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3", - "symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3", - "symfony/polyfill-php73": "^1.24", - "symfony/polyfill-php80": "^1.24", - "symfony/polyfill-php81": "^1.24", - "symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3" + "composer-runtime-api": "^2.2", + "php": "8.1.* || 8.2.* || 8.3.* || 8.4.*" }, "require-dev": { - "phpstan/phpstan": "^1.11.8", - "phpstan/phpstan-deprecation-rules": "^1.2.0", - "phpstan/phpstan-phpunit": "^1.4.0", - "phpstan/phpstan-strict-rules": "^1.6.0", - "phpstan/phpstan-symfony": "^1.4.0", - "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1" + "cucumber/gherkin-monorepo": "dev-gherkin-v32.1.1", + "friendsofphp/php-cs-fixer": "^3.65", + "phpstan/extension-installer": "^1", + "phpstan/phpstan": "^2", + "phpstan/phpstan-phpunit": "^2", + "phpunit/phpunit": "^10.5", + "symfony/yaml": "^5.4 || ^6.4 || ^7.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/yaml": "If you want to parse features, represented in YAML files" }, - "bin": [ - "bin/composer" - ], "type": "library", "extra": { - "phpstan": { - "includes": [ - "phpstan/rules.neon" - ] - }, "branch-alias": { - "dev-main": "2.8-dev" + "dev-master": "4.x-dev" } }, "autoload": { "psr-4": { - "Composer\\": "src/Composer/" + "Behat\\Gherkin\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9381,76 +17110,67 @@ ], "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": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "https://everzet.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/", + "description": "Gherkin DSL parser for PHP", + "homepage": "https://behat.org/", "keywords": [ - "autoload", - "dependency", - "package" + "BDD", + "Behat", + "Cucumber", + "DSL", + "gherkin", + "parser" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/composer/issues", - "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.8.6" + "issues": "https://github.com/Behat/Gherkin/issues", + "source": "https://github.com/Behat/Gherkin/tree/v4.13.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": "2025-02-25T12:03:50+00:00" + "time": "2025-05-06T15:26:21+00:00" }, { - "name": "composer/metadata-minifier", - "version": "1.0.0", + "name": "behat/mink", + "version": "v1.12.0", "source": { "type": "git", - "url": "https://github.com/composer/metadata-minifier.git", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207" + "url": "https://github.com/minkphp/Mink.git", + "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", - "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/7e4edec6c335937029cb3569ce7ef81182804d0a", + "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": ">=7.2", + "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { - "composer/composer": "^2", - "phpstan/phpstan": "^0.12.55", - "symfony/phpunit-bridge": "^4.2 || ^5" + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0" + }, + "suggest": { + "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", + "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", + "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)", + "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Composer\\MetadataMinifier\\": "src" + "Behat\\Mink\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9459,75 +17179,65 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], - "description": "Small utility library that handles metadata minification and expansion.", + "description": "Browser controller/emulator abstraction for PHP", + "homepage": "https://mink.behat.org/", "keywords": [ - "composer", - "compression" + "browser", + "testing", + "web" ], "support": { - "issues": "https://github.com/composer/metadata-minifier/issues", - "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + "issues": "https://github.com/minkphp/Mink/issues", + "source": "https://github.com/minkphp/Mink/tree/v1.12.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": "2024-10-30T18:48:14+00:00" }, { - "name": "composer/pcre", - "version": "3.3.2", + "name": "behat/mink-browserkit-driver", + "version": "v2.2.0", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", + "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/16d53476e42827ed3aafbfa4fde17a1743eafd50", + "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<1.11.10" + "behat/mink": "^1.11.0@dev", + "ext-dom": "*", + "php": ">=7.2", + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0" }, "require-dev": { - "phpstan/phpstan": "^1.12 || ^2", - "phpstan/phpstan-strict-rules": "^1 || ^2", - "phpunit/phpunit": "^8 || ^9" + "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "yoast/phpunit-polyfills": "^1.0" }, - "type": "library", + "type": "mink-driver", "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - }, "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" + "Behat\\Mink\\Driver\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -9536,146 +17246,117 @@ ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" } ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "description": "Symfony2 BrowserKit driver for Mink framework", + "homepage": "https://mink.behat.org/", "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" + "Mink", + "Symfony2", + "browser", + "testing" ], "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.3.2" + "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.2.0" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-11-12T16:29:46+00:00" + "time": "2023-12-09T11:30:50+00:00" }, { - "name": "composer/spdx-licenses", - "version": "1.5.9", + "name": "brick/math", + "version": "0.14.0", "source": { "type": "git", - "url": "https://github.com/composer/spdx-licenses.git", - "reference": "edf364cefe8c43501e21e88110aac10b284c3c9f" + "url": "https://github.com/brick/math.git", + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/edf364cefe8c43501e21e88110aac10b284c3c9f", - "reference": "edf364cefe8c43501e21e88110aac10b284c3c9f", + "url": "https://api.github.com/repos/brick/math/zipball/113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", + "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": "^8.2" }, "require-dev": { - "phpstan/phpstan": "^1.11", - "symfony/phpunit-bridge": "^3 || ^7" + "php-coveralls/php-coveralls": "^2.2", + "phpstan/phpstan": "2.1.22", + "phpunit/phpunit": "^11.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, "autoload": { "psr-4": { - "Composer\\Spdx\\": "src" + "Brick\\Math\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "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" - } - ], - "description": "SPDX licenses list and validation library.", + "description": "Arbitrary-precision arithmetic library", "keywords": [ - "license", - "spdx", - "validator" + "Arbitrary-precision", + "BigInteger", + "BigRational", + "arithmetic", + "bigdecimal", + "bignum", + "bignumber", + "brick", + "decimal", + "integer", + "math", + "mathematics", + "rational" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.9" + "issues": "https://github.com/brick/math/issues", + "source": "https://github.com/brick/math/tree/0.14.0" }, "funding": [ { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", + "url": "https://github.com/BenMorel", "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" } ], - "time": "2025-05-12T21:07:07+00:00" + "time": "2025-08-29T12:40:03+00:00" }, { - "name": "composer/xdebug-handler", - "version": "3.0.5", + "name": "colinodell/psr-testlogger", + "version": "v1.3.0", "source": { "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + "url": "https://github.com/colinodell/psr-testlogger.git", + "reference": "291f5b70ea0d3139787d18f442365a8e2784a462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "url": "https://api.github.com/repos/colinodell/psr-testlogger/zipball/291f5b70ea0d3139787d18f442365a8e2784a462", + "reference": "291f5b70ea0d3139787d18f442365a8e2784a462", "shasum": "" }, "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" + "php": "^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" }, "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + "phpstan/phpstan": "^1.9.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.30.0" }, "type": "library", "autoload": { "psr-4": { - "Composer\\XdebugHandler\\": "src" + "ColinODell\\PsrTestLogger\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -9684,35 +17365,44 @@ ], "authors": [ { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" } ], - "description": "Restarts a process without Xdebug.", + "description": "PSR-3 compliant test logger based on psr/log v1's, but compatible with v2 and v3 too!", + "homepage": "https://github.com/colinodell/psr-testlogger", "keywords": [ - "Xdebug", - "performance" + "log", + "logger", + "logging", + "mock", + "phpunit", + "psr", + "test", + "unit" ], "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" + "issues": "https://github.com/colinodell/psr-testlogger/issues", + "rss": "https://github.com/colinodell/psr-testlogger/releases.atom", + "source": "https://github.com/colinodell/psr-testlogger" }, "funding": [ { - "url": "https://packagist.com", + "url": "https://www.colinodell.com/sponsor", "type": "custom" }, { - "url": "https://github.com/composer", - "type": "github" + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" }, { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" + "url": "https://github.com/colinodell", + "type": "github" } ], - "time": "2024-05-06T16:37:16+00:00" + "time": "2023-11-29T23:03:34+00:00" }, { "name": "dealerdirect/phpcodesniffer-composer-installer", @@ -10065,16 +17755,16 @@ }, { "name": "drupal/coder", - "version": "8.3.29", + "version": "8.3.30", "source": { "type": "git", "url": "https://github.com/pfrenssen/coder.git", - "reference": "92557b90d1e349d160be344b1000f8d7f13faca3" + "reference": "6b2edffac77582b1beb36ac155bfda5e7e055aff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pfrenssen/coder/zipball/92557b90d1e349d160be344b1000f8d7f13faca3", - "reference": "92557b90d1e349d160be344b1000f8d7f13faca3", + "url": "https://api.github.com/repos/pfrenssen/coder/zipball/6b2edffac77582b1beb36ac155bfda5e7e055aff", + "reference": "6b2edffac77582b1beb36ac155bfda5e7e055aff", "shasum": "" }, "require": { @@ -10083,7 +17773,7 @@ "php": ">=7.2", "sirbrillig/phpcs-variable-analysis": "^2.11.7", "slevomat/coding-standard": "^8.11", - "squizlabs/php_codesniffer": "^3.12.2", + "squizlabs/php_codesniffer": "^3.13", "symfony/yaml": ">=3.4.0" }, "require-dev": { @@ -10112,11 +17802,11 @@ "issues": "https://www.drupal.org/project/issues/coder", "source": "https://www.drupal.org/project/coder" }, - "time": "2025-05-03T11:56:22+00:00" + "time": "2025-05-25T09:52:20+00:00" }, { "name": "drupal/core-dev", - "version": "11.1.7", + "version": "11.1.8", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", @@ -10165,7 +17855,7 @@ ], "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/11.1.7" + "source": "https://github.com/drupal/core-dev/tree/11.1.8" }, "time": "2024-12-09T12:29:59+00:00" }, @@ -10864,23 +18554,23 @@ }, { "name": "google/protobuf", - "version": "v4.31.0", + "version": "v4.32.1", "source": { "type": "git", "url": "https://github.com/protocolbuffers/protobuf-php.git", - "reference": "d59e31ce4bf0e4b48728e90c4d880839edb5be07" + "reference": "c4ed1c1f9bbc1e91766e2cd6c0af749324fe87cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/d59e31ce4bf0e4b48728e90c4d880839edb5be07", - "reference": "d59e31ce4bf0e4b48728e90c4d880839edb5be07", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/c4ed1c1f9bbc1e91766e2cd6c0af749324fe87cb", + "reference": "c4ed1c1f9bbc1e91766e2cd6c0af749324fe87cb", "shasum": "" }, "require": { - "php": ">=7.0.0" + "php": ">=8.1.0" }, "require-dev": { - "phpunit/phpunit": ">=5.0.0" + "phpunit/phpunit": ">=5.0.0 <8.5.27" }, "suggest": { "ext-bcmath": "Need to support JSON deserialization" @@ -10902,74 +18592,9 @@ "proto" ], "support": { - "source": "https://github.com/protocolbuffers/protobuf-php/tree/v4.31.0" - }, - "time": "2025-05-14T16:17:23+00:00" - }, - { - "name": "justinrainbow/json-schema", - "version": "5.3.0", - "source": { - "type": "git", - "url": "https://github.com/jsonrainbow/json-schema.git", - "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", - "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "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" - }, - "bin": [ - "bin/validate-json" - ], - "type": "library", - "autoload": { - "psr-4": { - "JsonSchema\\": "src/JsonSchema/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "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": "Robert Schönthal", - "email": "seroscho@googlemail.com" - } - ], - "description": "A library to validate a json schema.", - "homepage": "https://github.com/justinrainbow/json-schema", - "keywords": [ - "json", - "schema" - ], - "support": { - "issues": "https://github.com/jsonrainbow/json-schema/issues", - "source": "https://github.com/jsonrainbow/json-schema/tree/5.3.0" + "source": "https://github.com/protocolbuffers/protobuf-php/tree/v4.32.1" }, - "time": "2024-07-06T21:00:26+00:00" + "time": "2025-09-14T05:14:52+00:00" }, { "name": "localheinz/diff", @@ -11100,16 +18725,16 @@ }, { "name": "lullabot/php-webdriver", - "version": "v2.0.6", + "version": "v2.0.7", "source": { "type": "git", "url": "https://github.com/Lullabot/php-webdriver.git", - "reference": "8c28db7151b8a73bd98861fe19972ac3f40184d2" + "reference": "dcaa93aa41624adfeae1ba557e2eb8f4df30631e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Lullabot/php-webdriver/zipball/8c28db7151b8a73bd98861fe19972ac3f40184d2", - "reference": "8c28db7151b8a73bd98861fe19972ac3f40184d2", + "url": "https://api.github.com/repos/Lullabot/php-webdriver/zipball/dcaa93aa41624adfeae1ba557e2eb8f4df30631e", + "reference": "dcaa93aa41624adfeae1ba557e2eb8f4df30631e", "shasum": "" }, "require": { @@ -11142,22 +18767,22 @@ ], "support": { "issues": "https://github.com/Lullabot/php-webdriver/issues", - "source": "https://github.com/Lullabot/php-webdriver/tree/v2.0.6" + "source": "https://github.com/Lullabot/php-webdriver/tree/v2.0.7" }, - "time": "2024-08-05T13:00:46+00:00" + "time": "2025-08-13T15:27:58+00:00" }, { "name": "mglaman/phpstan-drupal", - "version": "1.3.7", + "version": "1.3.9", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "91cb3860d816316dd98503ef258bc386f5fc22b7" + "reference": "973a4e89e19ea7dbd60af0aa939b18a873cf7f2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/91cb3860d816316dd98503ef258bc386f5fc22b7", - "reference": "91cb3860d816316dd98503ef258bc386f5fc22b7", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/973a4e89e19ea7dbd60af0aa939b18a873cf7f2f", + "reference": "973a4e89e19ea7dbd60af0aa939b18a873cf7f2f", "shasum": "" }, "require": { @@ -11232,7 +18857,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.3.7" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.3.9" }, "funding": [ { @@ -11248,7 +18873,7 @@ "type": "tidelift" } ], - "time": "2025-04-15T16:10:17+00:00" + "time": "2025-05-22T16:48:16+00:00" }, { "name": "micheh/phpcs-gitlab", @@ -11356,16 +18981,16 @@ }, { "name": "myclabs/deep-copy", - "version": "1.13.1", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c", - "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -11404,7 +19029,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -11412,7 +19037,7 @@ "type": "tidelift" } ], - "time": "2025-04-29T12:36:36+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { "name": "nyholm/psr7-server", @@ -11454,324 +19079,54 @@ "email": "tobias.nyholm@gmail.com" }, { - "name": "Martijn van der Ven", - "email": "martijn@vanderven.se" - } - ], - "description": "Helper classes to handle PSR-7 server requests", - "homepage": "http://tnyholm.se", - "keywords": [ - "psr-17", - "psr-7" - ], - "support": { - "issues": "https://github.com/Nyholm/psr7-server/issues", - "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0" - }, - "funding": [ - { - "url": "https://github.com/Zegnat", - "type": "github" - }, - { - "url": "https://github.com/nyholm", - "type": "github" - } - ], - "time": "2023-11-08T09:30:43+00:00" - }, - { - "name": "open-telemetry/api", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/opentelemetry-php/api.git", - "reference": "4e3bb38e069876fb73c2ce85c89583bf2b28cd86" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/4e3bb38e069876fb73c2ce85c89583bf2b28cd86", - "reference": "4e3bb38e069876fb73c2ce85c89583bf2b28cd86", - "shasum": "" - }, - "require": { - "open-telemetry/context": "^1.0", - "php": "^8.1", - "psr/log": "^1.1|^2.0|^3.0", - "symfony/polyfill-php82": "^1.26" - }, - "conflict": { - "open-telemetry/sdk": "<=1.0.8" - }, - "type": "library", - "extra": { - "spi": { - "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [ - "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager" - ] - }, - "branch-alias": { - "dev-main": "1.1.x-dev" - } - }, - "autoload": { - "files": [ - "Trace/functions.php" - ], - "psr-4": { - "OpenTelemetry\\API\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "opentelemetry-php contributors", - "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" - } - ], - "description": "API for OpenTelemetry PHP.", - "keywords": [ - "Metrics", - "api", - "apm", - "logging", - "opentelemetry", - "otel", - "tracing" - ], - "support": { - "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", - "docs": "https://opentelemetry.io/docs/php", - "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", - "source": "https://github.com/open-telemetry/opentelemetry-php" - }, - "time": "2025-05-07T12:32:21+00:00" - }, - { - "name": "open-telemetry/context", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/opentelemetry-php/context.git", - "reference": "1eb2b837ee9362db064a6b65d5ecce15a9f9f020" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/1eb2b837ee9362db064a6b65d5ecce15a9f9f020", - "reference": "1eb2b837ee9362db064a6b65d5ecce15a9f9f020", - "shasum": "" - }, - "require": { - "php": "^8.1", - "symfony/polyfill-php82": "^1.26" - }, - "suggest": { - "ext-ffi": "To allow context switching in Fibers" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.0.x-dev" - } - }, - "autoload": { - "files": [ - "fiber/initialize_fiber_handler.php" - ], - "psr-4": { - "OpenTelemetry\\Context\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "opentelemetry-php contributors", - "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" - } - ], - "description": "Context implementation for OpenTelemetry PHP.", - "keywords": [ - "Context", - "opentelemetry", - "otel" - ], - "support": { - "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", - "docs": "https://opentelemetry.io/docs/php", - "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", - "source": "https://github.com/open-telemetry/opentelemetry-php" - }, - "time": "2025-05-07T23:36:50+00:00" - }, - { - "name": "open-telemetry/exporter-otlp", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/opentelemetry-php/exporter-otlp.git", - "reference": "19adf03d2b0f91f9e9b1c7f93db6c755c737cf6c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/exporter-otlp/zipball/19adf03d2b0f91f9e9b1c7f93db6c755c737cf6c", - "reference": "19adf03d2b0f91f9e9b1c7f93db6c755c737cf6c", - "shasum": "" - }, - "require": { - "open-telemetry/api": "^1.0", - "open-telemetry/gen-otlp-protobuf": "^1.1", - "open-telemetry/sdk": "^1.0", - "php": "^8.1", - "php-http/discovery": "^1.14" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.0.x-dev" - } - }, - "autoload": { - "files": [ - "_register.php" - ], - "psr-4": { - "OpenTelemetry\\Contrib\\Otlp\\": "." - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "opentelemetry-php contributors", - "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" - } - ], - "description": "OTLP exporter for OpenTelemetry.", - "keywords": [ - "Metrics", - "exporter", - "gRPC", - "http", - "opentelemetry", - "otel", - "otlp", - "tracing" - ], - "support": { - "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", - "docs": "https://opentelemetry.io/docs/php", - "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", - "source": "https://github.com/open-telemetry/opentelemetry-php" - }, - "time": "2025-05-12T00:36:35+00:00" - }, - { - "name": "open-telemetry/gen-otlp-protobuf", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://github.com/opentelemetry-php/gen-otlp-protobuf.git", - "reference": "585bafddd4ae6565de154610b10a787a455c9ba0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/gen-otlp-protobuf/zipball/585bafddd4ae6565de154610b10a787a455c9ba0", - "reference": "585bafddd4ae6565de154610b10a787a455c9ba0", - "shasum": "" - }, - "require": { - "google/protobuf": "^3.22 || ^4.0", - "php": "^8.0" - }, - "suggest": { - "ext-protobuf": "For better performance, when dealing with the protobuf format" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Opentelemetry\\Proto\\": "Opentelemetry/Proto/", - "GPBMetadata\\Opentelemetry\\": "GPBMetadata/Opentelemetry/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "opentelemetry-php contributors", - "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" - } - ], - "description": "PHP protobuf files for communication with OpenTelemetry OTLP collectors/servers.", - "keywords": [ - "Metrics", - "apm", - "gRPC", - "logging", - "opentelemetry", - "otel", - "otlp", - "protobuf", - "tracing" + "name": "Martijn van der Ven", + "email": "martijn@vanderven.se" + } + ], + "description": "Helper classes to handle PSR-7 server requests", + "homepage": "http://tnyholm.se", + "keywords": [ + "psr-17", + "psr-7" ], "support": { - "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", - "docs": "https://opentelemetry.io/docs/php", - "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", - "source": "https://github.com/open-telemetry/opentelemetry-php" + "issues": "https://github.com/Nyholm/psr7-server/issues", + "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0" }, - "time": "2025-01-15T23:07:07+00:00" + "funding": [ + { + "url": "https://github.com/Zegnat", + "type": "github" + }, + { + "url": "https://github.com/nyholm", + "type": "github" + } + ], + "time": "2023-11-08T09:30:43+00:00" }, { - "name": "open-telemetry/sdk", - "version": "1.4.0", + "name": "open-telemetry/api", + "version": "1.6.0", "source": { "type": "git", - "url": "https://github.com/opentelemetry-php/sdk.git", - "reference": "939d3a28395c249a763676458140dad44b3a8011" + "url": "https://github.com/opentelemetry-php/api.git", + "reference": "ee17d937652eca06c2341b6fadc0f74c1c1a5af2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/sdk/zipball/939d3a28395c249a763676458140dad44b3a8011", - "reference": "939d3a28395c249a763676458140dad44b3a8011", + "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/ee17d937652eca06c2341b6fadc0f74c1c1a5af2", + "reference": "ee17d937652eca06c2341b6fadc0f74c1c1a5af2", "shasum": "" }, "require": { - "ext-json": "*", - "nyholm/psr7-server": "^1.1", - "open-telemetry/api": "~1.0 || ~1.1", - "open-telemetry/context": "^1.0", - "open-telemetry/sem-conv": "^1.0", + "open-telemetry/context": "^1.4", "php": "^8.1", - "php-http/discovery": "^1.14", - "psr/http-client": "^1.0", - "psr/http-client-implementation": "^1.0", - "psr/http-factory-implementation": "^1.0", - "psr/http-message": "^1.0.1|^2.0", "psr/log": "^1.1|^2.0|^3.0", - "ramsey/uuid": "^3.0 || ^4.0", - "symfony/polyfill-mbstring": "^1.23", - "symfony/polyfill-php82": "^1.26", - "tbachert/spi": "^1.0.1" + "symfony/polyfill-php82": "^1.26" }, - "suggest": { - "ext-gmp": "To support unlimited number of synchronous metric readers", - "ext-mbstring": "To increase performance of string operations", - "open-telemetry/sdk-configuration": "File-based OpenTelemetry SDK configuration" + "conflict": { + "open-telemetry/sdk": "<=1.0.8" }, "type": "library", "extra": { @@ -11781,21 +19136,15 @@ ] }, "branch-alias": { - "dev-main": "1.0.x-dev" + "dev-main": "1.4.x-dev" } }, "autoload": { "files": [ - "Common/Util/functions.php", - "Logs/Exporter/_register.php", - "Metrics/MetricExporter/_register.php", - "Propagation/_register.php", - "Trace/SpanExporter/_register.php", - "Common/Dev/Compatibility/_load.php", - "_autoload.php" + "Trace/functions.php" ], "psr-4": { - "OpenTelemetry\\SDK\\": "." + "OpenTelemetry\\API\\": "." } }, "notification-url": "https://packagist.org/downloads/", @@ -11808,14 +19157,14 @@ "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" } ], - "description": "SDK for OpenTelemetry PHP.", + "description": "API for OpenTelemetry PHP.", "keywords": [ "Metrics", + "api", "apm", "logging", "opentelemetry", "otel", - "sdk", "tracing" ], "support": { @@ -11824,34 +19173,41 @@ "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "time": "2025-05-07T12:32:21+00:00" + "time": "2025-09-19T00:05:49+00:00" }, { - "name": "open-telemetry/sem-conv", - "version": "1.32.0", + "name": "open-telemetry/context", + "version": "1.4.0", "source": { "type": "git", - "url": "https://github.com/opentelemetry-php/sem-conv.git", - "reference": "16585cc0dbc3032a318e274043454679430d2ebf" + "url": "https://github.com/opentelemetry-php/context.git", + "reference": "d4c4470b541ce72000d18c339cfee633e4c8e0cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/opentelemetry-php/sem-conv/zipball/16585cc0dbc3032a318e274043454679430d2ebf", - "reference": "16585cc0dbc3032a318e274043454679430d2ebf", + "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/d4c4470b541ce72000d18c339cfee633e4c8e0cf", + "reference": "d4c4470b541ce72000d18c339cfee633e4c8e0cf", "shasum": "" }, "require": { - "php": "^8.0" + "php": "^8.1", + "symfony/polyfill-php82": "^1.26" + }, + "suggest": { + "ext-ffi": "To allow context switching in Fibers" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.x-dev" + "dev-main": "1.0.x-dev" } }, "autoload": { + "files": [ + "fiber/initialize_fiber_handler.php" + ], "psr-4": { - "OpenTelemetry\\SemConv\\": "." + "OpenTelemetry\\Context\\": "." } }, "notification-url": "https://packagist.org/downloads/", @@ -11864,16 +19220,11 @@ "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" } ], - "description": "Semantic conventions for OpenTelemetry PHP.", + "description": "Context implementation for OpenTelemetry PHP.", "keywords": [ - "Metrics", - "apm", - "logging", + "Context", "opentelemetry", - "otel", - "semantic conventions", - "semconv", - "tracing" + "otel" ], "support": { "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", @@ -11881,324 +19232,330 @@ "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "time": "2025-05-05T03:58:53+00:00" + "time": "2025-09-19T00:05:49+00:00" }, { - "name": "palantirnet/drupal-rector", - "version": "0.20.3", + "name": "open-telemetry/exporter-otlp", + "version": "1.3.2", "source": { "type": "git", - "url": "https://github.com/palantirnet/drupal-rector.git", - "reference": "50c742a34f89e4202056e433bbb476ca1fdf3797" + "url": "https://github.com/opentelemetry-php/exporter-otlp.git", + "reference": "196f3a1dbce3b2c0f8110d164232c11ac00ddbb2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/palantirnet/drupal-rector/zipball/50c742a34f89e4202056e433bbb476ca1fdf3797", - "reference": "50c742a34f89e4202056e433bbb476ca1fdf3797", + "url": "https://api.github.com/repos/opentelemetry-php/exporter-otlp/zipball/196f3a1dbce3b2c0f8110d164232c11ac00ddbb2", + "reference": "196f3a1dbce3b2c0f8110d164232c11ac00ddbb2", "shasum": "" }, "require": { - "rector/rector": "^1.0", - "webflo/drupal-finder": "^1.2" - }, - "replace": { - "drupal8-rector/drupal8-rector": "*", - "palantirnet/drupal8-rector": "*" - }, - "require-dev": { - "cweagans/composer-patches": "^1.7.2", - "friendsofphp/php-cs-fixer": "^3.58", - "php": "^8.2", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpunit/phpunit": "^10.0", - "symfony/yaml": "^5 || ^6 || ^7", - "symplify/vendor-patches": "^11.0" + "open-telemetry/api": "^1.0", + "open-telemetry/gen-otlp-protobuf": "^1.1", + "open-telemetry/sdk": "^1.0", + "php": "^8.1", + "php-http/discovery": "^1.14" }, "type": "library", "extra": { - "enable-patching": true + "branch-alias": { + "dev-main": "1.0.x-dev" + } }, "autoload": { + "files": [ + "_register.php" + ], "psr-4": { - "DrupalRector\\": "src" + "OpenTelemetry\\Contrib\\Otlp\\": "." } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "Apache-2.0" ], "authors": [ { - "name": "Dezső Biczó", - "email": "mxr576@gmail.com" - }, - { - "name": "Ofer Shaal", - "email": "shaal@palantir.net" - }, - { - "name": "Daniel Montgomery", - "email": "montgomery@palantir.net" - }, - { - "name": "Matt Glaman", - "email": "nmd.matt@gmail.com" - }, - { - "name": "Björn Brala", - "email": "drupal@bjorn.dev" - }, - { - "name": "Ken Rickard", - "email": "agentrickard@gmail.com" + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" } ], - "description": "Instant fixes for your Drupal code by using Rector.", + "description": "OTLP exporter for OpenTelemetry.", "keywords": [ - "Code style", - "Drupal 8", - "ast", - "drupal 9", - "rector" + "Metrics", + "exporter", + "gRPC", + "http", + "opentelemetry", + "otel", + "otlp", + "tracing" ], "support": { - "source": "https://github.com/palantirnet/drupal-rector/tree/0.20.3" + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "time": "2024-06-10T19:18:13+00:00" + "time": "2025-06-16T00:24:51+00:00" }, { - "name": "pdepend/pdepend", - "version": "2.16.2", + "name": "open-telemetry/gen-otlp-protobuf", + "version": "1.8.0", "source": { "type": "git", - "url": "https://github.com/pdepend/pdepend.git", - "reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58" + "url": "https://github.com/opentelemetry-php/gen-otlp-protobuf.git", + "reference": "673af5b06545b513466081884b47ef15a536edde" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pdepend/pdepend/zipball/f942b208dc2a0868454d01b29f0c75bbcfc6ed58", - "reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58", + "url": "https://api.github.com/repos/opentelemetry-php/gen-otlp-protobuf/zipball/673af5b06545b513466081884b47ef15a536edde", + "reference": "673af5b06545b513466081884b47ef15a536edde", "shasum": "" }, "require": { - "php": ">=5.3.7", - "symfony/config": "^2.3.0|^3|^4|^5|^6.0|^7.0", - "symfony/dependency-injection": "^2.3.0|^3|^4|^5|^6.0|^7.0", - "symfony/filesystem": "^2.3.0|^3|^4|^5|^6.0|^7.0", - "symfony/polyfill-mbstring": "^1.19" + "google/protobuf": "^3.22 || ^4.0", + "php": "^8.0" }, - "require-dev": { - "easy-doc/easy-doc": "0.0.0|^1.2.3", - "gregwar/rst": "^1.0", - "squizlabs/php_codesniffer": "^2.0.0" + "suggest": { + "ext-protobuf": "For better performance, when dealing with the protobuf format" }, - "bin": [ - "src/bin/pdepend" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-main": "1.x-dev" } }, "autoload": { "psr-4": { - "PDepend\\": "src/main/php/PDepend" + "Opentelemetry\\Proto\\": "Opentelemetry/Proto/", + "GPBMetadata\\Opentelemetry\\": "GPBMetadata/Opentelemetry/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], - "description": "Official version of pdepend to be handled with Composer", + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "PHP protobuf files for communication with OpenTelemetry OTLP collectors/servers.", "keywords": [ - "PHP Depend", - "PHP_Depend", - "dev", - "pdepend" + "Metrics", + "apm", + "gRPC", + "logging", + "opentelemetry", + "otel", + "otlp", + "protobuf", + "tracing" ], "support": { - "issues": "https://github.com/pdepend/pdepend/issues", - "source": "https://github.com/pdepend/pdepend/tree/2.16.2" + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend", - "type": "tidelift" - } - ], - "time": "2023-12-17T18:09:59+00:00" + "time": "2025-09-17T23:10:12+00:00" }, { - "name": "phar-io/manifest", - "version": "2.0.4", + "name": "open-telemetry/sdk", + "version": "1.8.0", "source": { "type": "git", - "url": "https://github.com/phar-io/manifest.git", - "reference": "54750ef60c58e43759730615a392c31c80e23176" + "url": "https://github.com/opentelemetry-php/sdk.git", + "reference": "105c6e81e3d86150bd5704b00c7e4e165e957b89" }, "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", - "reference": "54750ef60c58e43759730615a392c31c80e23176", + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/sdk/zipball/105c6e81e3d86150bd5704b00c7e4e165e957b89", + "reference": "105c6e81e3d86150bd5704b00c7e4e165e957b89", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-phar": "*", - "ext-xmlwriter": "*", - "phar-io/version": "^3.0.1", - "php": "^7.2 || ^8.0" + "ext-json": "*", + "nyholm/psr7-server": "^1.1", + "open-telemetry/api": "^1.6", + "open-telemetry/context": "^1.4", + "open-telemetry/sem-conv": "^1.0", + "php": "^8.1", + "php-http/discovery": "^1.14", + "psr/http-client": "^1.0", + "psr/http-client-implementation": "^1.0", + "psr/http-factory-implementation": "^1.0", + "psr/http-message": "^1.0.1|^2.0", + "psr/log": "^1.1|^2.0|^3.0", + "ramsey/uuid": "^3.0 || ^4.0", + "symfony/polyfill-mbstring": "^1.23", + "symfony/polyfill-php82": "^1.26", + "tbachert/spi": "^1.0.5" + }, + "suggest": { + "ext-gmp": "To support unlimited number of synchronous metric readers", + "ext-mbstring": "To increase performance of string operations", + "open-telemetry/sdk-configuration": "File-based OpenTelemetry SDK configuration" }, "type": "library", "extra": { + "spi": { + "OpenTelemetry\\API\\Configuration\\ConfigEnv\\EnvComponentLoader": [ + "OpenTelemetry\\API\\Instrumentation\\Configuration\\General\\ConfigEnv\\EnvComponentLoaderHttpConfig", + "OpenTelemetry\\API\\Instrumentation\\Configuration\\General\\ConfigEnv\\EnvComponentLoaderPeerConfig" + ], + "OpenTelemetry\\SDK\\Common\\Configuration\\Resolver\\ResolverInterface": [ + "OpenTelemetry\\SDK\\Common\\Configuration\\Resolver\\SdkConfigurationResolver" + ], + "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [ + "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager" + ] + }, "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-main": "1.0.x-dev" } }, "autoload": { - "classmap": [ - "src/" - ] + "files": [ + "Common/Util/functions.php", + "Logs/Exporter/_register.php", + "Metrics/MetricExporter/_register.php", + "Propagation/_register.php", + "Trace/SpanExporter/_register.php", + "Common/Dev/Compatibility/_load.php", + "_autoload.php" + ], + "psr-4": { + "OpenTelemetry\\SDK\\": "." + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" } ], - "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "description": "SDK for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "apm", + "logging", + "opentelemetry", + "otel", + "sdk", + "tracing" + ], "support": { - "issues": "https://github.com/phar-io/manifest/issues", - "source": "https://github.com/phar-io/manifest/tree/2.0.4" + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "funding": [ - { - "url": "https://github.com/theseer", - "type": "github" - } - ], - "time": "2024-03-03T12:33:53+00:00" + "time": "2025-09-19T00:05:49+00:00" }, { - "name": "phar-io/version", - "version": "3.2.1", + "name": "open-telemetry/sem-conv", + "version": "1.37.0", "source": { "type": "git", - "url": "https://github.com/phar-io/version.git", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + "url": "https://github.com/opentelemetry-php/sem-conv.git", + "reference": "8da7ec497c881e39afa6657d72586e27efbd29a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", - "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "url": "https://api.github.com/repos/opentelemetry-php/sem-conv/zipball/8da7ec497c881e39afa6657d72586e27efbd29a1", + "reference": "8da7ec497c881e39afa6657d72586e27efbd29a1", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": "^8.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, "autoload": { - "classmap": [ - "src/" - ] + "psr-4": { + "OpenTelemetry\\SemConv\\": "." + } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "Apache-2.0" ], "authors": [ { - "name": "Arne Blankerts", - "email": "arne@blankerts.de", - "role": "Developer" - }, - { - "name": "Sebastian Heuer", - "email": "sebastian@phpeople.de", - "role": "Developer" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "Developer" + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" } ], - "description": "Library for handling version information and constraints", + "description": "Semantic conventions for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "apm", + "logging", + "opentelemetry", + "otel", + "semantic conventions", + "semconv", + "tracing" + ], "support": { - "issues": "https://github.com/phar-io/version/issues", - "source": "https://github.com/phar-io/version/tree/3.2.1" + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" }, - "time": "2022-02-21T01:04:05+00:00" + "time": "2025-09-03T12:08:10+00:00" }, { - "name": "php-http/discovery", - "version": "1.20.0", + "name": "palantirnet/drupal-rector", + "version": "0.20.3", "source": { "type": "git", - "url": "https://github.com/php-http/discovery.git", - "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d" + "url": "https://github.com/palantirnet/drupal-rector.git", + "reference": "50c742a34f89e4202056e433bbb476ca1fdf3797" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d", - "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d", + "url": "https://api.github.com/repos/palantirnet/drupal-rector/zipball/50c742a34f89e4202056e433bbb476ca1fdf3797", + "reference": "50c742a34f89e4202056e433bbb476ca1fdf3797", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0|^2.0", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "nyholm/psr7": "<1.0", - "zendframework/zend-diactoros": "*" + "rector/rector": "^1.0", + "webflo/drupal-finder": "^1.2" }, - "provide": { - "php-http/async-client-implementation": "*", - "php-http/client-implementation": "*", - "psr/http-client-implementation": "*", - "psr/http-factory-implementation": "*", - "psr/http-message-implementation": "*" + "replace": { + "drupal8-rector/drupal8-rector": "*", + "palantirnet/drupal8-rector": "*" }, "require-dev": { - "composer/composer": "^1.0.2|^2.0", - "graham-campbell/phpspec-skip-example-extension": "^5.0", - "php-http/httplug": "^1.0 || ^2.0", - "php-http/message-factory": "^1.0", - "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3", - "sebastian/comparator": "^3.0.5 || ^4.0.8", - "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1" + "cweagans/composer-patches": "^1.7.2", + "friendsofphp/php-cs-fixer": "^3.58", + "php": "^8.2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpunit/phpunit": "^10.0", + "symfony/yaml": "^5 || ^6 || ^7", + "symplify/vendor-patches": "^11.0" }, - "type": "composer-plugin", + "type": "library", "extra": { - "class": "Http\\Discovery\\Composer\\Plugin", - "plugin-optional": true + "enable-patching": true }, "autoload": { "psr-4": { - "Http\\Discovery\\": "src/" - }, - "exclude-from-classmap": [ - "src/Composer/Plugin.php" - ] + "DrupalRector\\": "src" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -12206,195 +19563,223 @@ ], "authors": [ { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "Dezső Biczó", + "email": "mxr576@gmail.com" + }, + { + "name": "Ofer Shaal", + "email": "shaal@palantir.net" + }, + { + "name": "Daniel Montgomery", + "email": "montgomery@palantir.net" + }, + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + }, + { + "name": "Björn Brala", + "email": "drupal@bjorn.dev" + }, + { + "name": "Ken Rickard", + "email": "agentrickard@gmail.com" } ], - "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations", - "homepage": "http://php-http.org", + "description": "Instant fixes for your Drupal code by using Rector.", "keywords": [ - "adapter", - "client", - "discovery", - "factory", - "http", - "message", - "psr17", - "psr7" + "Code style", + "Drupal 8", + "ast", + "drupal 9", + "rector" ], "support": { - "issues": "https://github.com/php-http/discovery/issues", - "source": "https://github.com/php-http/discovery/tree/1.20.0" + "source": "https://github.com/palantirnet/drupal-rector/tree/0.20.3" }, - "time": "2024-10-02T11:20:13+00:00" + "time": "2024-06-10T19:18:13+00:00" }, { - "name": "php-http/guzzle7-adapter", - "version": "1.1.0", + "name": "pdepend/pdepend", + "version": "2.16.2", "source": { "type": "git", - "url": "https://github.com/php-http/guzzle7-adapter.git", - "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb" + "url": "https://github.com/pdepend/pdepend.git", + "reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb", - "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/f942b208dc2a0868454d01b29f0c75bbcfc6ed58", + "reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^7.0", - "php": "^7.3 | ^8.0", - "php-http/httplug": "^2.0", - "psr/http-client": "^1.0" - }, - "provide": { - "php-http/async-client-implementation": "1.0", - "php-http/client-implementation": "1.0", - "psr/http-client-implementation": "1.0" + "php": ">=5.3.7", + "symfony/config": "^2.3.0|^3|^4|^5|^6.0|^7.0", + "symfony/dependency-injection": "^2.3.0|^3|^4|^5|^6.0|^7.0", + "symfony/filesystem": "^2.3.0|^3|^4|^5|^6.0|^7.0", + "symfony/polyfill-mbstring": "^1.19" }, "require-dev": { - "php-http/client-integration-tests": "^3.0", - "php-http/message-factory": "^1.1", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^8.0|^9.3" + "easy-doc/easy-doc": "0.0.0|^1.2.3", + "gregwar/rst": "^1.0", + "squizlabs/php_codesniffer": "^2.0.0" }, + "bin": [ + "src/bin/pdepend" + ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { "psr-4": { - "Http\\Adapter\\Guzzle7\\": "src/" + "PDepend\\": "src/main/php/PDepend" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com" - } + "BSD-3-Clause" ], - "description": "Guzzle 7 HTTP Adapter", - "homepage": "http://httplug.io", + "description": "Official version of pdepend to be handled with Composer", "keywords": [ - "Guzzle", - "http" + "PHP Depend", + "PHP_Depend", + "dev", + "pdepend" ], "support": { - "issues": "https://github.com/php-http/guzzle7-adapter/issues", - "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0" + "issues": "https://github.com/pdepend/pdepend/issues", + "source": "https://github.com/pdepend/pdepend/tree/2.16.2" }, - "time": "2024-11-26T11:14:36+00:00" + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend", + "type": "tidelift" + } + ], + "time": "2023-12-17T18:09:59+00:00" }, { - "name": "php-http/httplug", - "version": "2.4.1", + "name": "phar-io/manifest", + "version": "2.0.4", "source": { "type": "git", - "url": "https://github.com/php-http/httplug.git", - "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4" + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4", - "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "php-http/promise": "^1.1", - "psr/http-client": "^1.0", - "psr/http-message": "^1.0 || ^2.0" - }, - "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0", - "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0" + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" }, "type": "library", - "autoload": { - "psr-4": { - "Http\\Client\\": "src/" + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Eric GELOEN", - "email": "geloen.eric@gmail.com" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" }, { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "HTTPlug, the HTTP client abstraction for PHP", - "homepage": "http://httplug.io", - "keywords": [ - "client", - "http" - ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "support": { - "issues": "https://github.com/php-http/httplug/issues", - "source": "https://github.com/php-http/httplug/tree/2.4.1" + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" }, - "time": "2024-09-23T11:39:58+00:00" + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" }, { - "name": "php-http/promise", - "version": "1.3.1", + "name": "phar-io/version", + "version": "3.2.1", "source": { "type": "git", - "url": "https://github.com/php-http/promise.git", - "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83" + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83", - "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3", - "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4" + "php": "^7.2 || ^8.0" }, "type": "library", "autoload": { - "psr-4": { - "Http\\Promise\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Joel Wurtz", - "email": "joel.wurtz@gmail.com" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" }, { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" } ], - "description": "Promise used for asynchronous HTTP requests", - "homepage": "http://httplug.io", - "keywords": [ - "promise" - ], + "description": "Library for handling version information and constraints", "support": { - "issues": "https://github.com/php-http/promise/issues", - "source": "https://github.com/php-http/promise/tree/1.3.1" + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" }, - "time": "2024-03-15T13:55:21+00:00" + "time": "2022-02-21T01:04:05+00:00" }, { "name": "php-parallel-lint/php-parallel-lint", @@ -12574,16 +19959,16 @@ }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.6.2", + "version": "5.6.3", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62" + "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62", - "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9", + "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9", "shasum": "" }, "require": { @@ -12632,9 +20017,9 @@ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "support": { "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", - "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2" + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3" }, - "time": "2025-04-13T19:20:35+00:00" + "time": "2025-08-01T19:43:32+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -12849,22 +20234,22 @@ }, { "name": "phpspec/prophecy-phpunit", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy-phpunit.git", - "reference": "8819516c1b489ecee4c60db5f5432fac1ea8ac6f" + "reference": "d3c28041d9390c9bca325a08c5b2993ac855bded" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/8819516c1b489ecee4c60db5f5432fac1ea8ac6f", - "reference": "8819516c1b489ecee4c60db5f5432fac1ea8ac6f", + "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/d3c28041d9390c9bca325a08c5b2993ac855bded", + "reference": "d3c28041d9390c9bca325a08c5b2993ac855bded", "shasum": "" }, "require": { "php": "^7.3 || ^8", "phpspec/prophecy": "^1.18", - "phpunit/phpunit": "^9.1 || ^10.1 || ^11.0" + "phpunit/phpunit": "^9.1 || ^10.1 || ^11.0 || ^12.0" }, "require-dev": { "phpstan/phpstan": "^1.10" @@ -12898,9 +20283,9 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy-phpunit/issues", - "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.3.0" + "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.4.0" }, - "time": "2024-11-19T13:24:17+00:00" + "time": "2025-05-13T13:52:32+00:00" }, { "name": "phpstan/extension-installer", @@ -12952,16 +20337,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "2.1.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68" + "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68", - "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495", + "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495", "shasum": "" }, "require": { @@ -12993,22 +20378,22 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0" + "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0" }, - "time": "2025-02-19T13:28:12+00:00" + "time": "2025-08-30T15:50:23+00:00" }, { "name": "phpstan/phpstan", - "version": "1.12.26", + "version": "1.12.31", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan.git", - "reference": "84cbf8f018e01834b9b1ac3dacf3b9780e209e53" + "url": "https://github.com/phpstan/phpstan-phar-composer-source.git", + "reference": "git1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/84cbf8f018e01834b9b1ac3dacf3b9780e209e53", - "reference": "84cbf8f018e01834b9b1ac3dacf3b9780e209e53", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a7630bb5311a41d13a2364634c78c5f4da250d53", + "reference": "a7630bb5311a41d13a2364634c78c5f4da250d53", "shasum": "" }, "require": { @@ -13053,7 +20438,7 @@ "type": "github" } ], - "time": "2025-05-14T11:08:32+00:00" + "time": "2025-09-24T15:58:55+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", @@ -13477,16 +20862,16 @@ }, { "name": "phpunit/phpunit", - "version": "10.5.46", + "version": "10.5.58", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d" + "reference": "e24fb46da450d8e6a5788670513c1af1424f16ca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8080be387a5be380dda48c6f41cee4a13aadab3d", - "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e24fb46da450d8e6a5788670513c1af1424f16ca", + "reference": "e24fb46da450d8e6a5788670513c1af1424f16ca", "shasum": "" }, "require": { @@ -13496,7 +20881,7 @@ "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.13.1", + "myclabs/deep-copy": "^1.13.4", "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=8.1", @@ -13507,13 +20892,13 @@ "phpunit/php-timer": "^6.0.0", "sebastian/cli-parser": "^2.0.1", "sebastian/code-unit": "^2.0.0", - "sebastian/comparator": "^5.0.3", + "sebastian/comparator": "^5.0.4", "sebastian/diff": "^5.1.1", "sebastian/environment": "^6.1.0", - "sebastian/exporter": "^5.1.2", + "sebastian/exporter": "^5.1.4", "sebastian/global-state": "^6.0.2", "sebastian/object-enumerator": "^5.0.0", - "sebastian/recursion-context": "^5.0.0", + "sebastian/recursion-context": "^5.0.1", "sebastian/type": "^4.0.0", "sebastian/version": "^4.0.1" }, @@ -13558,7 +20943,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.46" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.58" }, "funding": [ { @@ -13582,7 +20967,7 @@ "type": "tidelift" } ], - "time": "2025-05-02T06:46:24+00:00" + "time": "2025-09-28T12:04:46+00:00" }, { "name": "pyrech/composer-changelogs", @@ -13718,21 +21103,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.6", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440", + "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", - "ext-json": "*", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" }, @@ -13740,26 +21124,23 @@ "rhumsaa/uuid": "self.version" }, "require-dev": { - "captainhook/captainhook": "^5.10", + "captainhook/captainhook": "^5.25", "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -13771,115 +21152,32 @@ "type": "library", "extra": { "captainhook": { - "force-install": true - } - }, - "autoload": { - "files": [ - "src/functions.php" - ], - "psr-4": { - "Ramsey\\Uuid\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", - "keywords": [ - "guid", - "identifier", - "uuid" - ], - "support": { - "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.6" - }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" - } - ], - "time": "2024-04-27T21:32:50+00:00" - }, - { - "name": "react/promise", - "version": "v3.2.0", - "source": { - "type": "git", - "url": "https://github.com/reactphp/promise.git", - "reference": "8a164643313c71354582dc850b42b33fa12a4b63" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", - "reference": "8a164643313c71354582dc850b42b33fa12a4b63", - "shasum": "" - }, - "require": { - "php": ">=7.1.0" - }, - "require-dev": { - "phpstan/phpstan": "1.10.39 || 1.4.10", - "phpunit/phpunit": "^9.6 || ^7.5" + "force-install": true + } }, - "type": "library", "autoload": { "files": [ - "src/functions_include.php" + "src/functions.php" ], "psr-4": { - "React\\Promise\\": "src/" + "Ramsey\\Uuid\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "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": "Chris Boden", - "email": "cboden@gmail.com", - "homepage": "https://cboden.dev/" - } - ], - "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).", "keywords": [ - "promise", - "promises" + "guid", + "identifier", + "uuid" ], "support": { - "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v3.2.0" + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid/tree/4.9.1" }, - "funding": [ - { - "url": "https://opencollective.com/reactphp", - "type": "open_collective" - } - ], - "time": "2024-05-24T10:39:05+00:00" + "time": "2025-09-04T20:59:21+00:00" }, { "name": "rector/rector", @@ -14110,16 +21408,16 @@ }, { "name": "sebastian/comparator", - "version": "5.0.3", + "version": "5.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e8e53097718d2b53cfb2aa859b06a41abf58c62e", + "reference": "e8e53097718d2b53cfb2aa859b06a41abf58c62e", "shasum": "" }, "require": { @@ -14175,15 +21473,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "security": "https://github.com/sebastianbergmann/comparator/security/policy", - "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.4" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator", + "type": "tidelift" } ], - "time": "2024-10-18T14:56:07+00:00" + "time": "2025-09-07T05:25:07+00:00" }, { "name": "sebastian/complexity", @@ -14309,16 +21619,16 @@ }, { "name": "sebastian/exporter", - "version": "5.1.2", + "version": "5.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + "reference": "0735b90f4da94969541dac1da743446e276defa6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", - "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0735b90f4da94969541dac1da743446e276defa6", + "reference": "0735b90f4da94969541dac1da743446e276defa6", "shasum": "" }, "require": { @@ -14327,7 +21637,7 @@ "sebastian/recursion-context": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.5" }, "type": "library", "extra": { @@ -14375,15 +21685,27 @@ "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "security": "https://github.com/sebastianbergmann/exporter/security/policy", - "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2" + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.4" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" + }, + { + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, + { + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" + }, + { + "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter", + "type": "tidelift" } ], - "time": "2024-03-02T07:17:12+00:00" + "time": "2025-09-24T06:09:11+00:00" }, { "name": "sebastian/global-state", @@ -14619,23 +21941,23 @@ }, { "name": "sebastian/recursion-context", - "version": "5.0.0", + "version": "5.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + "reference": "47e34210757a2f37a97dcd207d032e1b01e64c7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/47e34210757a2f37a97dcd207d032e1b01e64c7a", + "reference": "47e34210757a2f37a97dcd207d032e1b01e64c7a", "shasum": "" }, "require": { "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.5" }, "type": "library", "extra": { @@ -14670,297 +21992,137 @@ "homepage": "https://github.com/sebastianbergmann/recursion-context", "support": { "issues": "https://github.com/sebastianbergmann/recursion-context/issues", - "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-02-03T07:05:40+00:00" - }, - { - "name": "sebastian/type", - "version": "4.0.0", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/type.git", - "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", - "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "require-dev": { - "phpunit/phpunit": "^10.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "4.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "Collection of value objects that represent the types of the PHP type system", - "homepage": "https://github.com/sebastianbergmann/type", - "support": { - "issues": "https://github.com/sebastianbergmann/type/issues", - "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-02-03T07:10:45+00:00" - }, - { - "name": "sebastian/version", - "version": "4.0.1", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/version.git", - "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", - "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "4.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de", - "role": "lead" - } - ], - "description": "Library that helps with managing the version number of Git-hosted PHP projects", - "homepage": "https://github.com/sebastianbergmann/version", - "support": { - "issues": "https://github.com/sebastianbergmann/version/issues", - "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" + "security": "https://github.com/sebastianbergmann/recursion-context/security/policy", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.1" }, "funding": [ { "url": "https://github.com/sebastianbergmann", "type": "github" - } - ], - "time": "2023-02-07T11:34:05+00:00" - }, - { - "name": "seld/jsonlint", - "version": "1.11.0", - "source": { - "type": "git", - "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2", - "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2", - "shasum": "" - }, - "require": { - "php": "^5.3 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^1.11", - "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" - }, - "bin": [ - "bin/jsonlint" - ], - "type": "library", - "autoload": { - "psr-4": { - "Seld\\JsonLint\\": "src/Seld/JsonLint/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ + }, { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "https://seld.be" - } - ], - "description": "JSON Linter", - "keywords": [ - "json", - "linter", - "parser", - "validator" - ], - "support": { - "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.11.0" - }, - "funding": [ + "url": "https://liberapay.com/sebastianbergmann", + "type": "liberapay" + }, { - "url": "https://github.com/Seldaek", - "type": "github" + "url": "https://thanks.dev/u/gh/sebastianbergmann", + "type": "thanks_dev" }, { - "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context", "type": "tidelift" } ], - "time": "2024-07-11T14:55:45+00:00" + "time": "2025-08-10T07:50:56+00:00" }, { - "name": "seld/phar-utils", - "version": "1.2.1", + "name": "sebastian/type", + "version": "4.0.0", "source": { "type": "git", - "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf" }, "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf", + "reference": "462699a16464c3944eefc02ebdd77882bd3925bf", "shasum": "" }, "require": { - "php": ">=5.3" + "php": ">=8.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "4.0-dev" } }, "autoload": { - "psr-4": { - "Seld\\PharUtils\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "PHAR file format utilities, for when PHP phars you up", - "keywords": [ - "phar" - ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", "support": { - "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/4.0.0" }, - "time": "2022-08-31T10:31:18+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T07:10:45+00:00" }, { - "name": "seld/signal-handler", - "version": "2.0.2", + "name": "sebastian/version", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/Seldaek/signal-handler.git", - "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98" + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", - "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17", + "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17", "shasum": "" }, "require": { - "php": ">=7.2.0" - }, - "require-dev": { - "phpstan/phpstan": "^1", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1", - "phpstan/phpstan-strict-rules": "^1.3", - "phpunit/phpunit": "^7.5.20 || ^8.5.23", - "psr/log": "^1 || ^2 || ^3" + "php": ">=8.1" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-main": "4.0-dev" } }, "autoload": { - "psr-4": { - "Seld\\Signal\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], "authors": [ { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" } ], - "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development", - "keywords": [ - "posix", - "sigint", - "signal", - "sigterm", - "unix" - ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", "support": { - "issues": "https://github.com/Seldaek/signal-handler/issues", - "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2" + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/4.0.1" }, - "time": "2023-09-03T09:24:00+00:00" + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-07T11:34:05+00:00" }, { "name": "sirbrillig/phpcs-variable-analysis", @@ -15021,32 +22183,32 @@ }, { "name": "slevomat/coding-standard", - "version": "8.18.0", + "version": "8.22.1", "source": { "type": "git", "url": "https://github.com/slevomat/coding-standard.git", - "reference": "f3b23cb9b26301b8c3c7bb03035a1bee23974593" + "reference": "1dd80bf3b93692bedb21a6623c496887fad05fec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/f3b23cb9b26301b8c3c7bb03035a1bee23974593", - "reference": "f3b23cb9b26301b8c3c7bb03035a1bee23974593", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/1dd80bf3b93692bedb21a6623c496887fad05fec", + "reference": "1dd80bf3b93692bedb21a6623c496887fad05fec", "shasum": "" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.1.2", "php": "^7.4 || ^8.0", - "phpstan/phpdoc-parser": "^2.1.0", - "squizlabs/php_codesniffer": "^3.12.2" + "phpstan/phpdoc-parser": "^2.3.0", + "squizlabs/php_codesniffer": "^3.13.4" }, "require-dev": { - "phing/phing": "3.0.1", + "phing/phing": "3.0.1|3.1.0", "php-parallel-lint/php-parallel-lint": "1.4.0", - "phpstan/phpstan": "2.1.13", - "phpstan/phpstan-deprecation-rules": "2.0.2", - "phpstan/phpstan-phpunit": "2.0.6", - "phpstan/phpstan-strict-rules": "2.0.4", - "phpunit/phpunit": "9.6.8|10.5.45|11.4.4|11.5.17|12.1.3" + "phpstan/phpstan": "2.1.24", + "phpstan/phpstan-deprecation-rules": "2.0.3", + "phpstan/phpstan-phpunit": "2.0.7", + "phpstan/phpstan-strict-rules": "2.0.6", + "phpunit/phpunit": "9.6.8|10.5.48|11.4.4|11.5.36|12.3.10" }, "type": "phpcodesniffer-standard", "extra": { @@ -15070,7 +22232,7 @@ ], "support": { "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/8.18.0" + "source": "https://github.com/slevomat/coding-standard/tree/8.22.1" }, "funding": [ { @@ -15082,20 +22244,20 @@ "type": "tidelift" } ], - "time": "2025-05-01T09:40:50+00:00" + "time": "2025-09-13T08:53:30+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.13.0", + "version": "3.13.4", "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "65ff2489553b83b4597e89c3b8b721487011d186" + "reference": "ad545ea9c1b7d270ce0fc9cbfb884161cd706119" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/65ff2489553b83b4597e89c3b8b721487011d186", - "reference": "65ff2489553b83b4597e89c3b8b721487011d186", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ad545ea9c1b7d270ce0fc9cbfb884161cd706119", + "reference": "ad545ea9c1b7d270ce0fc9cbfb884161cd706119", "shasum": "" }, "require": { @@ -15166,20 +22328,20 @@ "type": "thanks_dev" } ], - "time": "2025-05-11T03:36:00+00:00" + "time": "2025-09-05T05:47:09+00:00" }, { "name": "symfony/browser-kit", - "version": "v7.2.4", + "version": "v7.3.2", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "8ce0ee23857d87d5be493abba2d52d1f9e49da61" + "reference": "f0b889b73a845cddef1d25fe207b37fd04cb5419" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/8ce0ee23857d87d5be493abba2d52d1f9e49da61", - "reference": "8ce0ee23857d87d5be493abba2d52d1f9e49da61", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f0b889b73a845cddef1d25fe207b37fd04cb5419", + "reference": "f0b889b73a845cddef1d25fe207b37fd04cb5419", "shasum": "" }, "require": { @@ -15218,7 +22380,7 @@ "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/browser-kit/tree/v7.2.4" + "source": "https://github.com/symfony/browser-kit/tree/v7.3.2" }, "funding": [ { @@ -15229,12 +22391,16 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-14T14:27:24+00:00" + "time": "2025-07-10T08:47:49+00:00" }, { "name": "symfony/config", @@ -15311,83 +22477,18 @@ ], "time": "2025-04-03T21:14:15+00:00" }, - { - "name": "symfony/css-selector", - "version": "v7.2.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2", - "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2", - "shasum": "" - }, - "require": { - "php": ">=8.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Converts CSS selectors to XPath expressions", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.2.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-25T14:21:43+00:00" - }, { "name": "symfony/dom-crawler", - "version": "v7.2.4", + "version": "v7.3.3", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7" + "reference": "efa076ea0eeff504383ff0dcf827ea5ce15690ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7", - "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/efa076ea0eeff504383ff0dcf827ea5ce15690ba", + "reference": "efa076ea0eeff504383ff0dcf827ea5ce15690ba", "shasum": "" }, "require": { @@ -15425,7 +22526,7 @@ "description": "Eases DOM navigation for HTML and XML documents", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v7.2.4" + "source": "https://github.com/symfony/dom-crawler/tree/v7.3.3" }, "funding": [ { @@ -15436,25 +22537,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-17T15:53:07+00:00" + "time": "2025-08-06T20:13:54+00:00" }, { "name": "symfony/http-client", - "version": "v6.4.19", + "version": "v6.4.26", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "3294a433fc9d12ae58128174896b5b1822c28dad" + "reference": "6740cdc1a3bffa127966b6056e883b3fe3709849" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/3294a433fc9d12ae58128174896b5b1822c28dad", - "reference": "3294a433fc9d12ae58128174896b5b1822c28dad", + "url": "https://api.github.com/repos/symfony/http-client/zipball/6740cdc1a3bffa127966b6056e883b3fe3709849", + "reference": "6740cdc1a3bffa127966b6056e883b3fe3709849", "shasum": "" }, "require": { @@ -15462,6 +22567,7 @@ "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-client-contracts": "~3.4.4|^3.5.2", + "symfony/polyfill-php83": "^1.29", "symfony/service-contracts": "^2.5|^3" }, "conflict": { @@ -15518,7 +22624,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.4.19" + "source": "https://github.com/symfony/http-client/tree/v6.4.26" }, "funding": [ { @@ -15529,25 +22635,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-02-13T09:55:13+00:00" + "time": "2025-09-11T09:57:09+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v3.5.2", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645" + "reference": "75d7043853a42837e68111812f4d964b01e5101c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645", - "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c", + "reference": "75d7043853a42837e68111812f4d964b01e5101c", "shasum": "" }, "require": { @@ -15560,7 +22670,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -15596,7 +22706,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2" + "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0" }, "funding": [ { @@ -15612,20 +22722,20 @@ "type": "tidelift" } ], - "time": "2024-12-07T08:49:48+00:00" + "time": "2025-04-29T11:18:49+00:00" }, { "name": "symfony/lock", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "69599a1d602a6c66fc69cdf733839480d01a06be" + "reference": "e025f32cfd1fa8e3a4485a8d810544474aac26da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/69599a1d602a6c66fc69cdf733839480d01a06be", - "reference": "69599a1d602a6c66fc69cdf733839480d01a06be", + "url": "https://api.github.com/repos/symfony/lock/zipball/e025f32cfd1fa8e3a4485a8d810544474aac26da", + "reference": "e025f32cfd1fa8e3a4485a8d810544474aac26da", "shasum": "" }, "require": { @@ -15674,7 +22784,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v7.2.6" + "source": "https://github.com/symfony/lock/tree/v7.3.4" }, "funding": [ { @@ -15686,79 +22796,7 @@ "type": "github" }, { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-04-17T22:02:25+00:00" - }, - { - "name": "symfony/polyfill-php73", - "version": "v1.32.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb", - "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php73\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", + "url": "https://github.com/nicolas-grekas", "type": "github" }, { @@ -15766,11 +22804,11 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2025-09-11T10:12:26+00:00" }, { "name": "symfony/polyfill-php82", - "version": "v1.32.0", + "version": "v1.33.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php82.git", @@ -15826,7 +22864,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php82/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php82/tree/v1.33.0" }, "funding": [ { @@ -15837,6 +22875,10 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" @@ -15846,16 +22888,16 @@ }, { "name": "symfony/translation", - "version": "v7.2.6", + "version": "v7.3.4", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6" + "reference": "ec25870502d0c7072d086e8ffba1420c85965174" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6", - "reference": "e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6", + "url": "https://api.github.com/repos/symfony/translation/zipball/ec25870502d0c7072d086e8ffba1420c85965174", + "reference": "ec25870502d0c7072d086e8ffba1420c85965174", "shasum": "" }, "require": { @@ -15865,6 +22907,7 @@ "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { + "nikic/php-parser": "<5.0", "symfony/config": "<6.4", "symfony/console": "<6.4", "symfony/dependency-injection": "<6.4", @@ -15878,7 +22921,7 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.18|^5.0", + "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", "symfony/config": "^6.4|^7.0", "symfony/console": "^6.4|^7.0", @@ -15921,7 +22964,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.2.6" + "source": "https://github.com/symfony/translation/tree/v7.3.4" }, "funding": [ { @@ -15932,25 +22975,29 @@ "url": "https://github.com/fabpot", "type": "github" }, + { + "url": "https://github.com/nicolas-grekas", + "type": "github" + }, { "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", "type": "tidelift" } ], - "time": "2025-04-07T19:09:28+00:00" + "time": "2025-09-07T11:39:36+00:00" }, { "name": "tbachert/spi", - "version": "v1.0.3", + "version": "v1.0.5", "source": { "type": "git", "url": "https://github.com/Nevay/spi.git", - "reference": "506a79c98e1a51522e76ee921ccb6c62d52faf3a" + "reference": "e7078767866d0a9e0f91d3f9d42a832df5e39002" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Nevay/spi/zipball/506a79c98e1a51522e76ee921ccb6c62d52faf3a", - "reference": "506a79c98e1a51522e76ee921ccb6c62d52faf3a", + "url": "https://api.github.com/repos/Nevay/spi/zipball/e7078767866d0a9e0f91d3f9d42a832df5e39002", + "reference": "e7078767866d0a9e0f91d3f9d42a832df5e39002", "shasum": "" }, "require": { @@ -15968,7 +23015,7 @@ "extra": { "class": "Nevay\\SPI\\Composer\\Plugin", "branch-alias": { - "dev-main": "0.2.x-dev" + "dev-main": "1.0.x-dev" }, "plugin-optional": true }, @@ -15987,9 +23034,9 @@ ], "support": { "issues": "https://github.com/Nevay/spi/issues", - "source": "https://github.com/Nevay/spi/tree/v1.0.3" + "source": "https://github.com/Nevay/spi/tree/v1.0.5" }, - "time": "2025-04-02T19:38:14+00:00" + "time": "2025-06-29T15:42:06+00:00" }, { "name": "theseer/tokenizer", diff --git a/docker-compose.yml b/docker-compose.yml index 9713050a54..29bbaea1ff 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -63,6 +63,9 @@ x-environment: &default-environment # MySQL configuration. MYSQL_COLLATION: ${MYSQL_COLLATION:-utf8mb4_general_ci} MYSQL_INNODB_BUFFER_POOL_SIZE: ${MYSQL_INNODB_BUFFER_POOL_SIZE:-512M} + # Drupal version and Drupal profile + DRUPAL_VERSION: ${DRUPAL_VERSION:-11} + DRUPAL_PROFILE: ${DRUPAL_PROFILE:-standard} # ------------------------------------------------------------------------------ # Services. diff --git a/phpmd.xml b/phpmd.xml index c9e2627378..974dfef89d 100644 --- a/phpmd.xml +++ b/phpmd.xml @@ -7,7 +7,7 @@ */vendor/* */node_modules/* - + */recipes/* */web/core/* */web/profiles/contrib/* */web/modules/contrib/* diff --git a/recipes/.gitignore b/recipes/.gitignore deleted file mode 100644 index 739a339446..0000000000 --- a/recipes/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/README.txt \ No newline at end of file diff --git a/recipes/civictheme_content_generated_static/composer.json b/recipes/civictheme_content_generated_static/composer.json new file mode 100644 index 0000000000..d765986a1d --- /dev/null +++ b/recipes/civictheme_content_generated_static/composer.json @@ -0,0 +1,7 @@ +{ + "name": "drupal/civictheme_content_generated_static", + "description": "Install civictheme generated static content for visual comparison", + "type": "recipe", + "license": "GPL-2.0-or-later", + "require": {} +} diff --git a/recipes/civictheme_content_generated_static/config/views.view.cs_generated_content_list.yml b/recipes/civictheme_content_generated_static/config/views.view.cs_generated_content_list.yml new file mode 100644 index 0000000000..3dd1b48d30 --- /dev/null +++ b/recipes/civictheme_content_generated_static/config/views.view.cs_generated_content_list.yml @@ -0,0 +1,637 @@ +langcode: en +status: true +dependencies: + config: + - core.entity_view_mode.node.civictheme_snippet + module: + - node + - user +id: cs_generated_content_list +label: 'Generated content list' +module: views +description: 'List of generated content pages.' +tag: CivicTheme +base_table: node_field_data +base_field: nid +display: + default: + id: default + display_title: Default + display_plugin: default + position: 0 + display_options: + title: 'Generated component pages' + fields: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: field + label: '' + exclude: false + alter: + alter_text: false + make_link: false + absolute: false + word_boundary: false + ellipsis: false + strip_tags: false + trim: false + html: false + element_type: '' + element_class: '' + element_label_type: '' + element_label_class: '' + element_label_colon: true + element_wrapper_type: '' + element_wrapper_class: '' + element_default_classes: true + empty: '' + hide_empty: false + empty_zero: false + hide_alter_empty: true + click_sort_column: value + type: string + settings: + link_to_entity: true + group_column: value + group_columns: { } + group_rows: true + delta_limit: 0 + delta_offset: 0 + delta_reversed: false + delta_first_last: false + multi_type: separator + separator: ', ' + field_api_classes: false + pager: + type: none + options: + offset: 0 + exposed_form: + type: basic + options: + submit_button: Apply + reset_button: false + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: true + sort_asc_label: Asc + sort_desc_label: Desc + access: + type: perm + options: + perm: 'access content' + cache: + type: tag + options: { } + empty: { } + sorts: + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: standard + order: ASC + expose: + label: '' + field_identifier: '' + exposed: false + arguments: { } + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + revision_log: + id: revision_log + table: node_revision + field: revision_log + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: revision_log + plugin_id: string + operator: starts + value: 'Generated content.' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + style: + type: grid + options: + uses_fields: false + columns: 1 + automatic_width: true + alignment: horizontal + row_class_custom: '' + row_class_default: true + col_class_custom: '' + col_class_default: true + row: + type: 'entity:node' + options: + relationship: none + view_mode: civictheme_snippet + query: + type: views_query + options: + query_comment: '' + disable_sql_rewrite: false + distinct: false + replica: false + query_tags: { } + relationships: { } + header: + area: + id: area + table: views + field: area + relationship: none + group_type: group + admin_label: '' + plugin_id: text + empty: false + content: + value: "This page offers links to demonstrate a range of generated content with varying field values, providing visual examples of component appearances.\r\n
\r\n
" + format: civictheme_rich_text + tokenize: false + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + plugin_id: text_custom + empty: false + content: "
\r\n \r\n
\r\n" + tokenize: false + footer: { } + display_extenders: { } + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: { } + components: + id: components + display_title: 'Generated pages for Components' + display_plugin: page + position: 1 + display_options: + title: 'Generated Components' + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + revision_log: + id: revision_log + table: node_revision + field: revision_log + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: revision_log + plugin_id: string + operator: starts + value: 'Generated content.' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: starts + value: 'Page. Component.' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + title: false + filters: false + filter_groups: false + display_extenders: + simple_sitemap_display_extender: + variants: { } + path: generated-content/components + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: { } + events: + id: events + display_title: 'Generated pages for Event' + display_plugin: page + position: 1 + display_options: + title: 'Generated Events' + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + revision_log: + id: revision_log + table: node_revision + field: revision_log + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: revision_log + plugin_id: string + operator: starts + value: 'Generated content.' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: starts + value: Event. + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + title: false + filters: false + filter_groups: false + display_description: '' + display_extenders: + simple_sitemap_display_extender: + variants: { } + path: generated-content/events + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: { } + pages: + id: pages + display_title: 'Generated pages for Page' + display_plugin: page + position: 1 + display_options: + title: 'Generated Pages' + filters: + status: + id: status + table: node_field_data + field: status + entity_type: node + entity_field: status + plugin_id: boolean + value: '1' + group: 1 + expose: + operator: '' + operator_limit_selection: false + operator_list: { } + revision_log: + id: revision_log + table: node_revision + field: revision_log + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: revision_log + plugin_id: string + operator: starts + value: 'Generated content.' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title: + id: title + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: starts + value: Page. + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + title_1: + id: title_1 + table: node_field_data + field: title + relationship: none + group_type: group + admin_label: '' + entity_type: node + entity_field: title + plugin_id: string + operator: not_starts + value: 'Page. Component.' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + operator_limit_selection: false + operator_list: { } + identifier: '' + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + placeholder: '' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + filter_groups: + operator: AND + groups: + 1: AND + defaults: + title: false + filters: false + filter_groups: false + display_description: '' + display_extenders: + simple_sitemap_display_extender: + variants: { } + path: generated-content/pages + cache_metadata: + max-age: -1 + contexts: + - 'languages:language_content' + - 'languages:language_interface' + - 'user.node_grants:view' + - user.permissions + tags: { } diff --git a/recipes/civictheme_content_generated_static/content/file/28b82ba2-601d-4e12-b08f-386962c45545.yml b/recipes/civictheme_content_generated_static/content/file/28b82ba2-601d-4e12-b08f-386962c45545.yml new file mode 100644 index 0000000000..c9c6940f6f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/28b82ba2-601d-4e12-b08f-386962c45545.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 28b82ba2-601d-4e12-b08f-386962c45545 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_6_haru.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_6_haru.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 186107 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/2a53199e-3cd3-419c-b044-16a509602752.yml b/recipes/civictheme_content_generated_static/content/file/2a53199e-3cd3-419c-b044-16a509602752.yml new file mode 100644 index 0000000000..a61ee95ff6 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/2a53199e-3cd3-419c-b044-16a509602752.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 2a53199e-3cd3-419c-b044-16a509602752 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_5_idim.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_5_idim.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 118679 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/34a62a8e-2096-4249-b6b3-0aa557b7de00.yml b/recipes/civictheme_content_generated_static/content/file/34a62a8e-2096-4249-b6b3-0aa557b7de00.yml new file mode 100644 index 0000000000..a6d519a5ad --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/34a62a8e-2096-4249-b6b3-0aa557b7de00.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 34a62a8e-2096-4249-b6b3-0aa557b7de00 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_9_anim.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_9_anim.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 30278 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/3d72e253-d3fd-4dae-a9d8-ce5005749650.yml b/recipes/civictheme_content_generated_static/content/file/3d72e253-d3fd-4dae-a9d8-ce5005749650.yml new file mode 100644 index 0000000000..fd626b9dc5 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/3d72e253-d3fd-4dae-a9d8-ce5005749650.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 3d72e253-d3fd-4dae-a9d8-ce5005749650 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_10_libe.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_10_libe.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 295717 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/3e8fcfa3-5b62-4d17-9505-27dc9be21047.yml b/recipes/civictheme_content_generated_static/content/file/3e8fcfa3-5b62-4d17-9505-27dc9be21047.yml new file mode 100644 index 0000000000..7b0c964964 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/3e8fcfa3-5b62-4d17-9505-27dc9be21047.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 3e8fcfa3-5b62-4d17-9505-27dc9be21047 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_10_faci.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_10_faci.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 43911 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/5322e72b-5f0f-44ba-ad05-ee64380e1f57.yml b/recipes/civictheme_content_generated_static/content/file/5322e72b-5f0f-44ba-ad05-ee64380e1f57.yml new file mode 100644 index 0000000000..58df52b98f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/5322e72b-5f0f-44ba-ad05-ee64380e1f57.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 5322e72b-5f0f-44ba-ad05-ee64380e1f57 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_6_blan.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_6_blan.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 43911 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/5548db1e-3094-4bc5-8401-9700b5b4aad3.yml b/recipes/civictheme_content_generated_static/content/file/5548db1e-3094-4bc5-8401-9700b5b4aad3.yml new file mode 100644 index 0000000000..33093c5d64 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/5548db1e-3094-4bc5-8401-9700b5b4aad3.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 5548db1e-3094-4bc5-8401-9700b5b4aad3 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_1_accu.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_1_accu.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 295717 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/62e4d359-347d-4f5f-af17-a153ad83a7a9.yml b/recipes/civictheme_content_generated_static/content/file/62e4d359-347d-4f5f-af17-a153ad83a7a9.yml new file mode 100644 index 0000000000..87f46a2a55 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/62e4d359-347d-4f5f-af17-a153ad83a7a9.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 62e4d359-347d-4f5f-af17-a153ad83a7a9 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_7_aspe.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_7_aspe.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 295717 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/8212ed57-5c2a-4e77-b905-fcf768dc49ae.yml b/recipes/civictheme_content_generated_static/content/file/8212ed57-5c2a-4e77-b905-fcf768dc49ae.yml new file mode 100644 index 0000000000..6c49eeceda --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/8212ed57-5c2a-4e77-b905-fcf768dc49ae.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 8212ed57-5c2a-4e77-b905-fcf768dc49ae + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_8_atqu.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_8_atqu.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 118679 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/9165e3f8-2cc5-4804-a53f-6382dd53ef17.yml b/recipes/civictheme_content_generated_static/content/file/9165e3f8-2cc5-4804-a53f-6382dd53ef17.yml new file mode 100644 index 0000000000..b0742aa14c --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/9165e3f8-2cc5-4804-a53f-6382dd53ef17.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 9165e3f8-2cc5-4804-a53f-6382dd53ef17 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_5_dolo.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_5_dolo.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 30278 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/93186753-3e96-47ef-b1f3-ff1cdc476ba9.yml b/recipes/civictheme_content_generated_static/content/file/93186753-3e96-47ef-b1f3-ff1cdc476ba9.yml new file mode 100644 index 0000000000..10c04067a1 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/93186753-3e96-47ef-b1f3-ff1cdc476ba9.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 93186753-3e96-47ef-b1f3-ff1cdc476ba9 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_3_esti.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_3_esti.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 186107 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/9382498c-2678-4e74-92a2-f64b57e11f36.yml b/recipes/civictheme_content_generated_static/content/file/9382498c-2678-4e74-92a2-f64b57e11f36.yml new file mode 100644 index 0000000000..e5ec5c1443 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/9382498c-2678-4e74-92a2-f64b57e11f36.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 9382498c-2678-4e74-92a2-f64b57e11f36 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_4_alia.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_4_alia.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 43911 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/94a78c4c-833d-4bd0-9fef-044175cfefb7.yml b/recipes/civictheme_content_generated_static/content/file/94a78c4c-833d-4bd0-9fef-044175cfefb7.yml new file mode 100644 index 0000000000..a5d3fa9c7a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/94a78c4c-833d-4bd0-9fef-044175cfefb7.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: 94a78c4c-833d-4bd0-9fef-044175cfefb7 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_9_cons.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_9_cons.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 186107 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_10_libe.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_10_libe.jpg new file mode 100644 index 0000000000..347e01fdaf Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_10_libe.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_1_accu.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_1_accu.jpg new file mode 100644 index 0000000000..347e01fdaf Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_1_accu.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_2_earu.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_2_earu.jpg new file mode 100644 index 0000000000..3cb4613d6d Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_2_earu.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_3_esti.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_3_esti.jpg new file mode 100644 index 0000000000..ec5f4b6dc8 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_3_esti.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_4_atcu.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_4_atcu.jpg new file mode 100644 index 0000000000..347e01fdaf Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_4_atcu.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_5_idim.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_5_idim.jpg new file mode 100644 index 0000000000..3cb4613d6d Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_5_idim.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_6_haru.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_6_haru.jpg new file mode 100644 index 0000000000..ec5f4b6dc8 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_6_haru.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_7_aspe.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_7_aspe.jpg new file mode 100644 index 0000000000..347e01fdaf Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_7_aspe.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_8_atqu.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_8_atqu.jpg new file mode 100644 index 0000000000..3cb4613d6d Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_8_atqu.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_9_cons.jpg b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_9_cons.jpg new file mode 100644 index 0000000000..ec5f4b6dc8 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_jpg_file_9_cons.jpg differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_10_faci.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_10_faci.pdf new file mode 100644 index 0000000000..3c4a6208c2 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_10_faci.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_1_duci.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_1_duci.pdf new file mode 100644 index 0000000000..4d5865e6d7 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_1_duci.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_2_aute.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_2_aute.pdf new file mode 100644 index 0000000000..3c4a6208c2 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_2_aute.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_3_etit.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_3_etit.pdf new file mode 100644 index 0000000000..4d5865e6d7 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_3_etit.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_4_alia.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_4_alia.pdf new file mode 100644 index 0000000000..3c4a6208c2 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_4_alia.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_5_dolo.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_5_dolo.pdf new file mode 100644 index 0000000000..4d5865e6d7 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_5_dolo.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_6_blan.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_6_blan.pdf new file mode 100644 index 0000000000..3c4a6208c2 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_6_blan.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_7_dele.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_7_dele.pdf new file mode 100644 index 0000000000..4d5865e6d7 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_7_dele.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_8_dele.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_8_dele.pdf new file mode 100644 index 0000000000..3c4a6208c2 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_8_dele.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_9_anim.pdf b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_9_anim.pdf new file mode 100644 index 0000000000..4d5865e6d7 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/Generated_static_pdf_file_9_anim.pdf differ diff --git a/recipes/civictheme_content_generated_static/content/file/a76f202a-2bd7-4af1-937c-1835b9257d81.yml b/recipes/civictheme_content_generated_static/content/file/a76f202a-2bd7-4af1-937c-1835b9257d81.yml new file mode 100644 index 0000000000..18f932d402 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/a76f202a-2bd7-4af1-937c-1835b9257d81.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: a76f202a-2bd7-4af1-937c-1835b9257d81 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_1_duci.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_1_duci.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 30278 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36.yml b/recipes/civictheme_content_generated_static/content/file/aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36.yml new file mode 100644 index 0000000000..91dac6d5d9 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_2_aute.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_2_aute.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 43911 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/c35f8e96-1cf2-4588-96d5-9a1979465e44.yml b/recipes/civictheme_content_generated_static/content/file/c35f8e96-1cf2-4588-96d5-9a1979465e44.yml new file mode 100644 index 0000000000..a00b335bfd --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/c35f8e96-1cf2-4588-96d5-9a1979465e44.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: c35f8e96-1cf2-4588-96d5-9a1979465e44 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_7_dele.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_7_dele.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 30278 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/c96dee56-2d41-4b6d-9fc2-914713f06c1a.yml b/recipes/civictheme_content_generated_static/content/file/c96dee56-2d41-4b6d-9fc2-914713f06c1a.yml new file mode 100644 index 0000000000..8652fa7b92 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/c96dee56-2d41-4b6d-9fc2-914713f06c1a.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: c96dee56-2d41-4b6d-9fc2-914713f06c1a + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_2_earu.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_2_earu.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 118679 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/cb0748f0-7bee-4c5f-a00d-01cda40001b3.yml b/recipes/civictheme_content_generated_static/content/file/cb0748f0-7bee-4c5f-a00d-01cda40001b3.yml new file mode 100644 index 0000000000..d9d5718333 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/cb0748f0-7bee-4c5f-a00d-01cda40001b3.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: cb0748f0-7bee-4c5f-a00d-01cda40001b3 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_3_etit.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_3_etit.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 30278 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/e2f86086-0269-4ad0-92c1-96670e613c18.yml b/recipes/civictheme_content_generated_static/content/file/e2f86086-0269-4ad0-92c1-96670e613c18.yml new file mode 100644 index 0000000000..39e735e07c --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/e2f86086-0269-4ad0-92c1-96670e613c18.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: e2f86086-0269-4ad0-92c1-96670e613c18 + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_jpg_file_4_atcu.jpg + uri: + - + value: 'public://generated_content/Generated_static_jpg_file_4_atcu.jpg' + filemime: + - + value: image/jpeg + filesize: + - + value: 295717 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/f1e88e78-5f38-4afb-861b-a9af59e4526e.yml b/recipes/civictheme_content_generated_static/content/file/f1e88e78-5f38-4afb-861b-a9af59e4526e.yml new file mode 100644 index 0000000000..718161da1a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/file/f1e88e78-5f38-4afb-861b-a9af59e4526e.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: file + uuid: f1e88e78-5f38-4afb-861b-a9af59e4526e + default_langcode: en +default: + uid: + - + target_id: 0 + filename: + - + value: Generated_static_pdf_file_8_dele.pdf + uri: + - + value: 'public://generated_content/Generated_static_pdf_file_8_dele.pdf' + filemime: + - + value: application/pdf + filesize: + - + value: 43911 + status: + - + value: true + created: + - + value: 1758892277 diff --git a/recipes/civictheme_content_generated_static/content/file/generic.png b/recipes/civictheme_content_generated_static/content/file/generic.png new file mode 100644 index 0000000000..753d733a56 Binary files /dev/null and b/recipes/civictheme_content_generated_static/content/file/generic.png differ diff --git a/recipes/civictheme_content_generated_static/content/media/09d61f69-746d-42d1-9d8f-78c256e9595e.yml b/recipes/civictheme_content_generated_static/content/media/09d61f69-746d-42d1-9d8f-78c256e9595e.yml new file mode 100644 index 0000000000..4b5b1dd176 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/09d61f69-746d-42d1-9d8f-78c256e9595e.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 09d61f69-746d-42d1-9d8f-78c256e9595e + bundle: civictheme_image + default_langcode: en + depends: + c96dee56-2d41-4b6d-9fc2-914713f06c1a: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 2 Mollitia non.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Impedit non.' + field_c_m_image: + - + entity: c96dee56-2d41-4b6d-9fc2-914713f06c1a + alt: 'Alt for Generated static Image media 2 Mollitia non.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/11323430-2ee9-444e-9cc3-70547ca77464.yml b/recipes/civictheme_content_generated_static/content/media/11323430-2ee9-444e-9cc3-70547ca77464.yml new file mode 100644 index 0000000000..bdc3a61405 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/11323430-2ee9-444e-9cc3-70547ca77464.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 11323430-2ee9-444e-9cc3-70547ca77464 + bundle: civictheme_image + default_langcode: en + depends: + e2f86086-0269-4ad0-92c1-96670e613c18: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 24 Facere id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Dolor omnis.' + field_c_m_image: + - + entity: e2f86086-0269-4ad0-92c1-96670e613c18 + alt: 'Alt for Generated static Image media 24 Facere id.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/11b09eaa-ae94-48db-84f7-c6431a1f5e78.yml b/recipes/civictheme_content_generated_static/content/media/11b09eaa-ae94-48db-84f7-c6431a1f5e78.yml new file mode 100644 index 0000000000..6277361618 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/11b09eaa-ae94-48db-84f7-c6431a1f5e78.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 11b09eaa-ae94-48db-84f7-c6431a1f5e78 + bundle: civictheme_document + default_langcode: en + depends: + 34a62a8e-2096-4249-b6b3-0aa557b7de00: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 19 Consequatur deserunt.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 34a62a8e-2096-4249-b6b3-0aa557b7de00 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/1590793c-8c13-4a67-8607-dd9aef6115e7.yml b/recipes/civictheme_content_generated_static/content/media/1590793c-8c13-4a67-8607-dd9aef6115e7.yml new file mode 100644 index 0000000000..a2ae0b4b87 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/1590793c-8c13-4a67-8607-dd9aef6115e7.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 1590793c-8c13-4a67-8607-dd9aef6115e7 + bundle: civictheme_image + default_langcode: en + depends: + 2a53199e-3cd3-419c-b044-16a509602752: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 45 Animi aut.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Facilis laborum.' + field_c_m_image: + - + entity: 2a53199e-3cd3-419c-b044-16a509602752 + alt: 'Alt for Generated static Image media 45 Animi aut.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/1dc694da-913b-4097-8f2b-822661c97338.yml b/recipes/civictheme_content_generated_static/content/media/1dc694da-913b-4097-8f2b-822661c97338.yml new file mode 100644 index 0000000000..d08e98cdd5 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/1dc694da-913b-4097-8f2b-822661c97338.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 1dc694da-913b-4097-8f2b-822661c97338 + bundle: civictheme_image + default_langcode: en + depends: + 3d72e253-d3fd-4dae-a9d8-ce5005749650: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 30 Distinctio harum.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Cumque delectus.' + field_c_m_image: + - + entity: 3d72e253-d3fd-4dae-a9d8-ce5005749650 + alt: 'Alt for Generated static Image media 30 Distinctio harum.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/1f232b36-2259-4825-b989-76ab776794c3.yml b/recipes/civictheme_content_generated_static/content/media/1f232b36-2259-4825-b989-76ab776794c3.yml new file mode 100644 index 0000000000..e05ab2e457 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/1f232b36-2259-4825-b989-76ab776794c3.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 1f232b36-2259-4825-b989-76ab776794c3 + bundle: civictheme_image + default_langcode: en + depends: + 94a78c4c-833d-4bd0-9fef-044175cfefb7: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 19 Delectus dolores.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Deleniti mollitia.' + field_c_m_image: + - + entity: 94a78c4c-833d-4bd0-9fef-044175cfefb7 + alt: 'Alt for Generated static Image media 19 Delectus dolores.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/238babdd-3c76-4b96-aa60-952cf44fe689.yml b/recipes/civictheme_content_generated_static/content/media/238babdd-3c76-4b96-aa60-952cf44fe689.yml new file mode 100644 index 0000000000..fcecd30e22 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/238babdd-3c76-4b96-aa60-952cf44fe689.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 238babdd-3c76-4b96-aa60-952cf44fe689 + bundle: civictheme_document + default_langcode: en + depends: + cb0748f0-7bee-4c5f-a00d-01cda40001b3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 3 Mollitia non.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: cb0748f0-7bee-4c5f-a00d-01cda40001b3 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/2446bb9b-e26d-44c3-94c0-7ef6edf4a605.yml b/recipes/civictheme_content_generated_static/content/media/2446bb9b-e26d-44c3-94c0-7ef6edf4a605.yml new file mode 100644 index 0000000000..dd626c9f39 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/2446bb9b-e26d-44c3-94c0-7ef6edf4a605.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 2446bb9b-e26d-44c3-94c0-7ef6edf4a605 + bundle: civictheme_document + default_langcode: en + depends: + 9165e3f8-2cc5-4804-a53f-6382dd53ef17: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 15 Id impedit.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 9165e3f8-2cc5-4804-a53f-6382dd53ef17 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b.yml b/recipes/civictheme_content_generated_static/content/media/2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b.yml new file mode 100644 index 0000000000..90d9d03847 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b + bundle: civictheme_image + default_langcode: en + depends: + c96dee56-2d41-4b6d-9fc2-914713f06c1a: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 42 Et itaque.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Alias aut.' + field_c_m_image: + - + entity: c96dee56-2d41-4b6d-9fc2-914713f06c1a + alt: 'Alt for Generated static Image media 42 Et itaque.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/2b33fc27-dd4a-427e-a3a2-4b3ace382ca4.yml b/recipes/civictheme_content_generated_static/content/media/2b33fc27-dd4a-427e-a3a2-4b3ace382ca4.yml new file mode 100644 index 0000000000..f89a53464a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/2b33fc27-dd4a-427e-a3a2-4b3ace382ca4.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4 + bundle: civictheme_image + default_langcode: en + depends: + 93186753-3e96-47ef-b1f3-ff1cdc476ba9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 43 Doloribus iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Blanditiis deserunt.' + field_c_m_image: + - + entity: 93186753-3e96-47ef-b1f3-ff1cdc476ba9 + alt: 'Alt for Generated static Image media 43 Doloribus iusto.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/2daf48b1-b1d6-4beb-ad81-e42a55efd1f0.yml b/recipes/civictheme_content_generated_static/content/media/2daf48b1-b1d6-4beb-ad81-e42a55efd1f0.yml new file mode 100644 index 0000000000..5d820fe46f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/2daf48b1-b1d6-4beb-ad81-e42a55efd1f0.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 2daf48b1-b1d6-4beb-ad81-e42a55efd1f0 + bundle: civictheme_image + default_langcode: en + depends: + 5548db1e-3094-4bc5-8401-9700b5b4aad3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 21 Dolorum eveniet.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Molestiae sapiente.' + field_c_m_image: + - + entity: 5548db1e-3094-4bc5-8401-9700b5b4aad3 + alt: 'Alt for Generated static Image media 21 Dolorum eveniet.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/3378938b-d96c-4291-8fbb-f04208984625.yml b/recipes/civictheme_content_generated_static/content/media/3378938b-d96c-4291-8fbb-f04208984625.yml new file mode 100644 index 0000000000..9da8c3967d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/3378938b-d96c-4291-8fbb-f04208984625.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 3378938b-d96c-4291-8fbb-f04208984625 + bundle: civictheme_image + default_langcode: en + depends: + 8212ed57-5c2a-4e77-b905-fcf768dc49ae: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 28 Corrupti id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Cupiditate est.' + field_c_m_image: + - + entity: 8212ed57-5c2a-4e77-b905-fcf768dc49ae + alt: 'Alt for Generated static Image media 28 Corrupti id.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/3b356dee-7c02-433a-8ad8-e2298a720e7f.yml b/recipes/civictheme_content_generated_static/content/media/3b356dee-7c02-433a-8ad8-e2298a720e7f.yml new file mode 100644 index 0000000000..c3a877e801 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/3b356dee-7c02-433a-8ad8-e2298a720e7f.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 3b356dee-7c02-433a-8ad8-e2298a720e7f + bundle: civictheme_image + default_langcode: en + depends: + 93186753-3e96-47ef-b1f3-ff1cdc476ba9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 33 Id impedit.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Harum id.' + field_c_m_image: + - + entity: 93186753-3e96-47ef-b1f3-ff1cdc476ba9 + alt: 'Alt for Generated static Image media 33 Id impedit.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/3c65c30d-319f-402c-9d42-dbedc799eb34.yml b/recipes/civictheme_content_generated_static/content/media/3c65c30d-319f-402c-9d42-dbedc799eb34.yml new file mode 100644 index 0000000000..a41731d676 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/3c65c30d-319f-402c-9d42-dbedc799eb34.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 3c65c30d-319f-402c-9d42-dbedc799eb34 + bundle: civictheme_image + default_langcode: en + depends: + 94a78c4c-833d-4bd0-9fef-044175cfefb7: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 49 Facere id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Dolor omnis.' + field_c_m_image: + - + entity: 94a78c4c-833d-4bd0-9fef-044175cfefb7 + alt: 'Alt for Generated static Image media 49 Facere id.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/434236aa-1a77-474d-9a31-7305ffb3e9d5.yml b/recipes/civictheme_content_generated_static/content/media/434236aa-1a77-474d-9a31-7305ffb3e9d5.yml new file mode 100644 index 0000000000..663e4e6064 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/434236aa-1a77-474d-9a31-7305ffb3e9d5.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 434236aa-1a77-474d-9a31-7305ffb3e9d5 + bundle: civictheme_image + default_langcode: en + depends: + 62e4d359-347d-4f5f-af17-a153ad83a7a9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 7 Est iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'At cumque.' + field_c_m_image: + - + entity: 62e4d359-347d-4f5f-af17-a153ad83a7a9 + alt: 'Alt for Generated static Image media 7 Est iusto.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/48632cac-2e8d-436d-9938-2ccdf0efa903.yml b/recipes/civictheme_content_generated_static/content/media/48632cac-2e8d-436d-9938-2ccdf0efa903.yml new file mode 100644 index 0000000000..9f864dc6ea --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/48632cac-2e8d-436d-9938-2ccdf0efa903.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 48632cac-2e8d-436d-9938-2ccdf0efa903 + bundle: civictheme_image + default_langcode: en + depends: + c96dee56-2d41-4b6d-9fc2-914713f06c1a: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 22 Eligendi expedita.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Deserunt temporibus.' + field_c_m_image: + - + entity: c96dee56-2d41-4b6d-9fc2-914713f06c1a + alt: 'Alt for Generated static Image media 22 Eligendi expedita.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/4b8d684d-71b5-4b32-aff7-c47f2c054cf8.yml b/recipes/civictheme_content_generated_static/content/media/4b8d684d-71b5-4b32-aff7-c47f2c054cf8.yml new file mode 100644 index 0000000000..c93f27bc12 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/4b8d684d-71b5-4b32-aff7-c47f2c054cf8.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 4b8d684d-71b5-4b32-aff7-c47f2c054cf8 + bundle: civictheme_document + default_langcode: en + depends: + 3e8fcfa3-5b62-4d17-9505-27dc9be21047: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 20 Libero nam.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 3e8fcfa3-5b62-4d17-9505-27dc9be21047 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/4e188906-d5cc-40ea-bb76-92cea2bb5ee9.yml b/recipes/civictheme_content_generated_static/content/media/4e188906-d5cc-40ea-bb76-92cea2bb5ee9.yml new file mode 100644 index 0000000000..1e53b40178 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/4e188906-d5cc-40ea-bb76-92cea2bb5ee9.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 4e188906-d5cc-40ea-bb76-92cea2bb5ee9 + bundle: civictheme_document + default_langcode: en + depends: + f1e88e78-5f38-4afb-861b-a9af59e4526e: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 8 Officia officiis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: f1e88e78-5f38-4afb-861b-a9af59e4526e + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/51c49b4b-50a5-4610-a47d-5f27735a2ef6.yml b/recipes/civictheme_content_generated_static/content/media/51c49b4b-50a5-4610-a47d-5f27735a2ef6.yml new file mode 100644 index 0000000000..48fd4ab451 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/51c49b4b-50a5-4610-a47d-5f27735a2ef6.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 51c49b4b-50a5-4610-a47d-5f27735a2ef6 + bundle: civictheme_document + default_langcode: en + depends: + f1e88e78-5f38-4afb-861b-a9af59e4526e: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 18 Atque dolor.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: f1e88e78-5f38-4afb-861b-a9af59e4526e + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/551b075c-af70-4521-9de7-ec5e487c40f8.yml b/recipes/civictheme_content_generated_static/content/media/551b075c-af70-4521-9de7-ec5e487c40f8.yml new file mode 100644 index 0000000000..f3741cb13c --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/551b075c-af70-4521-9de7-ec5e487c40f8.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 551b075c-af70-4521-9de7-ec5e487c40f8 + bundle: civictheme_image + default_langcode: en + depends: + 2a53199e-3cd3-419c-b044-16a509602752: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 35 Consequatur deserunt.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Libero nam.' + field_c_m_image: + - + entity: 2a53199e-3cd3-419c-b044-16a509602752 + alt: 'Alt for Generated static Image media 35 Consequatur deserunt.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/59d72cfa-f37d-4689-99e8-cc68f387fbb9.yml b/recipes/civictheme_content_generated_static/content/media/59d72cfa-f37d-4689-99e8-cc68f387fbb9.yml new file mode 100644 index 0000000000..32ff1c4fd9 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/59d72cfa-f37d-4689-99e8-cc68f387fbb9.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 59d72cfa-f37d-4689-99e8-cc68f387fbb9 + bundle: civictheme_image + default_langcode: en + depends: + 93186753-3e96-47ef-b1f3-ff1cdc476ba9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 13 Dolores eos.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Eveniet occaecati.' + field_c_m_image: + - + entity: 93186753-3e96-47ef-b1f3-ff1cdc476ba9 + alt: 'Alt for Generated static Image media 13 Dolores eos.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/6c4156cb-6b4d-4467-a7a0-47a90be20291.yml b/recipes/civictheme_content_generated_static/content/media/6c4156cb-6b4d-4467-a7a0-47a90be20291.yml new file mode 100644 index 0000000000..9a7aff8775 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/6c4156cb-6b4d-4467-a7a0-47a90be20291.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 6c4156cb-6b4d-4467-a7a0-47a90be20291 + bundle: civictheme_document + default_langcode: en + depends: + aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 12 Earum perferendis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/6e26b476-a047-4547-bf86-2c73dd48f843.yml b/recipes/civictheme_content_generated_static/content/media/6e26b476-a047-4547-bf86-2c73dd48f843.yml new file mode 100644 index 0000000000..7120da511e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/6e26b476-a047-4547-bf86-2c73dd48f843.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 6e26b476-a047-4547-bf86-2c73dd48f843 + bundle: civictheme_document + default_langcode: en + depends: + cb0748f0-7bee-4c5f-a00d-01cda40001b3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 13 Est iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: cb0748f0-7bee-4c5f-a00d-01cda40001b3 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/70602d7c-8746-4807-a288-32eb7fc32ef6.yml b/recipes/civictheme_content_generated_static/content/media/70602d7c-8746-4807-a288-32eb7fc32ef6.yml new file mode 100644 index 0000000000..6eca6ec067 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/70602d7c-8746-4807-a288-32eb7fc32ef6.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 70602d7c-8746-4807-a288-32eb7fc32ef6 + bundle: civictheme_document + default_langcode: en + depends: + c35f8e96-1cf2-4588-96d5-9a1979465e44: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 17 Asperiores atque.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: c35f8e96-1cf2-4588-96d5-9a1979465e44 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/71e0aa2b-3de8-4d67-b907-287a2e7868af.yml b/recipes/civictheme_content_generated_static/content/media/71e0aa2b-3de8-4d67-b907-287a2e7868af.yml new file mode 100644 index 0000000000..22e9b4caff --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/71e0aa2b-3de8-4d67-b907-287a2e7868af.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 71e0aa2b-3de8-4d67-b907-287a2e7868af + bundle: civictheme_image + default_langcode: en + depends: + 5548db1e-3094-4bc5-8401-9700b5b4aad3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 41 Ducimus eligendi.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Autem consequatur.' + field_c_m_image: + - + entity: 5548db1e-3094-4bc5-8401-9700b5b4aad3 + alt: 'Alt for Generated static Image media 41 Ducimus eligendi.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/75d10796-847a-4c23-8f48-cf6046799eeb.yml b/recipes/civictheme_content_generated_static/content/media/75d10796-847a-4c23-8f48-cf6046799eeb.yml new file mode 100644 index 0000000000..2ee711fb46 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/75d10796-847a-4c23-8f48-cf6046799eeb.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 75d10796-847a-4c23-8f48-cf6046799eeb + bundle: civictheme_image + default_langcode: en + depends: + 94a78c4c-833d-4bd0-9fef-044175cfefb7: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 9 Asperiores atque.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Atque dolor.' + field_c_m_image: + - + entity: 94a78c4c-833d-4bd0-9fef-044175cfefb7 + alt: 'Alt for Generated static Image media 9 Asperiores atque.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/78ccf538-7b2b-49fe-ab15-8f2c8eb894be.yml b/recipes/civictheme_content_generated_static/content/media/78ccf538-7b2b-49fe-ab15-8f2c8eb894be.yml new file mode 100644 index 0000000000..f900679e25 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/78ccf538-7b2b-49fe-ab15-8f2c8eb894be.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 78ccf538-7b2b-49fe-ab15-8f2c8eb894be + bundle: civictheme_image + default_langcode: en + depends: + 3d72e253-d3fd-4dae-a9d8-ce5005749650: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 10 Consequatur deserunt.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Libero nam.' + field_c_m_image: + - + entity: 3d72e253-d3fd-4dae-a9d8-ce5005749650 + alt: 'Alt for Generated static Image media 10 Consequatur deserunt.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/8b0dacdd-f7aa-4d1e-a93e-cac4cea90dfe.yml b/recipes/civictheme_content_generated_static/content/media/8b0dacdd-f7aa-4d1e-a93e-cac4cea90dfe.yml new file mode 100644 index 0000000000..ed41bf9e66 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/8b0dacdd-f7aa-4d1e-a93e-cac4cea90dfe.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 8b0dacdd-f7aa-4d1e-a93e-cac4cea90dfe + bundle: civictheme_document + default_langcode: en + depends: + a76f202a-2bd7-4af1-937c-1835b9257d81: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 1 Occaecati perferendis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: a76f202a-2bd7-4af1-937c-1835b9257d81 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/8d9f6c89-5abe-481a-bfa7-4738567ff6a0.yml b/recipes/civictheme_content_generated_static/content/media/8d9f6c89-5abe-481a-bfa7-4738567ff6a0.yml new file mode 100644 index 0000000000..5dbe5744e3 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/8d9f6c89-5abe-481a-bfa7-4738567ff6a0.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 8d9f6c89-5abe-481a-bfa7-4738567ff6a0 + bundle: civictheme_document + default_langcode: en + depends: + 5322e72b-5f0f-44ba-ad05-ee64380e1f57: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 6 Cupiditate est.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 5322e72b-5f0f-44ba-ad05-ee64380e1f57 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/92ffe259-99f0-47d3-824a-6a649cb17034.yml b/recipes/civictheme_content_generated_static/content/media/92ffe259-99f0-47d3-824a-6a649cb17034.yml new file mode 100644 index 0000000000..3eecbb3712 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/92ffe259-99f0-47d3-824a-6a649cb17034.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 92ffe259-99f0-47d3-824a-6a649cb17034 + bundle: civictheme_document + default_langcode: en + depends: + 3e8fcfa3-5b62-4d17-9505-27dc9be21047: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 10 Cumque delectus.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 3e8fcfa3-5b62-4d17-9505-27dc9be21047 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/9468e905-6a82-401c-93ed-9ae6b6f1cd5d.yml b/recipes/civictheme_content_generated_static/content/media/9468e905-6a82-401c-93ed-9ae6b6f1cd5d.yml new file mode 100644 index 0000000000..ecffcba9af --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/9468e905-6a82-401c-93ed-9ae6b6f1cd5d.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 9468e905-6a82-401c-93ed-9ae6b6f1cd5d + bundle: civictheme_image + default_langcode: en + depends: + e2f86086-0269-4ad0-92c1-96670e613c18: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 44 Delectus dolores.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Deleniti mollitia.' + field_c_m_image: + - + entity: e2f86086-0269-4ad0-92c1-96670e613c18 + alt: 'Alt for Generated static Image media 44 Delectus dolores.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/9ab67eb6-579a-4792-9fd5-51b046cf8873.yml b/recipes/civictheme_content_generated_static/content/media/9ab67eb6-579a-4792-9fd5-51b046cf8873.yml new file mode 100644 index 0000000000..20ccbc1322 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/9ab67eb6-579a-4792-9fd5-51b046cf8873.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 9ab67eb6-579a-4792-9fd5-51b046cf8873 + bundle: civictheme_image + default_langcode: en + depends: + 93186753-3e96-47ef-b1f3-ff1cdc476ba9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 3 Corrupti id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Cupiditate est.' + field_c_m_image: + - + entity: 93186753-3e96-47ef-b1f3-ff1cdc476ba9 + alt: 'Alt for Generated static Image media 3 Corrupti id.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/9ce87d83-eb80-4430-9925-93a55af3caae.yml b/recipes/civictheme_content_generated_static/content/media/9ce87d83-eb80-4430-9925-93a55af3caae.yml new file mode 100644 index 0000000000..ff5783917c --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/9ce87d83-eb80-4430-9925-93a55af3caae.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 9ce87d83-eb80-4430-9925-93a55af3caae + bundle: civictheme_image + default_langcode: en + depends: + 3d72e253-d3fd-4dae-a9d8-ce5005749650: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 20 Animi aut.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Facilis laborum.' + field_c_m_image: + - + entity: 3d72e253-d3fd-4dae-a9d8-ce5005749650 + alt: 'Alt for Generated static Image media 20 Animi aut.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/9edb4cc0-790d-48ac-9527-40d7196c9667.yml b/recipes/civictheme_content_generated_static/content/media/9edb4cc0-790d-48ac-9527-40d7196c9667.yml new file mode 100644 index 0000000000..b7443a39e7 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/9edb4cc0-790d-48ac-9527-40d7196c9667.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 9edb4cc0-790d-48ac-9527-40d7196c9667 + bundle: civictheme_document + default_langcode: en + depends: + 9382498c-2678-4e74-92a2-f64b57e11f36: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 14 At cumque.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 9382498c-2678-4e74-92a2-f64b57e11f36 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/9f82d101-8522-4b0f-a046-4df56e39f92d.yml b/recipes/civictheme_content_generated_static/content/media/9f82d101-8522-4b0f-a046-4df56e39f92d.yml new file mode 100644 index 0000000000..1a3e2f923b --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/9f82d101-8522-4b0f-a046-4df56e39f92d.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 9f82d101-8522-4b0f-a046-4df56e39f92d + bundle: civictheme_image + default_langcode: en + depends: + 2a53199e-3cd3-419c-b044-16a509602752: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 25 Laborum occaecati.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Minus molestias.' + field_c_m_image: + - + entity: 2a53199e-3cd3-419c-b044-16a509602752 + alt: 'Alt for Generated static Image media 25 Laborum occaecati.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/9fa66811-896b-409a-bbd8-0b0adbb16da4.yml b/recipes/civictheme_content_generated_static/content/media/9fa66811-896b-409a-bbd8-0b0adbb16da4.yml new file mode 100644 index 0000000000..8f9f2315b0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/9fa66811-896b-409a-bbd8-0b0adbb16da4.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: 9fa66811-896b-409a-bbd8-0b0adbb16da4 + bundle: civictheme_document + default_langcode: en + depends: + 9165e3f8-2cc5-4804-a53f-6382dd53ef17: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 5 Corrupti id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 9165e3f8-2cc5-4804-a53f-6382dd53ef17 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/a3d85732-94f3-4a0c-b41b-0eb9084372e5.yml b/recipes/civictheme_content_generated_static/content/media/a3d85732-94f3-4a0c-b41b-0eb9084372e5.yml new file mode 100644 index 0000000000..ae048f2739 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/a3d85732-94f3-4a0c-b41b-0eb9084372e5.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: a3d85732-94f3-4a0c-b41b-0eb9084372e5 + bundle: civictheme_image + default_langcode: en + depends: + 5548db1e-3094-4bc5-8401-9700b5b4aad3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 11 Culpa debitis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Aut delectus.' + field_c_m_image: + - + entity: 5548db1e-3094-4bc5-8401-9700b5b4aad3 + alt: 'Alt for Generated static Image media 11 Culpa debitis.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/a4f343aa-4d4d-4948-b6ff-9f6cab295888.yml b/recipes/civictheme_content_generated_static/content/media/a4f343aa-4d4d-4948-b6ff-9f6cab295888.yml new file mode 100644 index 0000000000..500fcd2a8d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/a4f343aa-4d4d-4948-b6ff-9f6cab295888.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: a4f343aa-4d4d-4948-b6ff-9f6cab295888 + bundle: civictheme_image + default_langcode: en + depends: + 62e4d359-347d-4f5f-af17-a153ad83a7a9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 47 Eligendi expedita.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Deserunt temporibus.' + field_c_m_image: + - + entity: 62e4d359-347d-4f5f-af17-a153ad83a7a9 + alt: 'Alt for Generated static Image media 47 Eligendi expedita.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/a9a587b3-2b9e-43ce-ab28-66d5e5f634a0.yml b/recipes/civictheme_content_generated_static/content/media/a9a587b3-2b9e-43ce-ab28-66d5e5f634a0.yml new file mode 100644 index 0000000000..edf3fc6ba2 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/a9a587b3-2b9e-43ce-ab28-66d5e5f634a0.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: a9a587b3-2b9e-43ce-ab28-66d5e5f634a0 + bundle: civictheme_image + default_langcode: en + depends: + 8212ed57-5c2a-4e77-b905-fcf768dc49ae: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 18 Doloribus iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Blanditiis deserunt.' + field_c_m_image: + - + entity: 8212ed57-5c2a-4e77-b905-fcf768dc49ae + alt: 'Alt for Generated static Image media 18 Doloribus iusto.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/aee2f9e3-4f77-4b9a-b2df-7079b3d089ca.yml b/recipes/civictheme_content_generated_static/content/media/aee2f9e3-4f77-4b9a-b2df-7079b3d089ca.yml new file mode 100644 index 0000000000..77d383bd0b --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/aee2f9e3-4f77-4b9a-b2df-7079b3d089ca.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: aee2f9e3-4f77-4b9a-b2df-7079b3d089ca + bundle: civictheme_document + default_langcode: en + depends: + aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 2 Expedita officia.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: aef9f3cd-f5ab-47e6-91c8-a8ba358f7e36 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/af716da0-dff7-4bc2-b2fc-a42f603f4f9c.yml b/recipes/civictheme_content_generated_static/content/media/af716da0-dff7-4bc2-b2fc-a42f603f4f9c.yml new file mode 100644 index 0000000000..4953ae9788 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/af716da0-dff7-4bc2-b2fc-a42f603f4f9c.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: af716da0-dff7-4bc2-b2fc-a42f603f4f9c + bundle: civictheme_image + default_langcode: en + depends: + 2a53199e-3cd3-419c-b044-16a509602752: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 15 In molestiae.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Excepturi laborum.' + field_c_m_image: + - + entity: 2a53199e-3cd3-419c-b044-16a509602752 + alt: 'Alt for Generated static Image media 15 In molestiae.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/b01ccf28-b786-4ff9-8a8b-5a809aa17bb9.yml b/recipes/civictheme_content_generated_static/content/media/b01ccf28-b786-4ff9-8a8b-5a809aa17bb9.yml new file mode 100644 index 0000000000..e385aae55f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/b01ccf28-b786-4ff9-8a8b-5a809aa17bb9.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: b01ccf28-b786-4ff9-8a8b-5a809aa17bb9 + bundle: civictheme_document + default_langcode: en + depends: + 34a62a8e-2096-4249-b6b3-0aa557b7de00: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 9 Distinctio harum.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 34a62a8e-2096-4249-b6b3-0aa557b7de00 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/b272bf9d-bd55-4a92-a0fd-b904240017a4.yml b/recipes/civictheme_content_generated_static/content/media/b272bf9d-bd55-4a92-a0fd-b904240017a4.yml new file mode 100644 index 0000000000..f8ef036baa --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/b272bf9d-bd55-4a92-a0fd-b904240017a4.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: b272bf9d-bd55-4a92-a0fd-b904240017a4 + bundle: civictheme_image + default_langcode: en + depends: + 3d72e253-d3fd-4dae-a9d8-ce5005749650: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 40 In molestiae.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Excepturi laborum.' + field_c_m_image: + - + entity: 3d72e253-d3fd-4dae-a9d8-ce5005749650 + alt: 'Alt for Generated static Image media 40 In molestiae.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/bf0b24f1-7173-49a1-b1f3-e5ed83b6a216.yml b/recipes/civictheme_content_generated_static/content/media/bf0b24f1-7173-49a1-b1f3-e5ed83b6a216.yml new file mode 100644 index 0000000000..07c74db615 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/bf0b24f1-7173-49a1-b1f3-e5ed83b6a216.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: bf0b24f1-7173-49a1-b1f3-e5ed83b6a216 + bundle: civictheme_image + default_langcode: en + depends: + 5548db1e-3094-4bc5-8401-9700b5b4aad3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 1 Occaecati perferendis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Expedita officia.' + field_c_m_image: + - + entity: 5548db1e-3094-4bc5-8401-9700b5b4aad3 + alt: 'Alt for Generated static Image media 1 Occaecati perferendis.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/c0448d36-58b8-4cab-90d9-a873b88b5770.yml b/recipes/civictheme_content_generated_static/content/media/c0448d36-58b8-4cab-90d9-a873b88b5770.yml new file mode 100644 index 0000000000..3ee4bcdb3e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/c0448d36-58b8-4cab-90d9-a873b88b5770.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: c0448d36-58b8-4cab-90d9-a873b88b5770 + bundle: civictheme_image + default_langcode: en + depends: + 28b82ba2-601d-4e12-b08f-386962c45545: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 6 Accusamus animi.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Earum perferendis.' + field_c_m_image: + - + entity: 28b82ba2-601d-4e12-b08f-386962c45545 + alt: 'Alt for Generated static Image media 6 Accusamus animi.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/c3b82dbd-cc88-4791-bb9e-a80ac17b373b.yml b/recipes/civictheme_content_generated_static/content/media/c3b82dbd-cc88-4791-bb9e-a80ac17b373b.yml new file mode 100644 index 0000000000..fde805a260 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/c3b82dbd-cc88-4791-bb9e-a80ac17b373b.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: c3b82dbd-cc88-4791-bb9e-a80ac17b373b + bundle: civictheme_image + default_langcode: en + depends: + 5548db1e-3094-4bc5-8401-9700b5b4aad3: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 31 Accusamus animi.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Earum perferendis.' + field_c_m_image: + - + entity: 5548db1e-3094-4bc5-8401-9700b5b4aad3 + alt: 'Alt for Generated static Image media 31 Accusamus animi.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b.yml b/recipes/civictheme_content_generated_static/content/media/cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b.yml new file mode 100644 index 0000000000..b92895a564 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b + bundle: civictheme_image + default_langcode: en + depends: + 62e4d359-347d-4f5f-af17-a153ad83a7a9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 27 Mollitia non.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Impedit non.' + field_c_m_image: + - + entity: 62e4d359-347d-4f5f-af17-a153ad83a7a9 + alt: 'Alt for Generated static Image media 27 Mollitia non.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/d034df75-23ae-4dea-bfa3-334b94b79660.yml b/recipes/civictheme_content_generated_static/content/media/d034df75-23ae-4dea-bfa3-334b94b79660.yml new file mode 100644 index 0000000000..2b7c8cf527 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/d034df75-23ae-4dea-bfa3-334b94b79660.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d034df75-23ae-4dea-bfa3-334b94b79660 + bundle: civictheme_image + default_langcode: en + depends: + 28b82ba2-601d-4e12-b08f-386962c45545: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 36 Culpa debitis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Aut delectus.' + field_c_m_image: + - + entity: 28b82ba2-601d-4e12-b08f-386962c45545 + alt: 'Alt for Generated static Image media 36 Culpa debitis.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/d137be4d-e1db-47bb-86fa-0f8d5d18c9bc.yml b/recipes/civictheme_content_generated_static/content/media/d137be4d-e1db-47bb-86fa-0f8d5d18c9bc.yml new file mode 100644 index 0000000000..001c6165a7 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/d137be4d-e1db-47bb-86fa-0f8d5d18c9bc.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d137be4d-e1db-47bb-86fa-0f8d5d18c9bc + bundle: civictheme_image + default_langcode: en + depends: + 8212ed57-5c2a-4e77-b905-fcf768dc49ae: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 38 Dolores eos.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Eveniet occaecati.' + field_c_m_image: + - + entity: 8212ed57-5c2a-4e77-b905-fcf768dc49ae + alt: 'Alt for Generated static Image media 38 Dolores eos.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/d21221ff-feee-4a5d-931f-90eede0da0ca.yml b/recipes/civictheme_content_generated_static/content/media/d21221ff-feee-4a5d-931f-90eede0da0ca.yml new file mode 100644 index 0000000000..3abd9e45be --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/d21221ff-feee-4a5d-931f-90eede0da0ca.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d21221ff-feee-4a5d-931f-90eede0da0ca + bundle: civictheme_document + default_langcode: en + depends: + 9382498c-2678-4e74-92a2-f64b57e11f36: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 4 Impedit non.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 9382498c-2678-4e74-92a2-f64b57e11f36 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/d720b9c5-5101-4fe9-9a55-053e5fbe0391.yml b/recipes/civictheme_content_generated_static/content/media/d720b9c5-5101-4fe9-9a55-053e5fbe0391.yml new file mode 100644 index 0000000000..44acd58b57 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/d720b9c5-5101-4fe9-9a55-053e5fbe0391.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d720b9c5-5101-4fe9-9a55-053e5fbe0391 + bundle: civictheme_image + default_langcode: en + depends: + c96dee56-2d41-4b6d-9fc2-914713f06c1a: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 32 Est iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'At cumque.' + field_c_m_image: + - + entity: c96dee56-2d41-4b6d-9fc2-914713f06c1a + alt: 'Alt for Generated static Image media 32 Est iusto.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/d82881bf-76f5-4078-b819-a55d5226d74f.yml b/recipes/civictheme_content_generated_static/content/media/d82881bf-76f5-4078-b819-a55d5226d74f.yml new file mode 100644 index 0000000000..daef92b9c8 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/d82881bf-76f5-4078-b819-a55d5226d74f.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d82881bf-76f5-4078-b819-a55d5226d74f + bundle: civictheme_image + default_langcode: en + depends: + 2a53199e-3cd3-419c-b044-16a509602752: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 5 Distinctio harum.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Cumque delectus.' + field_c_m_image: + - + entity: 2a53199e-3cd3-419c-b044-16a509602752 + alt: 'Alt for Generated static Image media 5 Distinctio harum.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/d83dffb5-13bd-4f86-87f9-f76e3407e1d4.yml b/recipes/civictheme_content_generated_static/content/media/d83dffb5-13bd-4f86-87f9-f76e3407e1d4.yml new file mode 100644 index 0000000000..957759e39d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/d83dffb5-13bd-4f86-87f9-f76e3407e1d4.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: d83dffb5-13bd-4f86-87f9-f76e3407e1d4 + bundle: civictheme_image + default_langcode: en + depends: + 62e4d359-347d-4f5f-af17-a153ad83a7a9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 17 Et itaque.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Alias aut.' + field_c_m_image: + - + entity: 62e4d359-347d-4f5f-af17-a153ad83a7a9 + alt: 'Alt for Generated static Image media 17 Et itaque.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/db6528c7-cea8-4a4f-9574-97324f2eab7e.yml b/recipes/civictheme_content_generated_static/content/media/db6528c7-cea8-4a4f-9574-97324f2eab7e.yml new file mode 100644 index 0000000000..0f082639c8 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/db6528c7-cea8-4a4f-9574-97324f2eab7e.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: db6528c7-cea8-4a4f-9574-97324f2eab7e + bundle: civictheme_image + default_langcode: en + depends: + e2f86086-0269-4ad0-92c1-96670e613c18: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 34 Asperiores atque.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Atque dolor.' + field_c_m_image: + - + entity: e2f86086-0269-4ad0-92c1-96670e613c18 + alt: 'Alt for Generated static Image media 34 Asperiores atque.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/dbc30bcd-876e-4499-bab2-362edfb76d2a.yml b/recipes/civictheme_content_generated_static/content/media/dbc30bcd-876e-4499-bab2-362edfb76d2a.yml new file mode 100644 index 0000000000..2cda19093f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/dbc30bcd-876e-4499-bab2-362edfb76d2a.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: dbc30bcd-876e-4499-bab2-362edfb76d2a + bundle: civictheme_image + default_langcode: en + depends: + 28b82ba2-601d-4e12-b08f-386962c45545: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 16 Ducimus eligendi.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Autem consequatur.' + field_c_m_image: + - + entity: 28b82ba2-601d-4e12-b08f-386962c45545 + alt: 'Alt for Generated static Image media 16 Ducimus eligendi.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/dc4091c2-b7b5-4612-95b7-f8fdd9163be6.yml b/recipes/civictheme_content_generated_static/content/media/dc4091c2-b7b5-4612-95b7-f8fdd9163be6.yml new file mode 100644 index 0000000000..617ebc3760 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/dc4091c2-b7b5-4612-95b7-f8fdd9163be6.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: dc4091c2-b7b5-4612-95b7-f8fdd9163be6 + bundle: civictheme_image + default_langcode: en + depends: + c96dee56-2d41-4b6d-9fc2-914713f06c1a: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 12 Debitis delectus.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Dignissimos doloribus.' + field_c_m_image: + - + entity: c96dee56-2d41-4b6d-9fc2-914713f06c1a + alt: 'Alt for Generated static Image media 12 Debitis delectus.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/dd0ea928-4136-45c3-a38c-c476fb0eb042.yml b/recipes/civictheme_content_generated_static/content/media/dd0ea928-4136-45c3-a38c-c476fb0eb042.yml new file mode 100644 index 0000000000..5b5b036002 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/dd0ea928-4136-45c3-a38c-c476fb0eb042.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: dd0ea928-4136-45c3-a38c-c476fb0eb042 + bundle: civictheme_document + default_langcode: en + depends: + c35f8e96-1cf2-4588-96d5-9a1979465e44: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 7 Fuga id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: c35f8e96-1cf2-4588-96d5-9a1979465e44 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/de760691-a8bd-4bbc-b9a9-cacbed929cf9.yml b/recipes/civictheme_content_generated_static/content/media/de760691-a8bd-4bbc-b9a9-cacbed929cf9.yml new file mode 100644 index 0000000000..5dbed30f75 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/de760691-a8bd-4bbc-b9a9-cacbed929cf9.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: de760691-a8bd-4bbc-b9a9-cacbed929cf9 + bundle: civictheme_image + default_langcode: en + depends: + 94a78c4c-833d-4bd0-9fef-044175cfefb7: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 39 Eos iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Assumenda cupiditate.' + field_c_m_image: + - + entity: 94a78c4c-833d-4bd0-9fef-044175cfefb7 + alt: 'Alt for Generated static Image media 39 Eos iusto.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/def8b78a-1955-4c98-a8fd-a7f7e48dc6aa.yml b/recipes/civictheme_content_generated_static/content/media/def8b78a-1955-4c98-a8fd-a7f7e48dc6aa.yml new file mode 100644 index 0000000000..982c10fb33 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/def8b78a-1955-4c98-a8fd-a7f7e48dc6aa.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: def8b78a-1955-4c98-a8fd-a7f7e48dc6aa + bundle: civictheme_image + default_langcode: en + depends: + 28b82ba2-601d-4e12-b08f-386962c45545: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 46 Dolorum eveniet.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Molestiae sapiente.' + field_c_m_image: + - + entity: 28b82ba2-601d-4e12-b08f-386962c45545 + alt: 'Alt for Generated static Image media 46 Dolorum eveniet.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/e51bfef1-1ca4-4bdd-b4b7-a948d9313273.yml b/recipes/civictheme_content_generated_static/content/media/e51bfef1-1ca4-4bdd-b4b7-a948d9313273.yml new file mode 100644 index 0000000000..d76ed80d89 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/e51bfef1-1ca4-4bdd-b4b7-a948d9313273.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: e51bfef1-1ca4-4bdd-b4b7-a948d9313273 + bundle: civictheme_image + default_langcode: en + depends: + 3d72e253-d3fd-4dae-a9d8-ce5005749650: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 50 Laborum occaecati.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Minus molestias.' + field_c_m_image: + - + entity: 3d72e253-d3fd-4dae-a9d8-ce5005749650 + alt: 'Alt for Generated static Image media 50 Laborum occaecati.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/ebacfb78-235c-49bd-bb35-b8a4ebc04578.yml b/recipes/civictheme_content_generated_static/content/media/ebacfb78-235c-49bd-bb35-b8a4ebc04578.yml new file mode 100644 index 0000000000..1dee2bd053 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/ebacfb78-235c-49bd-bb35-b8a4ebc04578.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: ebacfb78-235c-49bd-bb35-b8a4ebc04578 + bundle: civictheme_image + default_langcode: en + depends: + e2f86086-0269-4ad0-92c1-96670e613c18: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 4 Fuga id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Officia officiis.' + field_c_m_image: + - + entity: e2f86086-0269-4ad0-92c1-96670e613c18 + alt: 'Alt for Generated static Image media 4 Fuga id.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/ecdf9f4b-73de-4d84-9b50-7f91efd73352.yml b/recipes/civictheme_content_generated_static/content/media/ecdf9f4b-73de-4d84-9b50-7f91efd73352.yml new file mode 100644 index 0000000000..2e7d540de0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/ecdf9f4b-73de-4d84-9b50-7f91efd73352.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: ecdf9f4b-73de-4d84-9b50-7f91efd73352 + bundle: civictheme_image + default_langcode: en + depends: + 8212ed57-5c2a-4e77-b905-fcf768dc49ae: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 8 Id impedit.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Harum id.' + field_c_m_image: + - + entity: 8212ed57-5c2a-4e77-b905-fcf768dc49ae + alt: 'Alt for Generated static Image media 8 Id impedit.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/f2876ebf-7ba4-47c4-bf40-7a1364564b59.yml b/recipes/civictheme_content_generated_static/content/media/f2876ebf-7ba4-47c4-bf40-7a1364564b59.yml new file mode 100644 index 0000000000..b733f9e643 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/f2876ebf-7ba4-47c4-bf40-7a1364564b59.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: f2876ebf-7ba4-47c4-bf40-7a1364564b59 + bundle: civictheme_image + default_langcode: en + depends: + 62e4d359-347d-4f5f-af17-a153ad83a7a9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 37 Debitis delectus.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Dignissimos doloribus.' + field_c_m_image: + - + entity: 62e4d359-347d-4f5f-af17-a153ad83a7a9 + alt: 'Alt for Generated static Image media 37 Debitis delectus.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/f2b12e05-3b89-467e-9d7f-6a69164646af.yml b/recipes/civictheme_content_generated_static/content/media/f2b12e05-3b89-467e-9d7f-6a69164646af.yml new file mode 100644 index 0000000000..94645de65b --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/f2b12e05-3b89-467e-9d7f-6a69164646af.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: f2b12e05-3b89-467e-9d7f-6a69164646af + bundle: civictheme_image + default_langcode: en + depends: + 93186753-3e96-47ef-b1f3-ff1cdc476ba9: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 23 Maiores molestiae.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Non officia.' + field_c_m_image: + - + entity: 93186753-3e96-47ef-b1f3-ff1cdc476ba9 + alt: 'Alt for Generated static Image media 23 Maiores molestiae.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/f5615546-86c4-4d6c-8bf6-931e6079c987.yml b/recipes/civictheme_content_generated_static/content/media/f5615546-86c4-4d6c-8bf6-931e6079c987.yml new file mode 100644 index 0000000000..ccf8aeb019 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/f5615546-86c4-4d6c-8bf6-931e6079c987.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: f5615546-86c4-4d6c-8bf6-931e6079c987 + bundle: civictheme_image + default_langcode: en + depends: + 8212ed57-5c2a-4e77-b905-fcf768dc49ae: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 48 Maiores molestiae.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Non officia.' + field_c_m_image: + - + entity: 8212ed57-5c2a-4e77-b905-fcf768dc49ae + alt: 'Alt for Generated static Image media 48 Maiores molestiae.' + title: '' + width: 500 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/f82c8bd7-bd96-4a69-826b-0f3d5c333996.yml b/recipes/civictheme_content_generated_static/content/media/f82c8bd7-bd96-4a69-826b-0f3d5c333996.yml new file mode 100644 index 0000000000..44406ca8e7 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/f82c8bd7-bd96-4a69-826b-0f3d5c333996.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: f82c8bd7-bd96-4a69-826b-0f3d5c333996 + bundle: civictheme_image + default_langcode: en + depends: + 28b82ba2-601d-4e12-b08f-386962c45545: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 26 Occaecati perferendis.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Expedita officia.' + field_c_m_image: + - + entity: 28b82ba2-601d-4e12-b08f-386962c45545 + alt: 'Alt for Generated static Image media 26 Occaecati perferendis.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/f912a51b-4148-469e-a64c-d4c0d23cf445.yml b/recipes/civictheme_content_generated_static/content/media/f912a51b-4148-469e-a64c-d4c0d23cf445.yml new file mode 100644 index 0000000000..9ffd1f9f6b --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/f912a51b-4148-469e-a64c-d4c0d23cf445.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: f912a51b-4148-469e-a64c-d4c0d23cf445 + bundle: civictheme_document + default_langcode: en + depends: + 5322e72b-5f0f-44ba-ad05-ee64380e1f57: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 16 Harum id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: 5322e72b-5f0f-44ba-ad05-ee64380e1f57 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/media/fa969696-d6c4-4e47-9b78-b1633d973c0e.yml b/recipes/civictheme_content_generated_static/content/media/fa969696-d6c4-4e47-9b78-b1633d973c0e.yml new file mode 100644 index 0000000000..0819ac55c3 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/fa969696-d6c4-4e47-9b78-b1633d973c0e.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: fa969696-d6c4-4e47-9b78-b1633d973c0e + bundle: civictheme_image + default_langcode: en + depends: + 94a78c4c-833d-4bd0-9fef-044175cfefb7: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 29 Fuga id.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Officia officiis.' + field_c_m_image: + - + entity: 94a78c4c-833d-4bd0-9fef-044175cfefb7 + alt: 'Alt for Generated static Image media 29 Fuga id.' + title: '' + width: 1550 + height: 500 diff --git a/recipes/civictheme_content_generated_static/content/media/fb24d887-5e65-4ac2-abb3-f9d98220ddcc.yml b/recipes/civictheme_content_generated_static/content/media/fb24d887-5e65-4ac2-abb3-f9d98220ddcc.yml new file mode 100644 index 0000000000..9071535603 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/fb24d887-5e65-4ac2-abb3-f9d98220ddcc.yml @@ -0,0 +1,42 @@ +_meta: + version: '1.0' + entity_type: media + uuid: fb24d887-5e65-4ac2-abb3-f9d98220ddcc + bundle: civictheme_image + default_langcode: en + depends: + e2f86086-0269-4ad0-92c1-96670e613c18: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Image media 14 Eos iusto.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_caption: + - + value: 'Assumenda cupiditate.' + field_c_m_image: + - + entity: e2f86086-0269-4ad0-92c1-96670e613c18 + alt: 'Alt for Generated static Image media 14 Eos iusto.' + title: '' + width: 1552 + height: 846 diff --git a/recipes/civictheme_content_generated_static/content/media/fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d.yml b/recipes/civictheme_content_generated_static/content/media/fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d.yml new file mode 100644 index 0000000000..badac537cf --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/media/fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d.yml @@ -0,0 +1,37 @@ +_meta: + version: '1.0' + entity_type: media + uuid: fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d + bundle: civictheme_document + default_langcode: en + depends: + a76f202a-2bd7-4af1-937c-1835b9257d81: file +default: + status: + - + value: true + uid: + - + target_id: 0 + name: + - + value: 'Generated static Document media 11 Accusamus animi.' + created: + - + value: 1758892277 + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: '' + langcode: en + pathauto: 1 + field_c_m_document: + - + entity: a76f202a-2bd7-4af1-937c-1835b9257d81 + display: false + description: '' diff --git a/recipes/civictheme_content_generated_static/content/node/0040967e-ef5f-40f8-b121-2b7ddfe53f5f.yml b/recipes/civictheme_content_generated_static/content/node/0040967e-ef5f-40f8-b121-2b7ddfe53f5f.yml new file mode 100644 index 0000000000..8e72ffbb11 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/0040967e-ef5f-40f8-b121-2b7ddfe53f5f.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 0040967e-ef5f-40f8-b121-2b7ddfe53f5f + bundle: civictheme_event + default_langcode: en + depends: + d83dffb5-13bd-4f86-87f9-f76e3407e1d4: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 17. Animi aut culpa.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-17-animi-aut-culpa + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Dolorum eveniet libero necessitatibus odio

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

+

Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut.

+

Deserunt temporibus voluptatibus voluptatum. Debitis

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

Facere id. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8f699661-bdbf-408a-9046-e6bb08fdfa82 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Laborum occaecati omnis.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: 'Occaecati perferendis.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et.' + field_c_n_thumbnail: + - + entity: d83dffb5-13bd-4f86-87f9-f76e3407e1d4 + field_c_n_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/00f7eecc-4a61-4a18-a576-26eec6eec844.yml b/recipes/civictheme_content_generated_static/content/node/00f7eecc-4a61-4a18-a576-26eec6eec844.yml new file mode 100644 index 0000000000..a79d8fcac0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/00f7eecc-4a61-4a18-a576-26eec6eec844.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 00f7eecc-4a61-4a18-a576-26eec6eec844 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Navigation card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-navigation-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f7b2ba12-3441-4576-8f2a-063b5002c6bb + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Non officia officiis quibusdam vero.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Facere-id-maxime-nihil-odio.' + title: 'Dolor omnis.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/05292e94-96bb-4473-8789-e6ad44686fcb.yml b/recipes/civictheme_content_generated_static/content/node/05292e94-96bb-4473-8789-e6ad44686fcb.yml new file mode 100644 index 0000000000..da787e3d82 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/05292e94-96bb-4473-8789-e6ad44686fcb.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 05292e94-96bb-4473-8789-e6ad44686fcb + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Snippet, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-snippet-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fae94e6b-b805-44f0-9719-11ca5d5ee78b + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Harum id nam quas. Debitis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_event + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: 'Libero nam.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/07bef1c1-03e3-4d7c-8a3b-ae69f02f5ab4.yml b/recipes/civictheme_content_generated_static/content/node/07bef1c1-03e3-4d7c-8a3b-ae69f02f5ab4.yml new file mode 100644 index 0000000000..63a733d948 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/07bef1c1-03e3-4d7c-8a3b-ae69f02f5ab4.yml @@ -0,0 +1,311 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 07bef1c1-03e3-4d7c-8a3b-ae69f02f5ab4 + bundle: civictheme_event + default_langcode: en + depends: + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Sum: Mol, Top: 1, Bod: 2, Loc: 6, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event. Component. Map' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-component-map + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Eligendi expedita officia. Animi dolorum

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

+

Non officia officiis quibusdam vero

+

Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.

Laborum occaecati. + format: civictheme_rich_text + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f0c72638-de46-4adf-8de8-e5a13c52472f + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_embed_url: + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 75401682-acc6-4a32-a820-987e3b7e4ca5 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_embed_url: + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d5e5ceea-7871-4c55-8295-1e8a6b1edb65 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Mollitia non sunt.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Expedita-officia-quod-recusandae.-Earum.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_view_link: + - + uri: 'https://www.example.com/Impedit-non-optio-quod-quos.' + title: 'Corrupti id.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7c54b50f-8680-458b-9b13-d51c4284d90c + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Fuga id impedit.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Cupiditate-est-maiores-non-repellendus.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_view_link: + - + uri: 'https://www.example.com/Officia-officiis-quos.-Facere-harum.' + title: 'Distinctio harum.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6019ffb1-2542-4bda-8a23-71feab72cd42 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Accusamus animi deleniti.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Cumque-delectus-hic-mollitia-necessitatibus.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0fdcb87b-71f3-444c-9246-f14f152a7ff1 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Id impedit maxime.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Harum-id-nam-quas.-Debitis.' + title: 'Asperiores atque.' + options: { } + field_c_n_show_last_updated: + - + value: false + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Molestiae sapiente tempore. At maxime quas quod repellat.' + field_c_n_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/08020a10-ad1b-45bc-90c8-83acbb97b18e.yml b/recipes/civictheme_content_generated_static/content/node/08020a10-ad1b-45bc-90c8-83acbb97b18e.yml new file mode 100644 index 0000000000..7c32849f15 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/08020a10-ad1b-45bc-90c8-83acbb97b18e.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 08020a10-ad1b-45bc-90c8-83acbb97b18e + bundle: civictheme_page + default_langcode: en + depends: + 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 17. Delectus dolores eligendi.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-17-delectus-dolores-eligendi + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: af6d5197-dccd-476a-affb-a0669a1d9d3d + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Facilis laborum officiis quidem quod

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

+

Eligendi expedita officia. Animi dolorum

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

Non officia. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus. Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores.' + field_c_n_thumbnail: + - + entity: 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4 + field_c_n_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/0d90b6b6-4a8d-44fb-81a0-374c2da47a8e.yml b/recipes/civictheme_content_generated_static/content/node/0d90b6b6-4a8d-44fb-81a0-374c2da47a8e.yml new file mode 100644 index 0000000000..4ab112323f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/0d90b6b6-4a8d-44fb-81a0-374c2da47a8e.yml @@ -0,0 +1,69 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 0d90b6b6-4a8d-44fb-81a0-374c2da47a8e + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Default values' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-default-values + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/0fcb4792-b6de-4c64-a3ea-15c12b9b3fd7.yml b/recipes/civictheme_content_generated_static/content/node/0fcb4792-b6de-4c64-a3ea-15c12b9b3fd7.yml new file mode 100644 index 0000000000..1f78e0b834 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/0fcb4792-b6de-4c64-a3ea-15c12b9b3fd7.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 0fcb4792-b6de-4c64-a3ea-15c12b9b3fd7 + bundle: civictheme_event + default_langcode: en + depends: + 78ccf538-7b2b-49fe-ab15-8f2c8eb894be: media + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 10. Dolor omnis optio.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-10-dolor-omnis-optio + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Minus molestias mollitia officiis qui

+

Occaecati perferendis tempore. Accusamus id praesentium quas temporibus. Consequatur expedita mollitia optio voluptas. Accusamus dolor et. Itaque necessitatibus possimus praesentium. Aut consequatur deleniti hic necessitatibus placeat rerum ut voluptas voluptatum. Aut est fuga iusto officia perferendis praesentium recusandae tenetur. Officia qui reiciendis similique sint. Animi eligendi id. At debitis dolorum eos eveniet occaecati quibusdam reiciendis voluptatibus.

+

Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur.

+

Mollitia non sunt. Animi eos

+

Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.

Cupiditate est. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3ecd0ee0-a07d-487c-8036-dca994d42d9d + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Officia officiis quos.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Laborum occaecati omnis. Eligendi possimus praesentium qui. Corrupti cupiditate eos laborum possimus quibusdam sunt temporibus. Et quos similique. Atque deserunt.' + field_c_n_thumbnail: + - + entity: 78ccf538-7b2b-49fe-ab15-8f2c8eb894be + field_c_n_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/163433db-da0c-4cbf-ac40-266b3b29228c.yml b/recipes/civictheme_content_generated_static/content/node/163433db-da0c-4cbf-ac40-266b3b29228c.yml new file mode 100644 index 0000000000..47dfc93a6a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/163433db-da0c-4cbf-ac40-266b3b29228c.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 163433db-da0c-4cbf-ac40-266b3b29228c + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Navigation card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-navigation-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 519e0bbe-313f-4988-8da4-96419aeed1d9 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_event + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/1884cbeb-9f2c-4712-a617-866aebf4918f.yml b/recipes/civictheme_content_generated_static/content/node/1884cbeb-9f2c-4712-a617-866aebf4918f.yml new file mode 100644 index 0000000000..f4a81ed5ee --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/1884cbeb-9f2c-4712-a617-866aebf4918f.yml @@ -0,0 +1,111 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 1884cbeb-9f2c-4712-a617-866aebf4918f + bundle: civictheme_page + default_langcode: en + depends: + 9ab67eb6-579a-4792-9fd5-51b046cf8873: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: lig, Ban: lar, Ban: Y, Ble: sof, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner large, Light, Background, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-large-light-background-content + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: 9ab67eb6-579a-4792-9fd5-51b046cf8873 + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9cbd136a-7898-4459-b7c9-9faeecfdeeb3 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Mollitia non sunt. Animi eos

+

Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.

Cupiditate est. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: light + field_c_n_banner_type: + - + value: large + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/1c10ab9e-949d-432d-b2a5-aa078017a2c7.yml b/recipes/civictheme_content_generated_static/content/node/1c10ab9e-949d-432d-b2a5-aa078017a2c7.yml new file mode 100644 index 0000000000..343e688e1e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/1c10ab9e-949d-432d-b2a5-aa078017a2c7.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 1c10ab9e-949d-432d-b2a5-aa078017a2c7 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, Light, Pages, View as Snippet, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-light-pages-view-snippet-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b182dc14-a120-4341-8af0-32a0589d5bb0 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Occaecati perferendis tempore. Accusamus id.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Expedita-officia-quod-recusandae.-Earum.' + title: 'Mollitia non.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Impedit-non-optio-quod-quos.' + title: 'Corrupti id.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/1cb8248b-2966-434a-8432-ba10ad5dff78.yml b/recipes/civictheme_content_generated_static/content/node/1cb8248b-2966-434a-8432-ba10ad5dff78.yml new file mode 100644 index 0000000000..db6958bc41 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/1cb8248b-2966-434a-8432-ba10ad5dff78.yml @@ -0,0 +1,312 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 1cb8248b-2966-434a-8432-ba10ad5dff78 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Map, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-map-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f363935c-a2c8-47df-b368-1ce619f0dd75 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_embed_url: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3b3523d8-84ed-4492-a3c3-2d0bfe5584d6 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_embed_url: + - + uri: 'https://www.example.com/Cumque-delectus-hic-mollitia-necessitatibus.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4e52334f-e9a9-407e-9b22-9166c829657d + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Earum perferendis sapiente.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_view_link: + - + uri: 'https://www.example.com/Est-iusto-maxime-qui-repellat.' + title: 'At cumque.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4b3c520d-8a6d-4034-a1aa-924baea92a95 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Harum id nam.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Id-impedit-maxime-minus-nam.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_view_link: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d9644cd3-84d9-4415-a4ef-16c7020bdc76 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Libero nam odio.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Culpa-debitis-nobis.-Assumenda-autem.' + title: 'Aut delectus.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 95147a74-24a0-4163-b01e-8b5860e4a4a8 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Dignissimos doloribus harum.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Debitis-delectus-et-in-non.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Dolores-eos-maxime-temporibus.-Asperiores.' + title: 'Eveniet occaecati.' + options: { } + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/1dd40c82-15c4-4200-bc8b-5b3bdbe49a7d.yml b/recipes/civictheme_content_generated_static/content/node/1dd40c82-15c4-4200-bc8b-5b3bdbe49a7d.yml new file mode 100644 index 0000000000..7ccfe437df --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/1dd40c82-15c4-4200-bc8b-5b3bdbe49a7d.yml @@ -0,0 +1,123 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 1dd40c82-15c4-4200-bc8b-5b3bdbe49a7d + bundle: civictheme_page + default_langcode: en + depends: + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Cor, Top: 3, Ver: bot, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Topics (3), Both spaces, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-topics-3-both-spaces-content + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6478d17b-f231-4a91-ba7a-e24b9dd37dfc + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Cupiditate est maiores non repellendus

+

Fuga id impedit necessitatibus soluta tempore. Accusamus eveniet iusto laborum placeat recusandae rerum. Cumque et reiciendis. Assumenda facilis molestiae placeat praesentium voluptas. Doloribus fuga hic maiores soluta tenetur. Accusamus eligendi facere laborum perferendis placeat quo repudiandae sapiente sunt. Deserunt est libero molestias reiciendis. Eveniet hic maiores provident ut voluptas. Eveniet occaecati praesentium quidem reiciendis vero. Doloribus iusto praesentium quos.

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

+

Distinctio harum praesentium quod quos

+

Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos.

Earum perferendis. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.' + field_c_n_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/1fdca8aa-648f-4e51-80c9-f87bc8b57131.yml b/recipes/civictheme_content_generated_static/content/node/1fdca8aa-648f-4e51-80c9-f87bc8b57131.yml new file mode 100644 index 0000000000..5f95038560 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/1fdca8aa-648f-4e51-80c9-f87bc8b57131.yml @@ -0,0 +1,286 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 1fdca8aa-648f-4e51-80c9-f87bc8b57131 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Next Step, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-next-step-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b67d62df-010d-4fda-9ae7-7d17d2daa761 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Eos iusto optio.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 17b2c9ef-a44c-4652-9e8c-60d4cbc81389 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Assumenda cupiditate mollitia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bc101b5d-cb3b-4a84-85fe-7f6c8c96dab7 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Excepturi laborum minus necessitatibus. Minus nam officiis sunt.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Content, Link, In molestiae occaecati.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f3a0490d-db2b-45fb-b408-3bb64033364d + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Et itaque provident rerum. Delectus dignissimos facere hic.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Dark, Content, Link, Autem consequatur expedita.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e94b0f01-a3a1-4db1-b7fb-038f68895979 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Content, Link, Vertical Space, Doloribus iusto officia.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fc95f98f-f121-48f7-ab6d-513ebdd94134 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Animi aut culpa maiores. Dignissimos dolor est laborum.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Facilis-laborum-officiis-quidem-quod.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Content, Link, Vertical Space, Deleniti mollitia quo.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/23032a72-402b-4f6f-868c-399876a02467.yml b/recipes/civictheme_content_generated_static/content/node/23032a72-402b-4f6f-868c-399876a02467.yml new file mode 100644 index 0000000000..e608935ed0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/23032a72-402b-4f6f-868c-399876a02467.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 23032a72-402b-4f6f-868c-399876a02467 + bundle: civictheme_page + default_langcode: en + depends: + 1dc694da-913b-4097-8f2b-822661c97338: media + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 04. Minus molestias mollitia.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-04-minus-molestias-mollitia + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7d7ffbc1-eb2d-463a-a226-cef01502994d + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

+

Fuga id impedit necessitatibus soluta

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

Cumque delectus. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Occaecati perferendis tempore. Accusamus id praesentium quas temporibus. Consequatur expedita mollitia optio voluptas. Accusamus dolor et. Itaque necessitatibus possimus praesentium. Aut consequatur deleniti hic necessitatibus placeat rerum ut voluptas voluptatum. Aut est fuga iusto officia perferendis praesentium recusandae tenetur. Officia qui reiciendis similique sint. Animi eligendi id. At debitis dolorum eos eveniet occaecati quibusdam reiciendis voluptatibus. Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur. Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis.' + field_c_n_thumbnail: + - + entity: 1dc694da-913b-4097-8f2b-822661c97338 + field_c_n_topics: + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/26745917-c8cb-4bb5-8750-9f202ef2a31e.yml b/recipes/civictheme_content_generated_static/content/node/26745917-c8cb-4bb5-8750-9f202ef2a31e.yml new file mode 100644 index 0000000000..570fb0bf74 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/26745917-c8cb-4bb5-8750-9f202ef2a31e.yml @@ -0,0 +1,448 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 26745917-c8cb-4bb5-8750-9f202ef2a31e + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 10, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Iframe, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-iframe-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fc0898b5-923c-4877-b11c-90b117d7138c + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fd3727ae-427b-4660-8925-3326fe3797c5 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9a759ead-b6fb-482f-8a62-15f37dfec3eb + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1371488a-f0d2-481c-a637-0474c3457500 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f0b0a58a-81fd-484b-b890-3daa2a226eb8 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 50% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 50% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: aa5c12fc-e8b4-4349-8172-2f7b0da072a4 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 50% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 50% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fa03f5c7-d1b3-4a68-832c-3e066d2e3c06 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Doloribus-iusto-officia-ut.-Culpa.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0fce3b97-fddf-47e6-be4c-e03b04d13f9f + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Blanditiis-deserunt-fuga-itaque-quo.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bca46be0-81c1-4784-8f68-0bf6712a9fdf + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d1667abf-d8ca-4088-98f4-3f5f0b8a7ba8 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/27709d78-f3c9-42f0-a8bf-515d26aefe41.yml b/recipes/civictheme_content_generated_static/content/node/27709d78-f3c9-42f0-a8bf-515d26aefe41.yml new file mode 100644 index 0000000000..9b9b90ca37 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/27709d78-f3c9-42f0-a8bf-515d26aefe41.yml @@ -0,0 +1,201 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 27709d78-f3c9-42f0-a8bf-515d26aefe41 + bundle: civictheme_page + default_langcode: en + depends: + c045b8f0-8a13-4339-a602-682aad679920: node + 8831e3f2-6411-42f6-8adc-da2fe1c52999: node +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Event reference card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-event-reference-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 69bccbec-694a-42ce-b9b1-e1c97c4efa9d + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4e729468-dd04-4117-8328-4b4fc9fae915 + bundle: civictheme_event_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: c045b8f0-8a13-4339-a602-682aad679920 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f37117c7-c384-4c19-a7d9-0962c6cc188b + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e4f87da8-a6a6-4119-8b1c-5f7687228a2f + bundle: civictheme_event_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: 8831e3f2-6411-42f6-8adc-da2fe1c52999 + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/27815c6e-ea20-4a38-becc-f772f8bab19a.yml b/recipes/civictheme_content_generated_static/content/node/27815c6e-ea20-4a38-becc-f772f8bab19a.yml new file mode 100644 index 0000000000..d33c5422bb --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/27815c6e-ea20-4a38-becc-f772f8bab19a.yml @@ -0,0 +1,1944 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 27815c6e-ea20-4a38-becc-f772f8bab19a + bundle: civictheme_page + default_langcode: en + depends: + d720b9c5-5101-4fe9-9a55-053e5fbe0391: media + bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055: node + c6d7e5fc-471b-4d67-8175-95986b13aee8: node + 55dededf-b8f0-4ec8-9f60-42e694a03e24: node + d51c0f76-62c0-4381-984d-644ec9aa73a6: node + 3a7003b8-c715-4980-9036-86de9a189bad: node + 6cde5471-c98e-434d-83b0-25426b76c3b2: node + 3b356dee-7c02-433a-8ad8-e2298a720e7f: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + db6528c7-cea8-4a4f-9574-97324f2eab7e: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term + 551b075c-af70-4521-9de7-ec5e487c40f8: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term + d034df75-23ae-4dea-bfa3-334b94b79660: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term + f2876ebf-7ba4-47c4-bf40-7a1364564b59: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term + d137be4d-e1db-47bb-86fa-0f8d5d18c9bc: media + de760691-a8bd-4bbc-b9a9-cacbed929cf9: media + b272bf9d-bd55-4a92-a0fd-b904240017a4: media + 71e0aa2b-3de8-4d67-b907-287a2e7868af: media + 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b: media + 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4: media + 9468e905-6a82-401c-93ed-9ae6b6f1cd5d: media + 1590793c-8c13-4a67-8607-dd9aef6115e7: media + def8b78a-1955-4c98-a8fd-a7f7e48dc6aa: media + a4f343aa-4d4d-4948-b6ff-9f6cab295888: media + f5615546-86c4-4d6c-8bf6-931e6079c987: media + 3c65c30d-319f-402c-9d42-dbedc799eb34: media + e51bfef1-1ca4-4bdd-b4b7-a948d9313273: media + bf0b24f1-7173-49a1-b1f3-e5ed83b6a216: media + 09d61f69-746d-42d1-9d8f-78c256e9595e: media + 9ab67eb6-579a-4792-9fd5-51b046cf8873: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 14, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Slider, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-slider-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5184c613-6e44-4437-baed-b8d16a3dcdcd + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 26185f8b-bf95-4d3a-b322-09e4c2f3ef80 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: d720b9c5-5101-4fe9-9a55-053e5fbe0391 + field_c_p_image_position: + - + value: left + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Aut delectus.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 slide Culpa debitis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 99fdbd92-6c91-44cc-a98f-8942d0dbcc4c + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0e4e105a-493a-42e7-912c-068f69fe640e + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, Dignissimos doloribus.' + field_c_p_reference: + - + entity: bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 reference slide, Debitis delectus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: eaed3e24-ff4a-490a-b2be-fb79c2236dd3 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c1332030-d2b4-4a1a-afb1-9582138f7735 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_reference: + - + entity: c6d7e5fc-471b-4d67-8175-95986b13aee8 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 reference slide, no button, Dolores eos.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bb8ba5fd-9d32-4e50-a8f0-5c24443dfd35 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d7b9f0e8-45cd-4869-aaf6-9de3868c0a8a + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, Eos iusto.' + field_c_p_reference: + - + entity: 55dededf-b8f0-4ec8-9f60-42e694a03e24 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 reference slide, Event Eveniet occaecati.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 013b7e38-366e-4a9d-bbec-3e9dfcc8232b + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b1c3a8f3-d38b-41e7-8399-3e017fb9cf74 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, In molestiae.' + field_c_p_reference: + - + entity: d51c0f76-62c0-4381-984d-644ec9aa73a6 + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 reference slide, Assumenda cupiditate.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e3fffb99-edc7-4777-8263-26b1454d6d59 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9686b5f2-3d43-437c-a12b-b067b75313d6 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_reference: + - + entity: 3a7003b8-c715-4980-9036-86de9a189bad + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 reference slide, no button, Excepturi laborum.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4d310331-68a1-4675-a507-c45d37020bb5 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a4280d72-025c-43bc-b706-ba50a452c201 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, Autem consequatur.' + field_c_p_reference: + - + entity: 6cde5471-c98e-434d-83b0-25426b76c3b2 + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 reference slide, Event Ducimus eligendi.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 93a0ca6c-5a13-436f-9537-931040533929 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 89cfc69d-2a94-4063-b24c-da15509fdc89 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Doloribus iusto officia ut. Culpa.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 3b356dee-7c02-433a-8ad8-e2298a720e7f + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Blanditiis-deserunt-fuga-itaque-quo.' + title: 'Delectus dolores.' + options: { } + - + uri: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + title: 'Animi aut.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Alias aut.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a35d843e-4227-4ace-9084-7c5e309417d3 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Dolorum eveniet libero necessitatibus odio.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: db6528c7-cea8-4a4f-9574-97324f2eab7e + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + - + uri: 'https://www.example.com/Deserunt-temporibus-voluptatibus-voluptatum.-Debitis.' + title: 'Maiores molestiae.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Facilis laborum.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d7736392-48c7-4a08-a1cf-e5dd39f72d82 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Facere id maxime nihil odio.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 551b075c-af70-4521-9de7-ec5e487c40f8 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: 'Occaecati perferendis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Non officia.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides Et itaque.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c6e086db-bace-494a-87ad-357535e7e8cc + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 78faa2a3-e812-4bbb-9e16-94ce7f9e3852 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Impedit non optio quod quos.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: d034df75-23ae-4dea-bfa3-334b94b79660 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Mollitia non.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 69fba721-457f-466c-9b18-19e764d6c92b + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Cumque delectus hic mollitia necessitatibus.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: f2876ebf-7ba4-47c4-bf40-7a1364564b59 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: 'Earum perferendis.' + options: { } + - + uri: 'https://www.example.com/Est-iusto-maxime-qui-repellat.' + title: 'At cumque.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Distinctio harum.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f30cf4f6-d924-4bf8-8bc8-02748103284b + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Harum id nam quas. Debitis.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: d137be4d-e1db-47bb-86fa-0f8d5d18c9bc + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: 'Libero nam.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Id impedit.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides, BG, Expedita officia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3a863ed9-e120-4c7e-bc90-fdbd1752fc87 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e962d337-9624-4e7f-b0b1-941e6f53a8e4 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Debitis delectus et in non.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: de760691-a8bd-4bbc-b9a9-cacbed929cf9 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + - + uri: 'https://www.example.com/Eveniet-occaecati-recusandae.-Consequatur-debitis.' + title: 'Eos iusto.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 1, Dark, image left, Aut delectus.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 94cef8d7-1983-4a6e-8530-d19aa1357b6f + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'In molestiae occaecati possimus qui.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: b272bf9d-bd55-4a92-a0fd-b904240017a4 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + title: 'Ducimus eligendi.' + options: { } + - + uri: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + title: 'Et itaque.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 2, Dark, image right, Assumenda cupiditate.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 99d3c866-0e20-4132-b6cc-e7a57ccc2104 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Doloribus iusto officia ut. Culpa.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 71e0aa2b-3de8-4d67-b907-287a2e7868af + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Blanditiis-deserunt-fuga-itaque-quo.' + title: 'Delectus dolores.' + options: { } + - + uri: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + title: 'Animi aut.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 3, Dark, image left, Alias aut.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 3 slides, BG, Culpa debitis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d8fdf605-fc00-449d-b2bb-64b2d33eb0f4 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 15799eb2-d23a-4fb5-8b17-e5dab662faf3 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Molestiae sapiente tempore. At maxime.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Eligendi-expedita-officia.-Animi-dolorum.' + title: 'Deserunt temporibus.' + options: { } + - + uri: 'https://www.example.com/Maiores-molestiae-saepe-voluptas.-Eos.' + title: 'Non officia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Dolorum eveniet.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 11ed3573-9e39-4018-aeb6-7af84e57a30f + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Dolor omnis optio repudiandae. Animi.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: 'Expedita officia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Facere id.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 65667292-982a-4f71-b68a-3fee70ff927b + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Impedit non optio quod quos.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 9468e905-6a82-401c-93ed-9ae6b6f1cd5d + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Mollitia non.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides, Vertical spacing, Facilis laborum.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 52ff7065-2f3d-4e1a-b4f9-4829a9cd86d5 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6cacaeb5-3d66-4966-a0db-318773ac780e + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 1590793c-8c13-4a67-8607-dd9aef6115e7 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 1, Dark, image left, Cumque delectus.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 74f63c15-2a87-4759-b0c6-c275afd903ad + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Asperiores atque molestias mollitia praesentium.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: def8b78a-1955-4c98-a8fd-a7f7e48dc6aa + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Atque-dolor-itaque-provident-recusandae.' + title: 'Consequatur deserunt.' + options: { } + - + uri: 'https://www.example.com/Libero-nam-odio-officiis-sapiente.' + title: 'Culpa debitis.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 2, Dark, image right, Harum id.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b877fe3f-d6b7-4d24-bea7-c2bf3a5e2e7d + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Debitis delectus et in non.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: a4f343aa-4d4d-4948-b6ff-9f6cab295888 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + - + uri: 'https://www.example.com/Eveniet-occaecati-recusandae.-Consequatur-debitis.' + title: 'Eos iusto.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 3, Dark, image left, Aut delectus.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 3 slides, Vertical spacing, Distinctio harum.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b8a0af8c-29db-4095-b56c-9a934f6f4a98 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 12ee05c3-a88f-4627-960a-31290bc4809b + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Excepturi laborum minus necessitatibus. Minus.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: f5615546-86c4-4d6c-8bf6-931e6079c987 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + title: 'Autem consequatur.' + options: { } + - + uri: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + title: 'Alias aut.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, In molestiae.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 04aecd68-e6a0-49c5-98ca-15e556733950 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 3c65c30d-319f-402c-9d42-dbedc799eb34 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: 'Deleniti mollitia.' + options: { } + - + uri: 'https://www.example.com/Animi-aut-culpa-maiores.-Dignissimos.' + title: 'Facilis laborum.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Doloribus iusto.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3d98e7d7-4e15-430a-a494-f1c6512c5880 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Molestiae sapiente tempore. At maxime.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: e51bfef1-1ca4-4bdd-b4b7-a948d9313273 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Eligendi-expedita-officia.-Animi-dolorum.' + title: 'Deserunt temporibus.' + options: { } + - + uri: 'https://www.example.com/Maiores-molestiae-saepe-voluptas.-Eos.' + title: 'Non officia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Dolorum eveniet.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides, BG, Vertical spacing, Assumenda cupiditate.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d6d5bc18-55a1-4558-920d-e8998d7c2242 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a45715e9-1411-4dad-b42c-c1110e62dbe3 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Laborum occaecati omnis. Eligendi possimus.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: bf0b24f1-7173-49a1-b1f3-e5ed83b6a216 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: 'Occaecati perferendis.' + options: { } + - + uri: 'https://www.example.com/Expedita-officia-quod-recusandae.-Earum.' + title: 'Mollitia non.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 1, Dark, image left, Dolor omnis.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9892edb7-4b12-49cc-8d01-a00a138fc5e8 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Corrupti id saepe. Blanditiis culpa.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 09d61f69-746d-42d1-9d8f-78c256e9595e + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Cupiditate-est-maiores-non-repellendus.' + title: 'Fuga id.' + options: { } + - + uri: 'https://www.example.com/Officia-officiis-quos.-Facere-harum.' + title: 'Distinctio harum.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 2, Dark, image right, Impedit non.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 71ec1268-50bb-47dc-b484-1d4cf9f9ffc3 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 9ab67eb6-579a-4792-9fd5-51b046cf8873 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 3, Dark, image left, Cumque delectus.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 3 slides, BG, Vertical spacing, Facere id.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/28053af1-4990-445e-98b9-95bb015d5dae.yml b/recipes/civictheme_content_generated_static/content/node/28053af1-4990-445e-98b9-95bb015d5dae.yml new file mode 100644 index 0000000000..7cec8ee2ef --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/28053af1-4990-445e-98b9-95bb015d5dae.yml @@ -0,0 +1,306 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 28053af1-4990-445e-98b9-95bb015d5dae + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Promo, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-promo-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9a859b26-0465-4418-b22a-a5ab1310e5b6 + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_link: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Dolorum eveniet libero.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 967e809d-7caa-48b5-8e33-14953f1d0a58 + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_link: + - + uri: 'https://www.example.com/Maiores-molestiae-saepe-voluptas.-Eos.' + title: 'Non officia.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Deserunt temporibus voluptatibus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2c484a26-0268-46be-abd7-d5944f5fa195 + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, BG, Facere id maxime.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 016776cc-d10d-40d0-892f-dc34694cad0f + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: 'Expedita officia.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, BG, Minus molestias mollitia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 10e4284d-492b-4755-8823-a60de5e613d1 + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Impedit non optio quod quos repudiandae sapiente tenetur.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Content, Vertical spacing, Mollitia non sunt.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fed04911-f9c6-4c21-89c3-115f4fd63aab + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Content, Vertical spacing, Fuga id impedit.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/28130b4e-1de0-4d3a-8f6f-14bf7905ea7c.yml b/recipes/civictheme_content_generated_static/content/node/28130b4e-1de0-4d3a-8f6f-14bf7905ea7c.yml new file mode 100644 index 0000000000..ecdc473696 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/28130b4e-1de0-4d3a-8f6f-14bf7905ea7c.yml @@ -0,0 +1,127 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 28130b4e-1de0-4d3a-8f6f-14bf7905ea7c + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited, Title, Single exposed filter' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-title-single-exposed-filter + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 56d0d1f0-a61e-4c99-84b4-33af03ed81fd + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_filters_exp: + - + value: topic + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/2bb60112-264f-4546-a8d5-bc14adb04fe6.yml b/recipes/civictheme_content_generated_static/content/node/2bb60112-264f-4546-a8d5-bc14adb04fe6.yml new file mode 100644 index 0000000000..e61ed15b92 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/2bb60112-264f-4546-a8d5-bc14adb04fe6.yml @@ -0,0 +1,366 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 2bb60112-264f-4546-a8d5-bc14adb04fe6 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 8, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Webform, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-webform-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 358a9266-5c64-4c88-8203-de6dd38a8a6c + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_test_webform_fields + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ba273878-76b8-4ed4-9bfe-35aaf3c2541e + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_enquiry + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 56c84309-b861-4f88-be6a-f4350f60fe73 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: civictheme_enquiry + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c97f03da-7e71-479c-9da7-327cdd40b813 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: civictheme_test_webform_fields + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1bf30f17-fb9a-4b6c-9690-7bc17001e400 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_feedback + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: eb5cadf8-491f-4bd7-8127-8455fc9f2d81 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_feedback + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6f695603-547f-4dc8-a252-0fdce9c08f48 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: civictheme_enquiry + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b0f8f2b7-cb65-4ed3-b306-2305e603dbd4 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: contact + default_data: '' + status: '' + open: '' + close: '' + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/2cd2c878-9d09-4703-9c8b-e39eda7b2516.yml b/recipes/civictheme_content_generated_static/content/node/2cd2c878-9d09-4703-9c8b-e39eda7b2516.yml new file mode 100644 index 0000000000..5c9c620a6e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/2cd2c878-9d09-4703-9c8b-e39eda7b2516.yml @@ -0,0 +1,201 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 2cd2c878-9d09-4703-9c8b-e39eda7b2516 + bundle: civictheme_page + default_langcode: en + depends: + b74f210b-6bdc-415b-8b39-348c3230c028: node + dfa24489-b5ee-409d-8aad-599d4b1dbace: node +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Subject reference card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-subject-reference-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c0f93d94-4e0a-4dea-bac5-fa9f43564f16 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 646f4957-8053-4b45-b5e5-f78af73f1985 + bundle: civictheme_subject_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: b74f210b-6bdc-415b-8b39-348c3230c028 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8c68ef2f-5b38-4fe1-9db6-46fb9b709fb3 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6a000e71-064b-4217-b3c6-2a028287bad2 + bundle: civictheme_subject_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: dfa24489-b5ee-409d-8aad-599d4b1dbace + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/2f36df02-0076-4048-922d-29119721c898.yml b/recipes/civictheme_content_generated_static/content/node/2f36df02-0076-4048-922d-29119721c898.yml new file mode 100644 index 0000000000..cbb0963425 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/2f36df02-0076-4048-922d-29119721c898.yml @@ -0,0 +1,112 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 2f36df02-0076-4048-922d-29119721c898 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Ani, Ver: bot, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Both spaces, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-both-spaces-content + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6dfab8f5-9e96-4444-825d-3d189ae0686c + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Facilis laborum officiis quidem quod

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

+

Eligendi expedita officia. Animi dolorum

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

Non officia. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.' + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/2f53e6f7-f63c-4314-919b-b038130c5a3c.yml b/recipes/civictheme_content_generated_static/content/node/2f53e6f7-f63c-4314-919b-b038130c5a3c.yml new file mode 100644 index 0000000000..4cfa68e59e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/2f53e6f7-f63c-4314-919b-b038130c5a3c.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 2f53e6f7-f63c-4314-919b-b038130c5a3c + bundle: civictheme_page + default_langcode: en + depends: + d137be4d-e1db-47bb-86fa-0f8d5d18c9bc: media + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 12. Doloribus iusto officia.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-12-doloribus-iusto-officia + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4e361d88-e43d-4d1d-9b6f-8193eb5cad97 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Deleniti mollitia quo repudiandae vero

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

+

Dolorum eveniet libero necessitatibus odio

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

Deserunt temporibus. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas. Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis.' + field_c_n_thumbnail: + - + entity: d137be4d-e1db-47bb-86fa-0f8d5d18c9bc + field_c_n_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/309fc8ec-87b6-4c57-9644-aa703b58cc64.yml b/recipes/civictheme_content_generated_static/content/node/309fc8ec-87b6-4c57-9644-aa703b58cc64.yml new file mode 100644 index 0000000000..ff054741fe --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/309fc8ec-87b6-4c57-9644-aa703b58cc64.yml @@ -0,0 +1,206 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 309fc8ec-87b6-4c57-9644-aa703b58cc64 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, All, View as Promo card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-all-view-promo-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7be69acb-fe81-402d-b575-4b5308a537e4 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title Light' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8493d9a5-b538-4d63-a0ed-ec9c2693fd7a + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Harum id nam quas. Debitis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: dark + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: 'Libero nam.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Automated list title Dark' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/32030cf4-b23b-49e3-ade0-878cb2fd89d0.yml b/recipes/civictheme_content_generated_static/content/node/32030cf4-b23b-49e3-ade0-878cb2fd89d0.yml new file mode 100644 index 0000000000..5ab4bd32bd --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/32030cf4-b23b-49e3-ade0-878cb2fd89d0.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 32030cf4-b23b-49e3-ade0-878cb2fd89d0 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Snippet, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-snippet-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 521201b0-67d6-4d60-9303-4bb901804d39 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Occaecati perferendis tempore. Accusamus id.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Expedita-officia-quod-recusandae.-Earum.' + title: 'Mollitia non.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Impedit-non-optio-quod-quos.' + title: 'Corrupti id.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/321ce384-5050-4cfb-a5aa-fe8890a37348.yml b/recipes/civictheme_content_generated_static/content/node/321ce384-5050-4cfb-a5aa-fe8890a37348.yml new file mode 100644 index 0000000000..908a992110 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/321ce384-5050-4cfb-a5aa-fe8890a37348.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 321ce384-5050-4cfb-a5aa-fe8890a37348 + bundle: civictheme_event + default_langcode: en + depends: + c0448d36-58b8-4cab-90d9-a873b88b5770: media + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 06. Non officia officiis.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-06-non-officia-officiis + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Dolor omnis optio repudiandae. Animi

+

Laborum occaecati omnis. Eligendi possimus praesentium qui. Corrupti cupiditate eos laborum possimus quibusdam sunt temporibus. Et quos similique. Atque deserunt dolor fuga minus mollitia quos reiciendis voluptatibus. Alias asperiores atque ducimus et expedita praesentium. Assumenda blanditiis cupiditate dignissimos maiores nam non recusandae repellendus voluptatum. Corrupti deleniti expedita nam nobis soluta. Assumenda dolorum et facere maxime necessitatibus quod recusandae ut.

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

+

Occaecati perferendis tempore. Accusamus id

+

Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur.

Impedit non. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2d27c234-89ce-45c1-a74e-df34d7275d34 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Cupiditate est maiores.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat.' + field_c_n_thumbnail: + - + entity: c0448d36-58b8-4cab-90d9-a873b88b5770 + field_c_n_topics: + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/33d261db-53ee-4d5d-acfa-620cb51a867f.yml b/recipes/civictheme_content_generated_static/content/node/33d261db-53ee-4d5d-acfa-620cb51a867f.yml new file mode 100644 index 0000000000..28f1ea5b3c --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/33d261db-53ee-4d5d-acfa-620cb51a867f.yml @@ -0,0 +1,286 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 33d261db-53ee-4d5d-acfa-620cb51a867f + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Next Step, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-next-step-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5ba83e34-f3f8-4e37-beb9-72d75a3483e8 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Eos iusto optio.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7ca13eed-627e-46b4-9ebe-31040e8a7ece + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Assumenda cupiditate mollitia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7e980efa-9123-42da-bcf3-15c9333da8b4 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Excepturi laborum minus necessitatibus. Minus nam officiis sunt.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Content, Link, In molestiae occaecati.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 13941686-c65a-4184-947b-32f98f99ea79 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Et itaque provident rerum. Delectus dignissimos facere hic.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Dark, Content, Link, Autem consequatur expedita.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e7ff241c-34d3-4717-a34a-0abcae3f0bb5 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Content, Link, Vertical Space, Doloribus iusto officia.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ed9ce80e-c9c9-4155-88ad-07ced76af1f8 + bundle: civictheme_next_step + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Animi aut culpa maiores. Dignissimos dolor est laborum.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Facilis-laborum-officiis-quidem-quod.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Content, Link, Vertical Space, Deleniti mollitia quo.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/35010308-cb58-4819-84d6-22c87d7b03d0.yml b/recipes/civictheme_content_generated_static/content/node/35010308-cb58-4819-84d6-22c87d7b03d0.yml new file mode 100644 index 0000000000..c6793cea53 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/35010308-cb58-4819-84d6-22c87d7b03d0.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 35010308-cb58-4819-84d6-22c87d7b03d0 + bundle: civictheme_event + default_langcode: en + depends: + 434236aa-1a77-474d-9a31-7305ffb3e9d5: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 07. Distinctio harum praesentium.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-07-distinctio-harum-praesentium + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Accusamus animi deleniti doloribus libero

+

Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe.

+

Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.

+

At cumque hic laborum quo

+

Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates.

Asperiores atque. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b92588e0-8584-412a-9438-adc2865fc298 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Consequatur deserunt doloribus.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Atque-dolor-itaque-provident-recusandae.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Libero-nam-odio-officiis-sapiente.' + title: 'Culpa debitis.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et.' + field_c_n_thumbnail: + - + entity: 434236aa-1a77-474d-9a31-7305ffb3e9d5 + field_c_n_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/362b3d50-d695-4353-9777-d9f019587d6d.yml b/recipes/civictheme_content_generated_static/content/node/362b3d50-d695-4353-9777-d9f019587d6d.yml new file mode 100644 index 0000000000..61618bc6ba --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/362b3d50-d695-4353-9777-d9f019587d6d.yml @@ -0,0 +1,206 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 362b3d50-d695-4353-9777-d9f019587d6d + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 2, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, All, View as Promo card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-all-view-promo-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 12dedd9d-dd15-477b-9888-d304380afe54 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title Light' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 43bfc5b7-5694-48c2-bf6c-1ba2af6d6cc3 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Harum id nam quas. Debitis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: dark + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: 'Libero nam.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Automated list title Dark' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/3a7003b8-c715-4980-9036-86de9a189bad.yml b/recipes/civictheme_content_generated_static/content/node/3a7003b8-c715-4980-9036-86de9a189bad.yml new file mode 100644 index 0000000000..5d203dbf3e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/3a7003b8-c715-4980-9036-86de9a189bad.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3a7003b8-c715-4980-9036-86de9a189bad + bundle: civictheme_page + default_langcode: en + depends: + d034df75-23ae-4dea-bfa3-334b94b79660: media + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 10. At cumque hic.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-10-cumque-hic + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 239a73ea-a8b3-43c1-bf5b-b6ce4646044e + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Atque dolor itaque provident recusandae

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

+

Libero nam odio officiis sapiente. Autem facere molestiae nobis omnis recusandae tempore. Asperiores dolor excepturi id maiores maxime officia placeat quos repellendus.

+

Culpa debitis nobis. Assumenda autem

+

Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates.

Dignissimos doloribus. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates. Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium. Asperiores.' + field_c_n_thumbnail: + - + entity: d034df75-23ae-4dea-bfa3-334b94b79660 + field_c_n_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/3af46d17-bca6-462d-8886-0a28c4ed676d.yml b/recipes/civictheme_content_generated_static/content/node/3af46d17-bca6-462d-8886-0a28c4ed676d.yml new file mode 100644 index 0000000000..53d3886116 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/3af46d17-bca6-462d-8886-0a28c4ed676d.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3af46d17-bca6-462d-8886-0a28c4ed676d + bundle: civictheme_page + default_langcode: en + depends: + a4f343aa-4d4d-4948-b6ff-9f6cab295888: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Est, Top: 1, Thu: Y, Ver: bot, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Topics (1), Thumbnail, Both spaces, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-topics-1-thumbnail-both-spaces-content + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 07b4ef1d-5cf3-443c-a2b7-5ad9a1814707 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

At cumque hic laborum quo

+

Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates.

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium

+

Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat.

Libero nam. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.' + field_c_n_thumbnail: + - + entity: a4f343aa-4d4d-4948-b6ff-9f6cab295888 + field_c_n_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/3ccbb634-5c09-4d9e-aa33-9166c0a86940.yml b/recipes/civictheme_content_generated_static/content/node/3ccbb634-5c09-4d9e-aa33-9166c0a86940.yml new file mode 100644 index 0000000000..83ab603fe1 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/3ccbb634-5c09-4d9e-aa33-9166c0a86940.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3ccbb634-5c09-4d9e-aa33-9166c0a86940 + bundle: civictheme_page + default_langcode: en + depends: + b272bf9d-bd55-4a92-a0fd-b904240017a4: media + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 14. Cupiditate est maiores.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-14-cupiditate-est-maiores + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 76db1c2c-2e26-41f1-9440-56843ee1dd6b + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Distinctio harum praesentium quod quos

+

Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos.

+

Accusamus animi deleniti doloribus libero molestiae possimus provident quo. Assumenda blanditiis qui repudiandae rerum. Deleniti excepturi harum iusto optio praesentium. Libero minus optio provident rerum temporibus tenetur voluptatibus. Doloribus eligendi necessitatibus optio praesentium. Corrupti dolores laborum maiores molestias odio officiis saepe. Deserunt nobis repellendus. Consequatur deleniti eligendi odio. Cumque deserunt dolor impedit iusto laborum nihil provident quibusdam rerum.

+

Earum perferendis sapiente sunt. Deleniti

+

Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.

Id impedit. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Fuga id impedit necessitatibus soluta tempore. Accusamus eveniet iusto laborum placeat recusandae rerum. Cumque et reiciendis. Assumenda facilis molestiae placeat praesentium voluptas. Doloribus fuga hic maiores soluta tenetur. Accusamus eligendi facere laborum perferendis placeat quo repudiandae sapiente sunt. Deserunt est libero molestias reiciendis. Eveniet hic maiores provident ut voluptas. Eveniet occaecati praesentium quidem reiciendis vero. Doloribus iusto praesentium quos. Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque.' + field_c_n_thumbnail: + - + entity: b272bf9d-bd55-4a92-a0fd-b904240017a4 + field_c_n_topics: + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/3e87346b-2c26-4b78-9ed4-7991cdd043ab.yml b/recipes/civictheme_content_generated_static/content/node/3e87346b-2c26-4b78-9ed4-7991cdd043ab.yml new file mode 100644 index 0000000000..7408950c32 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/3e87346b-2c26-4b78-9ed4-7991cdd043ab.yml @@ -0,0 +1,129 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3e87346b-2c26-4b78-9ed4-7991cdd043ab + bundle: civictheme_page + default_langcode: en + depends: + fe54cbd6-d652-47c4-9a53-d6d6c53887d4: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited, Title, Site sections' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-title-site-sections + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e37dafb6-ba4b-412c-bba1-f68e32a28b2f + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_site_sections: + - + entity: fe54cbd6-d652-47c4-9a53-d6d6c53887d4 + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/3f01ce4c-d803-4593-822b-235254c9ef29.yml b/recipes/civictheme_content_generated_static/content/node/3f01ce4c-d803-4593-822b-235254c9ef29.yml new file mode 100644 index 0000000000..b45a604145 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/3f01ce4c-d803-4593-822b-235254c9ef29.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3f01ce4c-d803-4593-822b-235254c9ef29 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, Light, Pages, View as Snippet, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-light-pages-view-snippet-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 416f06a7-2466-4f9c-8e2b-8e32cb954358 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Harum id nam quas. Debitis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_event + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: 'Libero nam.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/3faced78-8dcf-4fd7-9edc-2f60a14b2479.yml b/recipes/civictheme_content_generated_static/content/node/3faced78-8dcf-4fd7-9edc-2f60a14b2479.yml new file mode 100644 index 0000000000..e15656bfe8 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/3faced78-8dcf-4fd7-9edc-2f60a14b2479.yml @@ -0,0 +1,201 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 3faced78-8dcf-4fd7-9edc-2f60a14b2479 + bundle: civictheme_page + default_langcode: en + depends: + 52ef05da-2381-4ed4-9d9c-6e1fe69e5389: node + 23032a72-402b-4f6f-868c-399876a02467: node +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Promo reference card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-promo-reference-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7b28b415-1f60-4a8c-9309-f16d370014bc + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3c27556b-af91-4717-b86e-d0ca725b7da9 + bundle: civictheme_promo_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: 52ef05da-2381-4ed4-9d9c-6e1fe69e5389 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b33dfbba-32dd-44ae-92c8-62285d337567 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e7a31874-54ce-4b6b-bbdc-541534e1ff62 + bundle: civictheme_promo_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: 23032a72-402b-4f6f-868c-399876a02467 + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/41d42203-da13-48b4-bf95-e1a0e292805f.yml b/recipes/civictheme_content_generated_static/content/node/41d42203-da13-48b4-bf95-e1a0e292805f.yml new file mode 100644 index 0000000000..f7e6a5e10d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/41d42203-da13-48b4-bf95-e1a0e292805f.yml @@ -0,0 +1,111 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 41d42203-da13-48b4-bf95-e1a0e292805f + bundle: civictheme_page + default_langcode: en + depends: + bf0b24f1-7173-49a1-b1f3-e5ed83b6a216: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: lig, Ban: def, Ban: Y, Ble: sof, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner default, Light, Background, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-default-light-background-content + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: bf0b24f1-7173-49a1-b1f3-e5ed83b6a216 + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4705afe5-999e-4f3a-afed-bfba7123ab11 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Maiores molestiae saepe voluptas. Eos

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

Dolor omnis. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: light + field_c_n_banner_type: + - + value: default + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/41f4ec58-9df9-4d89-9ac8-cbaca4824bae.yml b/recipes/civictheme_content_generated_static/content/node/41f4ec58-9df9-4d89-9ac8-cbaca4824bae.yml new file mode 100644 index 0000000000..db582520c6 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/41f4ec58-9df9-4d89-9ac8-cbaca4824bae.yml @@ -0,0 +1,1944 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 41f4ec58-9df9-4d89-9ac8-cbaca4824bae + bundle: civictheme_page + default_langcode: en + depends: + d720b9c5-5101-4fe9-9a55-053e5fbe0391: media + bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055: node + c6d7e5fc-471b-4d67-8175-95986b13aee8: node + 55dededf-b8f0-4ec8-9f60-42e694a03e24: node + d51c0f76-62c0-4381-984d-644ec9aa73a6: node + 3a7003b8-c715-4980-9036-86de9a189bad: node + 6cde5471-c98e-434d-83b0-25426b76c3b2: node + 3b356dee-7c02-433a-8ad8-e2298a720e7f: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + db6528c7-cea8-4a4f-9574-97324f2eab7e: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term + 551b075c-af70-4521-9de7-ec5e487c40f8: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term + d034df75-23ae-4dea-bfa3-334b94b79660: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term + f2876ebf-7ba4-47c4-bf40-7a1364564b59: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term + d137be4d-e1db-47bb-86fa-0f8d5d18c9bc: media + de760691-a8bd-4bbc-b9a9-cacbed929cf9: media + b272bf9d-bd55-4a92-a0fd-b904240017a4: media + 71e0aa2b-3de8-4d67-b907-287a2e7868af: media + 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b: media + 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4: media + 9468e905-6a82-401c-93ed-9ae6b6f1cd5d: media + 1590793c-8c13-4a67-8607-dd9aef6115e7: media + def8b78a-1955-4c98-a8fd-a7f7e48dc6aa: media + a4f343aa-4d4d-4948-b6ff-9f6cab295888: media + f5615546-86c4-4d6c-8bf6-931e6079c987: media + 3c65c30d-319f-402c-9d42-dbedc799eb34: media + e51bfef1-1ca4-4bdd-b4b7-a948d9313273: media + bf0b24f1-7173-49a1-b1f3-e5ed83b6a216: media + 09d61f69-746d-42d1-9d8f-78c256e9595e: media + 9ab67eb6-579a-4792-9fd5-51b046cf8873: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 14, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Slider, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-slider-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bd902063-6391-4390-a0e8-122c214feac5 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 12f40077-3bec-4143-9213-684fd10e45e2 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: d720b9c5-5101-4fe9-9a55-053e5fbe0391 + field_c_p_image_position: + - + value: left + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Aut delectus.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 slide Culpa debitis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c8812a75-e508-4c4d-a945-1629541baad8 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9c3a069c-9c43-439d-b372-4dfe1bc28a47 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, Dignissimos doloribus.' + field_c_p_reference: + - + entity: bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 reference slide, Debitis delectus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 05e8d308-498d-4517-9693-21968669b9f3 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3b230b77-eba4-4514-963a-59d260a1b4f3 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_reference: + - + entity: c6d7e5fc-471b-4d67-8175-95986b13aee8 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 reference slide, no button, Dolores eos.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ecf2effd-9641-43d6-b631-22548495bb10 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d300af5d-4ef2-4360-8592-aeafe2113d29 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, Eos iusto.' + field_c_p_reference: + - + entity: 55dededf-b8f0-4ec8-9f60-42e694a03e24 + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 reference slide, Event Eveniet occaecati.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 41a52182-e01d-4767-8eb4-896255fc8cb7 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e91b4d7c-5764-4515-af6b-276d69d394c1 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, In molestiae.' + field_c_p_reference: + - + entity: d51c0f76-62c0-4381-984d-644ec9aa73a6 + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 reference slide, Assumenda cupiditate.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 72e4d148-5b21-4a2f-a7cc-403c4e71a97c + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4d8448a3-ca98-4450-9b33-991af4a59031 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_reference: + - + entity: 3a7003b8-c715-4980-9036-86de9a189bad + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 reference slide, no button, Excepturi laborum.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 17954735-befc-4e76-94ab-73f899ad82b5 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8f10e37e-a9e5-4ad2-b670-d229c776e882 + bundle: civictheme_slider_slide_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image_position: + - + value: right + field_c_p_link_text: + - + value: 'Reference slide, Image on right, Autem consequatur.' + field_c_p_reference: + - + entity: 6cde5471-c98e-434d-83b0-25426b76c3b2 + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 reference slide, Event Ducimus eligendi.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7293ad97-66a1-4705-9872-7ec1b9d7848d + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a1a88dbc-71e4-4aff-8370-f392b3335f48 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Doloribus iusto officia ut. Culpa.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 3b356dee-7c02-433a-8ad8-e2298a720e7f + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Blanditiis-deserunt-fuga-itaque-quo.' + title: 'Delectus dolores.' + options: { } + - + uri: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + title: 'Animi aut.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Alias aut.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 73a5a011-f990-4e8c-886b-805f29644485 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Dolorum eveniet libero necessitatibus odio.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: db6528c7-cea8-4a4f-9574-97324f2eab7e + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + - + uri: 'https://www.example.com/Deserunt-temporibus-voluptatibus-voluptatum.-Debitis.' + title: 'Maiores molestiae.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Facilis laborum.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cba2f44e-1d63-43bf-bbf1-7caba49bc319 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Facere id maxime nihil odio.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 551b075c-af70-4521-9de7-ec5e487c40f8 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: 'Occaecati perferendis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Non officia.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides Et itaque.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 18e7a5d5-7441-4172-84db-48c1f343b1a0 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 324e45ce-4ad9-463a-8532-2b2b3c10992e + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Impedit non optio quod quos.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: d034df75-23ae-4dea-bfa3-334b94b79660 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Mollitia non.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9dd10896-e31c-42d1-b665-e4217b2825a5 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Cumque delectus hic mollitia necessitatibus.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: f2876ebf-7ba4-47c4-bf40-7a1364564b59 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: 'Earum perferendis.' + options: { } + - + uri: 'https://www.example.com/Est-iusto-maxime-qui-repellat.' + title: 'At cumque.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Distinctio harum.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e82fcf4b-8088-4787-b1ec-1f5ba3683b0c + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Harum id nam quas. Debitis.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: d137be4d-e1db-47bb-86fa-0f8d5d18c9bc + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: 'Libero nam.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Id impedit.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides, BG, Expedita officia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 737a6cd0-0a1d-41bd-a164-a03007335c67 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 931dbfaa-67ea-4345-a311-bca3e9fbb4aa + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Debitis delectus et in non.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: de760691-a8bd-4bbc-b9a9-cacbed929cf9 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + - + uri: 'https://www.example.com/Eveniet-occaecati-recusandae.-Consequatur-debitis.' + title: 'Eos iusto.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 1, Dark, image left, Aut delectus.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 81337a25-cd01-4ead-96ce-b65a3febbb35 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'In molestiae occaecati possimus qui.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: b272bf9d-bd55-4a92-a0fd-b904240017a4 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + title: 'Ducimus eligendi.' + options: { } + - + uri: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + title: 'Et itaque.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 2, Dark, image right, Assumenda cupiditate.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f655de33-6357-43c3-b47a-f8e0fbe64602 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Doloribus iusto officia ut. Culpa.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 71e0aa2b-3de8-4d67-b907-287a2e7868af + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Blanditiis-deserunt-fuga-itaque-quo.' + title: 'Delectus dolores.' + options: { } + - + uri: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + title: 'Animi aut.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 3, Dark, image left, Alias aut.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 3 slides, BG, Culpa debitis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 209cb6cf-44dc-4927-b028-322295838a52 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 143ea19a-66f5-412c-827e-801a55277095 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Molestiae sapiente tempore. At maxime.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Eligendi-expedita-officia.-Animi-dolorum.' + title: 'Deserunt temporibus.' + options: { } + - + uri: 'https://www.example.com/Maiores-molestiae-saepe-voluptas.-Eos.' + title: 'Non officia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, Dolorum eveniet.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: db1c36bc-7c5b-4b12-a0fe-4daed8195e5e + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Dolor omnis optio repudiandae. Animi.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 2b33fc27-dd4a-427e-a3a2-4b3ace382ca4 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: 'Expedita officia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Facere id.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d93db541-90ad-4ce3-b02c-c9bb4bafa4b9 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Impedit non optio quod quos.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 9468e905-6a82-401c-93ed-9ae6b6f1cd5d + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Mollitia non.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides, Vertical spacing, Facilis laborum.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f033773c-5142-4ac4-95aa-723835630600 + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9ca32254-7999-42dc-948f-b82f54e42a16 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 1590793c-8c13-4a67-8607-dd9aef6115e7 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 1, Dark, image left, Cumque delectus.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 35df77b5-9e76-412d-8f0f-0e62f1f1f71b + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Asperiores atque molestias mollitia praesentium.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: def8b78a-1955-4c98-a8fd-a7f7e48dc6aa + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Atque-dolor-itaque-provident-recusandae.' + title: 'Consequatur deserunt.' + options: { } + - + uri: 'https://www.example.com/Libero-nam-odio-officiis-sapiente.' + title: 'Culpa debitis.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 2, Dark, image right, Harum id.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f62cfe9b-771a-4759-8d75-302f26cafab3 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Debitis delectus et in non.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: a4f343aa-4d4d-4948-b6ff-9f6cab295888 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + - + uri: 'https://www.example.com/Eveniet-occaecati-recusandae.-Consequatur-debitis.' + title: 'Eos iusto.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 3, Dark, image left, Aut delectus.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 3 slides, Vertical spacing, Distinctio harum.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 77b40eef-d4a9-464e-a0fa-41f081d1f4aa + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b975a884-5c20-41ca-b697-d77be2430a3c + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Excepturi laborum minus necessitatibus. Minus.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: f5615546-86c4-4d6c-8bf6-931e6079c987 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + title: 'Autem consequatur.' + options: { } + - + uri: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + title: 'Alias aut.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 1, Light, image left, In molestiae.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 531c5338-48e5-4d68-a9e0-9418f1fb8185 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 3c65c30d-319f-402c-9d42-dbedc799eb34 + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: 'Deleniti mollitia.' + options: { } + - + uri: 'https://www.example.com/Animi-aut-culpa-maiores.-Dignissimos.' + title: 'Facilis laborum.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 2, Light, image right, Doloribus iusto.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ec990652-a6b6-4df8-b4f8-2a4742f0346d + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Molestiae sapiente tempore. At maxime.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: e51bfef1-1ca4-4bdd-b4b7-a948d9313273 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Eligendi-expedita-officia.-Animi-dolorum.' + title: 'Deserunt temporibus.' + options: { } + - + uri: 'https://www.example.com/Maiores-molestiae-saepe-voluptas.-Eos.' + title: 'Non officia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Slide 3, Light, image left, Dolorum eveniet.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 3 slides, BG, Vertical spacing, Assumenda cupiditate.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4d942582-14cf-4848-b7c8-377cbf0a3f5c + bundle: civictheme_slider + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_slides: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 91a55b6b-b448-4638-bc0c-36300705b961 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Laborum occaecati omnis. Eligendi possimus.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: bf0b24f1-7173-49a1-b1f3-e5ed83b6a216 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: 'Occaecati perferendis.' + options: { } + - + uri: 'https://www.example.com/Expedita-officia-quod-recusandae.-Earum.' + title: 'Mollitia non.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 1, Dark, image left, Dolor omnis.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c73f4a8a-4130-46d3-8905-4cf6d53ab260 + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Corrupti id saepe. Blanditiis culpa.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 09d61f69-746d-42d1-9d8f-78c256e9595e + field_c_p_image_position: + - + value: right + field_c_p_links: + - + uri: 'https://www.example.com/Cupiditate-est-maiores-non-repellendus.' + title: 'Fuga id.' + options: { } + - + uri: 'https://www.example.com/Officia-officiis-quos.-Facere-harum.' + title: 'Distinctio harum.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 2, Dark, image right, Impedit non.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: be25a269-50d3-4755-8a23-1b36eef2d93f + bundle: civictheme_slider_slide + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 9ab67eb6-579a-4792-9fd5-51b046cf8873 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Slide 3, Dark, image left, Cumque delectus.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 3 slides, BG, Vertical spacing, Facere id.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/453ac83d-41c4-4dc3-89b6-32fd1f2841df.yml b/recipes/civictheme_content_generated_static/content/node/453ac83d-41c4-4dc3-89b6-32fd1f2841df.yml new file mode 100644 index 0000000000..8be4f25fe0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/453ac83d-41c4-4dc3-89b6-32fd1f2841df.yml @@ -0,0 +1,289 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 453ac83d-41c4-4dc3-89b6-32fd1f2841df + bundle: civictheme_page + default_langcode: en + depends: + 70602d7c-8746-4807-a288-32eb7fc32ef6: media + 3378938b-d96c-4291-8fbb-f04208984625: media + 51c49b4b-50a5-4610-a47d-5f27735a2ef6: media + 11b09eaa-ae94-48db-84f7-c6431a1f5e78: media + fa969696-d6c4-4e47-9b78-b1633d973c0e: media + 4b8d684d-71b5-4b32-aff7-c47f2c054cf8: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Publication card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-publication-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 83a2c875-e4fb-4b7b-87db-8d8a7ba88963 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b090bc18-4a99-4285-bd0c-9d4287931e2d + bundle: civictheme_publication_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_document: + - + entity: 70602d7c-8746-4807-a288-32eb7fc32ef6 + field_c_p_image: + - + entity: 3378938b-d96c-4291-8fbb-f04208984625 + field_c_p_summary: + - + value: 'Facilis laborum officiis quidem quod recusandae repellat repudiandae.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Animi aut culpa.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 777550df-c8d3-40d6-aa8c-0f253bc74db7 + bundle: civictheme_publication_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_document: + - + entity: 51c49b4b-50a5-4610-a47d-5f27735a2ef6 + field_c_p_summary: + - + value: 'Molestiae sapiente tempore. At maxime quas quod repellat.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'No image, Dolorum eveniet libero.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3236ad9a-e2dd-4441-86c1-5e585e3a258d + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 158565a0-ac1a-4587-8e8b-1ed7340f1992 + bundle: civictheme_publication_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_document: + - + entity: 11b09eaa-ae94-48db-84f7-c6431a1f5e78 + field_c_p_image: + - + entity: fa969696-d6c4-4e47-9b78-b1633d973c0e + field_c_p_summary: + - + value: 'Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Eligendi expedita officia.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1c24715f-df0b-4669-99ba-54c7cb567271 + bundle: civictheme_publication_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_document: + - + entity: 4b8d684d-71b5-4b32-aff7-c47f2c054cf8 + field_c_p_summary: + - + value: 'Non officia officiis quibusdam vero. Autem facilis hic.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'No image, Maiores molestiae saepe.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/49215b14-eff5-4844-b84c-e45af6ca6bee.yml b/recipes/civictheme_content_generated_static/content/node/49215b14-eff5-4844-b84c-e45af6ca6bee.yml new file mode 100644 index 0000000000..f3ba7d4190 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/49215b14-eff5-4844-b84c-e45af6ca6bee.yml @@ -0,0 +1,423 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 49215b14-eff5-4844-b84c-e45af6ca6bee + bundle: civictheme_page + default_langcode: en + depends: + 48632cac-2e8d-436d-9938-2ccdf0efa903: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term + f2b12e05-3b89-467e-9d7f-6a69164646af: media + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Promo card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-promo-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5ad02eb1-40c9-4684-809a-1d9533bdd6b7 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4ccb833b-1b9e-4424-b474-05ff80767e2b + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: 48632cac-2e8d-436d-9938-2ccdf0efa903 + field_c_p_link: + - + uri: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + title: 'Ducimus eligendi.' + options: { } + field_c_p_subtitle: + - + value: 'Assumenda cupiditate.' + field_c_p_summary: + - + value: 'In molestiae occaecati possimus qui recusandae. Animi asperiores.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eos iusto optio.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6df29c82-6cd9-4e71-8fe2-ef4f61b9a43d + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Doloribus-iusto-officia-ut.-Culpa.' + title: 'Blanditiis deserunt.' + options: { } + field_c_p_subtitle: + - + value: 'Et itaque.' + field_c_p_summary: + - + value: 'Alias aut quas ut. Assumenda consequatur dignissimos dolor.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'No image, Autem consequatur expedita.' + field_c_p_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: adfe1548-758a-42f4-bcbe-c0c8127b151b + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_subtitle: + - + value: 'Deleniti mollitia.' + field_c_p_summary: + - + value: 'Animi aut culpa maiores. Dignissimos dolor est laborum.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'No image, no link, Delectus dolores eligendi.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e51f7782-48ed-4f8b-a1c7-3b2e2c21c429 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1108b854-6980-4d92-b2e7-0d05e4e7e32f + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: f2b12e05-3b89-467e-9d7f-6a69164646af + field_c_p_link: + - + uri: 'https://www.example.com/Eligendi-expedita-officia.-Animi-dolorum.' + title: 'Deserunt temporibus.' + options: { } + field_c_p_subtitle: + - + value: 'Dolorum eveniet.' + field_c_p_summary: + - + value: 'Molestiae sapiente tempore. At maxime quas quod repellat.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Facilis laborum officiis.' + field_c_p_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3bc79e7f-0090-4b3e-adbc-d5f69f442ad4 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + field_c_p_subtitle: + - + value: 'Non officia.' + field_c_p_summary: + - + value: 'Facere id maxime nihil odio perferendis repellendus voluptas.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'No image, Maiores molestiae saepe.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6a994175-a382-4dc0-8549-4a3996f0ff33 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_subtitle: + - + value: 'Occaecati perferendis.' + field_c_p_summary: + - + value: 'Expedita officia quod recusandae. Earum expedita maiores molestiae.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'No image, no link, Minus molestias mollitia.' + field_c_p_topics: + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/4cf4e203-a69b-405f-b487-d06824952e1f.yml b/recipes/civictheme_content_generated_static/content/node/4cf4e203-a69b-405f-b487-d06824952e1f.yml new file mode 100644 index 0000000000..e7521c4cc3 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/4cf4e203-a69b-405f-b487-d06824952e1f.yml @@ -0,0 +1,124 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 4cf4e203-a69b-405f-b487-d06824952e1f + bundle: civictheme_page + default_langcode: en + depends: + f5615546-86c4-4d6c-8bf6-931e6079c987: media + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Cul, Top: 1, Thu: Y, Ver: bot, Sho: Y, Cus: 202, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Topics (1), Thumbnail, Both spaces, Content, Show Last Updated Date, Not Custom Date' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-topics-1-thumbnail-both-spaces-content-show-last-updated-date-not-custom-date + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8d38670b-78a0-4212-b08c-04e508960755 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_custom_last_updated: + - + value: '2022-07-01' + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae odio omnis sunt voluptatibus. Animi cumque officia omnis possimus quidem reiciendis tenetur. Asperiores delectus impedit molestias mollitia quas quos temporibus. Aut dolores doloribus ducimus nobis non praesentium saepe sint soluta. Dolor eveniet odio quidem quo sunt temporibus voluptatibus.' + field_c_n_thumbnail: + - + entity: f5615546-86c4-4d6c-8bf6-931e6079c987 + field_c_n_topics: + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/4fec9451-baa9-42a1-8213-3a539182678e.yml b/recipes/civictheme_content_generated_static/content/node/4fec9451-baa9-42a1-8213-3a539182678e.yml new file mode 100644 index 0000000000..187b2a8c31 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/4fec9451-baa9-42a1-8213-3a539182678e.yml @@ -0,0 +1,112 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 4fec9451-baa9-42a1-8213-3a539182678e + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Duc, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-content + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 84adcefa-241f-4bef-ab41-b17344d72548 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Autem consequatur expedita facere laborum

+

Et itaque provident rerum. Delectus dignissimos facere hic id laborum maiores molestias quo. Atque culpa delectus distinctio itaque quo sunt tenetur voluptates. Deserunt dolores maxime molestiae. Animi atque est excepturi fuga quas soluta. Autem dignissimos harum nam voluptas. Dolor earum eveniet. Distinctio facere iusto voluptatum. Blanditiis corrupti debitis doloribus excepturi itaque quibusdam repellat soluta tenetur.

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

+

Doloribus iusto officia ut. Culpa

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

Deleniti mollitia. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.' + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/52ef05da-2381-4ed4-9d9c-6e1fe69e5389.yml b/recipes/civictheme_content_generated_static/content/node/52ef05da-2381-4ed4-9d9c-6e1fe69e5389.yml new file mode 100644 index 0000000000..3405ae01a0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/52ef05da-2381-4ed4-9d9c-6e1fe69e5389.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 52ef05da-2381-4ed4-9d9c-6e1fe69e5389 + bundle: civictheme_page + default_langcode: en + depends: + fa969696-d6c4-4e47-9b78-b1633d973c0e: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 03. Animi aut culpa.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-03-animi-aut-culpa + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: feae2922-35b0-420e-86c1-595c2dd92beb + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Eligendi expedita officia. Animi dolorum

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

+

Non officia officiis quibusdam vero

+

Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.

Laborum occaecati. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus. Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta. Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi.' + field_c_n_thumbnail: + - + entity: fa969696-d6c4-4e47-9b78-b1633d973c0e + field_c_n_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/55523df3-4940-4162-83ea-f406b1dbc39c.yml b/recipes/civictheme_content_generated_static/content/node/55523df3-4940-4162-83ea-f406b1dbc39c.yml new file mode 100644 index 0000000000..9a063991e6 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/55523df3-4940-4162-83ea-f406b1dbc39c.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 55523df3-4940-4162-83ea-f406b1dbc39c + bundle: civictheme_page + default_langcode: en + depends: + 3378938b-d96c-4291-8fbb-f04208984625: media + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 02. In molestiae occaecati.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-02-molestiae-occaecati + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d4a140f8-ec83-49ef-a166-04a6c2c5329c + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Autem consequatur expedita facere laborum

+

Et itaque provident rerum. Delectus dignissimos facere hic id laborum maiores molestias quo. Atque culpa delectus distinctio itaque quo sunt tenetur voluptates. Deserunt dolores maxime molestiae. Animi atque est excepturi fuga quas soluta. Autem dignissimos harum nam voluptas. Dolor earum eveniet. Distinctio facere iusto voluptatum. Blanditiis corrupti debitis doloribus excepturi itaque quibusdam repellat soluta tenetur.

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

+

Doloribus iusto officia ut. Culpa

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

Deleniti mollitia. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe. Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates.' + field_c_n_thumbnail: + - + entity: 3378938b-d96c-4291-8fbb-f04208984625 + field_c_n_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/55ae485b-d054-4c56-9f42-97a80538f6cb.yml b/recipes/civictheme_content_generated_static/content/node/55ae485b-d054-4c56-9f42-97a80538f6cb.yml new file mode 100644 index 0000000000..5db32261a8 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/55ae485b-d054-4c56-9f42-97a80538f6cb.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 55ae485b-d054-4c56-9f42-97a80538f6cb + bundle: civictheme_page + default_langcode: en + depends: + def8b78a-1955-4c98-a8fd-a7f7e48dc6aa: media + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 20. Consequatur deserunt doloribus.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-20-consequatur-deserunt-doloribus + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 705a1887-6a04-4b99-a4a9-c062e8969dca + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores aut doloribus dolorum id nobis tempore. Assumenda blanditiis corrupti debitis earum fuga nobis provident qui recusandae. Placeat quod tenetur. Deleniti eligendi eos sint. Culpa deserunt iusto libero officia optio praesentium tenetur. Accusamus animi deserunt fuga libero quod. Accusamus blanditiis cumque dolor id laborum placeat quibusdam similique.

+

Eveniet occaecati recusandae. Consequatur debitis

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

In molestiae. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Libero nam odio officiis sapiente. Autem facere molestiae nobis omnis recusandae tempore. Asperiores dolor excepturi id maiores maxime officia placeat quos repellendus. Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae odio omnis sunt voluptatibus. Animi cumque officia omnis possimus quidem reiciendis tenetur. Asperiores delectus impedit molestias mollitia quas quos temporibus. Aut dolores doloribus ducimus nobis non praesentium saepe sint soluta. Dolor eveniet odio quidem quo sunt temporibus voluptatibus. Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus.' + field_c_n_thumbnail: + - + entity: def8b78a-1955-4c98-a8fd-a7f7e48dc6aa + field_c_n_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/55dededf-b8f0-4ec8-9f60-42e694a03e24.yml b/recipes/civictheme_content_generated_static/content/node/55dededf-b8f0-4ec8-9f60-42e694a03e24.yml new file mode 100644 index 0000000000..28afd0695f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/55dededf-b8f0-4ec8-9f60-42e694a03e24.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 55dededf-b8f0-4ec8-9f60-42e694a03e24 + bundle: civictheme_event + default_langcode: en + depends: + 9ab67eb6-579a-4792-9fd5-51b046cf8873: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 03. Fuga id impedit.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-03-fuga-id-impedit + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Distinctio harum praesentium quod quos

+

Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos.

+

Accusamus animi deleniti doloribus libero molestiae possimus provident quo. Assumenda blanditiis qui repudiandae rerum. Deleniti excepturi harum iusto optio praesentium. Libero minus optio provident rerum temporibus tenetur voluptatibus. Doloribus eligendi necessitatibus optio praesentium. Corrupti dolores laborum maiores molestias odio officiis saepe. Deserunt nobis repellendus. Consequatur deleniti eligendi odio. Cumque deserunt dolor impedit iusto laborum nihil provident quibusdam rerum.

+

Earum perferendis sapiente sunt. Deleniti

+

Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.

Id impedit. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 332fa773-6e15-408a-af33-f13b24333ac2 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Asperiores atque molestias.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Harum-id-nam-quas.-Debitis.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Atque-dolor-itaque-provident-recusandae.' + title: 'Consequatur deserunt.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum.' + field_c_n_thumbnail: + - + entity: 9ab67eb6-579a-4792-9fd5-51b046cf8873 + field_c_n_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/58f7e848-8815-4848-9fba-763ff9ed5541.yml b/recipes/civictheme_content_generated_static/content/node/58f7e848-8815-4848-9fba-763ff9ed5541.yml new file mode 100644 index 0000000000..13222e954d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/58f7e848-8815-4848-9fba-763ff9ed5541.yml @@ -0,0 +1,1494 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 58f7e848-8815-4848-9fba-763ff9ed5541 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 12, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Manual list, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-manual-list-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: de6c4bd2-b628-4785-a7f5-1485ae7caf41 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 57762b20-3716-441d-aa31-455ba47f549f + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Animi aut culpa.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 1 column, 1 card' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f80cb677-4c0b-4509-8eaa-473c7ea7dfca + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_fill_width: + - + value: true + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c48018ed-ee23-4524-99c9-7175732fc214 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Facilis laborum officiis.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 1 column, 1 card, fill width' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 16f913f5-0f63-4af5-b77c-bb205a7cc613 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 79c74026-29bf-42c5-8fd1-918e23cbe350 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Dolorum eveniet libero.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 591f9189-0bfe-419e-9e90-7bfc819ccb81 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Molestiae sapiente tempore.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 06d1e09b-05a3-4e09-8018-49e3b509b097 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eligendi expedita officia.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 2 column, 3 cards' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ea776ee3-7579-4922-b4e5-c710b8a7a1f3 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_fill_width: + - + value: true + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3380a8b2-a97f-4d95-90d8-ef2ab533f157 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Deserunt temporibus voluptatibus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4974c972-9223-426c-916e-2493e75cc69e + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Maiores molestiae saepe.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c8f660d1-c702-4643-9f55-3f9ae2adc757 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Non officia officiis.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 2 column, 3 cards, fill width' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f7365df4-b7e3-4661-bf0a-938c0487a7e2 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Facere id maxime nihil odio perferendis repellendus voluptas.' + format: '' + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 06920867-ac77-4e56-bec9-0e9989061db9 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Dolor omnis optio.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d9d662f2-b67b-4607-91f9-e1957ff40c86 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Laborum occaecati omnis.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b38f1172-ed16-49c6-bf53-34d72e2ca34e + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Minus molestias mollitia.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Title, Content' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8e224c0e-9ef0-412a-b62b-ac175c8c1eee + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Occaecati perferendis tempore. Accusamus id praesentium quas temporibus.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a6175e9f-21f1-421d-a645-691190b56143 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Expedita officia quod.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c2b4c4b7-2250-423b-88a9-573fbdb0f491 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Mollitia non sunt.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d76dff21-3e0c-4ed6-befd-562b0abe6544 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Impedit non optio.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Promo card, Dark, Title, Content' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 42a4e531-e6a2-4ee8-93c2-6ac07445c0d8 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 199a890a-5e0d-46af-8e81-e9882dbb3289 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Cumque delectus hic.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3f783428-5c46-4af4-8c01-d681d1350615 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Accusamus animi deleniti.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fed90bb5-6231-4b0b-b2bf-0cb41ca57ee4 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Earum perferendis sapiente.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Cupiditate-est-maiores-non-repellendus.' + title: 'Fuga id.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Officia-officiis-quos.-Facere-harum.' + title: 'Distinctio harum.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, BG, Title, Content, Before Link, After Link' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ac5818da-0c1c-405b-8905-b05acfd1a715 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Est iusto maxime qui repellat rerum saepe tenetur.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 52951cdf-8481-4bb5-947c-5e45ed0d50fc + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Atque dolor itaque.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3044cc7f-f5aa-49bf-b75a-86bad7b959ca + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Consequatur deserunt doloribus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1b5314a4-5a03-41b3-8fb2-e0b02e756ffd + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Libero nam odio.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Harum-id-nam-quas.-Debitis.' + title: 'Asperiores atque.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Promo card, Dark, BG, Title, Content, Before Link, After Link' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ca9ef374-1df1-438e-95d6-9c2ca019f08e + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Culpa debitis nobis. Assumenda autem facilis libero non.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: aca475a9-3791-4091-83d1-b7dd867e5cab + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eveniet occaecati recusandae.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 16f56a8f-89ae-4293-9409-24e0fc7e9278 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eos iusto optio.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 55c9f1e7-4c91-45a7-a06e-a7a67c7d354a + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Assumenda cupiditate mollitia.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Aut-delectus-id-minus-molestias.' + title: 'Debitis delectus.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8c298f37-f8ef-4214-9c86-dcae5157cf52 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'In molestiae occaecati possimus qui recusandae. Animi asperiores.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4ad7b172-a36e-4b68-bc9e-401995b9d54e + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Alias aut quas.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cb303af8-cdb7-47fa-aaa1-05d2943620fa + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Doloribus iusto officia.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5f8ddd95-c8f3-4858-9b25-04b30f9b8f81 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Blanditiis deserunt fuga.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + title: 'Ducimus eligendi.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + title: 'Et itaque.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Promo card, Dark, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fd270d08-863f-4a7b-8c24-94041ba860b9 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Delectus dolores eligendi hic laborum odio officia recusandae.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cdac3059-56a9-448b-972b-5b86c3fb2fd9 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Molestiae sapiente tempore.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 36840b05-5b11-478d-94ba-e2b2eec745cd + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Deserunt temporibus voluptatibus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: dd4389b1-552d-4b52-abd6-77298fc9e7a7 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Non officia officiis.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + title: 'Animi aut.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Facilis-laborum-officiis-quidem-quod.' + title: 'Dolorum eveniet.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Snippet, Light, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b6ba0f68-9798-4218-889c-25c2d1daa41b + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c52deac1-a4a1-4179-8150-b001910e4f9e + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Mollitia non sunt.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2423a08f-6b40-4629-8307-fff5f605eb1c + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Corrupti id saepe.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2c594461-7d09-49cc-9cae-77c460543d7d + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Fuga id impedit.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: 'Expedita officia.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Snippet, Dark, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/5a6f3e29-aefa-4004-92d2-26a6f78d7aac.yml b/recipes/civictheme_content_generated_static/content/node/5a6f3e29-aefa-4004-92d2-26a6f78d7aac.yml new file mode 100644 index 0000000000..b0022afe15 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/5a6f3e29-aefa-4004-92d2-26a6f78d7aac.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 5a6f3e29-aefa-4004-92d2-26a6f78d7aac + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, Light, Pages, View as Navigation card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-light-pages-view-navigation-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cf0e163e-7ca6-4416-a637-f6c34bf09bdf + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Accusamus animi deleniti doloribus libero.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_event + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/5d270a4e-9bc6-4f3b-b3d3-c67aa18fdecb.yml b/recipes/civictheme_content_generated_static/content/node/5d270a4e-9bc6-4f3b-b3d3-c67aa18fdecb.yml new file mode 100644 index 0000000000..495fda7dce --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/5d270a4e-9bc6-4f3b-b3d3-c67aa18fdecb.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 5d270a4e-9bc6-4f3b-b3d3-c67aa18fdecb + bundle: civictheme_page + default_langcode: en + depends: + 71e0aa2b-3de8-4d67-b907-287a2e7868af: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 15. Harum id nam.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-15-harum-id-nam + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c32732ba-83c1-4e87-94ec-361cc6e97770 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Libero nam odio officiis sapiente

+

Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae odio omnis sunt voluptatibus. Animi cumque officia omnis possimus quidem reiciendis tenetur. Asperiores delectus impedit molestias mollitia quas quos temporibus. Aut dolores doloribus ducimus nobis non praesentium saepe sint soluta. Dolor eveniet odio quidem quo sunt temporibus voluptatibus.

+

Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates.

+

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

Eveniet occaecati. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Asperiores atque molestias mollitia praesentium. Accusamus assumenda eligendi in iusto non optio possimus ut voluptas. Et iusto sunt vero. Accusamus cumque mollitia rerum. At cupiditate eos possimus qui quidem similique tempore vero voluptates. Consequatur eos harum qui quos similique. Deserunt dolor itaque necessitatibus voluptatum. Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat. Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et.' + field_c_n_thumbnail: + - + entity: 71e0aa2b-3de8-4d67-b907-287a2e7868af + field_c_n_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/5eb905db-f819-4820-b12e-e8a5bb307474.yml b/recipes/civictheme_content_generated_static/content/node/5eb905db-f819-4820-b12e-e8a5bb307474.yml new file mode 100644 index 0000000000..bf2fd0bab0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/5eb905db-f819-4820-b12e-e8a5bb307474.yml @@ -0,0 +1,281 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 5eb905db-f819-4820-b12e-e8a5bb307474 + bundle: civictheme_page + default_langcode: en + depends: + 1dc694da-913b-4097-8f2b-822661c97338: media + c3b82dbd-cc88-4791-bb9e-a80ac17b373b: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Subject card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-subject-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6004df74-9dc6-4ad2-9b52-587a2f90583f + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 708a2c30-f7cc-4d36-adde-ebb1720c52d0 + bundle: civictheme_subject_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: 1dc694da-913b-4097-8f2b-822661c97338 + field_c_p_link: + - + uri: 'https://www.example.com/Earum-perferendis-sapiente-sunt.-Deleniti.' + title: 'Est iusto.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Accusamus animi deleniti.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3d67f649-7ed1-446f-ab62-0d7a76d74805 + bundle: civictheme_subject_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Id-impedit-maxime-minus-nam.' + title: 'Harum id.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'No image, At cumque hic.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b93e0ea6-3373-4d39-b737-68cbc2f036c9 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 11e91897-2777-4fc8-b6f1-65b2abf51f40 + bundle: civictheme_subject_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: c3b82dbd-cc88-4791-bb9e-a80ac17b373b + field_c_p_link: + - + uri: 'https://www.example.com/Atque-dolor-itaque-provident-recusandae.' + title: 'Consequatur deserunt.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Asperiores atque molestias.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ec2a6443-719b-4701-acaf-f6ba96575930 + bundle: civictheme_subject_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Culpa-debitis-nobis.-Assumenda-autem.' + title: 'Aut delectus.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'No image, Libero nam odio.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/642880dc-d099-411d-972c-067a0433bd56.yml b/recipes/civictheme_content_generated_static/content/node/642880dc-d099-411d-972c-067a0433bd56.yml new file mode 100644 index 0000000000..98a6d54a33 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/642880dc-d099-411d-972c-067a0433bd56.yml @@ -0,0 +1,129 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 642880dc-d099-411d-972c-067a0433bd56 + bundle: civictheme_page + default_langcode: en + depends: + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited, Title, Topics' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-title-topics + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 709e9f56-bc35-47aa-9687-d928d75c8d42 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/659471c8-de63-412f-8eff-60e39dd3e5d1.yml b/recipes/civictheme_content_generated_static/content/node/659471c8-de63-412f-8eff-60e39dd3e5d1.yml new file mode 100644 index 0000000000..b897fe2d40 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/659471c8-de63-412f-8eff-60e39dd3e5d1.yml @@ -0,0 +1,366 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 659471c8-de63-412f-8eff-60e39dd3e5d1 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 8, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Webform, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-webform-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7db26f60-6ac0-47f9-ad5a-c603c0b3d565 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_test_webform_fields + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0bffb433-27f3-485d-be5d-832acaf3c5cc + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_enquiry + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6180eecb-41b6-4e11-87df-cc7e90472c77 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: civictheme_enquiry + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: caf503a9-0378-42d0-a100-848e035cae18 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: civictheme_test_webform_fields + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f5d509da-03f2-49f6-b2ec-39cbaf4854c3 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_feedback + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 13590cc6-9b6d-408d-b81d-41e4226dce35 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_webform: + - + target_id: civictheme_feedback + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5993bad4-da6a-43fc-bc8a-45c71b075680 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: civictheme_enquiry + default_data: '' + status: '' + open: '' + close: '' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 816b0871-11bc-418a-8439-0e384962f816 + bundle: civictheme_webform + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_webform: + - + target_id: contact + default_data: '' + status: '' + open: '' + close: '' + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/6b9ee0a3-c227-4334-8dce-3c2690933e83.yml b/recipes/civictheme_content_generated_static/content/node/6b9ee0a3-c227-4334-8dce-3c2690933e83.yml new file mode 100644 index 0000000000..7a79b397d0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/6b9ee0a3-c227-4334-8dce-3c2690933e83.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 6b9ee0a3-c227-4334-8dce-3c2690933e83 + bundle: civictheme_page + default_langcode: en + depends: + 3c65c30d-319f-402c-9d42-dbedc799eb34: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: In, Top: 1, Thu: Y, Ver: bot, Sho: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Topics (1), Thumbnail, Both spaces, Content, Show Last Updated Date' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-topics-1-thumbnail-both-spaces-content-show-last-updated-date + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6bb7ef3e-780e-4801-824d-b5e66c870a31 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.' + field_c_n_thumbnail: + - + entity: 3c65c30d-319f-402c-9d42-dbedc799eb34 + field_c_n_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/6c33a7ec-9e6c-4657-817b-4eeaae795702.yml b/recipes/civictheme_content_generated_static/content/node/6c33a7ec-9e6c-4657-817b-4eeaae795702.yml new file mode 100644 index 0000000000..0d3dd68699 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/6c33a7ec-9e6c-4657-817b-4eeaae795702.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 6c33a7ec-9e6c-4657-817b-4eeaae795702 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, Light, Events, View as Promo card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-light-events-view-promo-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ddd3da1f-24b8-4f0e-a245-700d46e7e2ac + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Cupiditate est maiores non repellendus.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_event + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/6cde5471-c98e-434d-83b0-25426b76c3b2.yml b/recipes/civictheme_content_generated_static/content/node/6cde5471-c98e-434d-83b0-25426b76c3b2.yml new file mode 100644 index 0000000000..20057bd2cb --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/6cde5471-c98e-434d-83b0-25426b76c3b2.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 6cde5471-c98e-434d-83b0-25426b76c3b2 + bundle: civictheme_event + default_langcode: en + depends: + ebacfb78-235c-49bd-bb35-b8a4ebc04578: media + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 04. Libero nam odio.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-04-libero-nam-odio + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d750936e-1afc-47d8-ac64-93a847d2fec4 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Excepturi laborum minus.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + title: 'Autem consequatur.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae.' + field_c_n_thumbnail: + - + entity: ebacfb78-235c-49bd-bb35-b8a4ebc04578 + field_c_n_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/6d1d51b2-cbf2-4e12-b129-02d3be7f3905.yml b/recipes/civictheme_content_generated_static/content/node/6d1d51b2-cbf2-4e12-b129-02d3be7f3905.yml new file mode 100644 index 0000000000..202ca2cb6d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/6d1d51b2-cbf2-4e12-b129-02d3be7f3905.yml @@ -0,0 +1,111 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 6d1d51b2-cbf2-4e12-b129-02d3be7f3905 + bundle: civictheme_page + default_langcode: en + depends: + ebacfb78-235c-49bd-bb35-b8a4ebc04578: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: dar, Ban: lar, Ban: Y, Ble: sof, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner large, Light, Background, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-large-light-background-content + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: ebacfb78-235c-49bd-bb35-b8a4ebc04578 + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e7553d3f-40c3-4e37-a5f6-cb39a8587def + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Fuga id impedit necessitatibus soluta

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

Cumque delectus. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: dark + field_c_n_banner_type: + - + value: large + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/6da2069d-e92e-451c-bcf9-995ba59b5775.yml b/recipes/civictheme_content_generated_static/content/node/6da2069d-e92e-451c-bcf9-995ba59b5775.yml new file mode 100644 index 0000000000..10f4ebef20 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/6da2069d-e92e-451c-bcf9-995ba59b5775.yml @@ -0,0 +1,186 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 6da2069d-e92e-451c-bcf9-995ba59b5775 + bundle: civictheme_page + default_langcode: en + depends: + 75d10796-847a-4c23-8f48-cf6046799eeb: media + 78ccf538-7b2b-49fe-ab15-8f2c8eb894be: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: lig, Ban: lar, Ban: Y, Ble: sof, Ban: Y, Ban: 1, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner large, Light, All fields, Content, Accordion below' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-large-light-all-fields-content-accordion-below + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: 75d10796-847a-4c23-8f48-cf6046799eeb + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2ddb2029-8de1-477d-810c-f1b377cbf02e + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Doloribus iusto officia ut. Culpa

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

Deleniti mollitia. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_components_bott: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ec1f23bc-0486-4b06-a788-c1437b54fe03 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 83557d92-6a0b-4703-8440-62e87bc11d72 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Facilis laborum officiis quidem quod

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

+

Eligendi expedita officia. Animi dolorum

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

Non officia. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Animi aut culpa.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_featured_image: + - + entity: 78ccf538-7b2b-49fe-ab15-8f2c8eb894be + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: light + field_c_n_banner_type: + - + value: large + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/6ef01f59-25d9-4551-b09b-175a7c8de683.yml b/recipes/civictheme_content_generated_static/content/node/6ef01f59-25d9-4551-b09b-175a7c8de683.yml new file mode 100644 index 0000000000..fd4bcd7bfe --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/6ef01f59-25d9-4551-b09b-175a7c8de683.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 6ef01f59-25d9-4551-b09b-175a7c8de683 + bundle: civictheme_event + default_langcode: en + depends: + 1f232b36-2259-4825-b989-76ab776794c3: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 19. Id impedit maxime.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-19-id-impedit-maxime + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Asperiores atque molestias mollitia praesentium

+

Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat.

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

+

Libero nam odio officiis sapiente

+

Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae odio omnis sunt voluptatibus. Animi cumque officia omnis possimus quidem reiciendis tenetur. Asperiores delectus impedit molestias mollitia quas quos temporibus. Aut dolores doloribus ducimus nobis non praesentium saepe sint soluta. Dolor eveniet odio quidem quo sunt temporibus voluptatibus.

Debitis delectus. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 82e24a6a-ad35-4c65-8f27-dc6d98810c59 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Dolores eos maxime.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Eveniet-occaecati-recusandae.-Consequatur-debitis.' + title: 'Eos iusto.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae.' + field_c_n_thumbnail: + - + entity: 1f232b36-2259-4825-b989-76ab776794c3 + field_c_n_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/706dd8e6-76a9-4752-b584-ff6fc1075686.yml b/recipes/civictheme_content_generated_static/content/node/706dd8e6-76a9-4752-b584-ff6fc1075686.yml new file mode 100644 index 0000000000..ec59696d30 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/706dd8e6-76a9-4752-b584-ff6fc1075686.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 706dd8e6-76a9-4752-b584-ff6fc1075686 + bundle: civictheme_event + default_langcode: en + depends: + a9a587b3-2b9e-43ce-ab28-66d5e5f634a0: media + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 18. Expedita officia quod.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-18-expedita-officia-quod + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

+

Fuga id impedit necessitatibus soluta

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

Cumque delectus. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2e013c01-7953-4337-95e4-c774f3230c60 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Earum perferendis sapiente.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Est-iusto-maxime-qui-repellat.' + title: 'At cumque.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas.' + field_c_n_thumbnail: + - + entity: a9a587b3-2b9e-43ce-ab28-66d5e5f634a0 + field_c_n_topics: + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/73803b81-5668-4396-8054-7fd3327f9d47.yml b/recipes/civictheme_content_generated_static/content/node/73803b81-5668-4396-8054-7fd3327f9d47.yml new file mode 100644 index 0000000000..0aa5759152 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/73803b81-5668-4396-8054-7fd3327f9d47.yml @@ -0,0 +1,988 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 73803b81-5668-4396-8054-7fd3327f9d47 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 9, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Accordion, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-accordion-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0d2a60cd-4f34-4aa3-b220-428ef8f60f53 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 16f6d69f-e2ca-4526-8366-70bacb7e8e54 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

At cumque hic laborum quo

+

Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates.

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium

+

Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat.

Libero nam. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 1, Est iusto maxime.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4c834870-551c-4023-837d-4f638148b416 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9842d5d4-870c-4ae9-9a5c-786286a34d7c + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Culpa debitis nobis.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8417d54d-44dd-4e4f-93b1-ed8f497fb736 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, In molestiae occaecati.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6879f71a-30de-42ed-a350-f7eab062a4a8 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: true + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1656dce1-6ad3-4902-be3b-53b43be0cb7a + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Deleniti mollitia quo repudiandae vero

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

+

Dolorum eveniet libero necessitatibus odio

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

Deserunt temporibus. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, all expanded, Delectus dolores eligendi.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 27fe242c-aa9a-45f9-8eb2-9f93ad3d4e72 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Non officia officiis quibusdam vero

+

Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

+

Laborum occaecati omnis. Eligendi possimus

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

Expedita officia. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, all expanded, Maiores molestiae saepe.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fb7ba5c0-b1ab-47a0-8434-30f4c19a4166 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 036a70e2-6396-42ba-983b-aa7b347daf2d + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

+

Fuga id impedit necessitatibus soluta

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

Cumque delectus. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Mollitia non sunt.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: dc64f09f-25ce-483b-84ec-d9d658237b0e + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Earum perferendis sapiente sunt. Deleniti

+

Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.

+

At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos voluptatum. Facilis iusto libero saepe. Corrupti dignissimos distinctio facere molestiae perferendis provident similique soluta sunt. Blanditiis culpa occaecati repudiandae vero.

+

Id impedit maxime minus nam

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

Atque dolor. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, Accusamus animi deleniti.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9377c94e-3d79-426c-8fcf-bbd8c5b21fa6 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: true + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e7d58436-881e-42b2-9d1c-b78aa7d782df + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Libero nam odio officiis sapiente

+

Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae odio omnis sunt voluptatibus. Animi cumque officia omnis possimus quidem reiciendis tenetur. Asperiores delectus impedit molestias mollitia quas quos temporibus. Aut dolores doloribus ducimus nobis non praesentium saepe sint soluta. Dolor eveniet odio quidem quo sunt temporibus voluptatibus.

+

Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates.

+

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

Eveniet occaecati. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, all expanded, Consequatur deserunt doloribus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2d1a9dcd-a5d0-4148-8cce-f8f791f9adf2 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Assumenda cupiditate mollitia quos repellendus

+

In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

+

Ducimus eligendi nobis. Debitis eligendi

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

Alias aut. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, all expanded, Eos iusto optio.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8ef7b1f0-ada5-4af4-bc94-bd65f808fe52 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 64ba2c54-038c-4620-aa46-5f4f335fbdb6 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Blanditiis deserunt fuga itaque quo

+

Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis voluptatum. Atque est non optio quos repellendus voluptatibus. Autem debitis hic officia qui quod repellendus soluta voluptatibus.

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

+

Animi aut culpa maiores. Dignissimos

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

Molestiae sapiente. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Light, BG, Doloribus iusto officia.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ce04d9df-73e7-4ed1-bd35-22cad07f19ad + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Deserunt temporibus voluptatibus voluptatum. Debitis

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

+

Facere id maxime nihil odio

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

Minus molestias. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Eligendi expedita officia.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 327ad3fb-1e9b-405f-903f-1ec706637bd6 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 28ce2755-1878-4217-81e2-e5e532d00857 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Expedita officia quod recusandae. Earum

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.

+

Corrupti id saepe. Blanditiis culpa

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

Officia officiis. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Dark, BG, Occaecati perferendis tempore.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 41a74315-014c-4901-b1dd-32c3f26367da + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Cumque delectus hic mollitia necessitatibus

+

Accusamus animi deleniti doloribus libero molestiae possimus provident quo. Assumenda blanditiis qui repudiandae rerum. Deleniti excepturi harum iusto optio praesentium. Libero minus optio provident rerum temporibus tenetur voluptatibus. Doloribus eligendi necessitatibus optio praesentium. Corrupti dolores laborum maiores molestias odio officiis saepe. Deserunt nobis repellendus. Consequatur deleniti eligendi odio. Cumque deserunt dolor impedit iusto laborum nihil provident quibusdam rerum.

+

Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe.

+

Est iusto maxime qui repellat

+

At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos voluptatum. Facilis iusto libero saepe. Corrupti dignissimos distinctio facere molestiae perferendis provident similique soluta sunt. Blanditiis culpa occaecati repudiandae vero.

Harum id. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Distinctio harum praesentium.' + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bea62311-da25-40ef-9fc0-b69ffbb2b598 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bc89e1bc-13f8-4d93-a463-8654b9935b72 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Atque dolor itaque provident recusandae

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

+

Libero nam odio officiis sapiente. Autem facere molestiae nobis omnis recusandae tempore. Asperiores dolor excepturi id maiores maxime officia placeat quos repellendus.

+

Culpa debitis nobis. Assumenda autem

+

Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates.

Dignissimos doloribus. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Light, BG, Vertical spacing, Asperiores atque molestias.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 32e061ac-94de-4648-af52-4cef9309f45d + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Eveniet occaecati recusandae. Consequatur debitis

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

+

Assumenda cupiditate mollitia quos repellendus. Alias culpa earum eligendi hic nam. Necessitatibus optio perferendis quidem. Dolores eligendi impedit itaque iusto omnis repellendus tenetur. Autem dignissimos possimus sunt. At cupiditate eligendi excepturi facere maiores molestiae officia optio. Consequatur culpa dignissimos maxime similique sunt tenetur. Animi consequatur cupiditate debitis occaecati optio placeat quibusdam quod. Consequatur distinctio est facere iusto libero sapiente voluptas voluptates.

+

In molestiae occaecati possimus qui

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

Autem consequatur. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Vertical spacing, Dolores eos maxime.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4ac13b92-30c2-44c6-bfd9-a23d76e08651 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 86ed1baf-7b3c-4b15-9205-d10c24bded22 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Alias aut quas ut. Assumenda

+

Doloribus iusto officia ut. Culpa doloribus iusto nam nobis odio recusandae vero. Accusamus atque culpa in occaecati quidem quo voluptas. Autem distinctio hic praesentium sint vero. Quo similique vero. Distinctio occaecati optio possimus quas saepe voluptates. Cumque delectus eos in maiores tenetur.

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

+

Delectus dolores eligendi hic laborum

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

Facilis laborum. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Dark, BG, Vertical spacing, Et itaque provident.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8e72eb57-e5d8-4399-8dbf-58e87452bedc + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Molestiae sapiente tempore. At maxime

+

Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut.

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

+

Maiores molestiae saepe voluptas. Eos

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

Dolor omnis. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Vertical spacing, Dolorum eveniet libero.' + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/767a70d0-297d-48e9-9d01-6491b50831ea.yml b/recipes/civictheme_content_generated_static/content/node/767a70d0-297d-48e9-9d01-6491b50831ea.yml new file mode 100644 index 0000000000..19851d0239 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/767a70d0-297d-48e9-9d01-6491b50831ea.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 767a70d0-297d-48e9-9d01-6491b50831ea + bundle: civictheme_event + default_langcode: en + depends: + dbc30bcd-876e-4499-bab2-362edfb76d2a: media + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 16. Eveniet occaecati recusandae.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-16-eveniet-occaecati-recusandae + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Assumenda cupiditate mollitia quos repellendus

+

In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

+

Ducimus eligendi nobis. Debitis eligendi

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

Alias aut. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2343d08f-f2fe-48a3-b259-27077127201c + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Blanditiis deserunt fuga.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Doloribus-iusto-officia-ut.-Culpa.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: 'Deleniti mollitia.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere.' + field_c_n_thumbnail: + - + entity: dbc30bcd-876e-4499-bab2-362edfb76d2a + field_c_n_topics: + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/7aafb0f1-57c8-47a9-881e-29d2f373dfe9.yml b/recipes/civictheme_content_generated_static/content/node/7aafb0f1-57c8-47a9-881e-29d2f373dfe9.yml new file mode 100644 index 0000000000..b92ef7e299 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/7aafb0f1-57c8-47a9-881e-29d2f373dfe9.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 7aafb0f1-57c8-47a9-881e-29d2f373dfe9 + bundle: civictheme_event + default_langcode: en + depends: + ecdf9f4b-73de-4d84-9b50-7f91efd73352: media + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 08. Aut delectus id.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-08-aut-delectus-id + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Dignissimos doloribus harum nihil quos

+

Dolores eos maxime temporibus. Asperiores aut doloribus dolorum id nobis tempore. Assumenda blanditiis corrupti debitis earum fuga nobis provident qui recusandae. Placeat quod tenetur. Deleniti eligendi eos sint. Culpa deserunt iusto libero officia optio praesentium tenetur. Accusamus animi deserunt fuga libero quod. Accusamus blanditiis cumque dolor id laborum placeat quibusdam similique.

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

+

Eos iusto optio quidem similique

+

Assumenda cupiditate mollitia quos repellendus. Alias culpa earum eligendi hic nam. Necessitatibus optio perferendis quidem. Dolores eligendi impedit itaque iusto omnis repellendus tenetur. Autem dignissimos possimus sunt. At cupiditate eligendi excepturi facere maiores molestiae officia optio. Consequatur culpa dignissimos maxime similique sunt tenetur. Animi consequatur cupiditate debitis occaecati optio placeat quibusdam quod. Consequatur distinctio est facere iusto libero sapiente voluptas voluptates.

Excepturi laborum. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 40d3e20c-4112-4d1b-9aae-a4a491b0a001 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Autem consequatur expedita.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + title: 'Alias aut.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id.' + field_c_n_thumbnail: + - + entity: ecdf9f4b-73de-4d84-9b50-7f91efd73352 + field_c_n_topics: + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/7e5cf868-ebfb-4285-954d-da6200fd2fa8.yml b/recipes/civictheme_content_generated_static/content/node/7e5cf868-ebfb-4285-954d-da6200fd2fa8.yml new file mode 100644 index 0000000000..e46fd7cf7d --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/7e5cf868-ebfb-4285-954d-da6200fd2fa8.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 7e5cf868-ebfb-4285-954d-da6200fd2fa8 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Events, View as Promo card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-events-view-promo-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9b8e5c89-f99c-41dc-b62b-71d401c30a0f + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Cupiditate est maiores non repellendus.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_event + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/7ede1b03-bc51-4152-80c6-cd273404c4b7.yml b/recipes/civictheme_content_generated_static/content/node/7ede1b03-bc51-4152-80c6-cd273404c4b7.yml new file mode 100644 index 0000000000..c1a2693edc --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/7ede1b03-bc51-4152-80c6-cd273404c4b7.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 7ede1b03-bc51-4152-80c6-cd273404c4b7 + bundle: civictheme_event + default_langcode: en + depends: + dc4091c2-b7b5-4612-95b7-f8fdd9163be6: media + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 12. Dignissimos doloribus harum.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-12-dignissimos-doloribus-harum + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Eveniet occaecati recusandae. Consequatur debitis

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

+

Assumenda cupiditate mollitia quos repellendus. Alias culpa earum eligendi hic nam. Necessitatibus optio perferendis quidem. Dolores eligendi impedit itaque iusto omnis repellendus tenetur. Autem dignissimos possimus sunt. At cupiditate eligendi excepturi facere maiores molestiae officia optio. Consequatur culpa dignissimos maxime similique sunt tenetur. Animi consequatur cupiditate debitis occaecati optio placeat quibusdam quod. Consequatur distinctio est facere iusto libero sapiente voluptas voluptates.

+

In molestiae occaecati possimus qui

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

Autem consequatur. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 80de76b2-90f8-4b4d-8e78-cd3d3710df0c + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Alias aut quas.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Doloribus-iusto-officia-ut.-Culpa.' + title: 'Blanditiis deserunt.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Dolores eos maxime temporibus. Asperiores aut doloribus dolorum id nobis tempore. Assumenda blanditiis corrupti debitis earum fuga nobis provident qui.' + field_c_n_thumbnail: + - + entity: dc4091c2-b7b5-4612-95b7-f8fdd9163be6 + field_c_n_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/7fcc64ad-2e47-4695-8753-a00701d71a18.yml b/recipes/civictheme_content_generated_static/content/node/7fcc64ad-2e47-4695-8753-a00701d71a18.yml new file mode 100644 index 0000000000..216486efed --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/7fcc64ad-2e47-4695-8753-a00701d71a18.yml @@ -0,0 +1,124 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 7fcc64ad-2e47-4695-8753-a00701d71a18 + bundle: civictheme_page + default_langcode: en + depends: + e51bfef1-1ca4-4bdd-b4b7-a948d9313273: media + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Del, Top: 1, Thu: Y, Ver: bot, Sho: N, Cus: 202, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Topics (1), Thumbnail, Both spaces, Content, Uncheck Last Updated Date, Shows Custom Date' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-topics-1-thumbnail-both-spaces-content-uncheck-last-updated-date-shows-custom-date + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5a8d4714-033d-485e-a19a-739eda819fd9 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Deleniti mollitia quo repudiandae vero

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

+

Dolorum eveniet libero necessitatibus odio

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

Deserunt temporibus. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_custom_last_updated: + - + value: '2022-07-01' + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: false + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis voluptatum. Atque est non optio quos repellendus voluptatibus. Autem debitis hic officia qui quod repellendus soluta voluptatibus.' + field_c_n_thumbnail: + - + entity: e51bfef1-1ca4-4bdd-b4b7-a948d9313273 + field_c_n_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/804526fc-225c-461e-8198-09a00e1f3bd5.yml b/recipes/civictheme_content_generated_static/content/node/804526fc-225c-461e-8198-09a00e1f3bd5.yml new file mode 100644 index 0000000000..c67f401eb9 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/804526fc-225c-461e-8198-09a00e1f3bd5.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 804526fc-225c-461e-8198-09a00e1f3bd5 + bundle: civictheme_event + default_langcode: en + depends: + a3d85732-94f3-4a0c-b41b-0eb9084372e5: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 11. Accusamus animi deleniti.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-11-accusamus-animi-deleniti + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Est iusto maxime qui repellat

+

At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos voluptatum. Facilis iusto libero saepe. Corrupti dignissimos distinctio facere molestiae perferendis provident similique soluta sunt. Blanditiis culpa occaecati repudiandae vero.

+

Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates.

+

Harum id nam quas. Debitis

+

Asperiores atque molestias mollitia praesentium. Accusamus assumenda eligendi in iusto non optio possimus ut voluptas. Et iusto sunt vero. Accusamus cumque mollitia rerum. At cupiditate eos possimus qui quidem similique tempore vero voluptates. Consequatur eos harum qui quos similique. Deserunt dolor itaque necessitatibus voluptatum.

Consequatur deserunt. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 72e7635a-0157-4bf7-9189-8feebe2e67d4 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Culpa debitis nobis.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Libero-nam-odio-officiis-sapiente.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Aut-delectus-id-minus-molestias.' + title: 'Debitis delectus.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores.' + field_c_n_thumbnail: + - + entity: a3d85732-94f3-4a0c-b41b-0eb9084372e5 + field_c_n_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/8193de0a-844e-478b-997c-8b072b2d8be4.yml b/recipes/civictheme_content_generated_static/content/node/8193de0a-844e-478b-997c-8b072b2d8be4.yml new file mode 100644 index 0000000000..ead4a96001 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8193de0a-844e-478b-997c-8b072b2d8be4.yml @@ -0,0 +1,224 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8193de0a-844e-478b-997c-8b072b2d8be4 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Service card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-service-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6cbf214a-bae6-413a-9bf7-468a42e2a55b + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9b89ee9d-e35a-4aa1-bfad-4d9a22d96361 + bundle: civictheme_service_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_links: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + - + uri: 'https://www.example.com/Minus-molestias-mollitia-officiis-qui.' + title: 'Occaecati perferendis.' + options: { } + - + uri: 'https://www.example.com/Expedita-officia-quod-recusandae.-Earum.' + title: 'Mollitia non.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Facere id maxime.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 770f6552-504d-4bc6-8a96-7d174cfe0f1e + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d08fb96e-31b0-483a-817f-ba17f258728a + bundle: civictheme_service_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_links: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + - + uri: 'https://www.example.com/Fuga-id-impedit-necessitatibus-soluta.' + title: 'Officia officiis.' + options: { } + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Impedit non optio.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/8276f8f5-c66f-478a-aaf3-48191ade8a76.yml b/recipes/civictheme_content_generated_static/content/node/8276f8f5-c66f-478a-aaf3-48191ade8a76.yml new file mode 100644 index 0000000000..f5b5c55aaf --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8276f8f5-c66f-478a-aaf3-48191ade8a76.yml @@ -0,0 +1,553 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8276f8f5-c66f-478a-aaf3-48191ade8a76 + bundle: civictheme_page + default_langcode: en + depends: + 11323430-2ee9-444e-9cc3-70547ca77464: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term + 9f82d101-8522-4b0f-a046-4df56e39f92d: media + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term + f82c8bd7-bd96-4a69-826b-0f3d5c333996: media + cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Event card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-event-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 28e13f69-d69f-4c4a-bc51-eaf41be4ed65 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 54bb3c2e-369e-4577-ad7e-177bac7c8f48 + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T12:15:00' + end_value: '2026-05-30T14:30:00' + field_c_p_image: + - + entity: 11323430-2ee9-444e-9cc3-70547ca77464 + field_c_p_link: + - + uri: 'https://www.example.com/Cupiditate-est-maiores-non-repellendus.' + title: 'Fuga id.' + options: { } + field_c_p_location: + - + value: 'Location Corrupti id.' + field_c_p_summary: + - + value: 'Summary Impedit non optio quod quos repudiandae sapiente tenetur.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Mollitia non sunt.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 480d6616-0425-4eb5-a450-61c00a1189fd + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T12:15:00' + end_value: '2021-04-30T14:30:00' + field_c_p_image: + - + entity: 9f82d101-8522-4b0f-a046-4df56e39f92d + field_c_p_link: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: 'Earum perferendis.' + options: { } + field_c_p_location: + - + value: 'Location Cumque delectus.' + field_c_p_summary: + - + value: 'Summary Distinctio harum praesentium quod quos repellat tempore ut.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Same day Officia officiis quos.' + field_c_p_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 61f7a69a-686e-437b-a96d-2a2cf141b96a + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T12:15:00' + end_value: '2026-05-30T14:30:00' + field_c_p_link: + - + uri: 'https://www.example.com/Harum-id-nam-quas.-Debitis.' + title: 'Asperiores atque.' + options: { } + field_c_p_location: + - + value: 'Location Id impedit.' + field_c_p_summary: + - + value: 'Summary At cumque hic laborum quo repellat. Cumque delectus.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'No image Est iusto maxime.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d6ed248d-ee55-4d0b-8c17-2291024dac76 + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T12:15:00' + end_value: '2026-05-30T14:30:00' + field_c_p_location: + - + value: 'Location Libero nam.' + field_c_p_summary: + - + value: 'Summary Consequatur deserunt doloribus hic itaque quo quod ut.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'No image, no link Atque dolor itaque.' + field_c_p_topics: + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ec55d249-9b37-4e7b-94dd-ebe2ed30a844 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3f6fef08-dbe3-4dd5-ba53-528cd24423ed + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T02:15:00' + end_value: '2026-05-30T04:30:00' + field_c_p_image: + - + entity: f82c8bd7-bd96-4a69-826b-0f3d5c333996 + field_c_p_link: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + field_c_p_location: + - + value: 'Location Debitis delectus.' + field_c_p_summary: + - + value: 'Summary Aut delectus id minus molestias recusandae repudiandae. Animi.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Culpa debitis nobis.' + field_c_p_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4bc805b1-9988-49a2-8835-745b19a2e817 + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T02:15:00' + end_value: '2021-04-30T04:30:00' + field_c_p_image: + - + entity: cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b + field_c_p_link: + - + uri: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + title: 'Excepturi laborum.' + options: { } + field_c_p_location: + - + value: 'Location Assumenda cupiditate.' + field_c_p_summary: + - + value: 'Summary Eos iusto optio quidem similique. Alias corrupti excepturi.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Same day Eveniet occaecati recusandae.' + field_c_p_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 29e85b71-2847-457e-9cdb-152b784b86f4 + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T02:15:00' + end_value: '2026-05-30T04:30:00' + field_c_p_link: + - + uri: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + title: 'Doloribus iusto.' + options: { } + field_c_p_location: + - + value: 'Location Et itaque.' + field_c_p_summary: + - + value: 'Summary Autem consequatur expedita facere laborum placeat quibusdam. Accusamus.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'No image Ducimus eligendi nobis.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9620b240-60f2-46a4-99ab-b9f77ae47cf4 + bundle: civictheme_event_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_date_range: + - + value: '2021-04-30T02:15:00' + end_value: '2026-05-30T04:30:00' + field_c_p_location: + - + value: 'Location Deleniti mollitia.' + field_c_p_summary: + - + value: 'Summary Delectus dolores eligendi hic laborum odio officia recusandae.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'No image, no link Blanditiis deserunt fuga.' + field_c_p_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/82a48893-9047-4bc4-9e4e-cfe8b2384182.yml b/recipes/civictheme_content_generated_static/content/node/82a48893-9047-4bc4-9e4e-cfe8b2384182.yml new file mode 100644 index 0000000000..8dae361d82 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/82a48893-9047-4bc4-9e4e-cfe8b2384182.yml @@ -0,0 +1,133 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 82a48893-9047-4bc4-9e4e-cfe8b2384182 + bundle: civictheme_page + default_langcode: en + depends: + ee117b64-aeff-4d10-9e0d-f5fd535af999: taxonomy_term + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited, Title, Topics, Site sections' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-title-topics-site-sections + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5e27796c-aaae-445e-8587-8bb83a1c7944 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_site_sections: + - + entity: ee117b64-aeff-4d10-9e0d-f5fd535af999 + field_c_p_list_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/84fc6479-fd75-4f9c-ac98-fa64aad8b23f.yml b/recipes/civictheme_content_generated_static/content/node/84fc6479-fd75-4f9c-ac98-fa64aad8b23f.yml new file mode 100644 index 0000000000..3b02d76eed --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/84fc6479-fd75-4f9c-ac98-fa64aad8b23f.yml @@ -0,0 +1,312 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 84fc6479-fd75-4f9c-ac98-fa64aad8b23f + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Map, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-map-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c4acaa0e-3e4b-426b-beff-78614bf3595a + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_embed_url: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: de1d60ae-9f39-4280-821e-a632c6d58a07 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_embed_url: + - + uri: 'https://www.example.com/Cumque-delectus-hic-mollitia-necessitatibus.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5b5ceb5a-8e55-473e-93e5-d1c2ccf2be6a + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Earum perferendis sapiente.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_p_view_link: + - + uri: 'https://www.example.com/Est-iusto-maxime-qui-repellat.' + title: 'At cumque.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7b82d67a-0148-468a-9b59-9bcd939c6f17 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Harum id nam.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Id-impedit-maxime-minus-nam.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_p_view_link: + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f396db25-23b7-42b6-98a1-b1c956667d24 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Libero nam odio.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Consequatur-deserunt-doloribus-hic-itaque.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Culpa-debitis-nobis.-Assumenda-autem.' + title: 'Aut delectus.' + options: { } + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7ec6e7aa-f0ff-495e-8630-eccccd83cedf + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Dignissimos doloribus harum.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Debitis-delectus-et-in-non.' + title: '' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Dolores-eos-maxime-temporibus.-Asperiores.' + title: 'Eveniet occaecati.' + options: { } + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/8831e3f2-6411-42f6-8adc-da2fe1c52999.yml b/recipes/civictheme_content_generated_static/content/node/8831e3f2-6411-42f6-8adc-da2fe1c52999.yml new file mode 100644 index 0000000000..52dbea8a60 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8831e3f2-6411-42f6-8adc-da2fe1c52999.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8831e3f2-6411-42f6-8adc-da2fe1c52999 + bundle: civictheme_event + default_langcode: en + depends: + 09d61f69-746d-42d1-9d8f-78c256e9595e: media + 6b72fc35-5061-40e5-88c4-e4166fcd9ade: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 02. Deserunt temporibus voluptatibus.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-02-deserunt-temporibus-voluptatibus + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Non officia officiis quibusdam vero

+

Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

+

Laborum occaecati omnis. Eligendi possimus

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

Expedita officia. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c614830f-66c3-484a-b437-084473e77532 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Impedit non optio.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Mollitia-non-sunt.-Animi-eos.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit.' + field_c_n_thumbnail: + - + entity: 09d61f69-746d-42d1-9d8f-78c256e9595e + field_c_n_topics: + - + entity: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/88b4ae9e-3945-4b31-b0aa-f29fc5a092c8.yml b/recipes/civictheme_content_generated_static/content/node/88b4ae9e-3945-4b31-b0aa-f29fc5a092c8.yml new file mode 100644 index 0000000000..b098ad2ea9 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/88b4ae9e-3945-4b31-b0aa-f29fc5a092c8.yml @@ -0,0 +1,124 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 88b4ae9e-3945-4b31-b0aa-f29fc5a092c8 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Limited 6, Title' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-limited-6-title + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8ff75430-790d-4200-84e8-fa79724f4b45 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 6 + field_c_p_list_limit_type: + - + value: limited + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/8a3fef89-cad0-443a-b4e3-93e9d8a6f089.yml b/recipes/civictheme_content_generated_static/content/node/8a3fef89-cad0-443a-b4e3-93e9d8a6f089.yml new file mode 100644 index 0000000000..0afb731ee0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8a3fef89-cad0-443a-b4e3-93e9d8a6f089.yml @@ -0,0 +1,382 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8a3fef89-cad0-443a-b4e3-93e9d8a6f089 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 8, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Content, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-content-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ee1d3997-b66b-4c75-ada7-76b8223a4f4e + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Light,

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores aut doloribus dolorum id nobis tempore. Assumenda blanditiis corrupti debitis earum fuga nobis provident qui recusandae. Placeat quod tenetur. Deleniti eligendi eos sint. Culpa deserunt iusto libero officia optio praesentium tenetur. Accusamus animi deserunt fuga libero quod. Accusamus blanditiis cumque dolor id laborum placeat quibusdam similique.

+

Eveniet occaecati recusandae. Consequatur debitis

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

In molestiae. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bb97a460-284a-452f-a52e-243d2935ea6b + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Dark,

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c38ba614-eeec-424d-8809-3275dcc852a8 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Light, BG,

Delectus dolores eligendi hic laborum

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

Eligendi expedita. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 67ea2a44-3830-4287-8924-54beabd2240a + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Dark, BG,

Deserunt temporibus voluptatibus voluptatum. Debitis

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

+

Facere id maxime nihil odio

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

Minus molestias. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4db64eb5-d52d-4999-b6d6-e94c033c70a7 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Light, Vertical Spacing,

Occaecati perferendis tempore. Accusamus id

+

Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur.

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

Fuga id. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 97a9453b-f8e5-4e3b-bd18-4c093ae4bc2f + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Dark, Vertical Spacing,

Officia officiis quos. Facere harum

+

Distinctio harum praesentium quod quos repellat tempore ut voluptatum. Earum eveniet itaque vero voluptatibus. Corrupti eos facere temporibus. Deserunt eveniet id minus nihil placeat voluptatibus. Dolor earum itaque possimus tenetur vero.

+

Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos.

+

Accusamus animi deleniti doloribus libero

+

Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe.

At cumque. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8513d61c-0807-4d4d-90b0-51be1eb16dfd + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Light, BG, Vertical Spacing,

Id impedit maxime minus nam

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium. Accusamus assumenda eligendi in iusto non optio possimus ut voluptas. Et iusto sunt vero. Accusamus cumque mollitia rerum. At cupiditate eos possimus qui quidem similique tempore vero voluptates. Consequatur eos harum qui quos similique. Deserunt dolor itaque necessitatibus voluptatum.

+

Atque dolor itaque provident recusandae

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

Culpa debitis. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 069eaae6-4594-4fb0-8dc4-de73328d9dff + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Dark, BG, Vertical Spacing,

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/8bece815-e1d4-477c-a2d4-b0930c119ef1.yml b/recipes/civictheme_content_generated_static/content/node/8bece815-e1d4-477c-a2d4-b0930c119ef1.yml new file mode 100644 index 0000000000..7c6924435a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8bece815-e1d4-477c-a2d4-b0930c119ef1.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8bece815-e1d4-477c-a2d4-b0930c119ef1 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, Light, Pages, View as Navigation card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-light-pages-view-navigation-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bfd1f96e-8031-44b2-9ab9-202b76d5ac23 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Non officia officiis quibusdam vero.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Facere-id-maxime-nihil-odio.' + title: 'Dolor omnis.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/8cf34df8-3576-47c6-a7f2-2f8c433b7402.yml b/recipes/civictheme_content_generated_static/content/node/8cf34df8-3576-47c6-a7f2-2f8c433b7402.yml new file mode 100644 index 0000000000..dc68c33922 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8cf34df8-3576-47c6-a7f2-2f8c433b7402.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8cf34df8-3576-47c6-a7f2-2f8c433b7402 + bundle: civictheme_event + default_langcode: en + depends: + 9ce87d83-eb80-4430-9925-93a55af3caae: media + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 20. Assumenda cupiditate mollitia.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-20-assumenda-cupiditate-mollitia + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fbf0a1ca-056d-42cf-b72b-c1dfba43f24a + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Deleniti mollitia quo.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Animi-aut-culpa-maiores.-Dignissimos.' + title: 'Facilis laborum.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut.' + field_c_n_thumbnail: + - + entity: 9ce87d83-eb80-4430-9925-93a55af3caae + field_c_n_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/8ee45a97-0d87-4439-b0d0-5e196f3afe05.yml b/recipes/civictheme_content_generated_static/content/node/8ee45a97-0d87-4439-b0d0-5e196f3afe05.yml new file mode 100644 index 0000000000..27b7eafb79 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/8ee45a97-0d87-4439-b0d0-5e196f3afe05.yml @@ -0,0 +1,72 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 8ee45a97-0d87-4439-b0d0-5e196f3afe05 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Exc, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.' + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/92315fd2-8f8c-439e-abb4-38c55b01320f.yml b/recipes/civictheme_content_generated_static/content/node/92315fd2-8f8c-439e-abb4-38c55b01320f.yml new file mode 100644 index 0000000000..0769d5f231 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/92315fd2-8f8c-439e-abb4-38c55b01320f.yml @@ -0,0 +1,274 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 92315fd2-8f8c-439e-abb4-38c55b01320f + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Content, Quote, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-content-quote-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b4fc52c3-3e3c-457a-8292-ae11558b99ab + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Light, Content, Accusamus animi deleniti.
' + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cb078fd9-ed46-470d-9bbb-a14977e70c93 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Dark, Content, Earum perferendis sapiente.
' + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e08dbb91-a355-43f7-90e5-bee05d73b1ba + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Light, Content, Author, Est iusto maxime.atcumquehiclabor
' + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0151da4b-914b-411f-a078-537efe13d6d2 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Dark, Content, Author, Id impedit maxime.harumidnamquasde
' + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 42fd6b61-b8c0-41b4-b4db-99fe8eb8d39a + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Light, Content, Author, Vertical spacing, Asperiores atque molestias.atquedoloritaque
' + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1335705e-e3c8-442a-97dc-53ef1e4b7738 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Dark, Content, Author, Vertical spacing, Consequatur deserunt doloribus.liberonamodiooff
' + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/96b4c744-41e9-4270-a6e8-949df9cd39e1.yml b/recipes/civictheme_content_generated_static/content/node/96b4c744-41e9-4270-a6e8-949df9cd39e1.yml new file mode 100644 index 0000000000..32e45061ed --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/96b4c744-41e9-4270-a6e8-949df9cd39e1.yml @@ -0,0 +1,131 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 96b4c744-41e9-4270-a6e8-949df9cd39e1 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited, Title, Multi exposed filter' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-title-multi-exposed-filter + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2c64f6f6-4411-43d2-a542-8bb919124c8d + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_filters_exp: + - + value: topic + - + value: type + - + value: title + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/96bcac30-4ad9-437c-ab47-735851fc09c1.yml b/recipes/civictheme_content_generated_static/content/node/96bcac30-4ad9-437c-ab47-735851fc09c1.yml new file mode 100644 index 0000000000..8442dfba51 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/96bcac30-4ad9-437c-ab47-735851fc09c1.yml @@ -0,0 +1,206 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 96bcac30-4ad9-437c-ab47-735851fc09c1 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, All, View as Navigation card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-all-view-navigation-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a0c81067-f913-4a3d-b0e7-597d6e3c5ed9 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Culpa debitis nobis. Assumenda autem.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Aut-delectus-id-minus-molestias.' + title: 'Debitis delectus.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title Light' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8488d1a1-b59e-4742-aacd-10c91a2f21d2 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Eveniet occaecati recusandae. Consequatur debitis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: dark + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Eos-iusto-optio-quidem-similique.' + title: 'Assumenda cupiditate.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + title: 'Excepturi laborum.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Automated list title Dark' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/9864536c-229e-4d19-9a56-b4ddda16fe24.yml b/recipes/civictheme_content_generated_static/content/node/9864536c-229e-4d19-9a56-b4ddda16fe24.yml new file mode 100644 index 0000000000..912b45ab10 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9864536c-229e-4d19-9a56-b4ddda16fe24.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9864536c-229e-4d19-9a56-b4ddda16fe24 + bundle: civictheme_page + default_langcode: en + depends: + de760691-a8bd-4bbc-b9a9-cacbed929cf9: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 13. Maiores molestiae saepe.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-13-maiores-molestiae-saepe + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cd9ee474-3afc-41da-9c16-bdeba8cd71d5 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Laborum occaecati omnis. Eligendi possimus

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

+

Occaecati perferendis tempore. Accusamus id praesentium quas temporibus. Consequatur expedita mollitia optio voluptas. Accusamus dolor et. Itaque necessitatibus possimus praesentium. Aut consequatur deleniti hic necessitatibus placeat rerum ut voluptas voluptatum. Aut est fuga iusto officia perferendis praesentium recusandae tenetur. Officia qui reiciendis similique sint. Animi eligendi id. At debitis dolorum eos eveniet occaecati quibusdam reiciendis voluptatibus.

+

Expedita officia quod recusandae. Earum

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

Corrupti id. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum. Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur. Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi.' + field_c_n_thumbnail: + - + entity: de760691-a8bd-4bbc-b9a9-cacbed929cf9 + field_c_n_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/992a6e73-f384-41f9-8a9e-25bab59c8a33.yml b/recipes/civictheme_content_generated_static/content/node/992a6e73-f384-41f9-8a9e-25bab59c8a33.yml new file mode 100644 index 0000000000..45dcb90e10 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/992a6e73-f384-41f9-8a9e-25bab59c8a33.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 992a6e73-f384-41f9-8a9e-25bab59c8a33 + bundle: civictheme_page + default_langcode: en + depends: + 9468e905-6a82-401c-93ed-9ae6b6f1cd5d: media + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 18. Facere id maxime.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-18-facere-id-maxime + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 88ae7945-4f13-4018-ad37-50f516a0de35 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Occaecati perferendis tempore. Accusamus id

+

Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur.

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

Fuga id. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore. Laborum occaecati omnis. Eligendi possimus praesentium qui. Corrupti cupiditate eos laborum possimus quibusdam sunt temporibus. Et quos similique. Atque deserunt dolor fuga minus mollitia quos reiciendis voluptatibus. Alias asperiores atque ducimus et expedita praesentium. Assumenda blanditiis cupiditate dignissimos maiores nam non recusandae repellendus voluptatum. Corrupti deleniti expedita nam nobis soluta. Assumenda dolorum et facere maxime necessitatibus quod recusandae ut. Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus.' + field_c_n_thumbnail: + - + entity: 9468e905-6a82-401c-93ed-9ae6b6f1cd5d + field_c_n_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/9a01179f-0b73-4a1b-9815-2d91b21d3453.yml b/recipes/civictheme_content_generated_static/content/node/9a01179f-0b73-4a1b-9815-2d91b21d3453.yml new file mode 100644 index 0000000000..65f63c72c6 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9a01179f-0b73-4a1b-9815-2d91b21d3453.yml @@ -0,0 +1,274 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9a01179f-0b73-4a1b-9815-2d91b21d3453 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Content, Quote, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-content-quote-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f2751faf-d005-427d-bac6-f11c31acd1c6 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Light, Content, Accusamus animi deleniti.
' + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6f4289a6-5009-4dce-8603-af4da9398ac3 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Dark, Content, Earum perferendis sapiente.
' + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 75c60682-6d65-4b40-a418-acf50b95f24c + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Light, Content, Author, Est iusto maxime.atcumquehiclabor
' + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5242862e-bb5b-4b67-9735-6e8060e7a60e + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Dark, Content, Author, Id impedit maxime.harumidnamquasde
' + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: feb17046-c726-4ca9-8b7d-6fb23f05794c + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Light, Content, Author, Vertical spacing, Asperiores atque molestias.atquedoloritaque
' + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c74dc1fe-f5d4-457a-9cc4-c293c8d03d74 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: '
Dark, Content, Author, Vertical spacing, Consequatur deserunt doloribus.liberonamodiooff
' + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/9a884552-7f37-49be-b3b2-353fc991cfa4.yml b/recipes/civictheme_content_generated_static/content/node/9a884552-7f37-49be-b3b2-353fc991cfa4.yml new file mode 100644 index 0000000000..b59adea0b9 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9a884552-7f37-49be-b3b2-353fc991cfa4.yml @@ -0,0 +1,117 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9a884552-7f37-49be-b3b2-353fc991cfa4 + bundle: civictheme_page + default_langcode: en + depends: + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Sum: Fac, Top: 1, Ver: bot, Com: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Summary, Topics (1), Both spaces, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-summary-topics-1-both-spaces-content + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cc4d3531-26e2-4bf2-ad24-dc2b04297804 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Dolor omnis optio repudiandae. Animi

+

Laborum occaecati omnis. Eligendi possimus praesentium qui. Corrupti cupiditate eos laborum possimus quibusdam sunt temporibus. Et quos similique. Atque deserunt dolor fuga minus mollitia quos reiciendis voluptatibus. Alias asperiores atque ducimus et expedita praesentium. Assumenda blanditiis cupiditate dignissimos maiores nam non recusandae repellendus voluptatum. Corrupti deleniti expedita nam nobis soluta. Assumenda dolorum et facere maxime necessitatibus quod recusandae ut.

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

+

Occaecati perferendis tempore. Accusamus id

+

Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur.

Impedit non. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.' + field_c_n_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/9a8916b0-34ce-40fa-841a-b115a237dc5d.yml b/recipes/civictheme_content_generated_static/content/node/9a8916b0-34ce-40fa-841a-b115a237dc5d.yml new file mode 100644 index 0000000000..a9c3222fa5 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9a8916b0-34ce-40fa-841a-b115a237dc5d.yml @@ -0,0 +1,269 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9a8916b0-34ce-40fa-841a-b115a237dc5d + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 5, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Callout' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-callout + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fb678904-f6b8-41b2-972b-f2d670651b7d + bundle: civictheme_callout + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Aut delectus id minus molestias recusandae repudiandae. Animi.' + format: '' + field_c_p_links: + - + uri: 'https://www.example.com/Debitis-delectus-et-in-non.' + title: 'Dignissimos doloribus.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 link, Culpa debitis nobis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8a6e4fa3-024f-451e-9182-682eea321a06 + bundle: civictheme_callout + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic.' + format: '' + field_c_p_links: + - + uri: 'https://www.example.com/Eos-iusto-optio-quidem-similique.' + title: 'Assumenda cupiditate.' + options: { } + - + uri: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + title: 'Excepturi laborum.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 2 links, Dolores eos maxime.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 95b81433-14de-41b9-a821-6f2e76d86fc9 + bundle: civictheme_callout + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Autem consequatur expedita facere laborum placeat quibusdam. Accusamus.' + format: '' + field_c_p_links: + - + uri: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + title: 'Alias aut.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 link, Ducimus eligendi nobis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 699104ed-e1de-42fb-b7a4-6a35c5afdefa + bundle: civictheme_callout + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente.' + format: '' + field_c_p_links: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: 'Deleniti mollitia.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, 1 link, Vertical spacingDoloribus iusto officia.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 30b1fea6-f26c-4c9b-b7f7-58045a7959d2 + bundle: civictheme_callout + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Facilis laborum officiis quidem quod recusandae repellat repudiandae.' + format: '' + field_c_p_links: + - + uri: 'https://www.example.com/Dolorum-eveniet-libero-necessitatibus-odio.' + title: 'Molestiae sapiente.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, 1 link, Vertical spacingAnimi aut culpa.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/9affcfe0-6630-4d6f-9eab-0459f378051b.yml b/recipes/civictheme_content_generated_static/content/node/9affcfe0-6630-4d6f-9eab-0459f378051b.yml new file mode 100644 index 0000000000..67bf37dc2f --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9affcfe0-6630-4d6f-9eab-0459f378051b.yml @@ -0,0 +1,385 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9affcfe0-6630-4d6f-9eab-0459f378051b + bundle: civictheme_page + default_langcode: en + depends: + fb24d887-5e65-4ac2-abb3-f9d98220ddcc: media + af716da0-dff7-4bc2-b2fc-a42f603f4f9c: media + dbc30bcd-876e-4499-bab2-362edfb76d2a: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + d83dffb5-13bd-4f86-87f9-f76e3407e1d4: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term + a9a587b3-2b9e-43ce-ab28-66d5e5f634a0: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term + 1f232b36-2259-4825-b989-76ab776794c3: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Campaign, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-campaign-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bdd8c66e-dc89-4f7b-a08b-092729c6bafd + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: fb24d887-5e65-4ac2-abb3-f9d98220ddcc + field_c_p_image_position: + - + value: left + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image left, Eligendi expedita officia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 542567bf-1b36-4c91-8e80-b254caeed7a0 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: af716da0-dff7-4bc2-b2fc-a42f603f4f9c + field_c_p_image_position: + - + value: right + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image right, Deserunt temporibus voluptatibus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8397c3a2-6aed-45d1-a388-680d4db87281 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Non officia officiis quibusdam vero. Autem facilis hic.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: dbc30bcd-876e-4499-bab2-362edfb76d2a + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Facere-id-maxime-nihil-odio.' + title: 'Dolor omnis.' + options: { } + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image left, Date, Content, 2 links, 2 Topics, Maiores molestiae saepe.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bef01ca5-ec86-4e0d-8e99-1f60f0eb4093 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Expedita officia quod recusandae. Earum expedita maiores molestiae.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: d83dffb5-13bd-4f86-87f9-f76e3407e1d4 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Mollitia-non-sunt.-Animi-eos.' + title: 'Impedit non.' + options: { } + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Image left, Date, Content, 2 links, 2 Topics, Occaecati perferendis tempore.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7f0b1e87-0b3d-4d3e-b588-7c33e919f8b1 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: a9a587b3-2b9e-43ce-ab28-66d5e5f634a0 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: 'Earum perferendis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image left, Date, Content, 2 links, 2 Topics, Vertical spacing, Fuga id impedit.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a6f72a99-8694-4066-a0eb-a3ac51973e1c + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'At cumque hic laborum quo repellat. Cumque delectus.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 1f232b36-2259-4825-b989-76ab776794c3 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Id-impedit-maxime-minus-nam.' + title: 'Harum id.' + options: { } + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Image left, Date, Content, 2 links, 2 Topics, Vertical spacing, Est iusto maxime.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/9c046065-3c0a-43e9-a9f4-296bbcd89725.yml b/recipes/civictheme_content_generated_static/content/node/9c046065-3c0a-43e9-a9f4-296bbcd89725.yml new file mode 100644 index 0000000000..54aa169d54 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9c046065-3c0a-43e9-a9f4-296bbcd89725.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9c046065-3c0a-43e9-a9f4-296bbcd89725 + bundle: civictheme_event + default_langcode: en + depends: + 59d72cfa-f37d-4689-99e8-cc68f387fbb9: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 13. Delectus dolores eligendi.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-13-delectus-dolores-eligendi + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Animi aut culpa maiores. Dignissimos

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

+

Molestiae sapiente tempore. At maxime

+

Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut.

Maiores molestiae. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 89e1210d-c9ae-4aa8-a315-98b22e385fa1 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Facere id maxime.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Non-officia-officiis-quibusdam-vero.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus.' + field_c_n_thumbnail: + - + entity: 59d72cfa-f37d-4689-99e8-cc68f387fbb9 + field_c_n_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/9c362211-4240-4a6f-8a57-9f5a515b2da4.yml b/recipes/civictheme_content_generated_static/content/node/9c362211-4240-4a6f-8a57-9f5a515b2da4.yml new file mode 100644 index 0000000000..005ef2ce1a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9c362211-4240-4a6f-8a57-9f5a515b2da4.yml @@ -0,0 +1,186 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9c362211-4240-4a6f-8a57-9f5a515b2da4 + bundle: civictheme_page + default_langcode: en + depends: + 434236aa-1a77-474d-9a31-7305ffb3e9d5: media + ecdf9f4b-73de-4d84-9b50-7f91efd73352: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: dar, Ban: def, Ban: Y, Ble: sof, Ban: Y, Ban: 1, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner default, Dark, All fields, Content, Accordion below' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-default-dark-all-fields-content-accordion-below + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: 434236aa-1a77-474d-9a31-7305ffb3e9d5 + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0e667663-9852-40cb-ac6f-7e747b50cf1a + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

Eveniet occaecati. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_components_bott: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0085234d-91be-4a2d-874a-8126fc7fa656 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0ac48b8d-c5be-46e9-acf3-bbd45728ec4e + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Assumenda cupiditate mollitia quos repellendus

+

In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

+

Ducimus eligendi nobis. Debitis eligendi

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

Alias aut. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Eos iusto optio.' + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_featured_image: + - + entity: ecdf9f4b-73de-4d84-9b50-7f91efd73352 + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: dark + field_c_n_banner_type: + - + value: default + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/9e69657f-66b6-4214-81e1-51cdd933f522.yml b/recipes/civictheme_content_generated_static/content/node/9e69657f-66b6-4214-81e1-51cdd933f522.yml new file mode 100644 index 0000000000..5b64cf2378 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/9e69657f-66b6-4214-81e1-51cdd933f522.yml @@ -0,0 +1,1494 @@ +_meta: + version: '1.0' + entity_type: node + uuid: 9e69657f-66b6-4214-81e1-51cdd933f522 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 12, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Manual list, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-manual-list-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 53e0b975-5188-42d8-9246-f7461ec47bec + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 62d356d5-7247-4ee8-9b85-0e95bfd55c85 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Animi aut culpa.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 1 column, 1 card' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6a80f4c5-978b-4381-9f49-318c6f035ee7 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_fill_width: + - + value: true + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d675912d-93ff-42e1-ab37-13553c0e12d1 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Facilis laborum officiis.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 1 column, 1 card, fill width' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b53b6cdb-acb8-4ea0-bde0-beced09218c6 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fee35d4e-35ff-4671-a475-13a3a1397480 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Dolorum eveniet libero.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7c1531d8-72b4-4f7d-beed-b5d46208a9f0 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Molestiae sapiente tempore.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: fbb6cf63-547d-450f-b3e7-80672a5d1c76 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eligendi expedita officia.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 2 column, 3 cards' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4180fbce-f376-4ba0-aa6c-8888de922328 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_fill_width: + - + value: true + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2d1c7357-680c-4c56-8096-a3caff0cd0c1 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Deserunt temporibus voluptatibus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7aa44cf9-6c8d-45c4-b388-3f9c6585962f + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Maiores molestiae saepe.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 68082387-51ba-4895-bf58-19874c659e24 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Non officia officiis.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Full width, 2 column, 3 cards, fill width' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 18a79753-a134-4598-9c01-9550d455fce7 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Facere id maxime nihil odio perferendis repellendus voluptas.' + format: '' + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 57da064d-83b1-43c3-b4a6-368c8e2520a6 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Dolor omnis optio.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 938b3905-7650-4afa-9d5f-1c3b995b0fae + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Laborum occaecati omnis.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 38dce840-051d-4985-93fe-8ebfdfac9b84 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Minus molestias mollitia.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, Title, Content' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d0457699-b62e-4ab2-b065-1093fec19b4d + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Occaecati perferendis tempore. Accusamus id praesentium quas temporibus.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 67a1fa86-7d4d-4c82-b154-851b2b2ec485 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Expedita officia quod.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ecaef646-1b1a-4074-9efe-0fb75e40aca5 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Mollitia non sunt.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d6e29b43-bf3f-40a7-a9ea-0b6688f07709 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Impedit non optio.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Promo card, Dark, Title, Content' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ccabebbb-3fc5-4904-9d56-c154f750aa7f + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6bb5f2f0-2845-4921-b36c-0c21cb386b33 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Cumque delectus hic.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8510bf3c-9a24-450a-8bb0-0b8a0371f2ae + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Accusamus animi deleniti.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bc325b12-f14f-4ff8-80a4-90eaa241a52a + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Earum perferendis sapiente.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Cupiditate-est-maiores-non-repellendus.' + title: 'Fuga id.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Officia-officiis-quos.-Facere-harum.' + title: 'Distinctio harum.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, BG, Title, Content, Before Link, After Link' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 06555b73-28d8-4110-85f8-cbc95b6fe030 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Est iusto maxime qui repellat rerum saepe tenetur.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3c73aa8f-bb5f-4d13-bb3d-24bab94360de + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Atque dolor itaque.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 223aa155-9ad4-4429-ba96-b7c5c3772d66 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Consequatur deserunt doloribus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 51dbdc5d-b343-4901-b10e-343def16c8cc + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Libero nam odio.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/At-cumque-hic-laborum-quo.' + title: 'Id impedit.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Harum-id-nam-quas.-Debitis.' + title: 'Asperiores atque.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Promo card, Dark, BG, Title, Content, Before Link, After Link' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8214f088-9c9a-4c6a-bfed-128dcccf5639 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Culpa debitis nobis. Assumenda autem facilis libero non.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1ea04f0a-1e19-4221-bef8-cdb0f02cced6 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eveniet occaecati recusandae.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e1feb779-a4f6-4558-8216-1c7dff07f5f6 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Eos iusto optio.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b1c42a12-e248-4c21-b1d8-5eb6ffdfedfa + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Assumenda cupiditate mollitia.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Aut-delectus-id-minus-molestias.' + title: 'Debitis delectus.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Promo card, Light, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1624da21-cb1e-4f58-9891-e81463168732 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'In molestiae occaecati possimus qui recusandae. Animi asperiores.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b5cbbe44-4153-4d71-a03b-20e7da5b33e4 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Alias aut quas.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f27cb981-c18b-4310-b5bf-74120841a990 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Doloribus iusto officia.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 094b7d8c-4bfd-47df-a6b3-2be483ba1370 + bundle: civictheme_promo_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Blanditiis deserunt fuga.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + title: 'Ducimus eligendi.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + title: 'Et itaque.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Promo card, Dark, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8812f4bb-c013-4b52-a716-abf9ccbe4696 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Delectus dolores eligendi hic laborum odio officia recusandae.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5ed0844d-3fd7-4367-be1f-8158f56d39d7 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Molestiae sapiente tempore.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 44bc2d34-1af6-410b-832d-bfd3ba0bd4f3 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Deserunt temporibus voluptatibus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d4cdbc92-fef5-40e7-ba15-68d1481c5d02 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Non officia officiis.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + title: 'Animi aut.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Facilis-laborum-officiis-quidem-quod.' + title: 'Dolorum eveniet.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Snippet, Light, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9495218b-38a1-4330-8050-809ea8c5726a + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: eab231c0-f3af-49e2-8ab0-62e105864e58 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Mollitia non sunt.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d74e6124-1c10-4919-a2cc-599b7cea1e4b + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Corrupti id saepe.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e29f09b0-d55c-4214-aa37-ec33170b9a94 + bundle: civictheme_snippet + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_summary: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Fuga id impedit.' + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: 'Expedita officia.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Snippet, Dark, BG, Title, Content, Before Link, After Link, Vertical Spacing' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a07c400d-0e11-41d2-8166-83ca43f91044.yml b/recipes/civictheme_content_generated_static/content/node/a07c400d-0e11-41d2-8166-83ca43f91044.yml new file mode 100644 index 0000000000..750acf04e4 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a07c400d-0e11-41d2-8166-83ca43f91044.yml @@ -0,0 +1,206 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a07c400d-0e11-41d2-8166-83ca43f91044 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 2, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, All, View as Navigation card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-all-view-navigation-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 071eb4c1-1646-42a3-84d7-03cd19081634 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Culpa debitis nobis. Assumenda autem.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Aut-delectus-id-minus-molestias.' + title: 'Debitis delectus.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title Light' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: af0d8084-0f82-4cf0-8939-00ad8d8c1964 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Eveniet occaecati recusandae. Consequatur debitis.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 2 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: dark + field_c_p_list_item_view_as: + - + value: civictheme_navigation_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Eos-iusto-optio-quidem-similique.' + title: 'Assumenda cupiditate.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + title: 'Excepturi laborum.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Automated list title Dark' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a0b0bd14-27c2-4d95-b2c3-e2afd1beceb1.yml b/recipes/civictheme_content_generated_static/content/node/a0b0bd14-27c2-4d95-b2c3-e2afd1beceb1.yml new file mode 100644 index 0000000000..62d607ceaf --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a0b0bd14-27c2-4d95-b2c3-e2afd1beceb1.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a0b0bd14-27c2-4d95-b2c3-e2afd1beceb1 + bundle: civictheme_page + default_langcode: en + depends: + 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b: media + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 16. Eos iusto optio.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-16-eos-iusto-optio + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3b7eb9c8-b711-4a3c-aaa7-c79d9e997553 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Assumenda cupiditate mollitia quos repellendus. Alias culpa earum eligendi hic nam. Necessitatibus optio perferendis quidem. Dolores eligendi impedit itaque iusto omnis repellendus tenetur. Autem dignissimos possimus sunt. At cupiditate eligendi excepturi facere maiores molestiae officia optio. Consequatur culpa dignissimos maxime similique sunt tenetur. Animi consequatur cupiditate debitis occaecati optio placeat quibusdam quod. Consequatur distinctio est facere iusto libero sapiente voluptas voluptates. In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias.' + field_c_n_thumbnail: + - + entity: 2b11cf24-4747-4d7a-bc8c-a7ae8ce2ee3b + field_c_n_topics: + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a28c0f33-c804-4570-b1cf-f1d1cb47367e.yml b/recipes/civictheme_content_generated_static/content/node/a28c0f33-c804-4570-b1cf-f1d1cb47367e.yml new file mode 100644 index 0000000000..9e802a2b96 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a28c0f33-c804-4570-b1cf-f1d1cb47367e.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a28c0f33-c804-4570-b1cf-f1d1cb47367e + bundle: civictheme_page + default_langcode: en + depends: + cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 01. Atque dolor itaque.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-01-atque-dolor-itaque + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 47f8fdbd-501c-49a8-8643-bafdf5eacfa1 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus. Libero nam odio officiis sapiente. Autem facere molestiae nobis omnis recusandae tempore. Asperiores dolor excepturi id maiores maxime officia placeat quos repellendus. Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis.' + field_c_n_thumbnail: + - + entity: cf12cdd3-9a9b-4ce0-bda5-c50d3098d30b + field_c_n_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a32e07b0-6fb1-41cd-a721-e5f5cd6eef13.yml b/recipes/civictheme_content_generated_static/content/node/a32e07b0-6fb1-41cd-a721-e5f5cd6eef13.yml new file mode 100644 index 0000000000..40f8e94a01 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a32e07b0-6fb1-41cd-a721-e5f5cd6eef13.yml @@ -0,0 +1,201 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a32e07b0-6fb1-41cd-a721-e5f5cd6eef13 + bundle: civictheme_page + default_langcode: en + depends: + a28c0f33-c804-4570-b1cf-f1d1cb47367e: node + 55523df3-4940-4162-83ea-f406b1dbc39c: node +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Navigation reference card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-navigation-reference-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3ed223e1-caf0-434d-9c9c-25650cb02889 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f97cbc8a-781f-47b7-9d6e-c1efb9a6d77b + bundle: civictheme_navigation_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: a28c0f33-c804-4570-b1cf-f1d1cb47367e + field_c_p_theme: + - + value: light + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 913506da-c7c2-486c-925d-402c896316f2 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bfbb5f7a-cf6f-4d0a-b1e6-17f05929fb04 + bundle: civictheme_navigation_card_ref + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_reference: + - + entity: 55523df3-4940-4162-83ea-f406b1dbc39c + field_c_p_theme: + - + value: dark + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a5239acd-01b5-4252-b651-db1d74c6308c.yml b/recipes/civictheme_content_generated_static/content/node/a5239acd-01b5-4252-b651-db1d74c6308c.yml new file mode 100644 index 0000000000..0ac0adb1c3 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a5239acd-01b5-4252-b651-db1d74c6308c.yml @@ -0,0 +1,206 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a5239acd-01b5-4252-b651-db1d74c6308c + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 2, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, All, View as Snippet, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-all-view-snippet-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 680a64c9-1285-4b9a-b450-cacbb7ca4865 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Ducimus eligendi nobis. Debitis eligendi.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + title: 'Et itaque.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + title: 'Doloribus iusto.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title Light' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d6d9df10-2d67-4dcf-83d1-abf319446eff + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: dark + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: 'Deleniti mollitia.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Animi-aut-culpa-maiores.-Dignissimos.' + title: 'Facilis laborum.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Automated list title Dark' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a57f35ad-0fcc-4e3c-859d-d88e6defe5ae.yml b/recipes/civictheme_content_generated_static/content/node/a57f35ad-0fcc-4e3c-859d-d88e6defe5ae.yml new file mode 100644 index 0000000000..964d41df61 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a57f35ad-0fcc-4e3c-859d-d88e6defe5ae.yml @@ -0,0 +1,206 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a57f35ad-0fcc-4e3c-859d-d88e6defe5ae + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, All, View as Snippet, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-all-view-snippet-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5fe708ea-9385-4143-98d7-c81865ea174c + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Ducimus eligendi nobis. Debitis eligendi.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + title: 'Et itaque.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + title: 'Doloribus iusto.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title Light' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 89b15559-b079-43bc-9c3a-3331a598e8ab + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Blanditiis deserunt fuga itaque quo.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: dark + field_c_p_list_item_view_as: + - + value: civictheme_snippet + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + title: 'Deleniti mollitia.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Animi-aut-culpa-maiores.-Dignissimos.' + title: 'Facilis laborum.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Automated list title Dark' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/a9133ea7-feb9-439e-a28a-e939b99cd061.yml b/recipes/civictheme_content_generated_static/content/node/a9133ea7-feb9-439e-a28a-e939b99cd061.yml new file mode 100644 index 0000000000..93ec7afbc1 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/a9133ea7-feb9-439e-a28a-e939b99cd061.yml @@ -0,0 +1,323 @@ +_meta: + version: '1.0' + entity_type: node + uuid: a9133ea7-feb9-439e-a28a-e939b99cd061 + bundle: civictheme_page + default_langcode: en + depends: + b01ccf28-b786-4ff9-8a8b-5a809aa17bb9: media + 92ffe259-99f0-47d3-824a-6a649cb17034: media + fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d: media + 6c4156cb-6b4d-4467-a7a0-47a90be20291: media + 6e26b476-a047-4547-bf86-2c73dd48f843: media + 9edb4cc0-790d-48ac-9527-40d7196c9667: media + 2446bb9b-e26d-44c3-94c0-7ef6edf4a605: media + f912a51b-4148-469e-a64c-d4c0d23cf445: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Attachment, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-attachment-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 602fffa7-bfa1-4215-b7ae-86cf3b797687 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: b01ccf28-b786-4ff9-8a8b-5a809aa17bb9 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Minus molestias mollitia officiis qui. Id in molestiae.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: '1 attachment, Laborum occaecati omnis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b7630f91-0095-4209-9a7d-aea88106cd85 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 92ffe259-99f0-47d3-824a-6a649cb17034 + - + entity: fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d + - + entity: 6c4156cb-6b4d-4467-a7a0-47a90be20291 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Expedita officia quod recusandae. Earum expedita maiores molestiae.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: '3 attachments,Occaecati perferendis tempore.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2cd81935-b8b9-41d7-8466-a2b7ab5a84df + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 6e26b476-a047-4547-bf86-2c73dd48f843 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Impedit non optio quod quos repudiandae sapiente tenetur.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Vertical spacing, Mollitia non sunt.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3da43b9a-ed57-43a5-8dac-61c3d7d8087e + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 9edb4cc0-790d-48ac-9527-40d7196c9667 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Cupiditate est maiores non repellendus. Dolorum itaque maiores.' + format: '' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Vertical spacing, Corrupti id saepe.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 729b6f68-6bd0-4b5e-976b-799b71cfee28 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 2446bb9b-e26d-44c3-94c0-7ef6edf4a605 + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, BG, Vertical spacing, Fuga id impedit.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 46e14493-f78a-4a23-bbf5-9169f55a0982 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: f912a51b-4148-469e-a64c-d4c0d23cf445 + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Cumque delectus hic mollitia necessitatibus nihil nobis repellat.' + format: '' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, BG, Vertical spacing, Distinctio harum praesentium.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/aa6bc934-6cde-477b-ae4b-8be890bb09cc.yml b/recipes/civictheme_content_generated_static/content/node/aa6bc934-6cde-477b-ae4b-8be890bb09cc.yml new file mode 100644 index 0000000000..152f302c5b --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/aa6bc934-6cde-477b-ae4b-8be890bb09cc.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: aa6bc934-6cde-477b-ae4b-8be890bb09cc + bundle: civictheme_page + default_langcode: en + depends: + f2876ebf-7ba4-47c4-bf40-7a1364564b59: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 11. Dolores eos maxime.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-11-dolores-eos-maxime + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d766bda0-7b88-4cfb-aaf9-4c8687057c22 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Assumenda cupiditate mollitia quos repellendus

+

In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

+

Ducimus eligendi nobis. Debitis eligendi

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

Alias aut. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus. Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut.' + field_c_n_thumbnail: + - + entity: f2876ebf-7ba4-47c4-bf40-7a1364564b59 + field_c_n_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/aef9162f-6a2d-469f-a0e3-b4b960cc1525.yml b/recipes/civictheme_content_generated_static/content/node/aef9162f-6a2d-469f-a0e3-b4b960cc1525.yml new file mode 100644 index 0000000000..a4563a8dd0 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/aef9162f-6a2d-469f-a0e3-b4b960cc1525.yml @@ -0,0 +1,229 @@ +_meta: + version: '1.0' + entity_type: node + uuid: aef9162f-6a2d-469f-a0e3-b4b960cc1525 + bundle: civictheme_page + default_langcode: en + depends: + 9ce87d83-eb80-4430-9925-93a55af3caae: media + 2daf48b1-b1d6-4beb-ad81-e42a55efd1f0: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Com: 2, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Navigation card' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-navigation-card + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 3800f2f0-ee02-45ce-96b4-d0a296f4c9a0 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 78ff72b9-7754-40da-820e-1e726b816dd3 + bundle: civictheme_navigation_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: 9ce87d83-eb80-4430-9925-93a55af3caae + field_c_p_link: + - + uri: 'https://www.example.com/Culpa-debitis-nobis.-Assumenda-autem.' + title: 'Aut delectus.' + options: { } + field_c_p_show_image_as_icon: + - + value: false + field_c_p_summary: + - + value: 'Libero nam odio officiis sapiente. Autem facere molestiae.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Consequatur deserunt doloribus.' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f87c470f-0cc4-4ce7-a427-8ed018e62176 + bundle: civictheme_manual_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_list_column_count: + - + value: 1 + field_c_p_list_items: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 71b5c58d-2088-4a45-bb50-72b1ff8ae827 + bundle: civictheme_navigation_card + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: 2daf48b1-b1d6-4beb-ad81-e42a55efd1f0 + field_c_p_link: + - + uri: 'https://www.example.com/Dolores-eos-maxime-temporibus.-Asperiores.' + title: 'Eveniet occaecati.' + options: { } + field_c_p_show_image_as_icon: + - + value: false + field_c_p_summary: + - + value: 'Dignissimos doloribus harum nihil quos repellat saepe sapiente.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Debitis delectus et.' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/b42d02fe-791a-450a-940e-19f43948da4b.yml b/recipes/civictheme_content_generated_static/content/node/b42d02fe-791a-450a-940e-19f43948da4b.yml new file mode 100644 index 0000000000..c8f23eedd9 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/b42d02fe-791a-450a-940e-19f43948da4b.yml @@ -0,0 +1,111 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b42d02fe-791a-450a-940e-19f43948da4b + bundle: civictheme_page + default_langcode: en + depends: + 59d72cfa-f37d-4689-99e8-cc68f387fbb9: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: lig, Ban: def, Ban: Y, Ble: sof, Ban: Y, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner default, Light, Background, Content, No breadcrumb' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-default-light-background-content-no-breadcrumb + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: 59d72cfa-f37d-4689-99e8-cc68f387fbb9 + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 7d4965d4-cc49-4b80-ba9e-ae611a0da501 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Distinctio harum praesentium quod quos

+

Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos.

Earum perferendis. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_hide_breadcrumb: + - + value: true + field_c_n_banner_theme: + - + value: light + field_c_n_banner_type: + - + value: default + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/b523245f-f7d3-48ae-8974-e88fbe84f334.yml b/recipes/civictheme_content_generated_static/content/node/b523245f-f7d3-48ae-8974-e88fbe84f334.yml new file mode 100644 index 0000000000..0561829b65 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/b523245f-f7d3-48ae-8974-e88fbe84f334.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b523245f-f7d3-48ae-8974-e88fbe84f334 + bundle: civictheme_event + default_langcode: en + depends: + 75d10796-847a-4c23-8f48-cf6046799eeb: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 09. Doloribus iusto officia.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-09-doloribus-iusto-officia + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Delectus dolores eligendi hic laborum

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

Eligendi expedita. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: eb7ee259-5a3f-40b1-b9a3-f2be540e6630 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Maiores molestiae saepe.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Deserunt-temporibus-voluptatibus-voluptatum.-Debitis.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Non-officia-officiis-quibusdam-vero.' + title: 'Facere id.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat.' + field_c_n_thumbnail: + - + entity: 75d10796-847a-4c23-8f48-cf6046799eeb + field_c_n_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/b5e14848-ec5e-4456-8e6b-3a9f64b2c487.yml b/recipes/civictheme_content_generated_static/content/node/b5e14848-ec5e-4456-8e6b-3a9f64b2c487.yml new file mode 100644 index 0000000000..1e533fbc25 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/b5e14848-ec5e-4456-8e6b-3a9f64b2c487.yml @@ -0,0 +1,382 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b5e14848-ec5e-4456-8e6b-3a9f64b2c487 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 8, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Content, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-content-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4b2d7cdc-c4f3-4c81-8bbb-dac55b7f2390 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Light,

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores aut doloribus dolorum id nobis tempore. Assumenda blanditiis corrupti debitis earum fuga nobis provident qui recusandae. Placeat quod tenetur. Deleniti eligendi eos sint. Culpa deserunt iusto libero officia optio praesentium tenetur. Accusamus animi deserunt fuga libero quod. Accusamus blanditiis cumque dolor id laborum placeat quibusdam similique.

+

Eveniet occaecati recusandae. Consequatur debitis

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

In molestiae. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 18b1e855-7644-401b-8e9f-16b1f3028671 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Dark,

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6edfee7f-c47e-48ca-a33a-865b414a0895 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Light, BG,

Delectus dolores eligendi hic laborum

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod

+

Dolorum eveniet libero necessitatibus odio officiis quo quod recusandae voluptatibus. At aut cumque fuga hic in minus mollitia necessitatibus similique. Assumenda eveniet mollitia officia placeat tempore. Accusamus asperiores atque deleniti facere quos soluta.

Eligendi expedita. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1d53825e-66e8-4f8f-a8c7-ec66c4355927 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Dark, BG,

Deserunt temporibus voluptatibus voluptatum. Debitis

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

+

Facere id maxime nihil odio

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

Minus molestias. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b97ca97f-2ebd-4010-9925-e554498537f7 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Light, Vertical Spacing,

Occaecati perferendis tempore. Accusamus id

+

Expedita officia quod recusandae. Earum expedita maiores molestiae repellat. Distinctio maiores odio quas soluta tenetur. Asperiores assumenda odio optio praesentium quas repellat sint tenetur. Corrupti facilis officia. Delectus in occaecati perferendis quo tenetur.

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

Fuga id. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 26e8a7ae-56c9-44b9-ae16-cc33b48da9de + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- + Dark, Vertical Spacing,

Officia officiis quos. Facere harum

+

Distinctio harum praesentium quod quos repellat tempore ut voluptatum. Earum eveniet itaque vero voluptatibus. Corrupti eos facere temporibus. Deserunt eveniet id minus nihil placeat voluptatibus. Dolor earum itaque possimus tenetur vero.

+

Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos.

+

Accusamus animi deleniti doloribus libero

+

Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe.

At cumque. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9d138f21-dfe2-4934-a96e-6ae2b4638c45 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Light, BG, Vertical Spacing,

Id impedit maxime minus nam

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium. Accusamus assumenda eligendi in iusto non optio possimus ut voluptas. Et iusto sunt vero. Accusamus cumque mollitia rerum. At cupiditate eos possimus qui quidem similique tempore vero voluptates. Consequatur eos harum qui quos similique. Deserunt dolor itaque necessitatibus voluptatum.

+

Atque dolor itaque provident recusandae

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

Culpa debitis. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9dcdd7bf-6487-4e94-8b7a-8e4f97898ef9 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: |- + Dark, BG, Vertical Spacing,

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/b602c977-07e4-47d8-a6f5-59c562dc7419.yml b/recipes/civictheme_content_generated_static/content/node/b602c977-07e4-47d8-a6f5-59c562dc7419.yml new file mode 100644 index 0000000000..20eb456a8e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/b602c977-07e4-47d8-a6f5-59c562dc7419.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b602c977-07e4-47d8-a6f5-59c562dc7419 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ali: /ge, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, no sidebar, Light, Pages, View as Promo card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-automated-list-no-sidebar-light-pages-view-promo-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 22d14b65-6348-48a8-9490-c91aaa227444 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Dolorum eveniet libero necessitatibus odio.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Deserunt-temporibus-voluptatibus-voluptatum.-Debitis.' + title: 'Maiores molestiae.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/b74f210b-6bdc-415b-8b39-348c3230c028.yml b/recipes/civictheme_content_generated_static/content/node/b74f210b-6bdc-415b-8b39-348c3230c028.yml new file mode 100644 index 0000000000..71bfa825b8 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/b74f210b-6bdc-415b-8b39-348c3230c028.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b74f210b-6bdc-415b-8b39-348c3230c028 + bundle: civictheme_page + default_langcode: en + depends: + c3b82dbd-cc88-4791-bb9e-a80ac17b373b: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 05. Accusamus animi deleniti.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-05-accusamus-animi-deleniti + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 770257a2-b237-4046-ad2c-1b98bea7a33b + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

At cumque hic laborum quo

+

Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates.

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium

+

Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat.

Libero nam. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe. Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto.' + field_c_n_thumbnail: + - + entity: c3b82dbd-cc88-4791-bb9e-a80ac17b373b + field_c_n_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/b79924a9-c739-41ea-bb78-4c7e0907bc49.yml b/recipes/civictheme_content_generated_static/content/node/b79924a9-c739-41ea-bb78-4c7e0907bc49.yml new file mode 100644 index 0000000000..a46853c8cf --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/b79924a9-c739-41ea-bb78-4c7e0907bc49.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: b79924a9-c739-41ea-bb78-4c7e0907bc49 + bundle: civictheme_event + default_langcode: en + depends: + fb24d887-5e65-4ac2-abb3-f9d98220ddcc: media + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 14. Minus molestias mollitia.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-14-minus-molestias-mollitia + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Expedita officia quod recusandae. Earum

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.

+

Corrupti id saepe. Blanditiis culpa

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

Officia officiis. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 491d5d75-3115-40c4-9d07-6bb4cb0491a9 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Cumque delectus hic.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: 'Earum perferendis.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Occaecati perferendis tempore. Accusamus id praesentium quas temporibus. Consequatur expedita mollitia optio voluptas. Accusamus dolor et. Itaque necessitatibus possimus praesentium.' + field_c_n_thumbnail: + - + entity: fb24d887-5e65-4ac2-abb3-f9d98220ddcc + field_c_n_topics: + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/bacf5f41-0323-4774-a849-19f7ba33640e.yml b/recipes/civictheme_content_generated_static/content/node/bacf5f41-0323-4774-a849-19f7ba33640e.yml new file mode 100644 index 0000000000..b964b38c81 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/bacf5f41-0323-4774-a849-19f7ba33640e.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: bacf5f41-0323-4774-a849-19f7ba33640e + bundle: civictheme_event + default_langcode: en + depends: + d82881bf-76f5-4078-b819-a55d5226d74f: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 05. Et itaque provident.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-05-et-itaque-provident + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Doloribus iusto officia ut. Culpa

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

+

Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis voluptatum. Atque est non optio quos repellendus voluptatibus. Autem debitis hic officia qui quod repellendus soluta voluptatibus.

+

Deleniti mollitia quo repudiandae vero

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

Dolorum eveniet. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a96dbb3b-a3f0-4a94-856d-f9ddf02a2d77 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Eligendi expedita officia.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Deserunt-temporibus-voluptatibus-voluptatum.-Debitis.' + title: 'Maiores molestiae.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae.' + field_c_n_thumbnail: + - + entity: d82881bf-76f5-4078-b819-a55d5226d74f + field_c_n_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055.yml b/recipes/civictheme_content_generated_static/content/node/bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055.yml new file mode 100644 index 0000000000..5af3080ba5 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: bc3fe3c6-2fa2-4d4b-89c9-d0fb9811a055 + bundle: civictheme_page + default_langcode: en + depends: + 3b356dee-7c02-433a-8ad8-e2298a720e7f: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 07. Autem consequatur expedita.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-07-autem-consequatur-expedita + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b7ae16c8-cd8f-4bb8-9289-ad8e102e88d7 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Doloribus iusto officia ut. Culpa

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

+

Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis voluptatum. Atque est non optio quos repellendus voluptatibus. Autem debitis hic officia qui quod repellendus soluta voluptatibus.

+

Deleniti mollitia quo repudiandae vero

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

Dolorum eveniet. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Et itaque provident rerum. Delectus dignissimos facere hic id laborum maiores molestias quo. Atque culpa delectus distinctio itaque quo sunt tenetur voluptates. Deserunt dolores maxime molestiae. Animi atque est excepturi fuga quas soluta. Autem dignissimos harum nam voluptas. Dolor earum eveniet. Distinctio facere iusto voluptatum. Blanditiis corrupti debitis doloribus excepturi itaque quibusdam repellat soluta tenetur. Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et.' + field_c_n_thumbnail: + - + entity: 3b356dee-7c02-433a-8ad8-e2298a720e7f + field_c_n_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/c045b8f0-8a13-4339-a602-682aad679920.yml b/recipes/civictheme_content_generated_static/content/node/c045b8f0-8a13-4339-a602-682aad679920.yml new file mode 100644 index 0000000000..ec3a5a0642 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/c045b8f0-8a13-4339-a602-682aad679920.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: c045b8f0-8a13-4339-a602-682aad679920 + bundle: civictheme_event + default_langcode: en + depends: + bf0b24f1-7173-49a1-b1f3-e5ed83b6a216: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 01. Ducimus eligendi nobis.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-01-ducimus-eligendi-nobis + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

+

Doloribus iusto officia ut. Culpa doloribus iusto nam nobis odio recusandae vero. Accusamus atque culpa in occaecati quidem quo voluptas. Autem distinctio hic praesentium sint vero. Quo similique vero. Distinctio occaecati optio possimus quas saepe voluptates. Cumque delectus eos in maiores tenetur.

+

Blanditiis deserunt fuga itaque quo

+

Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis voluptatum. Atque est non optio quos repellendus voluptatibus. Autem debitis hic officia qui quod repellendus soluta voluptatibus.

Animi aut. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: eeebbee1-99e0-4a32-8d63-f6976283e14a + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Dolorum eveniet libero.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Facilis-laborum-officiis-quidem-quod.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt.' + field_c_n_thumbnail: + - + entity: bf0b24f1-7173-49a1-b1f3-e5ed83b6a216 + field_c_n_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/c6d7e5fc-471b-4d67-8175-95986b13aee8.yml b/recipes/civictheme_content_generated_static/content/node/c6d7e5fc-471b-4d67-8175-95986b13aee8.yml new file mode 100644 index 0000000000..def1587187 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/c6d7e5fc-471b-4d67-8175-95986b13aee8.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: c6d7e5fc-471b-4d67-8175-95986b13aee8 + bundle: civictheme_page + default_langcode: en + depends: + db6528c7-cea8-4a4f-9574-97324f2eab7e: media + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 08. Molestiae sapiente tempore.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-08-molestiae-sapiente-tempore + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: eeda2d59-8fc7-4912-8a35-8f07a6ceec8c + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Non officia officiis quibusdam vero

+

Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

+

Laborum occaecati omnis. Eligendi possimus

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

Expedita officia. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut. Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates. Maiores molestiae.' + field_c_n_thumbnail: + - + entity: db6528c7-cea8-4a4f-9574-97324f2eab7e + field_c_n_topics: + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/c9a9c292-5705-47f3-972d-18377ca4dfd1.yml b/recipes/civictheme_content_generated_static/content/node/c9a9c292-5705-47f3-972d-18377ca4dfd1.yml new file mode 100644 index 0000000000..eb7aaa382e --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/c9a9c292-5705-47f3-972d-18377ca4dfd1.yml @@ -0,0 +1,138 @@ +_meta: + version: '1.0' + entity_type: node + uuid: c9a9c292-5705-47f3-972d-18377ca4dfd1 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Nos: Y, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited, Title, Content, Above link, Below link, Both space, Background' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-title-content-above-link-below-link-both-space-background + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 71956ff7-fe92-4886-bc3c-c8edfb42066b + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Dolorum eveniet libero necessitatibus odio.' + format: civictheme_rich_text + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 0 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_link_above: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + field_c_p_list_link_below: + - + uri: 'https://www.example.com/Deserunt-temporibus-voluptatibus-voluptatum.-Debitis.' + title: 'Maiores molestiae.' + options: { } + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/cf5b59c6-d1a8-4d64-bc75-67d97a299a70.yml b/recipes/civictheme_content_generated_static/content/node/cf5b59c6-d1a8-4d64-bc75-67d97a299a70.yml new file mode 100644 index 0000000000..33be9af35b --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/cf5b59c6-d1a8-4d64-bc75-67d97a299a70.yml @@ -0,0 +1,124 @@ +_meta: + version: '1.0' + entity_type: node + uuid: cf5b59c6-d1a8-4d64-bc75-67d97a299a70 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Automated list, Light, Pages, View as Promo card, Light card, Unlimited 6, Title' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-automated-list-light-pages-view-promo-card-light-card-unlimited-6-title + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5aae1dd5-10a3-454a-9a3f-5fb52c103445 + bundle: civictheme_automated_list + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_list_column_count: + - + value: 4 + field_c_p_list_content_type: + - + value: civictheme_page + field_c_p_list_item_theme: + - + value: light + field_c_p_list_item_view_as: + - + value: civictheme_promo_card + field_c_p_list_limit: + - + value: 6 + field_c_p_list_limit_type: + - + value: unlimited + field_c_p_list_type: + - + value: civictheme_automated_list__block1 + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Automated list title' + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/d0b80d12-fdbc-4fb5-888d-bc1a62a35787.yml b/recipes/civictheme_content_generated_static/content/node/d0b80d12-fdbc-4fb5-888d-bc1a62a35787.yml new file mode 100644 index 0000000000..0317cc2c39 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/d0b80d12-fdbc-4fb5-888d-bc1a62a35787.yml @@ -0,0 +1,988 @@ +_meta: + version: '1.0' + entity_type: node + uuid: d0b80d12-fdbc-4fb5-888d-bc1a62a35787 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 9, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Accordion, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-accordion-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 1c1da188-a7dc-4ef0-91f3-e3169b25871a + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a6373225-a983-4250-a32f-f1224eb6a978 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

At cumque hic laborum quo

+

Id impedit maxime minus nam nihil omnis optio qui sapiente. Asperiores corrupti quo ut. Blanditiis nihil voluptatum. Alias doloribus dolorum est maiores nam nihil. Atque dignissimos ducimus excepturi facilis laborum maxime nam quibusdam repudiandae. Aut dolorum eos in maiores molestias. Accusamus autem debitis in nam nobis qui ut. At aut deleniti distinctio hic maiores sint voluptates.

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium

+

Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat.

Libero nam. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 1, Est iusto maxime.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4e06059d-3acd-42cd-867e-286022bc4f56 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e4df05fc-b36b-42fc-a2a6-19b0dc8d8938 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Aut delectus id minus molestias

+

Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero.

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

+

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

Assumenda cupiditate. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Culpa debitis nobis.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: db018049-5c8d-4597-85f0-bb2ff5726ef5 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Excepturi laborum minus necessitatibus. Minus

+

Ducimus eligendi nobis. Debitis eligendi est hic iusto quibusdam vero voluptatum. Aut distinctio facilis officia repudiandae sunt. Assumenda autem eligendi iusto odio repellat voluptas voluptatum. Autem corrupti est fuga officia saepe soluta. Animi aut iusto maxime nobis provident. Accusamus asperiores culpa harum libero non sapiente ut voluptates. Deserunt eligendi hic laborum quod recusandae temporibus voluptas. Aut ducimus impedit necessitatibus officia optio possimus quod similique voluptatibus.

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

+

Et itaque provident rerum. Delectus

+

Alias aut quas ut. Assumenda consequatur dignissimos dolor et hic id occaecati possimus sunt. Autem facere id necessitatibus recusandae repudiandae. Alias assumenda blanditiis facere perferendis saepe. Aut cumque id libero repellat voluptatibus. Asperiores atque consequatur distinctio facilis fuga provident quibusdam quo voluptatibus. Eligendi eos et expedita tempore voluptatum. Maxime minus molestiae saepe. Alias cupiditate sunt vero. Consequatur cupiditate in nobis non voluptas.

Blanditiis deserunt. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, In molestiae occaecati.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 34c05936-e456-4210-80ff-eb2786710370 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: true + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8e517dba-28d2-4a8e-9ae7-5dc3f9b6df4b + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Deleniti mollitia quo repudiandae vero

+

Animi aut culpa maiores. Dignissimos dolor est laborum optio provident reiciendis. Doloribus facere fuga temporibus voluptas. Deleniti earum iusto maxime. Cumque facilis nam odio officia optio placeat possimus quidem quos. Libero repellat vero voluptatibus. Id maiores sint. Dolor et expedita itaque molestias mollitia quo sunt voluptatibus. Atque distinctio hic placeat saepe voluptatibus. Deleniti distinctio dolores itaque maxime officiis placeat praesentium qui.

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

+

Dolorum eveniet libero necessitatibus odio

+

Molestiae sapiente tempore. At maxime quas quod repellat rerum saepe similique tenetur. Animi consequatur culpa deleniti dolorum molestiae occaecati vero. At dignissimos id minus mollitia quidem repudiandae saepe soluta voluptas. Facere harum molestias necessitatibus quos repellendus. Assumenda cumque dignissimos libero non quas qui quod repellat. Alias asperiores facere libero minus nihil officiis repellendus rerum.

Deserunt temporibus. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, all expanded, Delectus dolores eligendi.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a97e0bf6-eb60-42d5-82b8-eb7f3709a816 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Non officia officiis quibusdam vero

+

Facere id maxime nihil odio perferendis repellendus voluptas. Alias corrupti omnis quibusdam sint tempore. Blanditiis in maxime optio quos repellat sint temporibus tenetur voluptatibus. Animi delectus distinctio provident repellendus saepe vero. Facere fuga odio temporibus. At ducimus odio optio temporibus. Deleniti est expedita minus nihil placeat quo sint tenetur.

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

+

Laborum occaecati omnis. Eligendi possimus

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

Expedita officia. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, all expanded, Maiores molestiae saepe.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 21a27e57-4318-482d-a508-f79ceb8d430e + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 10573400-2ebe-4a77-ad29-59570f955d29 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Impedit non optio quod quos

+

Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo.

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

+

Fuga id impedit necessitatibus soluta

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

Cumque delectus. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Mollitia non sunt.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 8a68cb5e-2036-4b36-930d-7087a6584f66 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Earum perferendis sapiente sunt. Deleniti

+

Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.

+

At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos voluptatum. Facilis iusto libero saepe. Corrupti dignissimos distinctio facere molestiae perferendis provident similique soluta sunt. Blanditiis culpa occaecati repudiandae vero.

+

Id impedit maxime minus nam

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

Atque dolor. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, Accusamus animi deleniti.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 98205e2b-c349-49c7-b65a-ab2f3d7740f3 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: true + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: de543336-d18a-4f06-96fe-79fd9e610697 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Libero nam odio officiis sapiente

+

Culpa debitis nobis. Assumenda autem facilis libero non. Dolorum itaque vero. Cupiditate dignissimos non possimus quos. Delectus facilis laborum molestiae odio omnis sunt voluptatibus. Animi cumque officia omnis possimus quidem reiciendis tenetur. Asperiores delectus impedit molestias mollitia quas quos temporibus. Aut dolores doloribus ducimus nobis non praesentium saepe sint soluta. Dolor eveniet odio quidem quo sunt temporibus voluptatibus.

+

Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates.

+

Debitis delectus et in non

+

Dignissimos doloribus harum nihil quos repellat saepe sapiente. Eligendi hic omnis optio praesentium quod repellat. Alias culpa deserunt dolores eveniet qui repellendus. Animi excepturi hic libero nihil qui voluptas. Animi corrupti maxime mollitia voluptatibus. Alias distinctio ducimus facere minus mollitia optio provident quidem voluptas.

Eveniet occaecati. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, all expanded, Consequatur deserunt doloribus.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 109553b7-bda3-40e6-8fff-cf8b2ec9d92d + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Assumenda cupiditate mollitia quos repellendus

+

In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

+

Ducimus eligendi nobis. Debitis eligendi

+

Autem consequatur expedita facere laborum placeat quibusdam. Accusamus autem id mollitia omnis placeat qui tenetur. Assumenda eos facilis reiciendis. Deserunt dolorum quidem similique. Itaque maxime officiis quidem repudiandae. At maxime non repellendus saepe. Assumenda distinctio ducimus excepturi molestiae optio voluptatibus.

Alias aut. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 2 of 2, all expanded, Eos iusto optio.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d80df82f-9fa4-42da-9f87-162f303387f6 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 643d4e4f-9932-4719-8403-f4dd540d5f6f + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Blanditiis deserunt fuga itaque quo

+

Delectus dolores eligendi hic laborum odio officia recusandae ut voluptatum. Corrupti est nobis quibusdam. Autem distinctio mollitia odio. At delectus fuga impedit maiores molestiae repellendus rerum vero. Consequatur distinctio et maxime nam non officiis placeat temporibus. Alias ducimus eligendi et in molestias quidem quod reiciendis voluptatum. Atque est non optio quos repellendus voluptatibus. Autem debitis hic officia qui quod repellendus soluta voluptatibus.

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

+

Animi aut culpa maiores. Dignissimos

+

Facilis laborum officiis quidem quod recusandae repellat repudiandae sapiente sint. Ducimus eos facilis saepe similique tempore. Animi autem corrupti et impedit minus molestiae optio. Animi cupiditate distinctio hic maxime quibusdam. Asperiores eos et maiores quas recusandae rerum. Officia tempore voluptates. Corrupti deleniti dignissimos doloribus ducimus itaque ut. Est excepturi expedita in praesentium recusandae voluptatibus.

Molestiae sapiente. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Light, BG, Doloribus iusto officia.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 25d0e272-d37a-4e5e-8114-3a426d40c053 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Deserunt temporibus voluptatibus voluptatum. Debitis

+

Maiores molestiae saepe voluptas. Eos est facilis. Debitis facere itaque mollitia officiis omnis quo ut. Atque autem dignissimos excepturi impedit optio quos. Aut molestiae non optio quod. Animi delectus dolores quidem repellat repudiandae tenetur. Accusamus atque delectus et molestiae qui repellat temporibus. At dignissimos distinctio dolorum earum nobis possimus quidem recusandae ut. Excepturi laborum officia qui. Corrupti dignissimos eveniet nihil officia omnis qui reiciendis sunt tempore.

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

+

Facere id maxime nihil odio

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

Minus molestias. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Eligendi expedita officia.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ad8f9920-eb8c-444e-8cd4-80c4c489e381 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 08a07d48-89ff-4c4d-8bae-c645a6e130a7 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Expedita officia quod recusandae. Earum

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.

+

Corrupti id saepe. Blanditiis culpa

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

Officia officiis. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Dark, BG, Occaecati perferendis tempore.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: bf3b6519-8ec4-4d8f-8479-015699c9d1a0 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Cumque delectus hic mollitia necessitatibus

+

Accusamus animi deleniti doloribus libero molestiae possimus provident quo. Assumenda blanditiis qui repudiandae rerum. Deleniti excepturi harum iusto optio praesentium. Libero minus optio provident rerum temporibus tenetur voluptatibus. Doloribus eligendi necessitatibus optio praesentium. Corrupti dolores laborum maiores molestias odio officiis saepe. Deserunt nobis repellendus. Consequatur deleniti eligendi odio. Cumque deserunt dolor impedit iusto laborum nihil provident quibusdam rerum.

+

Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe.

+

Est iusto maxime qui repellat

+

At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos voluptatum. Facilis iusto libero saepe. Corrupti dignissimos distinctio facere molestiae perferendis provident similique soluta sunt. Blanditiis culpa occaecati repudiandae vero.

Harum id. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Distinctio harum praesentium.' + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d86573ab-d194-40cb-9974-70ac83a9dc19 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e263b5f1-e870-4e72-aaf7-e7704b059752 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Atque dolor itaque provident recusandae

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

+

Libero nam odio officiis sapiente. Autem facere molestiae nobis omnis recusandae tempore. Asperiores dolor excepturi id maiores maxime officia placeat quos repellendus.

+

Culpa debitis nobis. Assumenda autem

+

Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates.

Dignissimos doloribus. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Light, BG, Vertical spacing, Asperiores atque molestias.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2935f90b-50da-4c06-ba9d-328c5e096f09 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Eveniet occaecati recusandae. Consequatur debitis

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

+

Assumenda cupiditate mollitia quos repellendus. Alias culpa earum eligendi hic nam. Necessitatibus optio perferendis quidem. Dolores eligendi impedit itaque iusto omnis repellendus tenetur. Autem dignissimos possimus sunt. At cupiditate eligendi excepturi facere maiores molestiae officia optio. Consequatur culpa dignissimos maxime similique sunt tenetur. Animi consequatur cupiditate debitis occaecati optio placeat quibusdam quod. Consequatur distinctio est facere iusto libero sapiente voluptas voluptates.

+

In molestiae occaecati possimus qui

+

Excepturi laborum minus necessitatibus. Minus nam officiis sunt. Alias dolor molestias nobis occaecati repudiandae similique voluptates. Expedita fuga ut. Animi est in omnis optio. Deleniti dignissimos laborum maxime praesentium quas quod temporibus. Accusamus corrupti et mollitia soluta voluptatibus voluptatum. Atque cupiditate recusandae sapiente. Consequatur corrupti deleniti et minus omnis placeat quo repudiandae saepe.

Autem consequatur. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Vertical spacing, Dolores eos maxime.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c5f7ee72-d630-4666-8b61-b25de6b69178 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 50d96b2c-2cb1-4c24-a998-985b7bf20aea + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Alias aut quas ut. Assumenda

+

Doloribus iusto officia ut. Culpa doloribus iusto nam nobis odio recusandae vero. Accusamus atque culpa in occaecati quidem quo voluptas. Autem distinctio hic praesentium sint vero. Quo similique vero. Distinctio occaecati optio possimus quas saepe voluptates. Cumque delectus eos in maiores tenetur.

+

Blanditiis deserunt fuga itaque quo reiciendis repellendus sapiente sunt. Distinctio minus repellat voluptatibus voluptatum. Corrupti distinctio dolorum earum eligendi repellat repellendus sapiente. Doloribus excepturi expedita maiores molestiae officia tenetur ut voluptas. Cupiditate dolores odio quas. Animi aut consequatur doloribus laborum sunt. Asperiores deleniti ducimus et excepturi maiores quas qui voluptates. Deleniti dignissimos excepturi mollitia voluptas.

+

Delectus dolores eligendi hic laborum

+

Deleniti mollitia quo repudiandae vero. Deserunt doloribus itaque odio placeat possimus praesentium quod tempore. Alias cumque est maiores. Corrupti ducimus eos nobis possimus quas sint. Alias at consequatur eligendi possimus recusandae saepe. Alias blanditiis dolorum mollitia odio qui sapiente similique. Consequatur distinctio harum placeat quibusdam. Corrupti earum repudiandae rerum vero. At cupiditate delectus dolor est nam officia praesentium rerum. Consequatur deserunt dignissimos expedita repellendus.

Facilis laborum. + format: civictheme_rich_text + field_c_p_expand: + - + value: true + field_c_p_title: + - + value: 'Panel 1 of 2, expanded, Dark, BG, Vertical spacing, Et itaque provident.' + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 462fa688-7458-4f2d-8dc9-93d661adb9a2 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Molestiae sapiente tempore. At maxime

+

Eligendi expedita officia. Animi dolorum nam nobis odio officia quos. Cupiditate delectus maiores perferendis similique sunt. Asperiores molestiae mollitia possimus sunt. Impedit non provident quibusdam quidem repudiandae sunt tempore. Assumenda eos est mollitia occaecati perferendis. Consequatur eos id reiciendis repellat ut.

+

Deserunt temporibus voluptatibus voluptatum. Debitis laborum molestiae officia quibusdam reiciendis similique. At culpa deleniti possimus. Dolor est laborum molestias nobis. Atque aut officia optio placeat quibusdam repudiandae. Atque distinctio facilis maiores molestias nihil optio qui quibusdam voluptas. Atque blanditiis culpa cupiditate deserunt et eveniet iusto perferendis quos. Distinctio facere libero mollitia optio perferendis tenetur ut vero voluptates.

+

Maiores molestiae saepe voluptas. Eos

+

Non officia officiis quibusdam vero. Autem facilis hic in necessitatibus non occaecati similique voluptas. Consequatur cupiditate deserunt impedit libero optio qui reiciendis saepe vero. At dolores facere iusto nam odio officiis perferendis repudiandae voluptatum.

Dolor omnis. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Panel 1 of 2, Dark, BG, Vertical spacing, Dolorum eveniet libero.' + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/d51c0f76-62c0-4381-984d-644ec9aa73a6.yml b/recipes/civictheme_content_generated_static/content/node/d51c0f76-62c0-4381-984d-644ec9aa73a6.yml new file mode 100644 index 0000000000..290652a5f7 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/d51c0f76-62c0-4381-984d-644ec9aa73a6.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: d51c0f76-62c0-4381-984d-644ec9aa73a6 + bundle: civictheme_page + default_langcode: en + depends: + 551b075c-af70-4521-9de7-ec5e487c40f8: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 09. Mollitia non sunt.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-09-mollitia-non-sunt + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 077f6a66-8930-423f-9fa0-80720a5a12e8 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Fuga id impedit necessitatibus soluta

+

Officia officiis quos. Facere harum omnis. Dignissimos quidem repellendus saepe sint temporibus. Distinctio occaecati odio quos. Facere reiciendis voluptas voluptatum. Animi facilis officiis soluta. Hic repellat soluta. Dolores harum non saepe tenetur. Dolorum excepturi nam occaecati. Dolor earum repellendus. Autem itaque qui. Hic itaque necessitatibus quos repudiandae voluptatum. Debitis delectus molestiae perferendis sapiente tempore.

+

Distinctio harum praesentium quod quos repellat tempore ut voluptatum. Earum eveniet itaque vero voluptatibus. Corrupti eos facere temporibus. Deserunt eveniet id minus nihil placeat voluptatibus. Dolor earum itaque possimus tenetur vero.

+

Cumque delectus hic mollitia necessitatibus

+

Accusamus animi deleniti doloribus libero molestiae possimus provident quo. Assumenda blanditiis qui repudiandae rerum. Deleniti excepturi harum iusto optio praesentium. Libero minus optio provident rerum temporibus tenetur voluptatibus. Doloribus eligendi necessitatibus optio praesentium. Corrupti dolores laborum maiores molestias odio officiis saepe. Deserunt nobis repellendus. Consequatur deleniti eligendi odio. Cumque deserunt dolor impedit iusto laborum nihil provident quibusdam rerum.

Est iusto. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum. Corrupti id saepe. Blanditiis culpa cupiditate necessitatibus nobis repudiandae similique temporibus. Atque cupiditate eos facilis maiores recusandae reiciendis voluptates. Doloribus est expedita impedit molestias occaecati similique soluta voluptatum. Doloribus itaque odio. Debitis id quo. Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores.' + field_c_n_thumbnail: + - + entity: 551b075c-af70-4521-9de7-ec5e487c40f8 + field_c_n_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/d682985c-98ff-438d-8f3e-412b5f4a5e56.yml b/recipes/civictheme_content_generated_static/content/node/d682985c-98ff-438d-8f3e-412b5f4a5e56.yml new file mode 100644 index 0000000000..1cb835f744 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/d682985c-98ff-438d-8f3e-412b5f4a5e56.yml @@ -0,0 +1,448 @@ +_meta: + version: '1.0' + entity_type: node + uuid: d682985c-98ff-438d-8f3e-412b5f4a5e56 + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 10, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Iframe' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-iframe + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d7c90e94-64eb-48d2-8839-8195bd8584fe + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/In-molestiae-occaecati-possimus-qui.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: df0b6de0-e0e3-4a0d-ae42-f5687b53ac5e + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Excepturi-laborum-minus-necessitatibus.-Minus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4ccbcf06-d11e-47a4-8518-9ded188df497 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Ducimus-eligendi-nobis.-Debitis-eligendi.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4a56c3b2-208b-41c6-9618-7e8bf26b0043 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Autem-consequatur-expedita-facere-laborum.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0127fe89-9085-484b-9827-4dfffc18bd81 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 50% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Et-itaque-provident-rerum.-Delectus.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 50% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d62a360b-4d4e-412a-b000-4911927274ba + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 50% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Alias-aut-quas-ut.-Assumenda.' + field_c_p_vertical_spacing: + - + value: none + field_c_p_width: + - + value: 50% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 5be27df5-e657-4f51-864b-e41e99ebe5a3 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Doloribus-iusto-officia-ut.-Culpa.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cdf35fd2-849b-4853-a69b-f9f4cb566ee9 + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Blanditiis-deserunt-fuga-itaque-quo.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: df3b4f2e-d772-472e-8b61-8e06ee5add9c + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: light + field_c_p_url: + - + value: 'https://www.example.com/Delectus-dolores-eligendi-hic-laborum.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 121daec0-a1ae-4750-8f22-4c8810ddc5fb + bundle: civictheme_iframe + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_height: + - + value: 100% + field_c_p_theme: + - + value: dark + field_c_p_url: + - + value: 'https://www.example.com/Deleniti-mollitia-quo-repudiandae-vero.' + field_c_p_vertical_spacing: + - + value: both + field_c_p_width: + - + value: 100% + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/dd94d74e-b125-4ef3-8e79-cc29358b3699.yml b/recipes/civictheme_content_generated_static/content/node/dd94d74e-b125-4ef3-8e79-cc29358b3699.yml new file mode 100644 index 0000000000..c4199a73d1 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/dd94d74e-b125-4ef3-8e79-cc29358b3699.yml @@ -0,0 +1,120 @@ +_meta: + version: '1.0' + entity_type: node + uuid: dd94d74e-b125-4ef3-8e79-cc29358b3699 + bundle: civictheme_event + default_langcode: en + depends: + af716da0-dff7-4bc2-b2fc-a42f603f4f9c: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Eve, Thu: Y, Sum: Sum, Top: 1, Bod: 2, Fie: Y, Ver: bot, Sho: Y, Dat: 2, Loc: 1, Sta: Y, Mod: pub, Ali: /ge' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Event 15. Est iusto maxime.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_event/event-15-est-iusto-maxime + langcode: en + pathauto: 0 + field_c_n_body: + - + value: |- +

Id impedit maxime minus nam

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

+

Asperiores atque molestias mollitia praesentium. Accusamus assumenda eligendi in iusto non optio possimus ut voluptas. Et iusto sunt vero. Accusamus cumque mollitia rerum. At cupiditate eos possimus qui quidem similique tempore vero voluptates. Consequatur eos harum qui quos similique. Deserunt dolor itaque necessitatibus voluptatum.

+

Atque dolor itaque provident recusandae

+

Consequatur deserunt doloribus hic itaque quo quod ut. Distinctio fuga nihil officia repellat voluptatum. Culpa debitis et eveniet hic itaque minus mollitia officia possimus. Alias animi eligendi fuga impedit maiores mollitia quidem similique. Eveniet reiciendis voluptas. Doloribus hic libero officiis perferendis possimus quos voluptas. Mollitia nam quo. Distinctio in itaque libero nihil nobis recusandae repudiandae. Et maxime placeat qui repellendus.

Culpa debitis. + format: civictheme_rich_text + field_c_n_date_range: + - + value: '2022-06-30T23:45:00' + end_value: '2022-08-14T05:30:00' + field_c_n_location: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: b9ba4005-f0bf-4568-a10d-89a7503f3ae0 + bundle: civictheme_map + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_address: + - + value: 'Debitis delectus et.' + field_c_p_background: + - + value: true + field_c_p_embed_url: + - + uri: 'https://www.example.com/Aut-delectus-id-minus-molestias.' + title: '' + options: { } + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: both + field_c_p_view_link: + - + uri: 'https://www.example.com/Dignissimos-doloribus-harum-nihil-quos.' + title: 'Dolores eos.' + options: { } + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos.' + field_c_n_thumbnail: + - + entity: af716da0-dff7-4bc2-b2fc-a42f603f4f9c + field_c_n_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + field_c_n_vertical_spacing: + - + value: both diff --git a/recipes/civictheme_content_generated_static/content/node/dfa24489-b5ee-409d-8aad-599d4b1dbace.yml b/recipes/civictheme_content_generated_static/content/node/dfa24489-b5ee-409d-8aad-599d4b1dbace.yml new file mode 100644 index 0000000000..5dcaef9a43 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/dfa24489-b5ee-409d-8aad-599d4b1dbace.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: dfa24489-b5ee-409d-8aad-599d4b1dbace + bundle: civictheme_page + default_langcode: en + depends: + d720b9c5-5101-4fe9-9a55-053e5fbe0391: media + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 06. Culpa debitis nobis.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-06-culpa-debitis-nobis + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: d636aa7d-9444-466c-b39b-ad37e7b8bdaa + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Dolores eos maxime temporibus. Asperiores

+

Eveniet occaecati recusandae. Consequatur debitis dignissimos dolorum hic mollitia quidem reiciendis rerum sunt. Accusamus aut culpa maxime necessitatibus non quas. Accusamus expedita libero maiores maxime optio saepe sunt voluptatum. Cupiditate ducimus quibusdam. Blanditiis dolor id iusto libero recusandae. Deserunt maxime necessitatibus non. Alias asperiores at omnis. Dolores doloribus excepturi libero perferendis. Cumque dolor excepturi laborum mollitia quas quo temporibus.

+

Eos iusto optio quidem similique. Alias corrupti excepturi facilis molestiae optio quos repellat ut. Animi officiis possimus. Assumenda eveniet facere fuga itaque odio praesentium quos. Dolor doloribus earum harum praesentium quod. Dolor praesentium quibusdam tenetur. Cumque deleniti eligendi libero quod ut. Cumque cupiditate doloribus eos mollitia voluptas. Doloribus in voluptas. Alias atque consequatur corrupti dolores dolorum eveniet non similique. Accusamus atque consequatur cupiditate id odio officiis quos repellat saepe.

+

Assumenda cupiditate mollitia quos repellendus

+

In molestiae occaecati possimus qui recusandae. Animi asperiores dolorum itaque quo temporibus. Autem impedit odio placeat qui rerum similique ut. Cumque delectus earum maiores nam quibusdam quod repudiandae soluta. Consequatur debitis et eveniet impedit nam quos soluta. Expedita molestias necessitatibus. Delectus ducimus facilis id molestias nobis vero. Cumque ducimus et excepturi hic laborum mollitia repellat. Corrupti cumque deleniti deserunt hic non.

Ducimus eligendi. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Aut delectus id minus molestias recusandae repudiandae. Animi deserunt optio. Atque cupiditate delectus dignissimos quas quos. Et id non voluptatibus. Expedita non occaecati odio similique. Assumenda et facilis laborum necessitatibus non qui quidem sint soluta. Molestiae recusandae rerum ut voluptatum. Cupiditate eos facilis maiores nihil odio officiis provident temporibus voluptates. Debitis delectus et in non rerum. At atque doloribus eligendi eos nobis omnis provident qui repudiandae. Asperiores doloribus excepturi id odio. Deleniti harum libero officiis. At autem deleniti dolores facere in nam similique. Debitis in iusto necessitatibus non officia quod voluptatum. Culpa cupiditate dolores officiis quas vero. Dignissimos doloribus harum.' + field_c_n_thumbnail: + - + entity: d720b9c5-5101-4fe9-9a55-053e5fbe0391 + field_c_n_topics: + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/dfdbe6cf-38bb-4d3c-84c7-047b34dab27f.yml b/recipes/civictheme_content_generated_static/content/node/dfdbe6cf-38bb-4d3c-84c7-047b34dab27f.yml new file mode 100644 index 0000000000..f4e8fe01a8 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/dfdbe6cf-38bb-4d3c-84c7-047b34dab27f.yml @@ -0,0 +1,323 @@ +_meta: + version: '1.0' + entity_type: node + uuid: dfdbe6cf-38bb-4d3c-84c7-047b34dab27f + bundle: civictheme_page + default_langcode: en + depends: + b01ccf28-b786-4ff9-8a8b-5a809aa17bb9: media + 92ffe259-99f0-47d3-824a-6a649cb17034: media + fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d: media + 6c4156cb-6b4d-4467-a7a0-47a90be20291: media + 6e26b476-a047-4547-bf86-2c73dd48f843: media + 9edb4cc0-790d-48ac-9527-40d7196c9667: media + 2446bb9b-e26d-44c3-94c0-7ef6edf4a605: media + f912a51b-4148-469e-a64c-d4c0d23cf445: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Attachment, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-attachment-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 695f2cfc-75d7-4f9f-9de1-5a5665dc5a30 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: b01ccf28-b786-4ff9-8a8b-5a809aa17bb9 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Minus molestias mollitia officiis qui. Id in molestiae.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: '1 attachment, Laborum occaecati omnis.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 409152d9-9380-4556-bc40-a682ba6097c1 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 92ffe259-99f0-47d3-824a-6a649cb17034 + - + entity: fe5c40fb-e8d0-4b71-b17a-a748b0a5ea7d + - + entity: 6c4156cb-6b4d-4467-a7a0-47a90be20291 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Expedita officia quod recusandae. Earum expedita maiores molestiae.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: '3 attachments,Occaecati perferendis tempore.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cc7c39c8-820b-4486-bcf5-fbec27c80732 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 6e26b476-a047-4547-bf86-2c73dd48f843 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Impedit non optio quod quos repudiandae sapiente tenetur.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Vertical spacing, Mollitia non sunt.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 11f1dfa3-978c-43f8-bb0c-8cd3bdcdc59e + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 9edb4cc0-790d-48ac-9527-40d7196c9667 + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Cupiditate est maiores non repellendus. Dolorum itaque maiores.' + format: '' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Vertical spacing, Corrupti id saepe.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a076e1e4-863f-4359-846b-adf25feaaaf8 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: 2446bb9b-e26d-44c3-94c0-7ef6edf4a605 + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem.' + format: '' + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, BG, Vertical spacing, Fuga id impedit.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: f0f93dbd-fd31-4f1b-aef8-e56fd2c0f4e0 + bundle: civictheme_attachment + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_attachments: + - + entity: f912a51b-4148-469e-a64c-d4c0d23cf445 + field_c_p_background: + - + value: true + field_c_p_content: + - + value: 'Cumque delectus hic mollitia necessitatibus nihil nobis repellat.' + format: '' + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, BG, Vertical spacing, Distinctio harum praesentium.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/e2bda6aa-f6e3-4049-838f-1204e65ff372.yml b/recipes/civictheme_content_generated_static/content/node/e2bda6aa-f6e3-4049-838f-1204e65ff372.yml new file mode 100644 index 0000000000..3a80816b44 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/e2bda6aa-f6e3-4049-838f-1204e65ff372.yml @@ -0,0 +1,186 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e2bda6aa-f6e3-4049-838f-1204e65ff372 + bundle: civictheme_page + default_langcode: en + depends: + d82881bf-76f5-4078-b819-a55d5226d74f: media + c0448d36-58b8-4cab-90d9-a873b88b5770: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: lig, Ban: def, Ban: Y, Ble: sof, Ban: Y, Ban: 1, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner default, Light, All fields, Content, Accordion below' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-default-light-all-fields-content-accordion-below + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: d82881bf-76f5-4078-b819-a55d5226d74f + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 2946db21-2972-4871-8e38-5f09d87e22e1 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Accusamus animi deleniti doloribus libero

+

Earum perferendis sapiente sunt. Deleniti non provident. Excepturi harum iusto maiores. Alias doloribus est perferendis praesentium vero. Blanditiis cumque dolores earum praesentium quibusdam quo reiciendis voluptas. Corrupti deserunt dolorum ducimus praesentium quidem quod reiciendis repudiandae. Animi deleniti dolores soluta. Atque consequatur dignissimos dolores fuga impedit itaque possimus tenetur. Accusamus cupiditate deleniti eos est quod quos rerum saepe.

At cumque. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_components_bott: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: c59ce107-cae0-4c8f-be68-d498ec7f9c39 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 4d864366-2676-4742-8536-ef85421a9719 + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Harum id nam quas. Debitis

+

Asperiores atque molestias mollitia praesentium. Accusamus assumenda eligendi in iusto non optio possimus ut voluptas. Et iusto sunt vero. Accusamus cumque mollitia rerum. At cupiditate eos possimus qui quidem similique tempore vero voluptates. Consequatur eos harum qui quos similique. Deserunt dolor itaque necessitatibus voluptatum.

+

Atque dolor itaque provident recusandae voluptates. Culpa facere voluptas. Distinctio facere sapiente. Asperiores earum fuga libero odio qui quo voluptas. Animi at id officia omnis. Alias at culpa minus molestias soluta tempore voluptatum. Aut earum soluta. Aut non placeat.

+

Consequatur deserunt doloribus hic itaque

+

Libero nam odio officiis sapiente. Autem facere molestiae nobis omnis recusandae tempore. Asperiores dolor excepturi id maiores maxime officia placeat quos repellendus.

Aut delectus. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Id impedit maxime.' + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_featured_image: + - + entity: c0448d36-58b8-4cab-90d9-a873b88b5770 + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: light + field_c_n_banner_type: + - + value: default + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/e4162124-6910-4409-89e3-6d45f66f8685.yml b/recipes/civictheme_content_generated_static/content/node/e4162124-6910-4409-89e3-6d45f66f8685.yml new file mode 100644 index 0000000000..e4d6d6972c --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/e4162124-6910-4409-89e3-6d45f66f8685.yml @@ -0,0 +1,186 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e4162124-6910-4409-89e3-6d45f66f8685 + bundle: civictheme_page + default_langcode: en + depends: + a3d85732-94f3-4a0c-b41b-0eb9084372e5: media + dc4091c2-b7b5-4612-95b7-f8fdd9163be6: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: dar, Ban: lar, Ban: Y, Ble: sof, Ban: Y, Ban: 1, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner large, Dark, All fields, Content, Accordion below' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-large-dark-all-fields-content-accordion-below + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: a3d85732-94f3-4a0c-b41b-0eb9084372e5 + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: dec118cf-e12b-432a-9c00-88195c81357b + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Facere id maxime nihil odio

+

Dolor omnis optio repudiandae. Animi deleniti eveniet. Aut eos est praesentium saepe voluptatum. Aut dignissimos eligendi excepturi molestiae molestias sint tenetur vero. Est iusto nihil quod repellendus tempore.

Minus molestias. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_components_bott: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 500daee1-f093-4082-adb8-62c5c0253821 + bundle: civictheme_accordion + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_expand: + - + value: false + field_c_p_panels: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ff57d959-220a-4ae7-a1a1-df4654dcbead + bundle: civictheme_accordion_panel + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: |- +

Expedita officia quod recusandae. Earum

+

Mollitia non sunt. Animi eos impedit non occaecati officiis recusandae reiciendis voluptatibus. Asperiores impedit itaque quas repudiandae sapiente tenetur voluptas. Autem ducimus in praesentium similique. Autem earum et itaque repellat. Delectus dolorum non. Consequatur cupiditate doloribus eveniet in iusto nihil non possimus.

+

Impedit non optio quod quos repudiandae sapiente tenetur. Blanditiis consequatur facere quas temporibus. Blanditiis minus perferendis. Impedit maxime officia. Corrupti delectus dolorum mollitia omnis placeat quos reiciendis. Aut minus quos voluptas. Debitis facilis officia rerum soluta. Alias delectus itaque iusto necessitatibus officiis sint tempore voluptatum.

+

Corrupti id saepe. Blanditiis culpa

+

Cupiditate est maiores non repellendus. Dolorum itaque maiores quo. At atque consequatur facilis molestiae nobis non perferendis voluptates. Culpa est maiores maxime mollitia possimus praesentium quo tempore. Animi asperiores nihil non. Consequatur cumque necessitatibus omnis soluta tempore ut voluptates. Asperiores doloribus maxime sint tenetur. At eos est fuga harum mollitia non praesentium quas vero.

Officia officiis. + format: civictheme_rich_text + field_c_p_expand: + - + value: false + field_c_p_title: + - + value: 'Occaecati perferendis tempore.' + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_featured_image: + - + entity: dc4091c2-b7b5-4612-95b7-f8fdd9163be6 + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: dark + field_c_n_banner_type: + - + value: large + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/e50117fd-6158-4aab-b675-b923adb32453.yml b/recipes/civictheme_content_generated_static/content/node/e50117fd-6158-4aab-b675-b923adb32453.yml new file mode 100644 index 0000000000..9fa114aec4 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/e50117fd-6158-4aab-b675-b923adb32453.yml @@ -0,0 +1,121 @@ +_meta: + version: '1.0' + entity_type: node + uuid: e50117fd-6158-4aab-b675-b923adb32453 + bundle: civictheme_page + default_langcode: en + depends: + 1590793c-8c13-4a67-8607-dd9aef6115e7: media + 833511b2-aae8-40ad-a584-cc0246189ec2: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Thu: Y, Sum: Sum, Top: 1, Com: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page 19. Officia officiis quos.' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-19-officia-officiis-quos + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 156a6643-5496-4c21-ba5c-9a608cf2fcef + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Earum perferendis sapiente sunt. Deleniti

+

Est iusto maxime qui repellat rerum saepe tenetur voluptas. Eligendi molestias possimus. Aut expedita itaque officia placeat quibusdam voluptatum. Accusamus deserunt impedit laborum nam nihil officia soluta voluptas. Alias earum qui vero. Atque autem debitis impedit quibusdam rerum tenetur voluptas. Consequatur dolorum iusto laborum maiores nobis quibusdam quidem vero. In non quo repudiandae.

+

At cumque hic laborum quo repellat. Cumque delectus excepturi maxime sint. Autem blanditiis culpa cupiditate eos expedita in quod quos voluptatum. Facilis iusto libero saepe. Corrupti dignissimos distinctio facere molestiae perferendis provident similique soluta sunt. Blanditiis culpa occaecati repudiandae vero.

+

Id impedit maxime minus nam

+

Harum id nam quas. Debitis eos eveniet in maiores necessitatibus qui quidem tempore vero. Aut consequatur cumque deserunt eos repudiandae similique tempore. Cupiditate facilis libero perferendis quibusdam sapiente. Et laborum quas quibusdam reiciendis sint voluptatum. Aut culpa debitis earum laborum nobis odio praesentium.

Atque dolor. + format: civictheme_rich_text + field_c_p_theme: + - + value: light + field_c_p_vertical_spacing: + - + value: none + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_summary: + - + value: 'Summary Distinctio harum praesentium quod quos repellat tempore ut voluptatum. Earum eveniet itaque vero voluptatibus. Corrupti eos facere temporibus. Deserunt eveniet id minus nihil placeat voluptatibus. Dolor earum itaque possimus tenetur vero. Cumque delectus hic mollitia necessitatibus nihil nobis repellat voluptatibus. Alias at eveniet harum molestias officiis sapiente similique. Aut debitis et molestiae occaecati quidem saepe soluta tempore. Consequatur culpa doloribus est eveniet itaque libero nam odio quos. Accusamus animi deleniti doloribus libero molestiae possimus provident quo. Assumenda blanditiis qui repudiandae rerum. Deleniti excepturi harum iusto optio praesentium. Libero minus optio provident rerum temporibus tenetur voluptatibus. Doloribus eligendi necessitatibus optio praesentium.' + field_c_n_thumbnail: + - + entity: 1590793c-8c13-4a67-8607-dd9aef6115e7 + field_c_n_topics: + - + entity: 833511b2-aae8-40ad-a584-cc0246189ec2 + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/edc5fc47-4fa1-4812-be4f-cc3b3339fbfd.yml b/recipes/civictheme_content_generated_static/content/node/edc5fc47-4fa1-4812-be4f-cc3b3339fbfd.yml new file mode 100644 index 0000000000..810c1d7892 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/edc5fc47-4fa1-4812-be4f-cc3b3339fbfd.yml @@ -0,0 +1,111 @@ +_meta: + version: '1.0' + entity_type: node + uuid: edc5fc47-4fa1-4812-be4f-cc3b3339fbfd + bundle: civictheme_page + default_langcode: en + depends: + 09d61f69-746d-42d1-9d8f-78c256e9595e: media +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Tit: Pag, Ban: dar, Ban: def, Ban: Y, Ble: sof, Ban: 1, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Banner default, Light, Background, Content' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-banner-default-light-background-content + langcode: en + pathauto: 0 + field_c_n_banner_background: + - + entity: 09d61f69-746d-42d1-9d8f-78c256e9595e + field_c_n_banner_blend_mode: + - + value: soft-light + field_c_n_banner_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0ce951ee-5862-4304-b5f9-ce3c9d4af257 + bundle: civictheme_content + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: |- +

Laborum occaecati omnis. Eligendi possimus

+

Minus molestias mollitia officiis qui. Id in molestiae omnis quidem repudiandae voluptatum. Delectus excepturi minus molestias nam placeat quos reiciendis similique soluta. Assumenda eos et excepturi maiores quod similique sint. Animi ducimus earum expedita itaque maxime molestias possimus sint voluptates.

Expedita officia. + format: civictheme_rich_text + field_c_p_theme: + - + value: dark + field_c_p_vertical_spacing: + - + value: none + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: dark + field_c_n_banner_type: + - + value: default + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/fade134e-65b2-4458-baca-44bcc2813dbf.yml b/recipes/civictheme_content_generated_static/content/node/fade134e-65b2-4458-baca-44bcc2813dbf.yml new file mode 100644 index 0000000000..bd75f34b63 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/fade134e-65b2-4458-baca-44bcc2813dbf.yml @@ -0,0 +1,306 @@ +_meta: + version: '1.0' + entity_type: node + uuid: fade134e-65b2-4458-baca-44bcc2813dbf + bundle: civictheme_page + default_langcode: en +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Sta: Y, Mod: pub, Ali: /ge, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Promo, sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/page-component-promo-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: e5964b20-5963-4276-8fcb-21272883a75e + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_link: + - + uri: 'https://www.example.com/Molestiae-sapiente-tempore.-At-maxime.' + title: 'Eligendi expedita.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Dolorum eveniet libero.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 227d6449-22bc-4aa2-9365-9e7175cd7fb0 + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_link: + - + uri: 'https://www.example.com/Maiores-molestiae-saepe-voluptas.-Eos.' + title: 'Non officia.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Deserunt temporibus voluptatibus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 6308b863-8cb6-4822-a6bd-02330ba19c8c + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Dolor-omnis-optio-repudiandae.-Animi.' + title: 'Laborum occaecati.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, BG, Facere id maxime.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a8a173ed-2a42-4d55-be5a-05275390f39e + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: true + field_c_p_link: + - + uri: 'https://www.example.com/Occaecati-perferendis-tempore.-Accusamus-id.' + title: 'Expedita officia.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, BG, Minus molestias mollitia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: cc39435d-b3fd-4b58-b008-aac243ad549c + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Impedit non optio quod quos repudiandae sapiente tenetur.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Content, Vertical spacing, Mollitia non sunt.' + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: ae589853-7fa1-432d-8196-9a775eeffea7 + bundle: civictheme_promo + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_background: + - + value: false + field_c_p_content: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem.' + format: '' + field_c_p_link: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Content, Vertical spacing, Fuga id impedit.' + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/node/fc44f670-6abb-400b-a1e2-7ed7fe0b22d2.yml b/recipes/civictheme_content_generated_static/content/node/fc44f670-6abb-400b-a1e2-7ed7fe0b22d2.yml new file mode 100644 index 0000000000..c0baa1ec37 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/node/fc44f670-6abb-400b-a1e2-7ed7fe0b22d2.yml @@ -0,0 +1,385 @@ +_meta: + version: '1.0' + entity_type: node + uuid: fc44f670-6abb-400b-a1e2-7ed7fe0b22d2 + bundle: civictheme_page + default_langcode: en + depends: + fb24d887-5e65-4ac2-abb3-f9d98220ddcc: media + af716da0-dff7-4bc2-b2fc-a42f603f4f9c: media + dbc30bcd-876e-4499-bab2-362edfb76d2a: media + 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03: taxonomy_term + 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db: taxonomy_term + d83dffb5-13bd-4f86-87f9-f76e3407e1d4: media + 69b264ff-cb55-4156-bf72-e244a7bbc92d: taxonomy_term + 310e5590-9cf1-4cda-b63f-ea8c61e3a442: taxonomy_term + a9a587b3-2b9e-43ce-ab28-66d5e5f634a0: media + 10229b37-ed3a-4971-aec1-4167f6bf2e5b: taxonomy_term + 78d9bda2-9d9a-4355-ac3a-248bf56de1b2: taxonomy_term + 1f232b36-2259-4825-b989-76ab776794c3: media + bba1ff94-2e5b-429c-985d-30141c5c8234: taxonomy_term + 4069c2f7-3b9b-47b9-977c-c6b57ecce127: taxonomy_term +default: + revision_uid: + - + target_id: 0 + revision_log: + - + value: 'Generated content. Com: 6, Tit: Pag, Ali: /ge, Sta: Y, Mod: pub, Ver: non' + status: + - + value: true + uid: + - + target_id: 0 + title: + - + value: 'Page. Component. Campaign, no sidebar' + created: + - + value: 1758892277 + promote: + - + value: false + sticky: + - + value: false + revision_translation_affected: + - + value: true + moderation_state: + - + value: published + path: + - + alias: /generated-content/civictheme_page/civictheme-no-sidebar/page-component-campaign-no-sidebar + langcode: en + pathauto: 0 + field_c_n_banner_blend_mode: + - + value: normal + field_c_n_banner_hide_breadcrumb: + - + value: false + field_c_n_banner_theme: + - + value: inherit + field_c_n_banner_type: + - + value: inherit + field_c_n_components: + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 59bd4089-4e6c-46e7-8f31-fe6a4ce6fff3 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: fb24d887-5e65-4ac2-abb3-f9d98220ddcc + field_c_p_image_position: + - + value: left + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image left, Eligendi expedita officia.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: a7d2e765-6860-4adc-b4bc-a423d19be693 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_image: + - + entity: af716da0-dff7-4bc2-b2fc-a42f603f4f9c + field_c_p_image_position: + - + value: right + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image right, Deserunt temporibus voluptatibus.' + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 183e38cb-782c-47cc-a183-47caa9d895c9 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Non officia officiis quibusdam vero. Autem facilis hic.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: dbc30bcd-876e-4499-bab2-362edfb76d2a + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Facere-id-maxime-nihil-odio.' + title: 'Dolor omnis.' + options: { } + - + uri: 'https://www.example.com/Laborum-occaecati-omnis.-Eligendi-possimus.' + title: 'Minus molestias.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image left, Date, Content, 2 links, 2 Topics, Maiores molestiae saepe.' + field_c_p_topics: + - + entity: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + - + entity: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: aed212af-4ac9-4b60-a211-85c7e37a4a34 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Expedita officia quod recusandae. Earum expedita maiores molestiae.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: d83dffb5-13bd-4f86-87f9-f76e3407e1d4 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Mollitia-non-sunt.-Animi-eos.' + title: 'Impedit non.' + options: { } + - + uri: 'https://www.example.com/Corrupti-id-saepe.-Blanditiis-culpa.' + title: 'Cupiditate est.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Image left, Date, Content, 2 links, 2 Topics, Occaecati perferendis tempore.' + field_c_p_topics: + - + entity: 69b264ff-cb55-4156-bf72-e244a7bbc92d + - + entity: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + field_c_p_vertical_spacing: + - + value: none + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 0b2b8aeb-522a-4cbb-8b7e-fa9ff37e3e37 + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'Officia officiis quos. Facere harum omnis. Dignissimos quidem.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: a9a587b3-2b9e-43ce-ab28-66d5e5f634a0 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Distinctio-harum-praesentium-quod-quos.' + title: 'Cumque delectus.' + options: { } + - + uri: 'https://www.example.com/Accusamus-animi-deleniti-doloribus-libero.' + title: 'Earum perferendis.' + options: { } + field_c_p_theme: + - + value: light + field_c_p_title: + - + value: 'Light, Image left, Date, Content, 2 links, 2 Topics, Vertical spacing, Fuga id impedit.' + field_c_p_topics: + - + entity: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + - + entity: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + field_c_p_vertical_spacing: + - + value: both + - + entity: + _meta: + version: '1.0' + entity_type: paragraph + uuid: 9f858a7d-5b96-4fe8-b6d1-15264f7323cb + bundle: civictheme_campaign + default_langcode: en + default: + status: + - + value: true + created: + - + value: 1758892277 + behavior_settings: + - + value: { } + revision_translation_affected: + - + value: true + field_c_p_content: + - + value: 'At cumque hic laborum quo repellat. Cumque delectus.' + format: '' + field_c_p_date: + - + value: '2022-12-22' + field_c_p_image: + - + entity: 1f232b36-2259-4825-b989-76ab776794c3 + field_c_p_image_position: + - + value: left + field_c_p_links: + - + uri: 'https://www.example.com/Id-impedit-maxime-minus-nam.' + title: 'Harum id.' + options: { } + - + uri: 'https://www.example.com/Asperiores-atque-molestias-mollitia-praesentium.' + title: 'Atque dolor.' + options: { } + field_c_p_theme: + - + value: dark + field_c_p_title: + - + value: 'Dark, Image left, Date, Content, 2 links, 2 Topics, Vertical spacing, Est iusto maxime.' + field_c_p_topics: + - + entity: bba1ff94-2e5b-429c-985d-30141c5c8234 + - + entity: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + field_c_p_vertical_spacing: + - + value: both + field_c_n_hide_sidebar: + - + value: false + field_c_n_hide_tags: + - + value: false + field_c_n_show_last_updated: + - + value: true + field_c_n_show_toc: + - + value: false + field_c_n_vertical_spacing: + - + value: none diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/10229b37-ed3a-4971-aec1-4167f6bf2e5b.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/10229b37-ed3a-4971-aec1-4167f6bf2e5b.yml new file mode 100644 index 0000000000..9ddc275a4a --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/10229b37-ed3a-4971-aec1-4167f6bf2e5b.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 10229b37-ed3a-4971-aec1-4167f6bf2e5b + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 7 Asperiores atque.' + weight: + - + value: 6 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/106e6e14-0c6d-40cf-85dd-bcf0eb87fa03.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/106e6e14-0c6d-40cf-85dd-bcf0eb87fa03.yml new file mode 100644 index 0000000000..9a4e0d7122 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/106e6e14-0c6d-40cf-85dd-bcf0eb87fa03.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 106e6e14-0c6d-40cf-85dd-bcf0eb87fa03 + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 3 Est iusto.' + weight: + - + value: 2 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/310e5590-9cf1-4cda-b63f-ea8c61e3a442.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/310e5590-9cf1-4cda-b63f-ea8c61e3a442.yml new file mode 100644 index 0000000000..a37ef82e02 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/310e5590-9cf1-4cda-b63f-ea8c61e3a442.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 310e5590-9cf1-4cda-b63f-ea8c61e3a442 + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 6 Harum id.' + weight: + - + value: 5 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/4069c2f7-3b9b-47b9-977c-c6b57ecce127.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/4069c2f7-3b9b-47b9-977c-c6b57ecce127.yml new file mode 100644 index 0000000000..9a39887e57 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/4069c2f7-3b9b-47b9-977c-c6b57ecce127.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 4069c2f7-3b9b-47b9-977c-c6b57ecce127 + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 10 Libero nam.' + weight: + - + value: 9 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/69b264ff-cb55-4156-bf72-e244a7bbc92d.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/69b264ff-cb55-4156-bf72-e244a7bbc92d.yml new file mode 100644 index 0000000000..df63bb85b7 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/69b264ff-cb55-4156-bf72-e244a7bbc92d.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 69b264ff-cb55-4156-bf72-e244a7bbc92d + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 5 Id impedit.' + weight: + - + value: 4 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/6b72fc35-5061-40e5-88c4-e4166fcd9ade.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/6b72fc35-5061-40e5-88c4-e4166fcd9ade.yml new file mode 100644 index 0000000000..ed2ca9bd61 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/6b72fc35-5061-40e5-88c4-e4166fcd9ade.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 6b72fc35-5061-40e5-88c4-e4166fcd9ade + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 2 Earum perferendis.' + weight: + - + value: 1 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/78d9bda2-9d9a-4355-ac3a-248bf56de1b2.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/78d9bda2-9d9a-4355-ac3a-248bf56de1b2.yml new file mode 100644 index 0000000000..8305f7a527 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/78d9bda2-9d9a-4355-ac3a-248bf56de1b2.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 78d9bda2-9d9a-4355-ac3a-248bf56de1b2 + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 8 Atque dolor.' + weight: + - + value: 7 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/833511b2-aae8-40ad-a584-cc0246189ec2.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/833511b2-aae8-40ad-a584-cc0246189ec2.yml new file mode 100644 index 0000000000..5656d8d578 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/833511b2-aae8-40ad-a584-cc0246189ec2.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 833511b2-aae8-40ad-a584-cc0246189ec2 + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 1 Accusamus animi.' + weight: + - + value: 0 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/8ce810f1-e26c-4734-9d33-240c57ada31e.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/8ce810f1-e26c-4734-9d33-240c57ada31e.yml new file mode 100644 index 0000000000..bf4818eea4 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/8ce810f1-e26c-4734-9d33-240c57ada31e.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 8ce810f1-e26c-4734-9d33-240c57ada31e + bundle: civictheme_site_sections + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 1 Culpa debitis.' + weight: + - + value: 0 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/9fd5e9cd-37d3-4d07-9235-9141bf6ab2db.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/9fd5e9cd-37d3-4d07-9235-9141bf6ab2db.yml new file mode 100644 index 0000000000..cf259b2801 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/9fd5e9cd-37d3-4d07-9235-9141bf6ab2db.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: 9fd5e9cd-37d3-4d07-9235-9141bf6ab2db + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 4 At cumque.' + weight: + - + value: 3 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/bba1ff94-2e5b-429c-985d-30141c5c8234.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/bba1ff94-2e5b-429c-985d-30141c5c8234.yml new file mode 100644 index 0000000000..fd10fa9ce7 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/bba1ff94-2e5b-429c-985d-30141c5c8234.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: bba1ff94-2e5b-429c-985d-30141c5c8234 + bundle: civictheme_topics + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 9 Consequatur deserunt.' + weight: + - + value: 8 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/ee117b64-aeff-4d10-9e0d-f5fd535af999.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/ee117b64-aeff-4d10-9e0d-f5fd535af999.yml new file mode 100644 index 0000000000..776d260e81 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/ee117b64-aeff-4d10-9e0d-f5fd535af999.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: ee117b64-aeff-4d10-9e0d-f5fd535af999 + bundle: civictheme_site_sections + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 3 Debitis delectus.' + weight: + - + value: 2 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/content/taxonomy_term/fe54cbd6-d652-47c4-9a53-d6d6c53887d4.yml b/recipes/civictheme_content_generated_static/content/taxonomy_term/fe54cbd6-d652-47c4-9a53-d6d6c53887d4.yml new file mode 100644 index 0000000000..8ebc221285 --- /dev/null +++ b/recipes/civictheme_content_generated_static/content/taxonomy_term/fe54cbd6-d652-47c4-9a53-d6d6c53887d4.yml @@ -0,0 +1,27 @@ +_meta: + version: '1.0' + entity_type: taxonomy_term + uuid: fe54cbd6-d652-47c4-9a53-d6d6c53887d4 + bundle: civictheme_site_sections + default_langcode: en +default: + status: + - + value: true + name: + - + value: 'G 2 Aut delectus.' + weight: + - + value: 1 + parent: + - + target_id: 0 + revision_translation_affected: + - + value: true + path: + - + alias: '' + langcode: en + pathauto: 1 diff --git a/recipes/civictheme_content_generated_static/recipe.yml b/recipes/civictheme_content_generated_static/recipe.yml new file mode 100644 index 0000000000..b59119a960 --- /dev/null +++ b/recipes/civictheme_content_generated_static/recipe.yml @@ -0,0 +1,3 @@ +name: 'CivicTheme Content Generated Static' +description: 'Install civictheme generated static content for visual comparison' +type: 'Theme' diff --git a/recipes/civictheme_drupal_cms_preinstall/composer.json b/recipes/civictheme_drupal_cms_preinstall/composer.json new file mode 100644 index 0000000000..bfc11150e8 --- /dev/null +++ b/recipes/civictheme_drupal_cms_preinstall/composer.json @@ -0,0 +1,7 @@ +{ + "name": "drupal/civictheme_drupal_cms_preinstall", + "description": "Recipe for preparing CivicTheme to be installed (overcoming missing layout issue but activating barebones CivicTheme).", + "type": "recipe", + "license": "GPL-2.0-or-later", + "require": {} +} diff --git a/recipes/civictheme_drupal_cms_preinstall/recipe.yml b/recipes/civictheme_drupal_cms_preinstall/recipe.yml new file mode 100644 index 0000000000..3b53e9261c --- /dev/null +++ b/recipes/civictheme_drupal_cms_preinstall/recipe.yml @@ -0,0 +1,5 @@ +name: 'CivicTheme' +description: 'Install civictheme' +type: 'Enabling civictheme to register layouts (see: https://www.drupal.org/project/drupal/issues/3204271)' +install: + - civictheme diff --git a/recipes/civictheme_drupal_cms_starter/composer.json b/recipes/civictheme_drupal_cms_starter/composer.json new file mode 100644 index 0000000000..9430f57790 --- /dev/null +++ b/recipes/civictheme_drupal_cms_starter/composer.json @@ -0,0 +1,7 @@ +{ + "name": "drupal/civictheme_drupal_cms_starter", + "description": "Recipe for setting up CivicTheme.", + "type": "recipe", + "license": "GPL-2.0-or-later", + "require": {} +} diff --git a/recipes/civictheme_drupal_cms_starter/recipe.yml b/recipes/civictheme_drupal_cms_starter/recipe.yml new file mode 100644 index 0000000000..97a8067d8d --- /dev/null +++ b/recipes/civictheme_drupal_cms_starter/recipe.yml @@ -0,0 +1,14 @@ +name: 'CivicTheme' +description: 'Install civictheme' +type: 'Theme installer' +recipes: + - civictheme_starter +config: + strict: false + actions: + system.theme: + simpleConfigUpdate: + default: civictheme + media.settings: + simpleConfigUpdate: + standalone_url: true diff --git a/recipes/civictheme_starter/composer.json b/recipes/civictheme_starter/composer.json new file mode 100644 index 0000000000..ab186e0807 --- /dev/null +++ b/recipes/civictheme_starter/composer.json @@ -0,0 +1,7 @@ +{ + "name": "drupal/civictheme_starter", + "description": "Install civicthemes, module dependencies, required configuration, and basic block types.", + "type": "recipe", + "license": "GPL-2.0-or-later", + "require": {} +} diff --git a/recipes/civictheme_starter/recipe.yml b/recipes/civictheme_starter/recipe.yml new file mode 100644 index 0000000000..e0a3d0d4ab --- /dev/null +++ b/recipes/civictheme_starter/recipe.yml @@ -0,0 +1,49 @@ +name: 'CivicTheme Starter Recipe' +description: 'Install civicthemes, module dependencies, required configuration, and basic block types.' +type: 'Site' +recipes: + - core/recipes/basic_block_type + - core/recipes/core_recommended_performance + - core/recipes/core_recommended_maintenance + - core/recipes/core_recommended_admin_theme + - core/recipes/administrator_role +install: + - image + - help + - config + - contextual + - menu_link_content + - datetime + - menu_ui + - node + - options + - toolbar + - field_ui + - views_ui + - shortcut + - search + - search_api + - search_api_db + - civictheme +config: + strict: false + import: + shortcut: '*' + media: + - core.entity_view_mode.media.full + media_library: + - core.entity_form_mode.media.media_library + - core.entity_view_mode.media.media_library + - image.style.media_library + - views.view.media_library + node: + - views.view.content + civictheme: '*' + user: '*' + actions: + system.theme: + simpleConfigUpdate: + default: civictheme + node.settings: + simpleConfigUpdate: + use_admin_theme: true diff --git a/scripts/custom/provision-10-enable-theme-modules.sh b/scripts/custom/provision-10-enable-theme-modules.sh index 9acdea2a6c..d0e070ebf0 100755 --- a/scripts/custom/provision-10-enable-theme-modules.sh +++ b/scripts/custom/provision-10-enable-theme-modules.sh @@ -11,35 +11,41 @@ set -eu drush() { ./vendor/bin/drush -y "$@"; } -echo "[INFO] Enabling theme modules." -echo " > Removing all files." +echo " > Removing all site files." rm -Rf /app/web/sites/default/files/* >/dev/null || true - -echo " > Enable modules required by CivicTheme." -drush php:eval "require_once dirname(\Drupal::getContainer()->get('theme_handler')->rebuildThemeData()['civictheme']->getPathname()) . '/theme-settings.provision.inc'; civictheme_enable_modules();" - -echo " > Enable admin theme and set as default." -if [ "${DRUPAL_PROFILE}" = "govcms" ]; then - # Enable stable9 theme and set as default theme. - # This is required to remove other theme to avoid polluting configuration. - drush theme-enable stable9 - drush config-set system.theme default stable9 - - # Remove other themes. - drush theme-uninstall govcms_bartik || true - drush theme-uninstall bartik || true -elif [ "${DRUPAL_PROFILE}" = "minimal" ]; then - drush theme-enable claro - drush config-set system.theme admin claro - drush config-set node.settings use_admin_theme 1 +if [[ "$DRUPAL_VERSION" = 'CMS' ]]; then + drush updatedb -y + # Uninstalling conflicting components of Drupal CMS + drush pm:uninstall scheduler svg_image + php -d memory_limit=-1 /app/vendor/drush/drush/drush.php recipe /app/recipes/civictheme_drupal_cms_preinstall + php -d memory_limit=-1 /app/vendor/drush/drush/drush.php recipe /app/recipes/civictheme_drupal_cms_starter +fi +if [[ "$DRUPAL_VERSION" != 'CMS' ]] && ([[ "$DRUPAL_PROFILE" != /app/recipes/* ]] || [[ "$DRUPAL_PROFILE" != "/app/recipes/civictheme_starter" ]]); then +echo "[INFO] Enabling theme modules." + if [ "${DRUPAL_PROFILE}" = "govcms" ]; then + echo " > Enable admin theme and set as default." + # Enable stable9 theme and set as default theme. + # This is required to remove other theme to avoid polluting configuration. + drush theme-enable stable9 + drush config-set system.theme default stable9 + + # Remove other themes. + drush theme-uninstall govcms_bartik || true + drush theme-uninstall bartik || true + elif [ "${DRUPAL_PROFILE}" = "minimal" ]; then + drush theme-enable claro + drush config-set system.theme admin claro + drush config-set node.settings use_admin_theme 1 + fi + + if [[ "$DRUPAL_PROFILE" != /app/recipes/* ]] || [[ "$DRUPAL_PROFILE" != "/app/recipes/civictheme_starter" ]]; then + echo " > Enable CivicTheme theme and set as default." + drush theme-enable civictheme + drush config-set system.theme default civictheme + drush config-set media.settings standalone_url true + + drush theme-uninstall stable9 || true + fi + echo "[ OK ] Finished enabling theme modules." fi - -echo " > Enable CivicTheme theme and set as default." -drush theme-enable civictheme -drush config-set system.theme default civictheme -drush config-set media.settings standalone_url true - -drush theme-uninstall stable9 || true - -echo "[ OK ] Finished enabling theme modules." diff --git a/scripts/custom/provision-30-enable-modules.sh b/scripts/custom/provision-30-enable-modules.sh index 6ead72426e..fc77992941 100755 --- a/scripts/custom/provision-30-enable-modules.sh +++ b/scripts/custom/provision-30-enable-modules.sh @@ -18,7 +18,9 @@ if [ "${DRUPAL_PROFILE:-}" = "govcms" ]; then echo " > Remove GovCMS configs." drush pm-enable civictheme_govcms drush civictheme_govcms:remove-config -else +fi + +if [ "${DRUPAL_VERSION:-}" != 'CMS' ]; then echo " > Enable Admin module." drush pm-enable civictheme_admin drush pm-enable admin_toolbar admin_toolbar_search diff --git a/scripts/custom/provision-50-provision-content.sh b/scripts/custom/provision-50-provision-content.sh index 207fc20c25..9dcdc2eda9 100755 --- a/scripts/custom/provision-50-provision-content.sh +++ b/scripts/custom/provision-50-provision-content.sh @@ -23,8 +23,9 @@ fi if [ "${CIVICTHEME_GENERATED_CONTENT_CREATE_SKIP:-}" != "1" ]; then echo " > Generate test content." - GENERATED_CONTENT_CREATE=1 drush pm-enable cs_generated_content - + drush recipe /app/recipes/civictheme_content_generated_static + # cache clear required @see: https://www.drupal.org/project/drupal/issues/3477002 + drush cr if drush pm-list --status=enabled | grep -q simple_sitemap; then echo " > Generate sitemap." drush simple-sitemap:generate diff --git a/scripts/drevops/provision.sh b/scripts/drevops/provision.sh index 5e0a0ae118..2ff9986135 100755 --- a/scripts/drevops/provision.sh +++ b/scripts/drevops/provision.sh @@ -92,6 +92,8 @@ site_is_installed="$(drush status --fields=bootstrap | grep -q "Successful" && e echo note "Webroot dir : ${DREVOPS_WEBROOT}" note "Profile : ${DRUPAL_PROFILE}" +# Custom CivicTheme change +note "Drupal Version : ${DRUPAL_VERSION}" note "Private files directory : ${DREVOPS_DRUPAL_PRIVATE_FILES}" note "Config path : ${DREVOPS_DRUPAL_CONFIG_PATH}" note "DB dump file path : ${DREVOPS_DB_DIR}/${DREVOPS_DB_FILE} ($([ -f "${DREVOPS_DB_DIR}/${DREVOPS_DB_FILE}" ] && echo "present" || echo "absent"))" diff --git a/tests/behat/features/generated_content.feature b/tests/behat/features/generated_content.feature index 58b89d78af..bf522a89a9 100644 --- a/tests/behat/features/generated_content.feature +++ b/tests/behat/features/generated_content.feature @@ -1,4 +1,4 @@ -@p0 @development +@p0 @development @skipped Feature: Generated Content list @api diff --git a/tests/behat/features/paragraph.civictheme_message.render.feature b/tests/behat/features/paragraph.civictheme_message.render.feature index b0832f2271..d821a6f4fd 100644 --- a/tests/behat/features/paragraph.civictheme_message.render.feature +++ b/tests/behat/features/paragraph.civictheme_message.render.feature @@ -33,7 +33,9 @@ Feature: Message render And "field_c_n_components" in "civictheme_page" "node" with "title" of "[TEST] Page message test" has "civictheme_message" paragraph: | field_c_p_title | [TEST] message title | | field_c_p_theme | dark | - | field_c_p_content | Content text | + | field_c_p_content:value | Content text | + | field_c_p_content:format | civictheme_rich_text | + | field_c_p_message_type | information | | field_c_p_message_type | warning | | field_c_p_background | 0 | diff --git a/tests/behat/features/paragraph.civictheme_webform.render.feature b/tests/behat/features/paragraph.civictheme_webform.render.feature index da444cb6e0..b54e809e4c 100644 --- a/tests/behat/features/paragraph.civictheme_webform.render.feature +++ b/tests/behat/features/paragraph.civictheme_webform.render.feature @@ -10,7 +10,7 @@ Feature: Webform render Scenario: CivicTheme page content type page can be viewed by anonymous with Webform Given I am an anonymous user And "field_c_n_components" in "civictheme_page" "node" with "title" of "[TEST] Page Webform test" has "civictheme_webform" paragraph: - | field_c_p_webform | contact | + | field_c_p_webform | civictheme_enquiry | | field_c_p_theme | light | | field_c_p_vertical_spacing | both | | field_c_p_background | 0 | @@ -20,7 +20,7 @@ Feature: Webform render And I should see an ".ct-webform.ct-theme-light" element And I should see an ".ct-webform.ct-vertical-spacing-inset--both" element And I should not see an ".ct-webform.ct-theme-dark" element - And I see field "Your Name" - And I see field "Your Email" - And I see field "Subject" - And I see field "Message" + And I see field "First name" + And I see field "Last name" + And I see field "Email" + And I see field "Enquiry" diff --git a/web/sites/default/default.services.yml b/web/sites/default/default.services.yml index 1243d06008..3570cfa934 100644 --- a/web/sites/default/default.services.yml +++ b/web/sites/default/default.services.yml @@ -238,6 +238,11 @@ parameters: # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Credentials supportsCredentials: false + # The maximum number of entities stored in memory. Lowering this number can + # reduce the amount of memory used in long-running processes like migrations, + # however will also increase requests to the database or entity cache backend. + entity.memory_cache.slots: 1000 + queue.config: # The maximum number of seconds to wait if a queue is temporarily suspended. # This is not applicable when a queue is suspended but does not specify diff --git a/web/sites/default/default.settings.php b/web/sites/default/default.settings.php index cd364bb00d..d4ba8a9182 100644 --- a/web/sites/default/default.settings.php +++ b/web/sites/default/default.settings.php @@ -67,10 +67,10 @@ * during the same request. * * One example of the simplest connection array is shown below. To use the - * sample settings, copy and uncomment the code below between the @code and - * @endcode lines and paste it after the $databases declaration. You will need - * to replace the database username and password and possibly the host and port - * with the appropriate credentials for your database system. + * sample settings, copy and uncomment the code below and paste it after the + * $databases declaration. You will need to replace the database username and + * password and possibly the host and port with the appropriate credentials for + * your database system. * * The next section describes how to customize the $databases array for more * specific needs. @@ -312,7 +312,7 @@ $settings['update_free_access'] = FALSE; /** - * Fallback to HTTP for Update Manager and for fetching security advisories. + * Fallback to HTTP for Update Status and for fetching security advisories. * * If your site fails to connect to updates.drupal.org over HTTPS (either when * fetching data on available updates, or when fetching the feed of critical @@ -475,30 +475,6 @@ */ # $settings['class_loader_auto_detect'] = FALSE; -/** - * Authorized file system operations: - * - * The Update Manager module included with Drupal provides a mechanism for - * site administrators to securely install missing updates for the site - * directly through the web user interface. On securely-configured servers, - * the Update manager will require the administrator to provide SSH or FTP - * credentials before allowing the installation to proceed; this allows the - * site to update the new files as the user who owns all the Drupal files, - * instead of as the user the webserver is running as. On servers where the - * webserver user is itself the owner of the Drupal files, the administrator - * will not be prompted for SSH or FTP credentials (note that these server - * setups are common on shared hosting, but are inherently insecure). - * - * Some sites might wish to disable the above functionality, and only update - * the code directly via SSH or FTP themselves. This setting completely - * disables all functionality related to these authorized file operations. - * - * @see https://www.drupal.org/node/244924 - * - * Remove the leading hash signs to disable. - */ -# $settings['allow_authorize_operations'] = FALSE; - /** * Default mode for directories and files written by Drupal. * diff --git a/web/themes/contrib/civictheme/config/install/views.view.civictheme_media.yml b/web/themes/contrib/civictheme/config/install/views.view.civictheme_media.yml index 8d81c3d277..0d30116c2e 100644 --- a/web/themes/contrib/civictheme/config/install/views.view.civictheme_media.yml +++ b/web/themes/contrib/civictheme/config/install/views.view.civictheme_media.yml @@ -2,7 +2,7 @@ langcode: en status: true dependencies: config: - - image.style.thumbnail + - image.style.civictheme_medium - taxonomy.vocabulary.civictheme_media_tags module: - image @@ -133,7 +133,7 @@ display: type: image settings: image_link: '' - image_style: thumbnail + image_style: civictheme_medium image_loading: attribute: lazy group_column: '' @@ -930,7 +930,7 @@ display: footer: { } display_extenders: { } cache_metadata: - max-age: 0 + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -958,7 +958,7 @@ display: parent: '' context: '0' cache_metadata: - max-age: 0 + max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_1.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_1.yml index 5b0b1c6d0d..37e4d1cadc 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_1.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_1.yml @@ -20,11 +20,14 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: fixed + display_empty: false level: 1 depth: 1 expand_all_items: false parent: 'civictheme-footer:menu_link_content:8a251c00-43a4-42c4-b140-3f6b62bdc000' + render_parent: false suggestion: civictheme_footer + label_type: fixed + label_link: false + hide_on_nonactive: false visibility: { } diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_2.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_2.yml index 7f98dba692..a4f1f5fdc3 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_2.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_2.yml @@ -20,11 +20,14 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: fixed + display_empty: false level: 1 depth: 1 expand_all_items: false parent: 'civictheme-footer:menu_link_content:8973fd39-dcfd-4607-a356-f9869a231804' + render_parent: false suggestion: civictheme_footer + label_type: fixed + label_link: false + hide_on_nonactive: false visibility: { } diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_3.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_3.yml index 08ef209793..050c27f249 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_3.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_3.yml @@ -20,11 +20,14 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: fixed + display_empty: false level: 1 depth: 1 expand_all_items: false parent: 'civictheme-footer:menu_link_content:49fb8cd6-a1cd-4a47-9b9a-db4685a5f9cd' + render_parent: false suggestion: civictheme_footer + label_type: fixed + label_link: false + hide_on_nonactive: false visibility: { } diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_4.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_4.yml index d519ea1433..c4e38f621a 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_4.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_footer_menu_4.yml @@ -20,11 +20,14 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: fixed + display_empty: false level: 1 depth: 1 expand_all_items: false parent: 'civictheme-footer:menu_link_content:35be8705-b50e-4506-9a61-568ef0986318' + render_parent: false suggestion: civictheme_footer + label_type: fixed + label_link: false + hide_on_nonactive: false visibility: { } diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_primary_navigation.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_primary_navigation.yml index 44af7c721a..5f433198cf 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_primary_navigation.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_primary_navigation.yml @@ -20,11 +20,14 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: block + display_empty: false level: 1 depth: 3 expand_all_items: false parent: 'civictheme-primary-navigation:' + render_parent: false suggestion: civictheme_primary_navigation + label_type: block + label_link: false + hide_on_nonactive: false visibility: { } diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_secondary_navigation.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_secondary_navigation.yml index 9f38387520..cf03218893 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_secondary_navigation.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_secondary_navigation.yml @@ -20,11 +20,14 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: block + display_empty: false level: 1 depth: 0 expand_all_items: false parent: 'civictheme-secondary-navigation:' + render_parent: false suggestion: civictheme_secondary_navigation + label_type: block + label_link: false + hide_on_nonactive: false visibility: { } diff --git a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_side_navigation.yml b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_side_navigation.yml index eba92f2994..b1de43bdfa 100644 --- a/web/themes/contrib/civictheme/config/optional/block.block.civictheme_side_navigation.yml +++ b/web/themes/contrib/civictheme/config/optional/block.block.civictheme_side_navigation.yml @@ -21,13 +21,16 @@ settings: provider: menu_block follow: false follow_parent: child - label_link: false - label_type: block + display_empty: false level: 1 depth: 3 expand_all_items: false parent: 'civictheme-primary-navigation:' + render_parent: false suggestion: civictheme_sidebar_navigation + label_type: block + label_link: false + hide_on_nonactive: false visibility: request_path: id: request_path