Global navigation

   Documentation Center
   eZ Studio & eZ Platform
     User Manual
     Technical Manual
     Glossary
   eZ Publish 4.x / legacy

 
eZ Publish (5.x)

eZ Publish 5.x | For eZ Platform & eZ Studio topics see Technical manual and User manual, for eZ Publish 4.x and Legacy topics see eZ Publish legacy

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: composer command long style

...

Excerpt Include
glossary:Composer
glossary:Composer

Info
titlecomposer.phar or composer ?

The following examples use a composer install global command, as alternative use php composer.phar <command>.
Read the answer in the FAQ : What Composer command-line do you have to use ?

 

 

Troubleshooting

You may experience some latency in dependency resolution : everything is going normally.

...

Code Block
themeRDark
languagepowershell
$> composerphp -d memory_limit=-1 composer.phar <command> --verbose (-v|vv|vvv)

...

Code Block
themeRDark
languagepowershell
$> composerphp -d memory_limit=-1 composer.phar install --dry-run --prefer-dist

...

Code Block
themeRDark
languagepowershell
$> composerphp -d memory_limit=-1 composer.phar install [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--no-plugins] [--no-custom-installers] [--no-scripts] [--no-progress] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [packages1] ... [packagesN]

...

Code Block
themeRDark
languagepowershell
php $> composer-d memory_limit=-1 composer.phar update vendor/package1 foo/mypackage 

...

Code Block
themeRDark
languagepowershell
php $> composer-d memory_limit=-1 composer.phar update vendor/package1 foo/* 

...