Skip to content

Commit

Permalink
Merge pull request #7 from celsius1414/master
Browse files Browse the repository at this point in the history
Rewording an unclear section of README.md
  • Loading branch information
bubba-h57 committed May 11, 2017
2 parents 9996911 + ed06f2b commit 4316e1c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,21 @@ We do not support version <=5.1.
```
composer require stechstudio/laravel-ssh-tunnel
```
Then register the provider

### Register the Provider:

For Lumen services, add:

```php
$app->register(STS\Tunneler\TunnelerServiceProvider::class);
```
in your `bootstrap/app.php` for Lumen services or add it to your `providers` array in `config/app.php` for Laravel applications.
to `bootstrap/app.php`. For Laravel applications, add:

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

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

## Configuration
All configuration can and should be done in your `.env` file.
Expand Down

0 comments on commit 4316e1c

Please sign in to comment.