laravel 框架安装laravel-ide-helper

永远的零 2024-10-31 AM 104℃ 0条

(1)安装

打开网址:Packagist(能翻墙就翻墙)

搜索:barryvdh

点开查看到github地址:

(2)按github上说明操作(laravel版本>=5.5就不用操作register方法这步)

第一步:composer安装,命令按github上给的。

如果只想在开发环境安装请加上 --dev

composer require --dev barryvdh/laravel-ide-helper

这个安装非常慢,就开着让它自己安装。

顺带安装 doctrine/dbal 「请装上它,在为模型注释字段的时候必须用到它」

composer require --dev doctrine/dbal
第二步:更新composer后,将服务提供者添加到config/app.php的providers数组中

Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
第三步:自动为 Laravel 的 Facades 生成注释

执行命令:

php artisan ide-helper:generate
注:如果存在文件 「bootstrap/compiled.php」 需要先删除, 可以在生成文当前运行 php artisan clear-compiled。

php artisan ide-helper:generate - 为 Facades 生成注释
php artisan ide-helper:models - 为数据模型生成注释
php artisan ide-helper:meta - 生成 PhpStorm Meta file
第四步:由于扩展会生成相应的文件,可能只针对当前开发者有用,所以需要添加到.gitignore中

.idea
_ide_helper.php
_ide_helper_models.php
.phpstorm.meta.php

人要么永不做梦,要么梦得有趣;人也必须学会清醒:要么永不清醒,要么清醒得有趣。

上一篇 Ubuntu22.04 php7.3 sqlsrv 部署教程
下一篇 没有了

评论啦~