Phpstorm&laravel
Phpstorm is the best PHP ide I have ever seen, the year before last without hesitation to abandon the Zend Studio:), Laravel is I used the best framework, in addition to do hand-travel backstage this kind of high concurrency requirements of the project will use Swoole, like Yii, Thinkphp,zend has been directly out of the project, but sadly the best IDE does not support the best Laravel code hints, and later I turned on GitHub and found the Laravel4-phpstorm-helper tool, but unfortunately, has not been updated for a long time, and later in the Foreign Forum found Laravel-ide-helper, used to now has been very force
Code Auto-Complete
Laravel-ide-helper installation and use is very convenient, change the Composer.json file as follows
{
// [snip]
"require": {
"laravel/framework": "4.1.*",
"barryvdh/laravel-ide-helper": "dev-master"
}
// [snip]
}
Project root directory run composer update command
composer update
‘providers‘ => array(
// [snip]
‘Illuminate\Workbench\WorkbenchServiceProvider‘,
‘Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider‘,
),
Run the following command in the project root directory
php artisan ide-helper:generate
Now this command should generate a file called "_ide_helper.php", now Phpstorm has support code hints (such as), if not, you can restart the IDE to try
Phpstorm laravel Code Smart Tips