Wording fixes
parent
ae474999e8
commit
a0398286ba
|
@ -341,8 +341,8 @@ symfony/monolog-bridge requires monolog/monolog (>=1.2)
|
||||||
symfony/symfony requires monolog/monolog (~1)
|
symfony/symfony requires monolog/monolog (~1)
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want, for example, find any package that is **not** ready
|
If you want, for example, find any installed package that is **not** allowing
|
||||||
for Symfony 3 or one of its components, you can run the following command:
|
Symfony version 3 or one of its components, you can run the following command:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
php composer.phar depends symfony/symfony --with-replaces -im ^3.0
|
php composer.phar depends symfony/symfony --with-replaces -im ^3.0
|
||||||
|
|
|
@ -46,7 +46,7 @@ class DependsCommand extends Command
|
||||||
new InputArgument('package', InputArgument::REQUIRED, 'Package to inspect'),
|
new InputArgument('package', InputArgument::REQUIRED, 'Package to inspect'),
|
||||||
new InputOption('link-type', '', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Link types to show (require, require-dev)', array_keys($this->linkTypes)),
|
new InputOption('link-type', '', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Link types to show (require, require-dev)', array_keys($this->linkTypes)),
|
||||||
new InputOption('match-constraint', 'm', InputOption::VALUE_REQUIRED, 'Filters the dependencies shown using this constraint', '*'),
|
new InputOption('match-constraint', 'm', InputOption::VALUE_REQUIRED, 'Filters the dependencies shown using this constraint', '*'),
|
||||||
new InputOption('invert-match-constraint', 'i', InputOption::VALUE_NONE, 'Turns --match-constraint around into a blacklist insteead of whitelist'),
|
new InputOption('invert-match-constraint', 'i', InputOption::VALUE_NONE, 'Turns --match-constraint around into a blacklist instead of whitelist'),
|
||||||
new InputOption('with-replaces', '', InputOption::VALUE_NONE, 'Search for replaced packages as well'),
|
new InputOption('with-replaces', '', InputOption::VALUE_NONE, 'Search for replaced packages as well'),
|
||||||
))
|
))
|
||||||
->setHelp(<<<EOT
|
->setHelp(<<<EOT
|
||||||
|
|
Loading…
Reference in New Issue