Releases: BinarCode/laravel-developer
Releases · BinarCode/laravel-developer
1.2.10
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
Send message to slack
Use this to send any message to your dev slack:
use Binarcode\LaravelDeveloper\LaravelDeveloper;
LaravelDeveloper::messageToDevSlack('Hey, we have troubles ;-)');
Dev auth
Each api
has authentication, and testing it via HTTP Client (ie postman) we spend a lot of time to login users and copy the token, put in the next request and so on. Well now Laravel Developer provides an easy way to authenticate users in local
env using testing
token:
// app/Http/Kernel.php
'api' => [
//...
\Binarcode\LaravelDeveloper\Middleware\DevAuthMiddleware::class,
]