#一、專案位址
https://github.com/ barryvdh/laravel-ide-helper
二、安裝方法
1、方法一:直接使用已經產生的檔案
下載https://gist.github.com /barryvdh/5227822 中的_ide_helper.php
,放置於專案根目錄。
2、方法2:手動產生
引入庫:
composer require barryvdh/laravel-ide-helper
在config/app.php
的providers 中新增:
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
產生輔助檔案:
php artisan ide-helper:generate
提示:需要先清除bootstrap/compiled.php
,所以產生前需要執行php artisan clear-compiled
,產生後執行php artisan optimize
。
配置 composer.json 以在每次提交之後執行。
"scripts":{ "post-update-cmd": [ "php artisan clear-compiled", "php artisan ide-helper:generate", "php artisan optimize" ] },