Workbench 包依赖迁移
Workbench package dependency migration
我正在开发一个包(在工作台下),它依赖于另一个包(https://github.com/efficiently/authority-controller)来进行用户角色管理。为了让这个包起作用,我需要先运行一个迁移。但是当我运行命令 php artisan migrate --package=machuga/authority-l4
时,它显示 Nothing to migrate
。
我尝试从根目录运行 php artisan dump-autoload
,还 php artisan migrate --bench=machuga/authority-l4
但似乎没有任何效果。
尝试将 Authority\AuthorityL4\AuthorityL4ServiceProvider
添加到您的提供商和 运行:
php artisan migrate --package=machuga/authority-l4
我认为,efficiently/authority-controller
取决于 machuga/authority
,但不调用提供商。
我正在开发一个包(在工作台下),它依赖于另一个包(https://github.com/efficiently/authority-controller)来进行用户角色管理。为了让这个包起作用,我需要先运行一个迁移。但是当我运行命令 php artisan migrate --package=machuga/authority-l4
时,它显示 Nothing to migrate
。
我尝试从根目录运行 php artisan dump-autoload
,还 php artisan migrate --bench=machuga/authority-l4
但似乎没有任何效果。
尝试将 Authority\AuthorityL4\AuthorityL4ServiceProvider
添加到您的提供商和 运行:
php artisan migrate --package=machuga/authority-l4
我认为,efficiently/authority-controller
取决于 machuga/authority
,但不调用提供商。