webman 引入illuminate/database 后 webman/log 中间件报错
这里写具体的系统环境相关信息
缺少一个 illuminate/events
有啊,倒数第三个就是啊
illuminate/contracts 这个
老项目版本也是这些,是正常跑的
/config/bootstrap.php 里少了 support\bootstrap\LaravelDb::class 配置
/config/bootstrap.php
support\bootstrap\LaravelDb::class
有啊
return [ support\bootstrap\Session::class, support\bootstrap\LaravelDb::class, ];
可能是数据库的配置文件没有配置,我也是一样的问题,我把database文件配置了就好了
composer require webman/console ^v1.1.8 升级试下
composer require webman/console ^v1.1.8
缺少一个 illuminate/events
有啊,倒数第三个就是啊
illuminate/contracts 这个
老项目版本也是这些,是正常跑的
/config/bootstrap.php
里少了support\bootstrap\LaravelDb::class
配置有啊
return [
support\bootstrap\Session::class,
support\bootstrap\LaravelDb::class,
];
可能是数据库的配置文件没有配置,我也是一样的问题,我把database文件配置了就好了
composer require webman/console ^v1.1.8
升级试下