1
0
Fork 0

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
Igor Wiedler 2011-09-12 16:59:05 +02:00
parent 525993cb00
commit 1e5aaefaf5
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class InstallCommand
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;
}
}