Skip to content

Commit f3f3893

Browse files
committed
chore: fix typo
1 parent 730686c commit f3f3893

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The package's service provider will automatically register its service provider.
4444
Publish the configuration file:
4545

4646
```sh
47-
php artisan vendor:publish --provider="Mailerlite\LaravelElasticsearch\ServiceProvider"
47+
php artisan vendor:publish --provider="MailerLite\LaravelElasticsearch\ServiceProvider"
4848
```
4949

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

157157
```php
158-
$app->register(Mailerlite\LaravelElasticsearch\ServiceProvider::class);
158+
$app->register(MailerLite\LaravelElasticsearch\ServiceProvider::class);
159159
$app->configure('elasticsearch');
160160
```
161161

@@ -206,7 +206,7 @@ Lumen users who wish to use Facades can do so by editing the
206206
```php
207207
$app->withFacades(true, [
208208
...
209-
Mailerlite\LaravelElasticsearch\Facade::class => 'Elasticsearch',
209+
MailerLite\LaravelElasticsearch\Facade::class => 'Elasticsearch',
210210
...
211211
]);
212212
```

Diff for: composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@
5555
"extra": {
5656
"laravel": {
5757
"providers": [
58-
"Mailerlite\\LaravelElasticsearch\\ServiceProvider"
58+
"MailerLite\\LaravelElasticsearch\\ServiceProvider"
5959
],
6060
"aliases": {
61-
"Elasticsearch": "Mailerlite\\LaravelElasticsearch\\Facade"
61+
"Elasticsearch": "MailerLite\\LaravelElasticsearch\\Facade"
6262
}
6363
}
6464
},

0 commit comments

Comments
 (0)