1

我的项目使用 laravel 5.3

我想在我的项目中实现 laravel Horizo​​n

我在文档 laravel 5.3 中搜索参考。但我没找到。它似乎只存在于 laravel 5.5

我可以在 laravel 5.3 中安装 laravel horizion 吗?

4

1 回答 1

1

你不能在 laravel 5.3 中安装 Horizo​​n。Horizo​​n 具有 Laravel 5.5 的依赖项

在 Horizo​​n 的 composer.json https://github.com/laravel/horizo ​​n/blob/6fe4cd4af88dde8f411e0454e1e64f773cfe0666/composer.json#L20

"illuminate/contracts": "~5.5",
"illuminate/queue": "~5.5",
"illuminate/support": "~5.5",

如果您想使用 Horizo​​n,您需要升级您的应用程序

于 2018-02-11T09:52:31.900 回答