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 4fd328c commit efbac5bCopy full SHA for efbac5b
app/Helpers/Api.php
@@ -34,7 +34,7 @@ public static function getComposerOutdatedPackages($flag = '--no-dev')
34
{
35
$composer = config('app.composer');
36
$home = config('app.composer_home');
37
- $process = Process::fromShellCommandline($composer.' outdated {flag} -f json', base_path(), ['COMPOSER_HOME' => $home]);
+ $process = Process::fromShellCommandline($composer.' outdated '.$flag.' -f json', base_path(), ['COMPOSER_HOME' => $home]);
38
$process->run();
39
$value = $process->getOutput();
40
$data = json_decode($value, true);
0 commit comments