Skip to content

Commit

Permalink
Merge pull request owen-it#38 from erikn69/patch-2
Browse files Browse the repository at this point in the history
Replace lumen-vendor-publish with larasupport
  • Loading branch information
anteriovieira authored Apr 18, 2023
2 parents efcaa77 + e8a7cb8 commit 334e3a9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,17 +68,15 @@ $app->withEloquent();
The `vendor:publish` command doesn't exist in Lumen, so an extra package must be installed:

```sh
composer require laravelista/lumen-vendor-publish
composer require irazasyed/larasupport
```

After the package is installed, the command must be registered in `app/Console/Kernel.php`:
After the package is installed, the service provider must be registered in `bootstrap/app.php`:

```php
// ...

protected $commands = [
\Laravelista\LumenVendorPublish\VendorPublishCommand::class,
];
$app->register(Irazasyed\Larasupport\Providers\ArtisanServiceProvider::class);

// ...
```
Expand Down

0 comments on commit 334e3a9

Please sign in to comment.