Skip to content

Releases: clarkeash/doorman

Improved type handling

03 Oct 20:59
c192aa4

Choose a tag to compare

Merge pull request #81 from clarkeash/84-fixes

refactor Doorman class to use typed properties and return types

v10.1.0

02 May 14:34

Choose a tag to compare

Add doorman:make command to create invites via artisan

v10.0.0

25 Feb 19:01
dd64e73

Choose a tag to compare

What's Changed

Full Changelog: v9.0.0...v10.0.0

v9.0.0

25 Mar 22:01
e94b6be

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v8.0.0...v9.0.0

Laravel 10 support

25 Feb 19:57
e55ea32

Choose a tag to compare

v8.0.0

update badge

Laravel 9

12 Feb 11:34
24d5197

Choose a tag to compare

Add support for Laravel 9.

PHP 8.0 support

16 Dec 20:22

Choose a tag to compare

v6.1.0

update

v6.0.0

05 Oct 17:31
34bc26d

Choose a tag to compare

Support for Laravel 8

v5.2.0

05 Jun 18:17
c373bc5

Choose a tag to compare

This release makes it easier to create an invite with unlimited redemptions.

Previously you would have to do this:

$invite = Doorman::generate()->uses(0)->once();

now you can do this:

$invite = Doorman::generate()->unlimited()->once();

v5.1.0

03 Jun 19:48
887a74b

Choose a tag to compare

When generating a single invite you can get direct access to the model rather than the collection.
Instead of calling make call once instead e.g.

$invite = Doorman::generate()->for('[email protected]')->once();