Skip to content

Commit e8ac210

Browse files
authored
Update Readme file
1 parent 52f4be6 commit e8ac210

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@ We had a similar challenge, specifically accessing a MySQL database over an SSH
1212
So we wrote this package. We hope you enjoy it!
1313

1414
## Requirements
15-
This package has been tested against Laravel/Lumen versions 5.2. 5.3, and 5.4.
15+
This package has been tested against Laravel/Lumen versions 5.2+
1616

1717
We do not support version <=5.1.
1818

1919
## Installation
2020

2121
```
22-
composer require stechstudio/laravel-ssh-tunnel
22+
composer require intrepidws/laravel-ssh-tunnel-fixed
2323
```
2424

2525
### Register the Provider:
2626

2727
For Lumen services, add:
2828

2929
```php
30-
$app->register(STS\Tunneler\TunnelerServiceProvider::class);
30+
$app->register(IntrepidWS\Tunneler\TunnelerServiceProvider::class);
3131
```
3232
to `bootstrap/app.php`. For Laravel applications, add:
3333

3434
```php
35-
STS\Tunneler\TunnelerServiceProvider::class,
35+
IntrepidWS\Tunneler\TunnelerServiceProvider::class,
3636
```
3737

3838
to the `providers` array in `config/app.php`.

0 commit comments

Comments
 (0)