Force empty lock files to contain a JSON object
By default it will make it an array, since PHP does not distinguish between arrays and hash(map)s.pull/10/head
parent
525993cb00
commit
1e5aaefaf5
|
@ -154,7 +154,7 @@ class InstallCommand
|
||||||
|
|
||||||
protected function storeLockFile(array $content)
|
protected function storeLockFile(array $content)
|
||||||
{
|
{
|
||||||
file_put_contents('composer.lock', json_encode($content)."\n");
|
file_put_contents('composer.lock', json_encode($content, JSON_FORCE_OBJECT)."\n");
|
||||||
echo '> composer.lock dumped'.PHP_EOL;
|
echo '> composer.lock dumped'.PHP_EOL;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue