After merging branch, I am facing this error.
lluminate\Support\ServiceProvider::mergeConfigFrom(): Failed opening required 'D:\project_folder_path\vendor\larapack\voyager-hooks/publishable/config/voyager-hooks.php' (include_path='.;C:\php\pear')
All composer update/installs failed with same error below.
Generating optimized autoload files Illuminate\Foundation\ComposerScripts::postAutoloadDump @php artisan package:discover
In ServiceProvider.php line 59:
lluminate\Support\ServiceProvider::mergeConfigFrom(): Failed opening required 'D:\project_folder_path\vendor\larapack\voyager-hooks/publishable/config/voyager-hooks.php' (include_path='.;C:\php\pear')
Line No 59 in ServiceProvider.php
/**
* Merge the given configuration with the existing configuration.
*
* @param string $path
* @param string $key
* @return void
*/
protected function mergeConfigFrom($path, $key)
{
$config = $this->app['config']->get($key, []);
$this->app['config']->set($key, array_merge(require $path, $config));
}