File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,27 @@ We had a similar challenge, specifically accessing a MySQL database over an SSH
12
12
So we wrote this package. We hope you enjoy it!
13
13
14
14
## 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+
16
16
17
17
We do not support version <=5.1.
18
18
19
19
## Installation
20
20
21
21
```
22
- composer require stechstudio /laravel-ssh-tunnel
22
+ composer require intrepidws /laravel-ssh-tunnel-fixed
23
23
```
24
24
25
25
### Register the Provider:
26
26
27
27
For Lumen services, add:
28
28
29
29
``` php
30
- $app->register(STS \Tunneler\TunnelerServiceProvider::class);
30
+ $app->register(IntrepidWS \Tunneler\TunnelerServiceProvider::class);
31
31
```
32
32
to ` bootstrap/app.php ` . For Laravel applications, add:
33
33
34
34
``` php
35
- STS \Tunneler\TunnelerServiceProvider::class,
35
+ IntrepidWS \Tunneler\TunnelerServiceProvider::class,
36
36
```
37
37
38
38
to the ` providers ` array in ` config/app.php ` .
You can’t perform that action at this time.
0 commit comments