preenchimento automático do laravel 5 ide

Quero mudar para o laravel 5, mas tenho alguns problemas com o preenchimento automático de ide. Estou usando o phpstorm. No google, as respostas sempre acabam sugerindo o usohttps://github.com/barryvdh/laravel-ide-helper . Mas parece que ele está quebrado para o Laravel 5.

Os passos que estou executando são:

Instale o Laravel 5

composer create-project laravel/laravel 

Requer ide-helper

composer require barryvdh/laravel-ide-helper

Adicionado 'Barryvdh \ LaravelIdeHelper \ IdeHelperServiceProvider',

....
'Illuminate\Translation\TranslationServiceProvider',
'Illuminate\Validation\ValidationServiceProvider',
'Illuminate\View\ViewServiceProvider',
'Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider',

Tentando gerar o arquivo auxiliar

artisan ide-helper:generate

Mas sempre quebra com o seguinte erro:

exception 'InvalidArgumentException' with message 'There are no commands defined in the "ide-helper" namespace.' in C:\xampp\htdocs\test\vendor\symfony\console\Symfony\Component\Console\Application.php:501

0 C:\xampp\htdocs\test\vendor\symfony\console\Symfony\Component\Console\Application.php(535): Symfony\Component\Console\Application->findNamespace('ide-helper')
1 C:\xampp\htdocs\test\vendor\symfony\console\Symfony\Component\Console

\Application.php(192): Symfony\Component\Console\Application->find('ide-helper:gene...')
2 C:\xampp\htdocs\test\vendor\symfony\console\Symfony\Component\Console\Application.php(126): Symfony\Component\Console\Application->doRun(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Outpu
t\ConsoleOutput))
3 C:\xampp\htdocs\test\vendor\laravel\framework\src\Illuminate\Foundation\Console\Kernel.php(91): Symfony\Component\Console\Application->run(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Out
put\ConsoleOutput))
4 C:\xampp\htdocs\test\artisan(36): Illuminate\Foundation\Console\Kernel->handle(Object(Symfony\Component\Console\Input\ArgvInput), Object(Symfony\Component\Console\Output\ConsoleOutput))
5 {main}

Talvez alguém tenha o mesmo problema e possa me ajudar. Estou aberto a diferentes soluções para o preenchimento automático que não sejam o ide-helper de barryvdh.

questionAnswers(5)

yourAnswerToTheQuestion