We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dcd64d commit a685ef3Copy full SHA for a685ef3
composer.json
@@ -2,7 +2,7 @@
2
"name": "magento/composer",
3
"description": "Magento composer library helps to instantiate Composer application and run composer commands.",
4
"type": "library",
5
- "version": "1.0.2",
+ "version": "1.0.3",
6
"license": [
7
"OSL-3.0",
8
"AFL-3.0"
src/InfoCommand.php
@@ -53,10 +53,12 @@ public function __construct(MagentoComposerApplication $magentoComposerApplicati
53
*/
54
public function run($package, $installed = false)
55
{
56
+ $showAllPackages = !$installed;
57
$commandParameters = [
58
'command' => 'info',
59
'package' => $package,
- '-i' => $installed
60
+ '-i' => $installed,
61
+ '--all' => $showAllPackages,
62
];
63
64
$result = [];
0 commit comments