脚本 php artisan clear-compiled 处理返回错误的 pre-update-cmd 事件
Script php artisan clear-compiled handling the pre-update-cmd event returned with an error
我在 运行 作曲家更新
后一直收到这个错误
./composer.json has been updated
> php artisan clear-compiled
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Illuminate\Html\HtmlServiceProvider' not found
Script php artisan clear-compiled handling the pre-update-cmd event returned with an error
[RuntimeException]
Error Output:
update [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--lock]
[--no-plugins] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-
progress] [--with-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader]
[-a|--classmap-authoritative] [--ignore-platform-reqs] [--prefer-stable] [--pre
fer-lowest] [packages1] ... [packagesN]
在 composer.json 中,这是我的要求部分:
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"laravelcollective/html": "dev-master"
},
到底是什么问题?
你能 post 你的整个 composer.json 文件吗?
它应该包含这样的内容:
pre-update-cmd: [
]
并且在该数组中有一些命令或脚本抛出异常。 Composer 允许您 运行 在安装或更新应用程序中的所有 Composer 包期间的各个点使用挂钩脚本。
https://getcomposer.org/doc/articles/scripts.md
看起来您还需要将此添加到您的需求部分:
"illuminate/html": "~5.0"
如果您打算在模板中使用它,请不要忘记为 Html 添加外观/别名。
in config/app.php 在 providers array
'Form' => Illuminate\Html\FormFacade::class
'Html' => Illuminate\Html\HtmlFacade::class,
我在 运行 作曲家更新
后一直收到这个错误./composer.json has been updated
> php artisan clear-compiled
[Symfony\Component\Debug\Exception\FatalErrorException]
Class 'Illuminate\Html\HtmlServiceProvider' not found
Script php artisan clear-compiled handling the pre-update-cmd event returned with an error
[RuntimeException]
Error Output:
update [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--lock]
[--no-plugins] [--no-custom-installers] [--no-autoloader] [--no-scripts] [--no-
progress] [--with-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader]
[-a|--classmap-authoritative] [--ignore-platform-reqs] [--prefer-stable] [--pre
fer-lowest] [packages1] ... [packagesN]
在 composer.json 中,这是我的要求部分:
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"laravelcollective/html": "dev-master"
},
到底是什么问题?
你能 post 你的整个 composer.json 文件吗?
它应该包含这样的内容:
pre-update-cmd: [
]
并且在该数组中有一些命令或脚本抛出异常。 Composer 允许您 运行 在安装或更新应用程序中的所有 Composer 包期间的各个点使用挂钩脚本。 https://getcomposer.org/doc/articles/scripts.md
看起来您还需要将此添加到您的需求部分:
"illuminate/html": "~5.0"
如果您打算在模板中使用它,请不要忘记为 Html 添加外观/别名。
in config/app.php 在 providers array
'Form' => Illuminate\Html\FormFacade::class
'Html' => Illuminate\Html\HtmlFacade::class,