In L5 I'm trying to append dev service providers in app config like in L4
But it seems not to be working. Main app config is totally ignored, so application fails
L5 does not support environment subfolders any more. Most cases can be solved using ENV variables, but in this case there is no official solution yet. Your best bet right now would probably be to create a custom Service Provider and register IDE helper there (as well as any other services that should only be available in specific environment.)
/**
* Register any application services.
*
* @return void
*/
public function register()
{
if ($this->app->environment('local')) { // consider turning this into a method like isDevEnvironment() if you need more logic
array_map([$this->app, 'register'], config('app.devProviders'));
}
}