Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shuvroroy committed Jun 13, 2023
1 parent 730686c commit f3f3893
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The package's service provider will automatically register its service provider.
Publish the configuration file:

```sh
php artisan vendor:publish --provider="Mailerlite\LaravelElasticsearch\ServiceProvider"
php artisan vendor:publish --provider="MailerLite\LaravelElasticsearch\ServiceProvider"
```

##### Alternative configuration method via .env file
Expand Down Expand Up @@ -155,7 +155,7 @@ If you are using `php artisan config:cache`, you cannot have the Closure in your
If you work with Lumen, please register the service provider and configuration in `bootstrap/app.php`:

```php
$app->register(Mailerlite\LaravelElasticsearch\ServiceProvider::class);
$app->register(MailerLite\LaravelElasticsearch\ServiceProvider::class);
$app->configure('elasticsearch');
```

Expand Down Expand Up @@ -206,7 +206,7 @@ Lumen users who wish to use Facades can do so by editing the
```php
$app->withFacades(true, [
...
Mailerlite\LaravelElasticsearch\Facade::class => 'Elasticsearch',
MailerLite\LaravelElasticsearch\Facade::class => 'Elasticsearch',
...
]);
```
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
"extra": {
"laravel": {
"providers": [
"Mailerlite\\LaravelElasticsearch\\ServiceProvider"
"MailerLite\\LaravelElasticsearch\\ServiceProvider"
],
"aliases": {
"Elasticsearch": "Mailerlite\\LaravelElasticsearch\\Facade"
"Elasticsearch": "MailerLite\\LaravelElasticsearch\\Facade"
}
}
},
Expand Down

0 comments on commit f3f3893

Please sign in to comment.