Created
December 2, 2023 13:16
-
-
Save eevensen/3ac67ef5f5f10e33607fafdb74906c76 to your computer and use it in GitHub Desktop.
Acquia Composer.json file from Lando
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "acquia/drupal-recommended-project", | |
"description": "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" | |
} | |
], | |
"require": { | |
"php": ">=8.1", | |
"acquia/drupal-environment-detector": "^1", | |
"acquia/memcache-settings": "^1", | |
"composer/installers": "^2.1", | |
"cweagans/composer-patches": "^1.6", | |
"drupal/better_exposed_filters": "^6.0", | |
"drupal/collapsiblock": "^4.1", | |
"drupal/components": "^3.0@beta", | |
"drupal/config_delete": "^2.0", | |
"drupal/config_direct_save": "^3.0", | |
"drupal/config_filter": "^2.6", | |
"drupal/config_ignore": "^3.1", | |
"drupal/config_split": "^2.0", | |
"drupal/core-composer-scaffold": "^10", | |
"drupal/core-recommended": "^10", | |
"drupal/core-vendor-hardening": "^10.1", | |
"drupal/ctools": "^4.0", | |
"drupal/eu_cookie_compliance": "^1.24", | |
"drupal/facets": "^2.0", | |
"drupal/fontawesome": "^2.26", | |
"drupal/jquery_ui": "^1.6", | |
"drupal/jquery_ui_datepicker": "^2.0", | |
"drupal/jquery_ui_slider": "^2.0", | |
"drupal/jquery_ui_touch_punch": "^1.1", | |
"drupal/memcache": "^2.5", | |
"drupal/migrate_plus": "^6.0", | |
"drupal/migrate_source_csv": "^3.5", | |
"drupal/migrate_tools": "^6.0", | |
"drupal/openid_connect": "^1.4", | |
"drupal/pathauto": "^1.12", | |
"drupal/plausible": "^2.0", | |
"drupal/rabbit_hole": "^2.0@alpha", | |
"drupal/radix": "^5.0", | |
"drupal/radix_layouts": "^5.0", | |
"drupal/search_api": "^1.31", | |
"drupal/search_api_autocomplete": "^1.8", | |
"drupal/search_api_solr": "^4.3", | |
"drupal/toc_js": "^2.1", | |
"drupal/token": "^1.13", | |
"drupal/views_bulk_operations": "^4.2", | |
"drupal/views_conditional": "^1.9", | |
"drupal/views_flipped_table": "^2.0", | |
"drush/drush": "^12", | |
"oomphinc/composer-installers-extender": "^2" | |
}, | |
"require-dev": { | |
"acquia/coding-standards": "^2.0.0", | |
"mglaman/phpstan-drupal": "^1.1", | |
"phpstan/extension-installer": "^1.1", | |
"phpstan/phpstan": "^1.6", | |
"phpstan/phpstan-deprecation-rules": "^1.0", | |
"phpunit/phpunit": "^9.5", | |
"squizlabs/php_codesniffer": "^3.6" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"config": { | |
"allow-plugins": { | |
"composer/installers": true, | |
"cweagans/composer-patches": true, | |
"dealerdirect/phpcodesniffer-composer-installer": true, | |
"drupal/core-composer-scaffold": true, | |
"ergebnis/composer-normalize": true, | |
"oomphinc/composer-installers-extender": true, | |
"phpstan/extension-installer": true, | |
"php-http/discovery": true, | |
"drupal/core-vendor-hardening": true | |
}, | |
"platform": { | |
"php": "8.1" | |
}, | |
"sort-packages": true | |
}, | |
"extra": { | |
"composer-exit-on-patch-failure": true, | |
"drupal-scaffold": { | |
"allowed-packages": [ | |
"acquia/acquia_cms" | |
], | |
"file-mapping": { | |
"[profile-root]/.editorconfig": false, | |
"[profile-root]/.gitattributes": false, | |
"[profile-root]/.travis.yml": false, | |
"[profile-root]/acquia-pipelines.yml": false, | |
"[web-root]/sites/default/default.services.yml": { | |
"mode": "replace", | |
"overwrite": false, | |
"path": "docroot/core/assets/scaffold/files/default.services.yml" | |
}, | |
"[web-root]/sites/default/default.settings.php": { | |
"mode": "replace", | |
"overwrite": false, | |
"path": "docroot/core/assets/scaffold/files/default.settings.php" | |
} | |
}, | |
"gitignore": true, | |
"locations": { | |
"profile-root": "docroot/profiles/contrib/acquia_cms", | |
"web-root": "docroot/" | |
} | |
}, | |
"enable-patching": true, | |
"installer-paths": { | |
"docroot/core": [ | |
"type:drupal-core" | |
], | |
"docroot/libraries/{$name}": [ | |
"type:drupal-library", | |
"type:bower-asset", | |
"type:npm-asset" | |
], | |
"docroot/modules/contrib/{$name}": [ | |
"type:drupal-module" | |
], | |
"docroot/modules/custom/{$name}": [ | |
"type:drupal-custom-module" | |
], | |
"docroot/profiles/contrib/{$name}": [ | |
"type:drupal-profile" | |
], | |
"docroot/themes/contrib/{$name}": [ | |
"type:drupal-theme" | |
], | |
"docroot/themes/custom/{$name}": [ | |
"type:drupal-custom-theme" | |
], | |
"drush/Commands/contrib/{$name}": [ | |
"type:drupal-drush" | |
] | |
}, | |
"installer-types": [ | |
"bower-asset", | |
"npm-asset" | |
], | |
"patchLevel": { | |
"drupal/core": "-p2" | |
}, | |
"patches": {} | |
}, | |
"repositories": { | |
"drupal": { | |
"type": "composer", | |
"url": "https://packages.drupal.org/8" | |
} | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"scripts": { | |
"acms:install": [ | |
"Composer\\Config::disableProcessTimeout", | |
"./vendor/bin/acms acms:install" | |
], | |
"nuke": [ | |
"rm -rf docroot vendor composer.lock" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment