This article mainly introduces the PHP IDE phpstorm configuration support friendly Laravel code hint method, the key configuration has added red hint, need friend can refer to under
The Phpstorm artifact can support a more user-friendly Laravel framework code hint (click to view) and only need to do the following:
First step: Add the following line to the project's Composer.json
The code is as follows:
"Require": {
"Laravel/framework": "5.0.*",
"Barryvdh/laravel-ide-helper": "Dev-master"
}
Step Two: Execute composer update
Step Three: Add service provider, open the project config/app.php add the following line to providers:
The code is as follows:
' Barryvdhlaravelidehelperidehelperserviceprovider ',
Fourth step: Execute PHP Artisan ide-helper:generate
Fifth step: Modify Composer.json, add a row
The code is as follows:
"Post-update-cmd": [
"PHP Artisan clear-compiled",
"PHP Artisan optimize",
"PHP Artisan ide-helper:generate"
]
Look at the effect: