Skip to content

Commit

Permalink
Fix minor issues in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Namoshek committed Apr 10, 2024
1 parent 85fb7fe commit 17132fe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ composer require php-mqtt/laravel-client
The package will register itself through Laravel auto discovery of packages.
Registered will be the service provider as well as an `MQTT` facade.

If you are using Lumen, You need to manually add the following code to ` bootstrap/app.php`
If you are using Lumen, you need to manually add the following code to `bootstrap/app.php`:

```php
$app->register(PhpMqtt\Client\MqttClientServiceProvider::class);
$app->register(\PhpMqtt\Client\MqttClientServiceProvider::class);
```

After installing the package, you should publish the configuration file using
Expand Down

0 comments on commit 17132fe

Please sign in to comment.