We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b342a3d + ebf8895 commit 3dc8e28Copy full SHA for 3dc8e28
ReadMe.md
@@ -8,8 +8,17 @@ Laravel-Entity-Generator - This generator is used to create a standard class sta
8
composer require ronasit/laravel-entity-generator: 1.*
9
```
10
11
-Add `RonasIT\Support\EntityGeneratorServiceProvider::class` to `app/config/app.php`,
12
-into 'providers' variable. And publish.
+If you're on Laravel 5.5 or later the package will be auto-discovered.
+Otherwise you will need to manually configure it in your config/app.php.
13
+
14
+```php
15
+'providers' => [
16
+ // ...
17
+ RonasIT\Support\EntityGeneratorServiceProvider::class,
18
+],
19
+```
20
21
+And publish.
22
23
```bash
24
php artisan vendor:publish
0 commit comments