Skip to content

Commit

Permalink
Rewording an unclear section of README.md
Browse files Browse the repository at this point in the history
Changing the wording of the "Register the Provider" section to be
clearer.
  • Loading branch information
celsius1414 committed May 11, 2017
1 parent 9996911 commit ed06f2b
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 ed06f2b

Please sign in to comment.