Reorganize to be consistent with GEO

This commit is contained in:
benjamin melançon 2020-05-06 22:47:17 -04:00
parent 3d7c74b4f7
commit b43aa5adc2

View file

@ -6,9 +6,6 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"behat/behat": "^3.4",
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2",
"composer/installers": "^1.7",
"cweagans/composer-patches": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
@ -58,6 +55,11 @@
"wikimedia/composer-merge-plugin": "^1.4",
"zaporylie/composer-drupal-optimizations": "^1.0"
},
"require-dev": {
"behat/behat": "^3.4",
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2"
},
"repositories": {
"drupal": {
"type": "composer",
@ -68,39 +70,23 @@
"url": "https://github.com/drutopia/drutopia"
}
},
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
],
"nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
"quick-start": [
"composer install",
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
]
"config": {
"sort-packages": true,
"process-timeout": 600
},
"conflict": {
"drupal/drupal": "*"
},
"extra": {
"installer-paths": {
"web/core": [
"drupal/core"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
"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/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"merge-plugin": {
"include": [
@ -120,8 +106,11 @@
}
}
},
"config": {
"sort-packages": true,
"process-timeout": 600
"scripts": {
"nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
"quick-start": [
"composer install",
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
]
}
}