d7_to_d10_migration/drupal10/composer.json
Mauricio Dinarte 1664d5cfe6 Initial commit
2024-07-22 21:38:34 -06:00

87 lines
2.7 KiB
JSON

{
"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",
"drupal/address": "^2.0",
"drupal/core-composer-scaffold": "^10.3.0",
"drupal/core-recommended": "^10.3.0",
"drupal/field_group": "^3.4",
"drupal/migrate_plus": "^6.0",
"drupal/migrate_skip_fields": "^1.0@alpha",
"drupal/migrate_upgrade": "^4.0",
"drupal/migrate_url2link": "^1.0",
"drupal/paragraphs": "^1.17",
"drupal/pathauto": "^1.12",
"drupal/social_link_field": "^2.0",
"drupal/views_migration": "^1.2",
"drush/drush": "^13.0@beta"
},
"conflict": {
"drupal/drupal": "*"
},
"scripts": {
"si": "drush --yes sql:drop && drush --yes -v site:install tag1_profile --existing-config"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
},
"sort-packages": true
},
"extra": {
"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"
]
}
}
}