Discover latest versions of Composer packages when dependencies are locked
问题 Let's say I have a composer.json file with locked dependencies: { "require" : { "zendframework/zendframework" : "2.4.2" }, "require-dev": { "phpunit/phpunit": "4.6.6" } } I want to do that because would like to update dependencies manually, so I won't be in a situation where my build fails or other developers experience issues I don't have because Composer installed a different version of the package. Is there a good way to use Composer to list all newer versions of the locked packages,