I want to switch to laravel 5, but some problems with the idea are autocomplete. I am using phpstorm. On google, answers always end up being suggested using https://github.com/barryvdh/laravel-ide-helper . But it seems like it is broken for Laravel 5.
I am doing the following steps:
Install Laravel 5
composer create-project laravel/laravel
Require ide-helper
composer require barryvdh/laravel-ide-helper
Added "Barryvdh \ LaravelIdeHelper \ IdeHelperServiceProvider",
.... 'Illuminate\Translation\TranslationServiceProvider', 'Illuminate\Validation\ValidationServiceProvider', 'Illuminate\View\ViewServiceProvider', 'Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider',
Attempt to create an auxiliary file
artisan ide-helper:generate
But it is always interrupted by the following error:
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}
Maybe someone had the same problem and it can help me. I am open to various autocomplete solutions other than barryvdh ide-helper.
autocomplete phpstorm laravel-5
shock_gone_wild
source share