Making several tweaks per @stof
parent
80d606fb36
commit
cf11b48306
|
@ -24,7 +24,7 @@ abstract class Command extends BaseCommand
|
||||||
/**
|
/**
|
||||||
* @return \Composer\Composer
|
* @return \Composer\Composer
|
||||||
*/
|
*/
|
||||||
public function getComposer()
|
protected function getComposer()
|
||||||
{
|
{
|
||||||
return $this->getApplication()->getComposer();
|
return $this->getApplication()->getComposer();
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,6 @@ use Composer\DependencyResolver\Solver;
|
||||||
use Composer\Repository\PlatformRepository;
|
use Composer\Repository\PlatformRepository;
|
||||||
use Composer\Package\MemoryPackage;
|
use Composer\Package\MemoryPackage;
|
||||||
use Composer\Package\LinkConstraint\VersionConstraint;
|
use Composer\Package\LinkConstraint\VersionConstraint;
|
||||||
|
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
use Symfony\Component\Console\Output\OutputInterface;
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
|
||||||
|
@ -35,6 +34,15 @@ class InstallCommand extends Command
|
||||||
$this
|
$this
|
||||||
->setName('install')
|
->setName('install')
|
||||||
->setDescription('Parses the composer.json file and downloads the needed dependencies.')
|
->setDescription('Parses the composer.json file and downloads the needed dependencies.')
|
||||||
|
->setHelp(<<<EOT
|
||||||
|
The <info>install</info> command reads the composer.json file from the
|
||||||
|
current directory, processes it, and downloads and installs all the
|
||||||
|
libraries and dependencies outlined in that file.
|
||||||
|
|
||||||
|
<info>php composer install</info>
|
||||||
|
|
||||||
|
EOT
|
||||||
|
)
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue