diff --git a/library/Icinga/Application/Libraries/Library.php b/library/Icinga/Application/Libraries/Library.php index ece5efaf5..a4961f334 100644 --- a/library/Icinga/Application/Libraries/Library.php +++ b/library/Icinga/Application/Libraries/Library.php @@ -189,7 +189,7 @@ class Library protected function metaData() { if ($this->metaData === null) { - $metaData = file_get_contents($this->path . DIRECTORY_SEPARATOR . 'composer.json'); + $metaData = @file_get_contents($this->path . DIRECTORY_SEPARATOR . 'composer.json'); if ($metaData === false) { throw new ConfigurationError('Library at "%s" is not a composerized project', $this->path); }