[travis] Fail early when an invalid composer.json is found

This commit is contained in:
Nicolas Grekas 2015-10-25 21:44:48 +01:00
parent 2d588710ff
commit 437e268036
1 changed files with 5 additions and 2 deletions

View File

@ -19,8 +19,11 @@ foreach ($dirs as $dir) {
} }
echo "$dir\n"; echo "$dir\n";
$json = file_get_contents($dir.'/composer.json'); $json = ltrim(file_get_contents($dir.'/composer.json'));
$package = json_decode($json); if (null === $package = json_decode($json)) {
passthru("composer validate $dir/composer.json");
exit(1);
}
$package->repositories = array(array( $package->repositories = array(array(
'type' => 'composer', 'type' => 'composer',