Tag: Composer

  • Remove /web part from a Composer based Drupal site

    Remove /web part from a Composer based Drupal site

    By default when you create your Drupal project using composer it will create project under /web directory. When you’re using shared hosting for your Drupal website which points your domain to /public_html folder and you’re not allow to change that pointing directory Now whenever your targeted audience will have to visit your website they have…

  • All you need to know about Composer

    All you need to know about Composer

    All composer commands, depending on your install, may need to use php composer.phar in the install folder for composer, instead of plain composer. Updating packages This command changes only the composer.lock file. composer update Updates all packages composer update –with-dependencies Updates all packages and its dependencies composer update vendor/package Updates a certain package from vendor composer update vendor/* Updates all packages from vendor composer…