Show installed module information via composer
Issue:
When working on a Composer based project, you may need to check the installed version, dependencies, and other details of a specific package.
Solution:
Use the command composer show vendor/package to retrieve detailed information about the package, including its version, description, dependencies, license, and more. This helps in debugging, verifying versions, and managing dependencies effectively.
See the Composer documentation for more info.