合并分支后,我面临这个错误。
lluminate\Support\ServiceProvider::mergeConfigFrom(): 打开失败需要'D:\project_folder_path\vendor\larapack\voyager-hooks/publishable/config/voyager-hooks.php' (include_path='.;C:\php\pear ')
所有作曲家更新/安装都失败,并出现以下相同的错误。
生成优化的自动加载文件 Illuminate\Foundation\ComposerScripts::postAutoloadDump @php artisan package:discover
在 ServiceProvider.php 第 59 行:
lluminate\Support\ServiceProvider::mergeConfigFrom(): 打开失败需要'D:\project_folder_path\vendor\larapack\voyager-hooks/publishable/config/voyager-hooks.php' (include_path='.;C:\php\pear ')
ServiceProvider.php 中的第 59 行
/**
* 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));
}