Warn users of missing composer.json
parent
6b6d6b6d82
commit
e00e6cddbe
|
@ -34,6 +34,9 @@ $im->addInstaller(new Installer\LibraryInstaller($vendorPath.'/bundles', $dm, $r
|
||||||
// load package
|
// load package
|
||||||
$loader = new Package\Loader\ArrayLoader($rm);
|
$loader = new Package\Loader\ArrayLoader($rm);
|
||||||
$file = new JsonFile('composer.json');
|
$file = new JsonFile('composer.json');
|
||||||
|
if (!$file->exists()) {
|
||||||
|
throw new \RuntimeException('The composer.json file could not be found in the current directory');
|
||||||
|
}
|
||||||
$packageConfig = $file->read();
|
$packageConfig = $file->read();
|
||||||
$package = $loader->load($packageConfig);
|
$package = $loader->load($packageConfig);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue