SSH codes
inloggen met
the-finishing-touchbe@ssh.the-finishing-touch.be
de vier stappen
composer init
composer require drupal/core-composer-scaffold composer/installers
composer config repositories.drupal composer https://packages.drupal.org/8
INSTELLEN VAN MAPLOCATIES
composer require drupal/core
MAPLOCATIES
in de map van jouw website:
typ vim composer.json
druk op i (insert)
plak de verschillende teksten (zie hieronder)
druk op esc op schrijfmodus af te sluiten
typ :w of :q om af te sluiten
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"core": ["type:drupal-core"],
"libraries/{$name}": ["type:drupal-library"],
"modules/contrib/{$name}": ["type:drupal-module"],
"profiles/contrib/{$name}": ["type:drupal-profile"],
"themes/contrib/{$name}": ["type:drupal-theme"],
"drush/{$name}": ["type:drupal-drush"],
"modules/custom/{$name}": ["type:drupal-custom-module"],
"themes/custom/{$name}": ["type:drupal-custom-theme"]
}
},
- Login of registreer om te reageren