We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9996911 + ed06f2b commit 4316e1cCopy full SHA for 4316e1c
README.md
@@ -21,11 +21,21 @@ We do not support version <=5.1.
21
```
22
composer require stechstudio/laravel-ssh-tunnel
23
24
-Then register the provider
+
25
+### Register the Provider:
26
27
+For Lumen services, add:
28
29
```php
30
$app->register(STS\Tunneler\TunnelerServiceProvider::class);
31
-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`.
39
40
## Configuration
41
All configuration can and should be done in your `.env` file.
0 commit comments