1
0
Fork 0

Changed date time format to RFC_3399 in VcsDriver

pull/6506/merge
Sergey Shcherbin 2017-06-07 20:51:59 +03:00 committed by Jordi Boggiano
parent f7e0504d38
commit 0863b51e7b
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ abstract class VcsDriver implements VcsDriverInterface
$composer = JsonFile::parseJson($composerFileContent, $identifier . ':composer.json');
if (empty($composer['time']) && $changeDate = $this->getChangeDate($identifier)) {
$composer['time'] = $changeDate->format('Y-m-d H:i:s');
$composer['time'] = $changeDate->format(DATE_RFC3339);
}
return $composer;