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 + ?
In your Readme.md you have this:
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 + ?