一、扩展的地址

https://github.com/barryvdh/laravel-ide-helper

  

二、安装扩展

1、引入库:

composer require barryvdh/laravel-ide-helper
composer require doctrine/dbal

如果只想在开发环境上使用,请加上--dev

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

2、在config/app.php的 providers 数组中添加:

Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class

3、运行命令,生成提示文档

php artisan clear-compiled
php artisan ide-helper:generate

4、如果想每次提交时自动更新文档,可以配置composer.json

"scripts":{
    "post-update-cmd": [
        "Illuminate\\Foundation\\ComposerScripts::postUpdate",
        "php artisan ide-helper:generate",
        "php artisan ide-helper:meta"
    ]
},

5、由于扩展会生成相应的文件,可能只针对当前开发者有用,所以需要添加到.gitignore中

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

  

 

posted on 2019-04-09 16:27  怀素真  阅读(927)  评论(0编辑  收藏  举报