Skip to content

Commit

Permalink
Update Readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
intrepidws authored May 21, 2018
1 parent 52f4be6 commit e8ac210
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,27 @@ We had a similar challenge, specifically accessing a MySQL database over an SSH
So we wrote this package. We hope you enjoy it!

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

We do not support version <=5.1.

## Installation

```
composer require stechstudio/laravel-ssh-tunnel
composer require intrepidws/laravel-ssh-tunnel-fixed
```

### Register the Provider:

For Lumen services, add:

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

```php
STS\Tunneler\TunnelerServiceProvider::class,
IntrepidWS\Tunneler\TunnelerServiceProvider::class,
```

to the `providers` array in `config/app.php`.
Expand Down

0 comments on commit e8ac210

Please sign in to comment.