- Issue created by @La558
Is
drupal/recommended-project
an actual dependency in therequirements
key?Can you please just post the composer.json file?
thanks
I run
composer why-not symfony/process 6.4.8
#response#drupal/recommended-project dev-master conflicts symfony/process (6.4.8) Not finding what you were looking for? Try calling `composer update "symfony/process:6.4.8" --dry-run` to get another view on the problem.
run:
composer update "symfony/process:6.4.8" --dry-run
I got the same response as with `composer update` aboveYour requirements could not be resolved to an installable set of packages. Problem 1 - drupal/recommended-project is present at version dev-master and cannot be modified by Composer - drupal/core-recommended 10.2.7 requires symfony/process ~v6.4.0 -> satisfiable by symfony/process[v6.4.8]. - drupal/recommended-project dev-master conflicts with symfony/process v6.4.8. - drupal/core-recommended is locked to version 10.2.7 and an update of this package was not requested.
Here is my compser.json file
{ "name": "drupal/recommended-project", "description": "Project template for Drupal projects with a relocated document root", "type": "project", "license": "GPL-2.0-or-later", "homepage": "https://www.drupal.org/project/drupal", "support": { "docs": "https://www.drupal.org/docs/user_guide/en/index.html", "chat": "https://www.drupal.org/node/314178" }, "repositories": [ { "type": "composer", "url": "https://packages.drupal.org/8" } ], "require": { "composer/installers": "^2.0", "cweagans/composer-patches": "^1.7", "drupal/admin_toolbar": "^3.4", "drupal/bootstrap": "^3.30", "drupal/core-composer-scaffold": "^10.2", "drupal/core-project-message": "^10.2", "drupal/core-recommended": "^10.2", "drupal/ctools": "^4.0", "drupal/facets": "^2.0", "drupal/field_group": "^3.4", "drupal/field_permissions": "^1.3", "drupal/field_report": "^2.1", "drupal/fontyourface": "^4.0", "drupal/fpa": "^4.0", "drupal/search_api": "^1.34", "drupal/search_api_autocomplete": "^1.8", "drupal/search_api_solr": "^4.3", "drupal/simplesamlphp_auth": "^4.0", "drupal/taxonomy_manager": "^2.0", "drupal/title_length": "^2.0", "drupal/token": "^1.14" }, "conflict": { "drupal/drupal": "*", "symfony/yaml":"6.4.8", "symfony/validator":"6.4.8", "symfony/string":"6.4.8", "symfony/serializer":"6.4.8", "symfony/psr-http-message-bridge":"6.4.8", "symfony/process":"6.4.8", "symfony/mime":"6.4.8", "symfony/mailer":"6.4.8", "symfony/intl":"6.4.8", "symfony/http-kernel":"6.4.8", "symfony/http-foundation":"6.4.8", "symfony/error-handler":"6.4.8", "symfony/dependency-injection":"6.4.8", "symfony/console":"6.4.8", "symfony/config":"6.4.8", "symfony/cache":"6.4.8", "symfony/var-exporter":"6.4.8", "symfony/var-dumper":"6.4.8", "symfony/routing":"6.4.8", "symfony/framework-bundle":"6.4.8", "symfony/finder":"6.4.8", "symfony/filesystem":"6.4.8", "symfony/event-dispatcher":"6.4.8" }, "minimum-stability": "stable", "prefer-stable": true, "config": { "allow-plugins": { "composer/installers": true, "drupal/core-composer-scaffold": true, "drupal/core-project-message": true, "phpstan/extension-installer": true, "dealerdirect/phpcodesniffer-composer-installer": true, "php-http/discovery": true, "simplesamlphp/composer-module-installer": true, "cweagans/composer-patches": true }, "sort-packages": true }, "extra": { "patches": { "drupal/core": { "Htaccess modifications to override rule for simplesaml directory":"patches/htaccess-simplesaml_v1.patch" } }, "drupal-scaffold": { "locations": { "web-root": "web/" } }, "installer-paths": { "web/core": [ "type:drupal-core" ], "web/libraries/{$name}": [ "type:drupal-library" ], "web/modules/contrib/{$name}": [ "type:drupal-module" ], "web/profiles/contrib/{$name}": [ "type:drupal-profile" ], "web/themes/contrib/{$name}": [ "type:drupal-theme" ], "drush/Commands/contrib/{$name}": [ "type:drupal-drush" ], "web/modules/custom/{$name}": [ "type:drupal-custom-module" ], "web/profiles/custom/{$name}": [ "type:drupal-custom-profile" ], "web/themes/custom/{$name}": [ "type:drupal-custom-theme" ] }, "drupal-core-project-message": { "include-keys": [ "homepage", "support" ], "post-create-project-cmd-message": [ "<bg=blue;fg=white> </>", "<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>", "<bg=blue;fg=white> from the drupal/recommended-project template! </>", "<bg=blue;fg=white> </>", "", "<bg=yellow;fg=black>Next steps</>:", " * Install the site: https://www.drupal.org/docs/installing-drupal", " * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html", " * Get support: https://www.drupal.org/support", " * Get involved with the Drupal community:", " https://www.drupal.org/getting-involved", " * Remove the plugin that prints this message:", " composer remove drupal/core-project-message" ] } }, "require-dev": { "drush/drush": "^12.5" } }
Yes, you have a conflicts configuration key there that prevents upgrading
symfony/process
. Composer has been telling you exactly why it won't upgrade: "drupal/recommended-project (your project's name) dev-master (your project's branch) conflicts with symfony/process v6.4.8."If you added a
conflict
key on this version tocomposer.json
, the fix is in your hands.You have it backward. The file in comment #5 contains a
conflict
configuration key that specifically blocks the version and dependency that is blocking Composer from executing a command. If you have the same, that is the reason for the command failure.I am not sure how else to explain this.
- 🇬🇧United Kingdom catch
If you look at https://github.com/drupal/recommended-project/blob/10.3.x/composer.json (or other branches) there is no such conflicts section in the composer.json. However it got in there originally, it should be removed now.
- 🇨🇴Colombia yovanny.gomez.oyola
Hi, you can try
composer require drupal/core-recommended:10.3.0 drupal/core-composer-scaffold:10.3.0 drupal/core-project-message:10.3.0 drupal/core:10.3.0 --update-with-all-dependencies
- 🇮🇳India harishwar r
Hi, When I try to update core version 10.2.7 to 10.3.1, I get this.
composer require drupal/core-recommended:10.3.1 drupal/core-composer-scaffold:10.3.1 drupal/core-project-message:10.3.1 --update-with-all-dependencies
./composer.json has been updated
Running composer update drupal/core-recommended drupal/core-composer-scaffold drupal/core-project-message --with-all-dependencies
Gathering patches for root package.
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.Problem 1
- Root composer.json requires drupal/core-recommended 10.3.1 -> satisfiable by drupal/core-recommended[10.3.1].
- drupal/core-recommended 10.3.1 requires drupal/core 10.3.1 -> found drupal/core[10.3.0] but these were not loaded, likely because it conflicts with another require.Installation failed, reverting ./composer.json and ./composer.lock to their original content.
- 🇬🇧United Kingdom catch
Try
composer update drupal/core drupal/core-recommended
- 🇮🇳India harishwar r
Hi,
I tried what you suggested, but it says there's nothing to modify or install.composer update drupal/core drupal/core-recommended
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Package acquia/blt-phpcs is abandoned, you should avoid using it. No replacement was suggested.
Package webmozart/path-util is abandoned, you should avoid using it. Use symfony/filesystem instead.
114 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Found 3 security vulnerability advisories affecting 1 package.
Run composer audit for a full list of advisories. - 🇸🇪Sweden adamevertsson
I'm experiencing the same issue as Harishwar R. I ran
composer update,
which always updates everything to the latest version, and composer says I have Drupal 10.3.1, but it really is 10.2.7. I tried the advice catch of comment #15, only to receive the same result as in comment #16. - 🇬🇧United Kingdom catch
It's worth trying to delete the entire vendor directory then re-run the commands if composer and reality are differing.
- 🇮🇳India harishwar r
Hi catch,
I attempted to delete the Vendor file and then ran the command "composer update drupal/core drupal/core-recommended".
Again, I got the same issue.
composer require drupal/core-recommended:10.3.1 drupal/core-composer-scaffold:10.3.1 drupal/core-project-message:10.3.1 --update-with-all-dependencies --dry-run
./composer.json has been updated
Running composer update drupal/core-recommended drupal/core-composer-scaffold drupal/core-project-message --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.Problem 1
- Root composer.json requires drupal/core-recommended 10.3.1 -> satisfiable by drupal/core-recommended[10.3.1].
- drupal/core-recommended 10.3.1 requires drupal/core 10.3.1 -> found drupal/core[10.3.1] but these were not loaded, likely because it conflicts with another require. - 🇮🇳India harishwar r
Hi cilefen,
Here is json code.
{
"name": "acquia/drupal-minimal-project",
"description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"blazy": {
"type": "package",
"package": {
"name": "dinbror/blazy",
"version": "1.8.2",
"type": "drupal-library",
"dist": {
"url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip",
"type": "zip"
}
}
},
"slick": {
"type": "package",
"package": {
"name": "kenwheeler/slick",
"version": "1.8.1",
"type": "drupal-library",
"dist": {
"url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip",
"type": "zip"
}
}
},
"chosen": {
"type": "package",
"package": {
"name": "harvesthq/chosen",
"version": "1.8.7",
"type": "drupal-library",
"dist": {
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8...",
"type": "zip"
}
}
}
},
"require": {
"acquia/blt": "^13",
"acquia/blt-phpcs": "^1.0",
"acquia/drupal-spec-tool": "6.0.0-alpha1",
"acquia/memcache-settings": "*",
"composer/installers": "^1.9",
"cweagans/composer-patches": "*",
"d8-contrib-modules/cloudflarephpsdk": "1.0.0",
"dinbror/blazy": "^1.8",
"drupal/access_unpublished": "^1.3",
"drupal/acquia_connector": "4.0.5",
"drupal/acquia_lift": "~4.0",
"drupal/acquia_purge": "^1.1",
"drupal/acquia_search": "^3.0.0",
"drupal/address": "^2.0",
"drupal/addtoany": "^2.0",
"drupal/admin_toolbar": "^3.0",
"drupal/advagg": "^6.0@alpha",
"drupal/allowed_formats": "^3.0",
"drupal/autocomplete_deluxe": "^2.0",
"drupal/bamboo_twig": "^6.0",
"drupal/blazy": "^2.7.0",
"drupal/block_content_permissions": "^1.10",
"drupal/block_field": "^1.0-rc2",
"drupal/block_list_override": "^1.0",
"drupal/calendar_link": "^3.0",
"drupal/chosen": "^4.0",
"drupal/ckeditor": "^1.0",
"drupal/ckeditor_accordion": "^2.0",
"drupal/cloudflare": "2.0.x-dev@dev",
"drupal/cloudflare_purge": "^1.6",
"drupal/codemirror_editor": "^1.7",
"drupal/color": "1.x-dev@dev",
"drupal/components": "^3",
"drupal/config_filter": "^2.6",
"drupal/config_ignore": "^3.1",
"drupal/config_split": "^2.0",
"drupal/contact_block": "^2.0",
"drupal/content_translation_redirect": "^2.0@alpha",
"drupal/core": "^10.0",
"drupal/core-composer-scaffold": "10.2.7",
"drupal/core-project-message": "10.2.7",
"drupal/core-recommended": "10.2.7",
"drupal/crop": "^2.2.0",
"drupal/csv_serialization": "^4.0",
"drupal/ctools": "^3.14",
"drupal/default_content": "^2.0.x-dev",
"drupal/devel": "^5.2",
"drupal/disable_language": "^1.0@beta",
"drupal/disable_login": "^1.1",
"drupal/dropdown_language": "^4.0",
"drupal/dynamic_entity_reference": "^4.0@alpha",
"drupal/easy_breadcrumb": "^2.0",
"drupal/editor_advanced_link": "^2.0",
"drupal/entity_browser": "^2.6",
"drupal/entity_embed": "^1.5",
"drupal/entity_update": "^3.0@RC",
"drupal/entity_usage": "^2.0@beta",
"drupal/environment_indicator": "^4.0.4",
"drupal/exclude_node_title": "^1.2",
"drupal/facets": "2.0.x-dev@dev",
"drupal/field_formatter_class": "^1.5",
"drupal/field_group": "^3.1",
"drupal/file_mdm": "^2.4.0",
"drupal/flood_control": "^2.2",
"drupal/focal_point": "^2.0",
"drupal/formtips": "^1.6",
"drupal/gin": "dev-3.x#0d80803",
"drupal/gin_lb": "1.0.x-dev@dev",
"drupal/gin_login": "1.x-dev@dev",
"drupal/gin_toolbar": "1.0.0-rc6",
"drupal/globallink": "^2.2",
"drupal/google_tag": "^2.0",
"drupal/hal": "^2.0",
"drupal/helper": "^1.7",
"drupal/honeypot": "^2.0",
"drupal/hook_event_dispatcher": "4.x-dev@dev",
"drupal/http_cache_control": "2.x-dev@dev",
"drupal/i18n_sso": "^1.3",
"drupal/iframe": "^2.24",
"drupal/imagemagick": "^3.3",
"drupal/inline_block_title_automatic": "^1.0",
"drupal/inline_entity_form": "^3.0@RC",
"drupal/key": "^1.14",
"drupal/layout_builder_additions": "^1.0.1",
"drupal/layout_builder_at": "^2.12",
"drupal/layout_builder_ids": "^2.0",
"drupal/layout_builder_modal": "^1.1",
"drupal/layout_builder_operation_link": "^2.0",
"drupal/layout_builder_restrictions": "^2.9",
"drupal/layout_builder_save_and_edit": "^1.0.0",
"drupal/layout_builder_styles": "^2.0",
"drupal/layout_library": "^1.0@beta",
"drupal/layoutbuilder_search_api": "^1.0",
"drupal/limited_field_widgets": "^2.0.4",
"drupal/link_attributes": "1.x-dev@dev",
"drupal/link_target": "^1.4",
"drupal/linkit": "^6.0",
"drupal/login_security": "^2.0",
"drupal/media_alias_display": "^2.0",
"drupal/media_directories": "^2.1@beta",
"drupal/media_entity_download": "^2.1",
"drupal/media_library_media_modify": "^1.0.0-beta5",
"drupal/media_library_theme_reset": "^1.1",
"drupal/media_revisions_ui": "^2.1",
"drupal/menu_admin_per_menu": "^1.3",
"drupal/menu_item_extras": "^3.0",
"drupal/menu_link_attributes": "^1.2",
"drupal/migrate_plus": "6.0.x-dev@dev",
"drupal/migrate_tools": "^6.0",
"drupal/minifyhtml": "^2.0",
"drupal/miniorange_saml": "^3.0",
"drupal/mysql56": "^1.0",
"drupal/node_read_time": "^1.13",
"drupal/pace": "^2.0",
"drupal/paragraphs": "^1.13",
"drupal/password_policy": "^4.0",
"drupal/pathauto": "1.x-dev@dev",
"drupal/pcr": "^2.0",
"drupal/permissions_filter": "^1.2",
"drupal/prepopulate": "^2.3",
"drupal/purge": "3.x-dev@dev",
"drupal/rabbit_hole": "^1.0@beta",
"drupal/rdf": "^2.0",
"drupal/rebuild_cache_access": "^1.8",
"drupal/recreate_block_content": "^3.0",
"drupal/redirect": "^1.6",
"drupal/remove_http_headers": "^2.0",
"drupal/robotstxt": "^1.4",
"drupal/scheduled_transitions": "^2.1",
"drupal/schema_metatag": "^2.5",
"drupal/search_api": "^1.19",
"drupal/search_api_exclude_entity": "^2.0",
"drupal/search_api_solr": "^4.3",
"drupal/seckit": "^2.0",
"drupal/section_library": "^1.0.0-beta2",
"drupal/security_review": "^2.0",
"drupal/shield": "^1.6.0",
"drupal/simple_search_form": "^1.5",
"drupal/simple_sitemap": "^4.1.8",
"drupal/site_settings": "^1.19",
"drupal/slick": "^2.6.0",
"drupal/slick_entityreference": "^2.0",
"drupal/slick_paragraphs": "^2.2",
"drupal/smart_trim": "^2.1",
"drupal/stage_file_proxy": "^2.1",
"drupal/structure_sync": "^2.0.2",
"drupal/svg_formatter": "2.0.3",
"drupal/svg_image": "^3.0",
"drupal/svg_image_field": "^2.1",
"drupal/tablefield": "^2.2",
"drupal/text_field_formatter": "^2.0.0",
"drupal/tmgmt": "^1.12",
"drupal/toastify": "^1.0@beta",
"drupal/token_filter": "^2.1",
"drupal/twig_tweak": "^3.1",
"drupal/twig_vardumper": "^3.0.2",
"drupal/username_enumeration_prevention": "^1.2",
"drupal/varnish_purger": "^2.1",
"drupal/vidyard": "^2.0@beta",
"drupal/views_block_filter_block": "^2.0",
"drupal/views_data_export": "^1.4",
"drupal/views_exposed_filter_blocks": "^1.3",
"drupal/viewsreference": "^2.0@beta",
"drupal/webp": "^1.0@beta",
"drush/drush": "^12.4.3",
"harvesthq/chosen": "^1.8",
"kenwheeler/slick": "^1.8",
"laminas/laminas-feed": "2.17.0",
"symfony/twig-bridge": "^6.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"acquia/blt": true,
"acquia/blt-phpcs": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.22"
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
},
"file-mapping": {
"[web-root]/sites/default/default.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.services.yml",
"overwrite": false
},
"[web-root]/sites/default/default.settings.php": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.settings.php",
"overwrite": false
},
"[web-root]/.gitignore": false,
"[web-root]/.htaccess": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.md": false,
"[web-root]/robots.txt": false,
"[web-root]/sites/development.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/development.services.yml",
"overwrite": false
}
},
"gitignore": true
},
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"harvesthq/chosen"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/access_unpublished": {
"2958800 - Create per-language tokens": " https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create... → ",
"Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch",
"Content Translation interferes when viewing unpublished translations": " https://www.drupal.org/files/issues/2020-09-12/3170616-content-translati... → ",
"Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch"
},
"drupal/core": {
"3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": " https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch → ",
"2928108-70 - blank page in admin/content": " https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch → ",
"2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": " https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch → ",
"3301239 - PoStreamReader::readLine() throws an error on module install":" https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReade... → "
},
"drupal/default_content": {
"Add a Normalizer and Denormalizer to support Layout Builder": " https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch → ",
"SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": " https://www.drupal.org/files/issues/2020-08-03/default_content-integrity... → "
},
"drupal/layout_library": {
"Add hide the content preview option to layout editing": " https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-... → ",
"Allows Saved Layout Library Labels to be edited": " https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%2... → "
},
"drupal/layout_builder_at": {
"Clone nested inline blocks when translating": " https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch → "
},
"drupal/facets": {
"Issue #3052574: Facets with AJAX not working in most of situations": " https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch → "
},
"drupal/tb_megamenu": {
"changing hover to on click for menu": "./patches/tb_megamenu_click.patch",
"Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch"
},
"drupal/autocomplete_deluxe": {
"Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": " https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch → "
}
}
},
"require-dev": {
"drupal/core-dev": "^10.0",
"drupal/qa_accounts": "^1.0@beta"
}
} - 🇮🇳India harishwar r
Hi cilefen,
Here is JSON code.
{ "name": "acquia/drupal-minimal-project", "description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project", "license": "GPL-2.0-or-later", "authors": [ { "name": "Acquia Engineering", "homepage": "https://www.acquia.com", "role": "Maintainer" } ], "repositories": { "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" }, "asset-packagist": { "type": "composer", "url": "https://asset-packagist.org" }, "blazy": { "type": "package", "package": { "name": "dinbror/blazy", "version": "1.8.2", "type": "drupal-library", "dist": { "url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip", "type": "zip" } } }, "slick": { "type": "package", "package": { "name": "kenwheeler/slick", "version": "1.8.1", "type": "drupal-library", "dist": { "url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip", "type": "zip" } } }, "chosen": { "type": "package", "package": { "name": "harvesthq/chosen", "version": "1.8.7", "type": "drupal-library", "dist": { "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip", "type": "zip" } } } }, "require": { "acquia/blt": "^13", "acquia/blt-phpcs": "^1.0", "acquia/drupal-spec-tool": "6.0.0-alpha1", "acquia/memcache-settings": "*", "composer/installers": "^1.9", "cweagans/composer-patches": "*", "d8-contrib-modules/cloudflarephpsdk": "1.0.0", "dinbror/blazy": "^1.8", "drupal/access_unpublished": "^1.3", "drupal/acquia_connector": "4.0.5", "drupal/acquia_lift": "~4.0", "drupal/acquia_purge": "^1.1", "drupal/acquia_search": "^3.0.0", "drupal/address": "^2.0", "drupal/addtoany": "^2.0", "drupal/admin_toolbar": "^3.0", "drupal/advagg": "^6.0@alpha", "drupal/allowed_formats": "^3.0", "drupal/autocomplete_deluxe": "^2.0", "drupal/bamboo_twig": "^6.0", "drupal/blazy": "^2.7.0", "drupal/block_content_permissions": "^1.10", "drupal/block_field": "^1.0-rc2", "drupal/block_list_override": "^1.0", "drupal/calendar_link": "^3.0", "drupal/chosen": "^4.0", "drupal/ckeditor": "^1.0", "drupal/ckeditor_accordion": "^2.0", "drupal/cloudflare": "2.0.x-dev@dev", "drupal/cloudflare_purge": "^1.6", "drupal/codemirror_editor": "^1.7", "drupal/color": "1.x-dev@dev", "drupal/components": "^3", "drupal/config_filter": "^2.6", "drupal/config_ignore": "^3.1", "drupal/config_split": "^2.0", "drupal/contact_block": "^2.0", "drupal/content_translation_redirect": "^2.0@alpha", "drupal/core": "^10.0", "drupal/core-composer-scaffold": "10.2.7", "drupal/core-project-message": "10.2.7", "drupal/core-recommended": "10.2.7", "drupal/crop": "^2.2.0", "drupal/csv_serialization": "^4.0", "drupal/ctools": "^3.14", "drupal/default_content": "^2.0.x-dev", "drupal/devel": "^5.2", "drupal/disable_language": "^1.0@beta", "drupal/disable_login": "^1.1", "drupal/dropdown_language": "^4.0", "drupal/dynamic_entity_reference": "^4.0@alpha", "drupal/easy_breadcrumb": "^2.0", "drupal/editor_advanced_link": "^2.0", "drupal/entity_browser": "^2.6", "drupal/entity_embed": "^1.5", "drupal/entity_update": "^3.0@RC", "drupal/entity_usage": "^2.0@beta", "drupal/environment_indicator": "^4.0.4", "drupal/exclude_node_title": "^1.2", "drupal/facets": "2.0.x-dev@dev", "drupal/field_formatter_class": "^1.5", "drupal/field_group": "^3.1", "drupal/file_mdm": "^2.4.0", "drupal/flood_control": "^2.2", "drupal/focal_point": "^2.0", "drupal/formtips": "^1.6", "drupal/gin": "dev-3.x#0d80803", "drupal/gin_lb": "1.0.x-dev@dev", "drupal/gin_login": "1.x-dev@dev", "drupal/gin_toolbar": "1.0.0-rc6", "drupal/globallink": "^2.2", "drupal/google_tag": "^2.0", "drupal/hal": "^2.0", "drupal/helper": "^1.7", "drupal/honeypot": "^2.0", "drupal/hook_event_dispatcher": "4.x-dev@dev", "drupal/http_cache_control": "2.x-dev@dev", "drupal/i18n_sso": "^1.3", "drupal/iframe": "^2.24", "drupal/imagemagick": "^3.3", "drupal/inline_block_title_automatic": "^1.0", "drupal/inline_entity_form": "^3.0@RC", "drupal/key": "^1.14", "drupal/layout_builder_additions": "^1.0.1", "drupal/layout_builder_at": "^2.12", "drupal/layout_builder_ids": "^2.0", "drupal/layout_builder_modal": "^1.1", "drupal/layout_builder_operation_link": "^2.0", "drupal/layout_builder_restrictions": "^2.9", "drupal/layout_builder_save_and_edit": "^1.0.0", "drupal/layout_builder_styles": "^2.0", "drupal/layout_library": "^1.0@beta", "drupal/layoutbuilder_search_api": "^1.0", "drupal/limited_field_widgets": "^2.0.4", "drupal/link_attributes": "1.x-dev@dev", "drupal/link_target": "^1.4", "drupal/linkit": "^6.0", "drupal/login_security": "^2.0", "drupal/media_alias_display": "^2.0", "drupal/media_directories": "^2.1@beta", "drupal/media_entity_download": "^2.1", "drupal/media_library_media_modify": "^1.0.0-beta5", "drupal/media_library_theme_reset": "^1.1", "drupal/media_revisions_ui": "^2.1", "drupal/menu_admin_per_menu": "^1.3", "drupal/menu_item_extras": "^3.0", "drupal/menu_link_attributes": "^1.2", "drupal/migrate_plus": "6.0.x-dev@dev", "drupal/migrate_tools": "^6.0", "drupal/minifyhtml": "^2.0", "drupal/miniorange_saml": "^3.0", "drupal/mysql56": "^1.0", "drupal/node_read_time": "^1.13", "drupal/pace": "^2.0", "drupal/paragraphs": "^1.13", "drupal/password_policy": "^4.0", "drupal/pathauto": "1.x-dev@dev", "drupal/pcr": "^2.0", "drupal/permissions_filter": "^1.2", "drupal/prepopulate": "^2.3", "drupal/purge": "3.x-dev@dev", "drupal/rabbit_hole": "^1.0@beta", "drupal/rdf": "^2.0", "drupal/rebuild_cache_access": "^1.8", "drupal/recreate_block_content": "^3.0", "drupal/redirect": "^1.6", "drupal/remove_http_headers": "^2.0", "drupal/robotstxt": "^1.4", "drupal/scheduled_transitions": "^2.1", "drupal/schema_metatag": "^2.5", "drupal/search_api": "^1.19", "drupal/search_api_exclude_entity": "^2.0", "drupal/search_api_solr": "^4.3", "drupal/seckit": "^2.0", "drupal/section_library": "^1.0.0-beta2", "drupal/security_review": "^2.0", "drupal/shield": "^1.6.0", "drupal/simple_search_form": "^1.5", "drupal/simple_sitemap": "^4.1.8", "drupal/site_settings": "^1.19", "drupal/slick": "^2.6.0", "drupal/slick_entityreference": "^2.0", "drupal/slick_paragraphs": "^2.2", "drupal/smart_trim": "^2.1", "drupal/stage_file_proxy": "^2.1", "drupal/structure_sync": "^2.0.2", "drupal/svg_formatter": "2.0.3", "drupal/svg_image": "^3.0", "drupal/svg_image_field": "^2.1", "drupal/tablefield": "^2.2", "drupal/text_field_formatter": "^2.0.0", "drupal/tmgmt": "^1.12", "drupal/toastify": "^1.0@beta", "drupal/token_filter": "^2.1", "drupal/twig_tweak": "^3.1", "drupal/twig_vardumper": "^3.0.2", "drupal/username_enumeration_prevention": "^1.2", "drupal/varnish_purger": "^2.1", "drupal/vidyard": "^2.0@beta", "drupal/views_block_filter_block": "^2.0", "drupal/views_data_export": "^1.4", "drupal/views_exposed_filter_blocks": "^1.3", "drupal/viewsreference": "^2.0@beta", "drupal/webp": "^1.0@beta", "drush/drush": "^12.4.3", "harvesthq/chosen": "^1.8", "kenwheeler/slick": "^1.8", "laminas/laminas-feed": "2.17.0", "symfony/twig-bridge": "^6.3" }, "conflict": { "drupal/drupal": "*" }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "allow-plugins": { "composer/installers": true, "cweagans/composer-patches": true, "acquia/blt": true, "acquia/blt-phpcs": true, "drupal/core-composer-scaffold": true, "drupal/core-project-message": true, "dealerdirect/phpcodesniffer-composer-installer": true, "phpstan/extension-installer": true }, "platform": { "php": "8.1.22" } }, "extra": { "drupal-scaffold": { "locations": { "web-root": "docroot/" }, "file-mapping": { "[web-root]/sites/default/default.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.services.yml", "overwrite": false }, "[web-root]/sites/default/default.settings.php": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.settings.php", "overwrite": false }, "[web-root]/.gitignore": false, "[web-root]/.htaccess": false, "[web-root]/INSTALL.txt": false, "[web-root]/README.md": false, "[web-root]/robots.txt": false, "[web-root]/sites/development.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/development.services.yml", "overwrite": false } }, "gitignore": true }, "installer-paths": { "docroot/core": [ "type:drupal-core" ], "docroot/libraries/{$name}": [ "type:drupal-library", "harvesthq/chosen" ], "docroot/modules/contrib/{$name}": [ "type:drupal-module" ], "docroot/profiles/contrib/{$name}": [ "type:drupal-profile" ], "docroot/themes/contrib/{$name}": [ "type:drupal-theme" ], "drush/Commands/contrib/{$name}": [ "type:drupal-drush" ], "docroot/modules/custom/{$name}": [ "type:drupal-custom-module" ], "docroot/themes/custom/{$name}": [ "type:drupal-custom-theme" ] }, "composer-exit-on-patch-failure": true, "enable-patching": true, "patchLevel": { "drupal/core": "-p2" }, "patches": { "drupal/access_unpublished": { "2958800 - Create per-language tokens": "https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create_per_language_tokens-2958800-3.patch", "Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch", "Content Translation interferes when viewing unpublished translations": "https://www.drupal.org/files/issues/2020-09-12/3170616-content-translation-interferes-viewing-unpublished-translations-2.patch", "Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch" }, "drupal/core": { "3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": "https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch", "2928108-70 - blank page in admin/content": "https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch", "2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": "https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch", "3301239 - PoStreamReader::readLine() throws an error on module install":"https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReader_readLine_throws_an_error_on_module_install-3301239-7.patch" }, "drupal/default_content": { "Add a Normalizer and Denormalizer to support Layout Builder": "https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch", "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": "https://www.drupal.org/files/issues/2020-08-03/default_content-integrity_constrait_violation-3162987-2.patch" }, "drupal/layout_library": { "Add hide the content preview option to layout editing": "https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-preview-02.patch", "Allows Saved Layout Library Labels to be edited": "https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%20bernardm28%20Configuration%20form%20for%20layouts%20LayoutEditForm.patch" }, "drupal/layout_builder_at": { "Clone nested inline blocks when translating": "https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch" }, "drupal/facets": { "Issue #3052574: Facets with AJAX not working in most of situations": "https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch" }, "drupal/tb_megamenu": { "changing hover to on click for menu": "./patches/tb_megamenu_click.patch", "Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch" }, "drupal/autocomplete_deluxe": { "Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": "https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch" } } }, "require-dev": { "drupal/core-dev": "^10.0", "drupal/qa_accounts": "^1.0@beta" } }
- 🇮🇳India harishwar r
Hi cilefen,
Here is json code.
{
"name": "acquia/drupal-minimal-project",
"description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"blazy": {
"type": "package",
"package": {
"name": "dinbror/blazy",
"version": "1.8.2",
"type": "drupal-library",
"dist": {
"url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip",
"type": "zip"
}
}
},
"slick": {
"type": "package",
"package": {
"name": "kenwheeler/slick",
"version": "1.8.1",
"type": "drupal-library",
"dist": {
"url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip",
"type": "zip"
}
}
},
"chosen": {
"type": "package",
"package": {
"name": "harvesthq/chosen",
"version": "1.8.7",
"type": "drupal-library",
"dist": {
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8...",
"type": "zip"
}
}
}
},
"require": {
"acquia/blt": "^13",
"acquia/blt-phpcs": "^1.0",
"acquia/drupal-spec-tool": "6.0.0-alpha1",
"acquia/memcache-settings": "*",
"composer/installers": "^1.9",
"cweagans/composer-patches": "*",
"d8-contrib-modules/cloudflarephpsdk": "1.0.0",
"dinbror/blazy": "^1.8",
"drupal/access_unpublished": "^1.3",
"drupal/acquia_connector": "4.0.5",
"drupal/acquia_lift": "~4.0",
"drupal/acquia_purge": "^1.1",
"drupal/acquia_search": "^3.0.0",
"drupal/address": "^2.0",
"drupal/addtoany": "^2.0",
"drupal/admin_toolbar": "^3.0",
"drupal/advagg": "^6.0@alpha",
"drupal/allowed_formats": "^3.0",
"drupal/autocomplete_deluxe": "^2.0",
"drupal/bamboo_twig": "^6.0",
"drupal/blazy": "^2.7.0",
"drupal/block_content_permissions": "^1.10",
"drupal/block_field": "^1.0-rc2",
"drupal/block_list_override": "^1.0",
"drupal/calendar_link": "^3.0",
"drupal/chosen": "^4.0",
"drupal/ckeditor": "^1.0",
"drupal/ckeditor_accordion": "^2.0",
"drupal/cloudflare": "2.0.x-dev@dev",
"drupal/cloudflare_purge": "^1.6",
"drupal/codemirror_editor": "^1.7",
"drupal/color": "1.x-dev@dev",
"drupal/components": "^3",
"drupal/config_filter": "^2.6",
"drupal/config_ignore": "^3.1",
"drupal/config_split": "^2.0",
"drupal/contact_block": "^2.0",
"drupal/content_translation_redirect": "^2.0@alpha",
"drupal/core": "^10.0",
"drupal/core-composer-scaffold": "10.2.7",
"drupal/core-project-message": "10.2.7",
"drupal/core-recommended": "10.2.7",
"drupal/crop": "^2.2.0",
"drupal/csv_serialization": "^4.0",
"drupal/ctools": "^3.14",
"drupal/default_content": "^2.0.x-dev",
"drupal/devel": "^5.2",
"drupal/disable_language": "^1.0@beta",
"drupal/disable_login": "^1.1",
"drupal/dropdown_language": "^4.0",
"drupal/dynamic_entity_reference": "^4.0@alpha",
"drupal/easy_breadcrumb": "^2.0",
"drupal/editor_advanced_link": "^2.0",
"drupal/entity_browser": "^2.6",
"drupal/entity_embed": "^1.5",
"drupal/entity_update": "^3.0@RC",
"drupal/entity_usage": "^2.0@beta",
"drupal/environment_indicator": "^4.0.4",
"drupal/exclude_node_title": "^1.2",
"drupal/facets": "2.0.x-dev@dev",
"drupal/field_formatter_class": "^1.5",
"drupal/field_group": "^3.1",
"drupal/file_mdm": "^2.4.0",
"drupal/flood_control": "^2.2",
"drupal/focal_point": "^2.0",
"drupal/formtips": "^1.6",
"drupal/gin": "dev-3.x#0d80803",
"drupal/gin_lb": "1.0.x-dev@dev",
"drupal/gin_login": "1.x-dev@dev",
"drupal/gin_toolbar": "1.0.0-rc6",
"drupal/globallink": "^2.2",
"drupal/google_tag": "^2.0",
"drupal/hal": "^2.0",
"drupal/helper": "^1.7",
"drupal/honeypot": "^2.0",
"drupal/hook_event_dispatcher": "4.x-dev@dev",
"drupal/http_cache_control": "2.x-dev@dev",
"drupal/i18n_sso": "^1.3",
"drupal/iframe": "^2.24",
"drupal/imagemagick": "^3.3",
"drupal/inline_block_title_automatic": "^1.0",
"drupal/inline_entity_form": "^3.0@RC",
"drupal/key": "^1.14",
"drupal/layout_builder_additions": "^1.0.1",
"drupal/layout_builder_at": "^2.12",
"drupal/layout_builder_ids": "^2.0",
"drupal/layout_builder_modal": "^1.1",
"drupal/layout_builder_operation_link": "^2.0",
"drupal/layout_builder_restrictions": "^2.9",
"drupal/layout_builder_save_and_edit": "^1.0.0",
"drupal/layout_builder_styles": "^2.0",
"drupal/layout_library": "^1.0@beta",
"drupal/layoutbuilder_search_api": "^1.0",
"drupal/limited_field_widgets": "^2.0.4",
"drupal/link_attributes": "1.x-dev@dev",
"drupal/link_target": "^1.4",
"drupal/linkit": "^6.0",
"drupal/login_security": "^2.0",
"drupal/media_alias_display": "^2.0",
"drupal/media_directories": "^2.1@beta",
"drupal/media_entity_download": "^2.1",
"drupal/media_library_media_modify": "^1.0.0-beta5",
"drupal/media_library_theme_reset": "^1.1",
"drupal/media_revisions_ui": "^2.1",
"drupal/menu_admin_per_menu": "^1.3",
"drupal/menu_item_extras": "^3.0",
"drupal/menu_link_attributes": "^1.2",
"drupal/migrate_plus": "6.0.x-dev@dev",
"drupal/migrate_tools": "^6.0",
"drupal/minifyhtml": "^2.0",
"drupal/miniorange_saml": "^3.0",
"drupal/mysql56": "^1.0",
"drupal/node_read_time": "^1.13",
"drupal/pace": "^2.0",
"drupal/paragraphs": "^1.13",
"drupal/password_policy": "^4.0",
"drupal/pathauto": "1.x-dev@dev",
"drupal/pcr": "^2.0",
"drupal/permissions_filter": "^1.2",
"drupal/prepopulate": "^2.3",
"drupal/purge": "3.x-dev@dev",
"drupal/rabbit_hole": "^1.0@beta",
"drupal/rdf": "^2.0",
"drupal/rebuild_cache_access": "^1.8",
"drupal/recreate_block_content": "^3.0",
"drupal/redirect": "^1.6",
"drupal/remove_http_headers": "^2.0",
"drupal/robotstxt": "^1.4",
"drupal/scheduled_transitions": "^2.1",
"drupal/schema_metatag": "^2.5",
"drupal/search_api": "^1.19",
"drupal/search_api_exclude_entity": "^2.0",
"drupal/search_api_solr": "^4.3",
"drupal/seckit": "^2.0",
"drupal/section_library": "^1.0.0-beta2",
"drupal/security_review": "^2.0",
"drupal/shield": "^1.6.0",
"drupal/simple_search_form": "^1.5",
"drupal/simple_sitemap": "^4.1.8",
"drupal/site_settings": "^1.19",
"drupal/slick": "^2.6.0",
"drupal/slick_entityreference": "^2.0",
"drupal/slick_paragraphs": "^2.2",
"drupal/smart_trim": "^2.1",
"drupal/stage_file_proxy": "^2.1",
"drupal/structure_sync": "^2.0.2",
"drupal/svg_formatter": "2.0.3",
"drupal/svg_image": "^3.0",
"drupal/svg_image_field": "^2.1",
"drupal/tablefield": "^2.2",
"drupal/text_field_formatter": "^2.0.0",
"drupal/tmgmt": "^1.12",
"drupal/toastify": "^1.0@beta",
"drupal/token_filter": "^2.1",
"drupal/twig_tweak": "^3.1",
"drupal/twig_vardumper": "^3.0.2",
"drupal/username_enumeration_prevention": "^1.2",
"drupal/varnish_purger": "^2.1",
"drupal/vidyard": "^2.0@beta",
"drupal/views_block_filter_block": "^2.0",
"drupal/views_data_export": "^1.4",
"drupal/views_exposed_filter_blocks": "^1.3",
"drupal/viewsreference": "^2.0@beta",
"drupal/webp": "^1.0@beta",
"drush/drush": "^12.4.3",
"harvesthq/chosen": "^1.8",
"kenwheeler/slick": "^1.8",
"laminas/laminas-feed": "2.17.0",
"symfony/twig-bridge": "^6.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"acquia/blt": true,
"acquia/blt-phpcs": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.22"
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
},
"file-mapping": {
"[web-root]/sites/default/default.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.services.yml",
"overwrite": false
},
"[web-root]/sites/default/default.settings.php": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.settings.php",
"overwrite": false
},
"[web-root]/.gitignore": false,
"[web-root]/.htaccess": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.md": false,
"[web-root]/robots.txt": false,
"[web-root]/sites/development.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/development.services.yml",
"overwrite": false
}
},
"gitignore": true
},
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"harvesthq/chosen"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/access_unpublished": {
"2958800 - Create per-language tokens": " https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create... → ",
"Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch",
"Content Translation interferes when viewing unpublished translations": " https://www.drupal.org/files/issues/2020-09-12/3170616-content-translati... → ",
"Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch"
},
"drupal/core": {
"3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": " https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch → ",
"2928108-70 - blank page in admin/content": " https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch → ",
"2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": " https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch → ",
"3301239 - PoStreamReader::readLine() throws an error on module install":" https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReade... → "
},
"drupal/default_content": {
"Add a Normalizer and Denormalizer to support Layout Builder": " https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch → ",
"SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": " https://www.drupal.org/files/issues/2020-08-03/default_content-integrity... → "
},
"drupal/layout_library": {
"Add hide the content preview option to layout editing": " https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-... → ",
"Allows Saved Layout Library Labels to be edited": " https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%2... → "
},
"drupal/layout_builder_at": {
"Clone nested inline blocks when translating": " https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch → "
},
"drupal/facets": {
"Issue #3052574: Facets with AJAX not working in most of situations": " https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch → "
},
"drupal/tb_megamenu": {
"changing hover to on click for menu": "./patches/tb_megamenu_click.patch",
"Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch"
},
"drupal/autocomplete_deluxe": {
"Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": " https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch → "
}
}
},
"require-dev": {
"drupal/core-dev": "^10.0",
"drupal/qa_accounts": "^1.0@beta"
}
} - 🇮🇳India harishwar r
Hi cilefen,
Here is json code.
{ "name": "acquia/drupal-minimal-project", "description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project", "license": "GPL-2.0-or-later", "authors": [ { "name": "Acquia Engineering", "homepage": "https://www.acquia.com", "role": "Maintainer" } ], "repositories": { "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" }, "asset-packagist": { "type": "composer", "url": "https://asset-packagist.org" }, "blazy": { "type": "package", "package": { "name": "dinbror/blazy", "version": "1.8.2", "type": "drupal-library", "dist": { "url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip", "type": "zip" } } }, "slick": { "type": "package", "package": { "name": "kenwheeler/slick", "version": "1.8.1", "type": "drupal-library", "dist": { "url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip", "type": "zip" } } }, "chosen": { "type": "package", "package": { "name": "harvesthq/chosen", "version": "1.8.7", "type": "drupal-library", "dist": { "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip", "type": "zip" } } } }, "require": { "acquia/blt": "^13", "acquia/blt-phpcs": "^1.0", "acquia/drupal-spec-tool": "6.0.0-alpha1", "acquia/memcache-settings": "*", "composer/installers": "^1.9", "cweagans/composer-patches": "*", "d8-contrib-modules/cloudflarephpsdk": "1.0.0", "dinbror/blazy": "^1.8", "drupal/access_unpublished": "^1.3", "drupal/acquia_connector": "4.0.5", "drupal/acquia_lift": "~4.0", "drupal/acquia_purge": "^1.1", "drupal/acquia_search": "^3.0.0", "drupal/address": "^2.0", "drupal/addtoany": "^2.0", "drupal/admin_toolbar": "^3.0", "drupal/advagg": "^6.0@alpha", "drupal/allowed_formats": "^3.0", "drupal/autocomplete_deluxe": "^2.0", "drupal/bamboo_twig": "^6.0", "drupal/blazy": "^2.7.0", "drupal/block_content_permissions": "^1.10", "drupal/block_field": "^1.0-rc2", "drupal/block_list_override": "^1.0", "drupal/calendar_link": "^3.0", "drupal/chosen": "^4.0", "drupal/ckeditor": "^1.0", "drupal/ckeditor_accordion": "^2.0", "drupal/cloudflare": "2.0.x-dev@dev", "drupal/cloudflare_purge": "^1.6", "drupal/codemirror_editor": "^1.7", "drupal/color": "1.x-dev@dev", "drupal/components": "^3", "drupal/config_filter": "^2.6", "drupal/config_ignore": "^3.1", "drupal/config_split": "^2.0", "drupal/contact_block": "^2.0", "drupal/content_translation_redirect": "^2.0@alpha", "drupal/core": "^10.0", "drupal/core-composer-scaffold": "10.2.7", "drupal/core-project-message": "10.2.7", "drupal/core-recommended": "10.2.7", "drupal/crop": "^2.2.0", "drupal/csv_serialization": "^4.0", "drupal/ctools": "^3.14", "drupal/default_content": "^2.0.x-dev", "drupal/devel": "^5.2", "drupal/disable_language": "^1.0@beta", "drupal/disable_login": "^1.1", "drupal/dropdown_language": "^4.0", "drupal/dynamic_entity_reference": "^4.0@alpha", "drupal/easy_breadcrumb": "^2.0", "drupal/editor_advanced_link": "^2.0", "drupal/entity_browser": "^2.6", "drupal/entity_embed": "^1.5", "drupal/entity_update": "^3.0@RC", "drupal/entity_usage": "^2.0@beta", "drupal/environment_indicator": "^4.0.4", "drupal/exclude_node_title": "^1.2", "drupal/facets": "2.0.x-dev@dev", "drupal/field_formatter_class": "^1.5", "drupal/field_group": "^3.1", "drupal/file_mdm": "^2.4.0", "drupal/flood_control": "^2.2", "drupal/focal_point": "^2.0", "drupal/formtips": "^1.6", "drupal/gin": "dev-3.x#0d80803", "drupal/gin_lb": "1.0.x-dev@dev", "drupal/gin_login": "1.x-dev@dev", "drupal/gin_toolbar": "1.0.0-rc6", "drupal/globallink": "^2.2", "drupal/google_tag": "^2.0", "drupal/hal": "^2.0", "drupal/helper": "^1.7", "drupal/honeypot": "^2.0", "drupal/hook_event_dispatcher": "4.x-dev@dev", "drupal/http_cache_control": "2.x-dev@dev", "drupal/i18n_sso": "^1.3", "drupal/iframe": "^2.24", "drupal/imagemagick": "^3.3", "drupal/inline_block_title_automatic": "^1.0", "drupal/inline_entity_form": "^3.0@RC", "drupal/key": "^1.14", "drupal/layout_builder_additions": "^1.0.1", "drupal/layout_builder_at": "^2.12", "drupal/layout_builder_ids": "^2.0", "drupal/layout_builder_modal": "^1.1", "drupal/layout_builder_operation_link": "^2.0", "drupal/layout_builder_restrictions": "^2.9", "drupal/layout_builder_save_and_edit": "^1.0.0", "drupal/layout_builder_styles": "^2.0", "drupal/layout_library": "^1.0@beta", "drupal/layoutbuilder_search_api": "^1.0", "drupal/limited_field_widgets": "^2.0.4", "drupal/link_attributes": "1.x-dev@dev", "drupal/link_target": "^1.4", "drupal/linkit": "^6.0", "drupal/login_security": "^2.0", "drupal/media_alias_display": "^2.0", "drupal/media_directories": "^2.1@beta", "drupal/media_entity_download": "^2.1", "drupal/media_library_media_modify": "^1.0.0-beta5", "drupal/media_library_theme_reset": "^1.1", "drupal/media_revisions_ui": "^2.1", "drupal/menu_admin_per_menu": "^1.3", "drupal/menu_item_extras": "^3.0", "drupal/menu_link_attributes": "^1.2", "drupal/migrate_plus": "6.0.x-dev@dev", "drupal/migrate_tools": "^6.0", "drupal/minifyhtml": "^2.0", "drupal/miniorange_saml": "^3.0", "drupal/mysql56": "^1.0", "drupal/node_read_time": "^1.13", "drupal/pace": "^2.0", "drupal/paragraphs": "^1.13", "drupal/password_policy": "^4.0", "drupal/pathauto": "1.x-dev@dev", "drupal/pcr": "^2.0", "drupal/permissions_filter": "^1.2", "drupal/prepopulate": "^2.3", "drupal/purge": "3.x-dev@dev", "drupal/rabbit_hole": "^1.0@beta", "drupal/rdf": "^2.0", "drupal/rebuild_cache_access": "^1.8", "drupal/recreate_block_content": "^3.0", "drupal/redirect": "^1.6", "drupal/remove_http_headers": "^2.0", "drupal/robotstxt": "^1.4", "drupal/scheduled_transitions": "^2.1", "drupal/schema_metatag": "^2.5", "drupal/search_api": "^1.19", "drupal/search_api_exclude_entity": "^2.0", "drupal/search_api_solr": "^4.3", "drupal/seckit": "^2.0", "drupal/section_library": "^1.0.0-beta2", "drupal/security_review": "^2.0", "drupal/shield": "^1.6.0", "drupal/simple_search_form": "^1.5", "drupal/simple_sitemap": "^4.1.8", "drupal/site_settings": "^1.19", "drupal/slick": "^2.6.0", "drupal/slick_entityreference": "^2.0", "drupal/slick_paragraphs": "^2.2", "drupal/smart_trim": "^2.1", "drupal/stage_file_proxy": "^2.1", "drupal/structure_sync": "^2.0.2", "drupal/svg_formatter": "2.0.3", "drupal/svg_image": "^3.0", "drupal/svg_image_field": "^2.1", "drupal/tablefield": "^2.2", "drupal/text_field_formatter": "^2.0.0", "drupal/tmgmt": "^1.12", "drupal/toastify": "^1.0@beta", "drupal/token_filter": "^2.1", "drupal/twig_tweak": "^3.1", "drupal/twig_vardumper": "^3.0.2", "drupal/username_enumeration_prevention": "^1.2", "drupal/varnish_purger": "^2.1", "drupal/vidyard": "^2.0@beta", "drupal/views_block_filter_block": "^2.0", "drupal/views_data_export": "^1.4", "drupal/views_exposed_filter_blocks": "^1.3", "drupal/viewsreference": "^2.0@beta", "drupal/webp": "^1.0@beta", "drush/drush": "^12.4.3", "harvesthq/chosen": "^1.8", "kenwheeler/slick": "^1.8", "laminas/laminas-feed": "2.17.0", "symfony/twig-bridge": "^6.3" }, "conflict": { "drupal/drupal": "*" }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "allow-plugins": { "composer/installers": true, "cweagans/composer-patches": true, "acquia/blt": true, "acquia/blt-phpcs": true, "drupal/core-composer-scaffold": true, "drupal/core-project-message": true, "dealerdirect/phpcodesniffer-composer-installer": true, "phpstan/extension-installer": true }, "platform": { "php": "8.1.22" } }, "extra": { "drupal-scaffold": { "locations": { "web-root": "docroot/" }, "file-mapping": { "[web-root]/sites/default/default.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.services.yml", "overwrite": false }, "[web-root]/sites/default/default.settings.php": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.settings.php", "overwrite": false }, "[web-root]/.gitignore": false, "[web-root]/.htaccess": false, "[web-root]/INSTALL.txt": false, "[web-root]/README.md": false, "[web-root]/robots.txt": false, "[web-root]/sites/development.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/development.services.yml", "overwrite": false } }, "gitignore": true }, "installer-paths": { "docroot/core": [ "type:drupal-core" ], "docroot/libraries/{$name}": [ "type:drupal-library", "harvesthq/chosen" ], "docroot/modules/contrib/{$name}": [ "type:drupal-module" ], "docroot/profiles/contrib/{$name}": [ "type:drupal-profile" ], "docroot/themes/contrib/{$name}": [ "type:drupal-theme" ], "drush/Commands/contrib/{$name}": [ "type:drupal-drush" ], "docroot/modules/custom/{$name}": [ "type:drupal-custom-module" ], "docroot/themes/custom/{$name}": [ "type:drupal-custom-theme" ] }, "composer-exit-on-patch-failure": true, "enable-patching": true, "patchLevel": { "drupal/core": "-p2" }, "patches": { "drupal/access_unpublished": { "2958800 - Create per-language tokens": "https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create_per_language_tokens-2958800-3.patch", "Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch", "Content Translation interferes when viewing unpublished translations": "https://www.drupal.org/files/issues/2020-09-12/3170616-content-translation-interferes-viewing-unpublished-translations-2.patch", "Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch" }, "drupal/core": { "3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": "https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch", "2928108-70 - blank page in admin/content": "https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch", "2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": "https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch", "3301239 - PoStreamReader::readLine() throws an error on module install":"https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReader_readLine_throws_an_error_on_module_install-3301239-7.patch" }, "drupal/default_content": { "Add a Normalizer and Denormalizer to support Layout Builder": "https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch", "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": "https://www.drupal.org/files/issues/2020-08-03/default_content-integrity_constrait_violation-3162987-2.patch" }, "drupal/layout_library": { "Add hide the content preview option to layout editing": "https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-preview-02.patch", "Allows Saved Layout Library Labels to be edited": "https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%20bernardm28%20Configuration%20form%20for%20layouts%20LayoutEditForm.patch" }, "drupal/layout_builder_at": { "Clone nested inline blocks when translating": "https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch" }, "drupal/facets": { "Issue #3052574: Facets with AJAX not working in most of situations": "https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch" }, "drupal/tb_megamenu": { "changing hover to on click for menu": "./patches/tb_megamenu_click.patch", "Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch" }, "drupal/autocomplete_deluxe": { "Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": "https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch" } } }, "require-dev": { "drupal/core-dev": "^10.0", "drupal/qa_accounts": "^1.0@beta" } }
- 🇮🇳India harishwar r
{ "name": "acquia/drupal-minimal-project", "description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project", "license": "GPL-2.0-or-later", "authors": [ { "name": "Acquia Engineering", "homepage": "https://www.acquia.com", "role": "Maintainer" } ], "repositories": { "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" }, "asset-packagist": { "type": "composer", "url": "https://asset-packagist.org" }, "blazy": { "type": "package", "package": { "name": "dinbror/blazy", "version": "1.8.2", "type": "drupal-library", "dist": { "url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip", "type": "zip" } } }, "slick": { "type": "package", "package": { "name": "kenwheeler/slick", "version": "1.8.1", "type": "drupal-library", "dist": { "url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip", "type": "zip" } } }, "chosen": { "type": "package", "package": { "name": "harvesthq/chosen", "version": "1.8.7", "type": "drupal-library", "dist": { "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip", "type": "zip" } } } }, "require": { "acquia/blt": "^13", "acquia/blt-phpcs": "^1.0", "acquia/drupal-spec-tool": "6.0.0-alpha1", "acquia/memcache-settings": "*", "composer/installers": "^1.9", "cweagans/composer-patches": "*", "d8-contrib-modules/cloudflarephpsdk": "1.0.0", "dinbror/blazy": "^1.8", "drupal/access_unpublished": "^1.3", "drupal/acquia_connector": "4.0.5", "drupal/acquia_lift": "~4.0", "drupal/acquia_purge": "^1.1", "drupal/acquia_search": "^3.0.0", "drupal/address": "^2.0", "drupal/addtoany": "^2.0", "drupal/admin_toolbar": "^3.0", "drupal/advagg": "^6.0@alpha", "drupal/allowed_formats": "^3.0", "drupal/autocomplete_deluxe": "^2.0", "drupal/bamboo_twig": "^6.0", "drupal/blazy": "^2.7.0", "drupal/block_content_permissions": "^1.10", "drupal/block_field": "^1.0-rc2", "drupal/block_list_override": "^1.0", "drupal/calendar_link": "^3.0", "drupal/chosen": "^4.0", "drupal/ckeditor": "^1.0", "drupal/ckeditor_accordion": "^2.0", "drupal/cloudflare": "2.0.x-dev@dev", "drupal/cloudflare_purge": "^1.6", "drupal/codemirror_editor": "^1.7", "drupal/color": "1.x-dev@dev", "drupal/components": "^3", "drupal/config_filter": "^2.6", "drupal/config_ignore": "^3.1", "drupal/config_split": "^2.0", "drupal/contact_block": "^2.0", "drupal/content_translation_redirect": "^2.0@alpha", "drupal/core": "^10.0", "drupal/core-composer-scaffold": "10.2.7", "drupal/core-project-message": "10.2.7", "drupal/core-recommended": "10.2.7", "drupal/crop": "^2.2.0", "drupal/csv_serialization": "^4.0", "drupal/ctools": "^3.14", "drupal/default_content": "^2.0.x-dev", "drupal/devel": "^5.2", "drupal/disable_language": "^1.0@beta", "drupal/disable_login": "^1.1", "drupal/dropdown_language": "^4.0", "drupal/dynamic_entity_reference": "^4.0@alpha", "drupal/easy_breadcrumb": "^2.0", "drupal/editor_advanced_link": "^2.0", "drupal/entity_browser": "^2.6", "drupal/entity_embed": "^1.5", "drupal/entity_update": "^3.0@RC", "drupal/entity_usage": "^2.0@beta", "drupal/environment_indicator": "^4.0.4", "drupal/exclude_node_title": "^1.2", "drupal/facets": "2.0.x-dev@dev", "drupal/field_formatter_class": "^1.5", "drupal/field_group": "^3.1", "drupal/file_mdm": "^2.4.0", "drupal/flood_control": "^2.2", "drupal/focal_point": "^2.0", "drupal/formtips": "^1.6", "drupal/gin": "dev-3.x#0d80803", "drupal/gin_lb": "1.0.x-dev@dev", "drupal/gin_login": "1.x-dev@dev", "drupal/gin_toolbar": "1.0.0-rc6", "drupal/globallink": "^2.2", "drupal/google_tag": "^2.0", "drupal/hal": "^2.0", "drupal/helper": "^1.7", "drupal/honeypot": "^2.0", "drupal/hook_event_dispatcher": "4.x-dev@dev", "drupal/http_cache_control": "2.x-dev@dev", "drupal/i18n_sso": "^1.3", "drupal/iframe": "^2.24", "drupal/imagemagick": "^3.3", "drupal/inline_block_title_automatic": "^1.0", "drupal/inline_entity_form": "^3.0@RC", "drupal/key": "^1.14", "drupal/layout_builder_additions": "^1.0.1", "drupal/layout_builder_at": "^2.12", "drupal/layout_builder_ids": "^2.0", "drupal/layout_builder_modal": "^1.1", "drupal/layout_builder_operation_link": "^2.0", "drupal/layout_builder_restrictions": "^2.9", "drupal/layout_builder_save_and_edit": "^1.0.0", "drupal/layout_builder_styles": "^2.0", "drupal/layout_library": "^1.0@beta", "drupal/layoutbuilder_search_api": "^1.0", "drupal/limited_field_widgets": "^2.0.4", "drupal/link_attributes": "1.x-dev@dev", "drupal/link_target": "^1.4", "drupal/linkit": "^6.0", "drupal/login_security": "^2.0", "drupal/media_alias_display": "^2.0", "drupal/media_directories": "^2.1@beta", "drupal/media_entity_download": "^2.1", "drupal/media_library_media_modify": "^1.0.0-beta5", "drupal/media_library_theme_reset": "^1.1", "drupal/media_revisions_ui": "^2.1", "drupal/menu_admin_per_menu": "^1.3", "drupal/menu_item_extras": "^3.0", "drupal/menu_link_attributes": "^1.2", "drupal/migrate_plus": "6.0.x-dev@dev", "drupal/migrate_tools": "^6.0", "drupal/minifyhtml": "^2.0", "drupal/miniorange_saml": "^3.0", "drupal/mysql56": "^1.0", "drupal/node_read_time": "^1.13", "drupal/pace": "^2.0", "drupal/paragraphs": "^1.13", "drupal/password_policy": "^4.0", "drupal/pathauto": "1.x-dev@dev", "drupal/pcr": "^2.0", "drupal/permissions_filter": "^1.2", "drupal/prepopulate": "^2.3", "drupal/purge": "3.x-dev@dev", "drupal/rabbit_hole": "^1.0@beta", "drupal/rdf": "^2.0", "drupal/rebuild_cache_access": "^1.8", "drupal/recreate_block_content": "^3.0", "drupal/redirect": "^1.6", "drupal/remove_http_headers": "^2.0", "drupal/robotstxt": "^1.4", "drupal/scheduled_transitions": "^2.1", "drupal/schema_metatag": "^2.5", "drupal/search_api": "^1.19", "drupal/search_api_exclude_entity": "^2.0", "drupal/search_api_solr": "^4.3", "drupal/seckit": "^2.0", "drupal/section_library": "^1.0.0-beta2", "drupal/security_review": "^2.0", "drupal/shield": "^1.6.0", "drupal/simple_search_form": "^1.5", "drupal/simple_sitemap": "^4.1.8", "drupal/site_settings": "^1.19", "drupal/slick": "^2.6.0", "drupal/slick_entityreference": "^2.0", "drupal/slick_paragraphs": "^2.2", "drupal/smart_trim": "^2.1", "drupal/stage_file_proxy": "^2.1", "drupal/structure_sync": "^2.0.2", "drupal/svg_formatter": "2.0.3", "drupal/svg_image": "^3.0", "drupal/svg_image_field": "^2.1", "drupal/tablefield": "^2.2", "drupal/text_field_formatter": "^2.0.0", "drupal/tmgmt": "^1.12", "drupal/toastify": "^1.0@beta", "drupal/token_filter": "^2.1", "drupal/twig_tweak": "^3.1", "drupal/twig_vardumper": "^3.0.2", "drupal/username_enumeration_prevention": "^1.2", "drupal/varnish_purger": "^2.1", "drupal/vidyard": "^2.0@beta", "drupal/views_block_filter_block": "^2.0", "drupal/views_data_export": "^1.4", "drupal/views_exposed_filter_blocks": "^1.3", "drupal/viewsreference": "^2.0@beta", "drupal/webp": "^1.0@beta", "drush/drush": "^12.4.3", "harvesthq/chosen": "^1.8", "kenwheeler/slick": "^1.8", "laminas/laminas-feed": "2.17.0", "symfony/twig-bridge": "^6.3" }, "conflict": { "drupal/drupal": "*" }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "allow-plugins": { "composer/installers": true, "cweagans/composer-patches": true, "acquia/blt": true, "acquia/blt-phpcs": true, "drupal/core-composer-scaffold": true, "drupal/core-project-message": true, "dealerdirect/phpcodesniffer-composer-installer": true, "phpstan/extension-installer": true }, "platform": { "php": "8.1.22" } }, "extra": { "drupal-scaffold": { "locations": { "web-root": "docroot/" }, "file-mapping": { "[web-root]/sites/default/default.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.services.yml", "overwrite": false }, "[web-root]/sites/default/default.settings.php": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.settings.php", "overwrite": false }, "[web-root]/.gitignore": false, "[web-root]/.htaccess": false, "[web-root]/INSTALL.txt": false, "[web-root]/README.md": false, "[web-root]/robots.txt": false, "[web-root]/sites/development.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/development.services.yml", "overwrite": false } }, "gitignore": true }, "installer-paths": { "docroot/core": [ "type:drupal-core" ], "docroot/libraries/{$name}": [ "type:drupal-library", "harvesthq/chosen" ], "docroot/modules/contrib/{$name}": [ "type:drupal-module" ], "docroot/profiles/contrib/{$name}": [ "type:drupal-profile" ], "docroot/themes/contrib/{$name}": [ "type:drupal-theme" ], "drush/Commands/contrib/{$name}": [ "type:drupal-drush" ], "docroot/modules/custom/{$name}": [ "type:drupal-custom-module" ], "docroot/themes/custom/{$name}": [ "type:drupal-custom-theme" ] }, "composer-exit-on-patch-failure": true, "enable-patching": true, "patchLevel": { "drupal/core": "-p2" }, "patches": { "drupal/access_unpublished": { "2958800 - Create per-language tokens": "https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create_per_language_tokens-2958800-3.patch", "Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch", "Content Translation interferes when viewing unpublished translations": "https://www.drupal.org/files/issues/2020-09-12/3170616-content-translation-interferes-viewing-unpublished-translations-2.patch", "Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch" }, "drupal/core": { "3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": "https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch", "2928108-70 - blank page in admin/content": "https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch", "2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": "https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch", "3301239 - PoStreamReader::readLine() throws an error on module install":"https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReader_readLine_throws_an_error_on_module_install-3301239-7.patch" }, "drupal/default_content": { "Add a Normalizer and Denormalizer to support Layout Builder": "https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch", "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": "https://www.drupal.org/files/issues/2020-08-03/default_content-integrity_constrait_violation-3162987-2.patch" }, "drupal/layout_library": { "Add hide the content preview option to layout editing": "https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-preview-02.patch", "Allows Saved Layout Library Labels to be edited": "https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%20bernardm28%20Configuration%20form%20for%20layouts%20LayoutEditForm.patch" }, "drupal/layout_builder_at": { "Clone nested inline blocks when translating": "https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch" }, "drupal/facets": { "Issue #3052574: Facets with AJAX not working in most of situations": "https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch" }, "drupal/tb_megamenu": { "changing hover to on click for menu": "./patches/tb_megamenu_click.patch", "Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch" }, "drupal/autocomplete_deluxe": { "Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": "https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch" } } }, "require-dev": { "drupal/core-dev": "^10.0", "drupal/qa_accounts": "^1.0@beta" } }
- 🇮🇳India harishwar r
Hi cilefen, Here is json code. { "name": "acquia/drupal-minimal-project", "description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project", "license": "GPL-2.0-or-later", "authors": [ { "name": "Acquia Engineering", "homepage": "https://www.acquia.com", "role": "Maintainer" } ], "repositories": { "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" }, "asset-packagist": { "type": "composer", "url": "https://asset-packagist.org" }, "blazy": { "type": "package", "package": { "name": "dinbror/blazy", "version": "1.8.2", "type": "drupal-library", "dist": { "url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip", "type": "zip" } } }, "slick": { "type": "package", "package": { "name": "kenwheeler/slick", "version": "1.8.1", "type": "drupal-library", "dist": { "url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip", "type": "zip" } } }, "chosen": { "type": "package", "package": { "name": "harvesthq/chosen", "version": "1.8.7", "type": "drupal-library", "dist": { "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip", "type": "zip" } } } }, "require": { "acquia/blt": "^13", "acquia/blt-phpcs": "^1.0", "acquia/drupal-spec-tool": "6.0.0-alpha1", "acquia/memcache-settings": "*", "composer/installers": "^1.9", "cweagans/composer-patches": "*", "d8-contrib-modules/cloudflarephpsdk": "1.0.0", "dinbror/blazy": "^1.8", "drupal/access_unpublished": "^1.3", "drupal/acquia_connector": "4.0.5", "drupal/acquia_lift": "~4.0", "drupal/acquia_purge": "^1.1", "drupal/acquia_search": "^3.0.0", "drupal/address": "^2.0", "drupal/addtoany": "^2.0", "drupal/admin_toolbar": "^3.0", "drupal/advagg": "^6.0@alpha", "drupal/allowed_formats": "^3.0", "drupal/autocomplete_deluxe": "^2.0", "drupal/bamboo_twig": "^6.0", "drupal/blazy": "^2.7.0", "drupal/block_content_permissions": "^1.10", "drupal/block_field": "^1.0-rc2", "drupal/block_list_override": "^1.0", "drupal/calendar_link": "^3.0", "drupal/chosen": "^4.0", "drupal/ckeditor": "^1.0", "drupal/ckeditor_accordion": "^2.0", "drupal/cloudflare": "2.0.x-dev@dev", "drupal/cloudflare_purge": "^1.6", "drupal/codemirror_editor": "^1.7", "drupal/color": "1.x-dev@dev", "drupal/components": "^3", "drupal/config_filter": "^2.6", "drupal/config_ignore": "^3.1", "drupal/config_split": "^2.0", "drupal/contact_block": "^2.0", "drupal/content_translation_redirect": "^2.0@alpha", "drupal/core": "^10.0", "drupal/core-composer-scaffold": "10.2.7", "drupal/core-project-message": "10.2.7", "drupal/core-recommended": "10.2.7", "drupal/crop": "^2.2.0", "drupal/csv_serialization": "^4.0", "drupal/ctools": "^3.14", "drupal/default_content": "^2.0.x-dev", "drupal/devel": "^5.2", "drupal/disable_language": "^1.0@beta", "drupal/disable_login": "^1.1", "drupal/dropdown_language": "^4.0", "drupal/dynamic_entity_reference": "^4.0@alpha", "drupal/easy_breadcrumb": "^2.0", "drupal/editor_advanced_link": "^2.0", "drupal/entity_browser": "^2.6", "drupal/entity_embed": "^1.5", "drupal/entity_update": "^3.0@RC", "drupal/entity_usage": "^2.0@beta", "drupal/environment_indicator": "^4.0.4", "drupal/exclude_node_title": "^1.2", "drupal/facets": "2.0.x-dev@dev", "drupal/field_formatter_class": "^1.5", "drupal/field_group": "^3.1", "drupal/file_mdm": "^2.4.0", "drupal/flood_control": "^2.2", "drupal/focal_point": "^2.0", "drupal/formtips": "^1.6", "drupal/gin": "dev-3.x#0d80803", "drupal/gin_lb": "1.0.x-dev@dev", "drupal/gin_login": "1.x-dev@dev", "drupal/gin_toolbar": "1.0.0-rc6", "drupal/globallink": "^2.2", "drupal/google_tag": "^2.0", "drupal/hal": "^2.0", "drupal/helper": "^1.7", "drupal/honeypot": "^2.0", "drupal/hook_event_dispatcher": "4.x-dev@dev", "drupal/http_cache_control": "2.x-dev@dev", "drupal/i18n_sso": "^1.3", "drupal/iframe": "^2.24", "drupal/imagemagick": "^3.3", "drupal/inline_block_title_automatic": "^1.0", "drupal/inline_entity_form": "^3.0@RC", "drupal/key": "^1.14", "drupal/layout_builder_additions": "^1.0.1", "drupal/layout_builder_at": "^2.12", "drupal/layout_builder_ids": "^2.0", "drupal/layout_builder_modal": "^1.1", "drupal/layout_builder_operation_link": "^2.0", "drupal/layout_builder_restrictions": "^2.9", "drupal/layout_builder_save_and_edit": "^1.0.0", "drupal/layout_builder_styles": "^2.0", "drupal/layout_library": "^1.0@beta", "drupal/layoutbuilder_search_api": "^1.0", "drupal/limited_field_widgets": "^2.0.4", "drupal/link_attributes": "1.x-dev@dev", "drupal/link_target": "^1.4", "drupal/linkit": "^6.0", "drupal/login_security": "^2.0", "drupal/media_alias_display": "^2.0", "drupal/media_directories": "^2.1@beta", "drupal/media_entity_download": "^2.1", "drupal/media_library_media_modify": "^1.0.0-beta5", "drupal/media_library_theme_reset": "^1.1", "drupal/media_revisions_ui": "^2.1", "drupal/menu_admin_per_menu": "^1.3", "drupal/menu_item_extras": "^3.0", "drupal/menu_link_attributes": "^1.2", "drupal/migrate_plus": "6.0.x-dev@dev", "drupal/migrate_tools": "^6.0", "drupal/minifyhtml": "^2.0", "drupal/miniorange_saml": "^3.0", "drupal/mysql56": "^1.0", "drupal/node_read_time": "^1.13", "drupal/pace": "^2.0", "drupal/paragraphs": "^1.13", "drupal/password_policy": "^4.0", "drupal/pathauto": "1.x-dev@dev", "drupal/pcr": "^2.0", "drupal/permissions_filter": "^1.2", "drupal/prepopulate": "^2.3", "drupal/purge": "3.x-dev@dev", "drupal/rabbit_hole": "^1.0@beta", "drupal/rdf": "^2.0", "drupal/rebuild_cache_access": "^1.8", "drupal/recreate_block_content": "^3.0", "drupal/redirect": "^1.6", "drupal/remove_http_headers": "^2.0", "drupal/robotstxt": "^1.4", "drupal/scheduled_transitions": "^2.1", "drupal/schema_metatag": "^2.5", "drupal/search_api": "^1.19", "drupal/search_api_exclude_entity": "^2.0", "drupal/search_api_solr": "^4.3", "drupal/seckit": "^2.0", "drupal/section_library": "^1.0.0-beta2", "drupal/security_review": "^2.0", "drupal/shield": "^1.6.0", "drupal/simple_search_form": "^1.5", "drupal/simple_sitemap": "^4.1.8", "drupal/site_settings": "^1.19", "drupal/slick": "^2.6.0", "drupal/slick_entityreference": "^2.0", "drupal/slick_paragraphs": "^2.2", "drupal/smart_trim": "^2.1", "drupal/stage_file_proxy": "^2.1", "drupal/structure_sync": "^2.0.2", "drupal/svg_formatter": "2.0.3", "drupal/svg_image": "^3.0", "drupal/svg_image_field": "^2.1", "drupal/tablefield": "^2.2", "drupal/text_field_formatter": "^2.0.0", "drupal/tmgmt": "^1.12", "drupal/toastify": "^1.0@beta", "drupal/token_filter": "^2.1", "drupal/twig_tweak": "^3.1", "drupal/twig_vardumper": "^3.0.2", "drupal/username_enumeration_prevention": "^1.2", "drupal/varnish_purger": "^2.1", "drupal/vidyard": "^2.0@beta", "drupal/views_block_filter_block": "^2.0", "drupal/views_data_export": "^1.4", "drupal/views_exposed_filter_blocks": "^1.3", "drupal/viewsreference": "^2.0@beta", "drupal/webp": "^1.0@beta", "drush/drush": "^12.4.3", "harvesthq/chosen": "^1.8", "kenwheeler/slick": "^1.8", "laminas/laminas-feed": "2.17.0", "symfony/twig-bridge": "^6.3" }, "conflict": { "drupal/drupal": "*" }, "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true, "allow-plugins": { "composer/installers": true, "cweagans/composer-patches": true, "acquia/blt": true, "acquia/blt-phpcs": true, "drupal/core-composer-scaffold": true, "drupal/core-project-message": true, "dealerdirect/phpcodesniffer-composer-installer": true, "phpstan/extension-installer": true }, "platform": { "php": "8.1.22" } }, "extra": { "drupal-scaffold": { "locations": { "web-root": "docroot/" }, "file-mapping": { "[web-root]/sites/default/default.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.services.yml", "overwrite": false }, "[web-root]/sites/default/default.settings.php": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/default.settings.php", "overwrite": false }, "[web-root]/.gitignore": false, "[web-root]/.htaccess": false, "[web-root]/INSTALL.txt": false, "[web-root]/README.md": false, "[web-root]/robots.txt": false, "[web-root]/sites/development.services.yml": { "mode": "replace", "path": "docroot/core/assets/scaffold/files/development.services.yml", "overwrite": false } }, "gitignore": true }, "installer-paths": { "docroot/core": [ "type:drupal-core" ], "docroot/libraries/{$name}": [ "type:drupal-library", "harvesthq/chosen" ], "docroot/modules/contrib/{$name}": [ "type:drupal-module" ], "docroot/profiles/contrib/{$name}": [ "type:drupal-profile" ], "docroot/themes/contrib/{$name}": [ "type:drupal-theme" ], "drush/Commands/contrib/{$name}": [ "type:drupal-drush" ], "docroot/modules/custom/{$name}": [ "type:drupal-custom-module" ], "docroot/themes/custom/{$name}": [ "type:drupal-custom-theme" ] }, "composer-exit-on-patch-failure": true, "enable-patching": true, "patchLevel": { "drupal/core": "-p2" }, "patches": { "drupal/access_unpublished": { "2958800 - Create per-language tokens": "https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create_per_language_tokens-2958800-3.patch", "Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch", "Content Translation interferes when viewing unpublished translations": "https://www.drupal.org/files/issues/2020-09-12/3170616-content-translation-interferes-viewing-unpublished-translations-2.patch", "Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch" }, "drupal/core": { "3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": "https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch", "2928108-70 - blank page in admin/content": "https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch", "2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": "https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch", "3301239 - PoStreamReader::readLine() throws an error on module install":"https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReader_readLine_throws_an_error_on_module_install-3301239-7.patch" }, "drupal/default_content": { "Add a Normalizer and Denormalizer to support Layout Builder": "https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch", "SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": "https://www.drupal.org/files/issues/2020-08-03/default_content-integrity_constrait_violation-3162987-2.patch" }, "drupal/layout_library": { "Add hide the content preview option to layout editing": "https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-preview-02.patch", "Allows Saved Layout Library Labels to be edited": "https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%20bernardm28%20Configuration%20form%20for%20layouts%20LayoutEditForm.patch" }, "drupal/layout_builder_at": { "Clone nested inline blocks when translating": "https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch" }, "drupal/facets": { "Issue #3052574: Facets with AJAX not working in most of situations": "https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch" }, "drupal/tb_megamenu": { "changing hover to on click for menu": "./patches/tb_megamenu_click.patch", "Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch" }, "drupal/autocomplete_deluxe": { "Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": "https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch" } } }, "require-dev": { "drupal/core-dev": "^10.0", "drupal/qa_accounts": "^1.0@beta" } }
You shouldn’t have a direct dependency on drupal/core. That is usually a problem and it is redundant to drupal/core-recommended. I can’t answer more fully right now.
- 🇮🇳India harishwar r
Hi Cilefen
Here is my JSON code
{
"name": "acquia/drupal-minimal-project",
"description": "Minimal Acquia-compatible Drupal application based on the Drupal Recommended Project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"homepage": "https://www.acquia.com",
"role": "Maintainer"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"blazy": {
"type": "package",
"package": {
"name": "dinbror/blazy",
"version": "1.8.2",
"type": "drupal-library",
"dist": {
"url": "https://github.com/dinbror/blazy/archive/refs/tags/1.8.2.zip",
"type": "zip"
}
}
},
"slick": {
"type": "package",
"package": {
"name": "kenwheeler/slick",
"version": "1.8.1",
"type": "drupal-library",
"dist": {
"url": "https://github.com/kenwheeler/slick/archive/refs/tags/v1.8.1.zip",
"type": "zip"
}
}
},
"chosen": {
"type": "package",
"package": {
"name": "harvesthq/chosen",
"version": "1.8.7",
"type": "drupal-library",
"dist": {
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8...",
"type": "zip"
}
}
}
},
"require": {
"acquia/blt": "^13",
"acquia/blt-phpcs": "^1.0",
"acquia/drupal-spec-tool": "6.0.0-alpha1",
"acquia/memcache-settings": "*",
"composer/installers": "^1.9",
"cweagans/composer-patches": "*",
"d8-contrib-modules/cloudflarephpsdk": "1.0.0",
"dinbror/blazy": "^1.8",
"drupal/access_unpublished": "^1.3",
"drupal/acquia_connector": "4.0.5",
"drupal/acquia_lift": "~4.0",
"drupal/acquia_purge": "^1.1",
"drupal/acquia_search": "^3.0.0",
"drupal/address": "^2.0",
"drupal/addtoany": "^2.0",
"drupal/admin_toolbar": "^3.0",
"drupal/advagg": "^6.0@alpha",
"drupal/allowed_formats": "^3.0",
"drupal/autocomplete_deluxe": "^2.0",
"drupal/bamboo_twig": "^6.0",
"drupal/blazy": "^2.7.0",
"drupal/block_content_permissions": "^1.10",
"drupal/block_field": "^1.0-rc2",
"drupal/block_list_override": "^1.0",
"drupal/calendar_link": "^3.0",
"drupal/chosen": "^4.0",
"drupal/ckeditor": "^1.0",
"drupal/ckeditor_accordion": "^2.0",
"drupal/cloudflare": "2.0.x-dev@dev",
"drupal/cloudflare_purge": "^1.6",
"drupal/codemirror_editor": "^1.7",
"drupal/color": "1.x-dev@dev",
"drupal/components": "^3",
"drupal/config_filter": "^2.6",
"drupal/config_ignore": "^3.1",
"drupal/config_split": "^2.0",
"drupal/contact_block": "^2.0",
"drupal/content_translation_redirect": "^2.0@alpha",
"drupal/core": "^10.0",
"drupal/core-composer-scaffold": "10.2.7",
"drupal/core-project-message": "10.2.7",
"drupal/core-recommended": "10.2.7",
"drupal/crop": "^2.2.0",
"drupal/csv_serialization": "^4.0",
"drupal/ctools": "^3.14",
"drupal/default_content": "^2.0.x-dev",
"drupal/devel": "^5.2",
"drupal/disable_language": "^1.0@beta",
"drupal/disable_login": "^1.1",
"drupal/dropdown_language": "^4.0",
"drupal/dynamic_entity_reference": "^4.0@alpha",
"drupal/easy_breadcrumb": "^2.0",
"drupal/editor_advanced_link": "^2.0",
"drupal/entity_browser": "^2.6",
"drupal/entity_embed": "^1.5",
"drupal/entity_update": "^3.0@RC",
"drupal/entity_usage": "^2.0@beta",
"drupal/environment_indicator": "^4.0.4",
"drupal/exclude_node_title": "^1.2",
"drupal/facets": "2.0.x-dev@dev",
"drupal/field_formatter_class": "^1.5",
"drupal/field_group": "^3.1",
"drupal/file_mdm": "^2.4.0",
"drupal/flood_control": "^2.2",
"drupal/focal_point": "^2.0",
"drupal/formtips": "^1.6",
"drupal/gin": "dev-3.x#0d80803",
"drupal/gin_lb": "1.0.x-dev@dev",
"drupal/gin_login": "1.x-dev@dev",
"drupal/gin_toolbar": "1.0.0-rc6",
"drupal/globallink": "^2.2",
"drupal/google_tag": "^2.0",
"drupal/hal": "^2.0",
"drupal/helper": "^1.7",
"drupal/honeypot": "^2.0",
"drupal/hook_event_dispatcher": "4.x-dev@dev",
"drupal/http_cache_control": "2.x-dev@dev",
"drupal/i18n_sso": "^1.3",
"drupal/iframe": "^2.24",
"drupal/imagemagick": "^3.3",
"drupal/inline_block_title_automatic": "^1.0",
"drupal/inline_entity_form": "^3.0@RC",
"drupal/key": "^1.14",
"drupal/layout_builder_additions": "^1.0.1",
"drupal/layout_builder_at": "^2.12",
"drupal/layout_builder_ids": "^2.0",
"drupal/layout_builder_modal": "^1.1",
"drupal/layout_builder_operation_link": "^2.0",
"drupal/layout_builder_restrictions": "^2.9",
"drupal/layout_builder_save_and_edit": "^1.0.0",
"drupal/layout_builder_styles": "^2.0",
"drupal/layout_library": "^1.0@beta",
"drupal/layoutbuilder_search_api": "^1.0",
"drupal/limited_field_widgets": "^2.0.4",
"drupal/link_attributes": "1.x-dev@dev",
"drupal/link_target": "^1.4",
"drupal/linkit": "^6.0",
"drupal/login_security": "^2.0",
"drupal/media_alias_display": "^2.0",
"drupal/media_directories": "^2.1@beta",
"drupal/media_entity_download": "^2.1",
"drupal/media_library_media_modify": "^1.0.0-beta5",
"drupal/media_library_theme_reset": "^1.1",
"drupal/media_revisions_ui": "^2.1",
"drupal/menu_admin_per_menu": "^1.3",
"drupal/menu_item_extras": "^3.0",
"drupal/menu_link_attributes": "^1.2",
"drupal/migrate_plus": "6.0.x-dev@dev",
"drupal/migrate_tools": "^6.0",
"drupal/minifyhtml": "^2.0",
"drupal/miniorange_saml": "^3.0",
"drupal/mysql56": "^1.0",
"drupal/node_read_time": "^1.13",
"drupal/pace": "^2.0",
"drupal/paragraphs": "^1.13",
"drupal/password_policy": "^4.0",
"drupal/pathauto": "1.x-dev@dev",
"drupal/pcr": "^2.0",
"drupal/permissions_filter": "^1.2",
"drupal/prepopulate": "^2.3",
"drupal/purge": "3.x-dev@dev",
"drupal/rabbit_hole": "^1.0@beta",
"drupal/rdf": "^2.0",
"drupal/rebuild_cache_access": "^1.8",
"drupal/recreate_block_content": "^3.0",
"drupal/redirect": "^1.6",
"drupal/remove_http_headers": "^2.0",
"drupal/robotstxt": "^1.4",
"drupal/scheduled_transitions": "^2.1",
"drupal/schema_metatag": "^2.5",
"drupal/search_api": "^1.19",
"drupal/search_api_exclude_entity": "^2.0",
"drupal/search_api_solr": "^4.3",
"drupal/seckit": "^2.0",
"drupal/section_library": "^1.0.0-beta2",
"drupal/security_review": "^2.0",
"drupal/shield": "^1.6.0",
"drupal/simple_search_form": "^1.5",
"drupal/simple_sitemap": "^4.1.8",
"drupal/site_settings": "^1.19",
"drupal/slick": "^2.6.0",
"drupal/slick_entityreference": "^2.0",
"drupal/slick_paragraphs": "^2.2",
"drupal/smart_trim": "^2.1",
"drupal/stage_file_proxy": "^2.1",
"drupal/structure_sync": "^2.0.2",
"drupal/svg_formatter": "2.0.3",
"drupal/svg_image": "^3.0",
"drupal/svg_image_field": "^2.1",
"drupal/tablefield": "^2.2",
"drupal/text_field_formatter": "^2.0.0",
"drupal/tmgmt": "^1.12",
"drupal/toastify": "^1.0@beta",
"drupal/token_filter": "^2.1",
"drupal/twig_tweak": "^3.1",
"drupal/twig_vardumper": "^3.0.2",
"drupal/username_enumeration_prevention": "^1.2",
"drupal/varnish_purger": "^2.1",
"drupal/vidyard": "^2.0@beta",
"drupal/views_block_filter_block": "^2.0",
"drupal/views_data_export": "^1.4",
"drupal/views_exposed_filter_blocks": "^1.3",
"drupal/viewsreference": "^2.0@beta",
"drupal/webp": "^1.0@beta",
"drush/drush": "^12.4.3",
"harvesthq/chosen": "^1.8",
"kenwheeler/slick": "^1.8",
"laminas/laminas-feed": "2.17.0",
"symfony/twig-bridge": "^6.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"acquia/blt": true,
"acquia/blt-phpcs": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "8.1.22"
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
},
"file-mapping": {
"[web-root]/sites/default/default.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.services.yml",
"overwrite": false
},
"[web-root]/sites/default/default.settings.php": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.settings.php",
"overwrite": false
},
"[web-root]/.gitignore": false,
"[web-root]/.htaccess": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.md": false,
"[web-root]/robots.txt": false,
"[web-root]/sites/development.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/development.services.yml",
"overwrite": false
}
},
"gitignore": true
},
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"harvesthq/chosen"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/access_unpublished": {
"2958800 - Create per-language tokens": " https://www.drupal.org/files/issues/2019-03-20/access_unpublished-create... → ",
"Patch for: Call to a member function label() on null" : "./patches/access_unpublished_null_check.patch",
"Content Translation interferes when viewing unpublished translations": " https://www.drupal.org/files/issues/2020-09-12/3170616-content-translati... → ",
"Adding defense coding to access tockent getHost": "./patches/access_token_defense_coding.patch"
},
"drupal/core": {
"3207813 - ModuleHandler skips all hook implementations when invoked before the module files have been loaded": " https://www.drupal.org/files/issues/2021-04-08/3207813-2.patch → ",
"2928108-70 - blank page in admin/content": " https://www.drupal.org/files/issues/2022-09-19/2928108-70.patch → ",
"2847353 - Argument #1 ($instance) must be of type PluginInspectionInterface": " https://www.drupal.org/files/issues/2019-12-30/2847353-15.patch → ",
"3301239 - PoStreamReader::readLine() throws an error on module install":" https://www.drupal.org/files/issues/2023-01-17/drupal_core-PoStreamReade... → "
},
"drupal/default_content": {
"Add a Normalizer and Denormalizer to support Layout Builder": " https://www.drupal.org/files/issues/2021-04-07/3160146-37.patch → ",
"SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry": " https://www.drupal.org/files/issues/2020-08-03/default_content-integrity... → "
},
"drupal/layout_library": {
"Add hide the content preview option to layout editing": " https://www.drupal.org/files/issues/2019-11-07/3081497_add-hide-content-... → ",
"Allows Saved Layout Library Labels to be edited": " https://www.drupal.org/files/issues/2020-04-08/Issue%20%233125879%20by%2... → "
},
"drupal/layout_builder_at": {
"Clone nested inline blocks when translating": " https://www.drupal.org/files/issues/2019-12-03/3098245-7.patch → "
},
"drupal/facets": {
"Issue #3052574: Facets with AJAX not working in most of situations": " https://www.drupal.org/files/issues/2023-01-03/facets-3198888-6.patch → "
},
"drupal/tb_megamenu": {
"changing hover to on click for menu": "./patches/tb_megamenu_click.patch",
"Remove submenu trees from displaying for Main Navigation menu": "./patches/tb_megamenu_module.patch"
},
"drupal/autocomplete_deluxe": {
"Autocomplete deluxe widget doesn't work for multiple entity reference field when you add new terms and some terms are existing": " https://www.drupal.org/files/issues/2019-05-10/3053986_2.patch → "
}
}
},
"require-dev": {
"drupal/core-dev": "^10.0",
"drupal/qa_accounts": "^1.0@beta"
}
}