You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of adding the service provider in the `config/app.php` file, add the following code to your `app/Providers/AppServiceProvider.php` file, within the `register()` method:
47
+
In Laravel, instead of adding the service provider in the `config/app.php` file, you can add the following code to your `app/Providers/AppServiceProvider.php` file, within the `register()` method:
48
48
49
49
```php
50
50
public function register()
@@ -56,8 +56,9 @@ public function register()
56
56
}
57
57
```
58
58
59
-
### Automatic phpDoc generation for Laravel Facades
59
+
This will allow your application to load the Laravel IDE Helper on non-production enviroments.
60
60
61
+
### Automatic phpDoc generation for Laravel Facades
61
62
62
63
You can now re-generate the docs yourself (for future updates)
> Note: You might need to restart PhpStorm and make sure `.phpstorm.meta.php` is indexed.
175
176
> Note: When you receive a FatalException about a class that is not found, check your config (for example, remove S3 as cloud driver when you don't have S3 configured. Remove Redis ServiceProvider when you don't use it).
176
177
178
+
## Lumen Install
179
+
180
+
This pacakges is focused on Laravel development, but it can also be used in Lumen with some workarounds. Because Lumen works a little different, as it is like a barebone version of Laravel and the main configuration parameters are instead located in `bootstrap/app.php`, some arreglements must be made.
181
+
182
+
#### Enabling Facades
183
+
184
+
While Laravel IDE Helper can generate automatically default Facades for code hinting, Lumen doesn't come with Facades activated. If you plan in using them, you must enable them under the `Create The Application` section, uncommenting this line:
185
+
186
+
```php
187
+
// $app->withFacades();
188
+
```
189
+
190
+
From there, you should be able to use the `create_alias()` function to add additional Facades into your application.
191
+
192
+
#### Adding the Service Provider
193
+
194
+
You can install Laravel IDE Helper in `app/Providers/AppServiceProvider.php`, and uncommenting this line that registers the App Service Providers so it can properly load.
If you are not using that line, that is usually handy to manage gracefully multiple Laravel/Lumen installations, you will have to add this line of code under the `Register Service Providers` section of your `bootstrap/app.php`.
After that, Laravel IDE Helper should work correctly. During the generation process, the script may throw exceptions saying that some Classes doesn't exist or there are some undefined indexes. This is normal, as Lumen has some default packages stripped away, like Cookies, Storage and Session. If you plan to add these packages, you will have to add them manually and create additional
209
+
Facades if needed.
210
+
211
+
#### Adding Additional Facades
212
+
213
+
Currently Lumen IDE Helper doesn't take into account additional Facades created under `bootstrap/app.php` using `create_alias()`, so you need to create a `config/app.php` file and add your custom aliases under an `aliases` array again, like so:
After you run ```php artisan ide-helper:generate```, it's recommended (but not mandatory) to rename `config/app.php` to something else until you have to re-generate the docs or after passing to production enviroment. Lumen 5.1+ will read this file for configuration parameters if it is present, and may overlap some configurations if it is completely populated.
226
+
177
227
### License
178
228
179
229
The Laravel IDE Helper Generator is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)
0 commit comments