stechstudio / laravel-ssh-tunnel

Easy creation & maintenance of an SSH Tunnel for Laravel/Lumen
MIT License
191 stars 49 forks source link

confusing installation documentation #30

Closed vesper8 closed 5 years ago

vesper8 commented 5 years ago

In your Readme.md you have this:

Register the Provider (Laravel version 5.8):
Inside the config/app.php file under Package Service Providers, add:

STS\Tunneler\TunnelerServiceProvider::class,

And under Application Service Providers, add:

STS\Tunneler\TunnelerServiceProvider::class,

You're basically asking us to add the same line twice, to the same array?

Furthermore, you have added auto-discovery in your composer.json, so this isn't even necessary if running Laravel 5.5 + ?