Clarify how check-platform-reqs works, fixes #8191
parent
50d3c515ed
commit
45591597f6
|
@ -259,6 +259,10 @@ match the platform requirements of the installed packages. This can be used
|
||||||
to verify that a production server has all the extensions needed to run a
|
to verify that a production server has all the extensions needed to run a
|
||||||
project after installing it for example.
|
project after installing it for example.
|
||||||
|
|
||||||
|
Unlike update/install, this command will ignore config.platform settings and
|
||||||
|
check the real platform packages so you can be certain you have the required
|
||||||
|
platform dependencies.
|
||||||
|
|
||||||
## global
|
## global
|
||||||
|
|
||||||
The global command allows you to run other commands like `install`, `remove`, `require`
|
The global command allows you to run other commands like `install`, `remove`, `require`
|
||||||
|
|
|
@ -34,6 +34,8 @@ class CheckPlatformReqsCommand extends BaseCommand
|
||||||
<<<EOT
|
<<<EOT
|
||||||
Checks that your PHP and extensions versions match the platform requirements of the installed packages.
|
Checks that your PHP and extensions versions match the platform requirements of the installed packages.
|
||||||
|
|
||||||
|
Unlike update/install, this command will ignore config.platform settings and check the real platform packages so you can be certain you have the required platform dependencies.
|
||||||
|
|
||||||
<info>php composer.phar check-platform-reqs</info>
|
<info>php composer.phar check-platform-reqs</info>
|
||||||
|
|
||||||
EOT
|
EOT
|
||||||
|
|
Loading…
Reference in New Issue