Skip to content

Commit 2de6ab6

Browse files
authoredSep 2, 2016
Merge pull request #387 from DarkGhostHunter/master
Update readme.md
2 parents 7583353 + c229335 commit 2de6ab6

File tree

1 file changed

+52
-2
lines changed

1 file changed

+52
-2
lines changed
 

‎readme.md

+52-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To install this package on only development systems, add the `--dev` flag to you
4444
composer require --dev barryvdh/laravel-ide-helper
4545
```
4646

47-
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:
4848

4949
```php
5050
public function register()
@@ -56,8 +56,9 @@ public function register()
5656
}
5757
```
5858

59-
### Automatic phpDoc generation for Laravel Facades
59+
This will allow your application to load the Laravel IDE Helper on non-production enviroments.
6060

61+
### Automatic phpDoc generation for Laravel Facades
6162

6263
You can now re-generate the docs yourself (for future updates)
6364

@@ -174,6 +175,55 @@ Pre-generated example: https://gist.github.com/barryvdh/bb6ffc5d11e0a75dba67
174175
> Note: You might need to restart PhpStorm and make sure `.phpstorm.meta.php` is indexed.
175176
> 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).
176177
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.
195+
196+
```php
197+
// $app->register(App\Providers\AppServiceProvider::class);
198+
```
199+
200+
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`.
201+
202+
```php
203+
if ($this->app->environment() !== 'production') {
204+
$this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
205+
}
206+
```
207+
208+
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:
214+
215+
```php
216+
return [
217+
'aliases' => [
218+
'CustomAliasOne' => Example\Support\Facades\CustomAliasOne::class,
219+
'CustomAliasTwo' => Example\Support\Facades\CustomAliasTwo::class,
220+
//...
221+
]
222+
];
223+
```
224+
225+
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+
177227
### License
178228

179229
The Laravel IDE Helper Generator is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

0 commit comments

Comments
 (0)
Please sign in to comment.