2015-10-15 123 views
3

我試圖實現Laravel ide幫助:barryvdh/laravel-ide-helper。 嘗試下載要點,把它放在我的項目的根文件夾,但它沒有工作。 還嘗試安裝它與作曲家並在config/app.php文件中添加Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class。 即使重新啓動netbeans,兩種方法都不起作用。Laravel 5:爲NetBeans安裝ide幫助

使用Ubuntu和Laravel 5.1.20

任何人有任何想法什麼即時做錯了什麼?

回答

5

與作曲家安裝它是不夠的,你仍然在使用這個命令生成它:

php artisan ide-helper:generate 

更重要的是將其添加爲post-update-cmd到composer.json:

"post-update-cmd": [ 
    "php artisan clear-compiled", 
    "php artisan ide-helper:generate", 
    "php artisan optimize" 
] 

(其他2應該已經在那裏)

然後,無論何時運行composer update它都會自動生成一個新的IDE幫助文件。最後,不要忘記添加_ide_helper.php到你的.gitignore文件

+0

THX,它工作正常,現在 – Selfcoded

+0

@Selfcoded很大,如果你可以投票給我,也請單擊對號接受我的答案我會感激 – andrewtweber

+0

接受答案,但不幸的是我不能投票給你,因爲我沒有15聲望 – Selfcoded