Skip to content

Releases: BinarCode/laravel-developer

1.2.10

01 Feb 11:48
61014f0
Compare
Choose a tag to compare

Fixed

  • Ignore options request.

1.2.9

22 Jan 10:33
Compare
Choose a tag to compare

Fixed

  • Return type for the registerMacros

1.2.8

20 Jan 13:41
Compare
Choose a tag to compare
  • persist flag on slack helper

1.2.7

20 Jan 13:00
7d6e030
Compare
Choose a tag to compare
  • Slack helper

1.2.6

20 Jan 09:10
Compare
Choose a tag to compare
  • Patch

1.2.5

14 Jan 12:59
Compare
Choose a tag to compare

Added

  • dumpWithoutTrace tests helper

1.2.4

13 Jan 15:54
Compare
Choose a tag to compare

Fixed

  • Handle local environment in the handle middleware.

1.2.3

13 Jan 10:51
Compare
Choose a tag to compare

Fixed

  • Tests fix
  • Sanctumable instance

1.2.2

13 Jan 10:48
4a73ffe
Compare
Choose a tag to compare

Fixed

  • Bug with returned value from the middleware

1.2.1

12 Jan 16:52
Compare
Choose a tag to compare

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,
]