Skip to content

Commit 4316e1c

Browse files
authored
Merge pull request #7 from celsius1414/master
Rewording an unclear section of README.md
2 parents 9996911 + ed06f2b commit 4316e1c

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,21 @@ We do not support version <=5.1.
2121
```
2222
composer require stechstudio/laravel-ssh-tunnel
2323
```
24-
Then register the provider
24+
25+
### Register the Provider:
26+
27+
For Lumen services, add:
28+
2529
```php
2630
$app->register(STS\Tunneler\TunnelerServiceProvider::class);
2731
```
28-
in your `bootstrap/app.php` for Lumen services or add it to your `providers` array in `config/app.php` for Laravel applications.
32+
to `bootstrap/app.php`. For Laravel applications, add:
33+
34+
```php
35+
STS\Tunneler\TunnelerServiceProvider::class,
36+
```
37+
38+
to the `providers` array in `config/app.php`.
2939

3040
## Configuration
3141
All configuration can and should be done in your `.env` file.

0 commit comments

Comments
 (0)