Updated documentation for depends/prohibits.
parent
75bb0d9b10
commit
47da91d998
|
@ -337,16 +337,11 @@ php composer.phar depends doctrine/lexer
|
||||||
doctrine/common v2.6.1 requires doctrine/lexer (1.*)
|
doctrine/common v2.6.1 requires doctrine/lexer (1.*)
|
||||||
```
|
```
|
||||||
|
|
||||||
If you want, for example, to find any installed package that is **not**
|
You can optionally specify a version constraint after the package to limit the
|
||||||
allowing Monolog to be upgraded to version 1.17 , try this:
|
search.
|
||||||
|
|
||||||
```sh
|
Add the `--tree` or `-t` flag to show a recursive tree of why the package is
|
||||||
php composer.phar depends monolog/monolog -im ^1.17
|
depended upon, for example:
|
||||||
There is no installed package depending on "monolog/monolog" in versions not matching 1.17
|
|
||||||
```
|
|
||||||
|
|
||||||
Add the `--tree` or `-t` flag to show a recursive tree of why the package is depended
|
|
||||||
upon, for example:
|
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
php composer.phar depends psr/log -t
|
php composer.phar depends psr/log -t
|
||||||
|
@ -364,9 +359,36 @@ psr/log 1.0.0 Common interface for logging libraries
|
||||||
|
|
||||||
* **--recursive (-r):** Recursively resolves up to the root package.
|
* **--recursive (-r):** Recursively resolves up to the root package.
|
||||||
* **--tree (-t):** Prints the results as a nested tree, implies -r.
|
* **--tree (-t):** Prints the results as a nested tree, implies -r.
|
||||||
* **--match-constraint (-m):** Filters the dependencies shown using this constraint.
|
|
||||||
* **--invert-match-constraint (-i):** Turns --match-constraint around into a blacklist
|
## prohibits
|
||||||
instead of a whitelist.
|
|
||||||
|
The `prohibits` command tells you which packages are blocking a given package
|
||||||
|
from being installed. Specify a version constraint to verify whether upgrades
|
||||||
|
can be performed in your project, and if not why not. See the following
|
||||||
|
example:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
php composer.phar prohibits symfony/symfony 3.1
|
||||||
|
laravel/framework v5.2.16 requires symfony/var-dumper (2.8.*|3.0.*)
|
||||||
|
```
|
||||||
|
|
||||||
|
Note that you can also specify platform requirements, for example to check
|
||||||
|
whether you can upgrade your server to PHP 8.0:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
php composer.phar prohibits php:8
|
||||||
|
doctrine/cache v1.6.0 requires php (~5.5|~7.0)
|
||||||
|
doctrine/common v2.6.1 requires php (~5.5|~7.0)
|
||||||
|
doctrine/instantiator 1.0.5 requires php (>=5.3,<8.0-DEV)
|
||||||
|
```
|
||||||
|
|
||||||
|
As with `depends` you can request a recursive lookup, which will list all
|
||||||
|
packages depending on the packages that cause the conflict.
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
* **--recursive (-r):** Recursively resolves up to the root package.
|
||||||
|
* **--tree (-t):** Prints the results as a nested tree, implies -r.
|
||||||
|
|
||||||
## validate
|
## validate
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue