laravel-console-mutex

Mutex for Laravel Console Commands.

MIT License

Downloads
629K
Stars
139
Committers
7

Bot releases are hidden (Show)

laravel-console-mutex - 10.0.0 Latest Release

Published by dmitry-ivanov 8 months ago

10.0.0 (06 Mar 2024)

Added

  • Laravel 10 support;
laravel-console-mutex - 9.2.0

Published by dmitry-ivanov over 2 years ago

9.2.0 (11 Jul 2022)

Added

  • Update to the latest dev version of arvenil/ninja-mutex, and support MySQL PDO options for mysql lock strategy (thanks, @rafacouto );
laravel-console-mutex - 9.1.0

Published by dmitry-ivanov over 2 years ago

9.1.0 (13 Mar 2022)

Added

  • Type hints and return types;

⚠️ If you're using $mutexStrategy and/or $mutexTimeout fields, your IDE might ask you to add proper types (string and/or ?int):

class ExampleCommand extends Command
{
    use WithoutOverlapping;

    protected string $mutexStrategy = 'mysql';

    protected ?int $mutexTimeout = 3000;

    // ...
}

The null should be set explicitly, if used:

class ExampleCommand extends Command
{
    use WithoutOverlapping;

    protected ?int $mutexTimeout = null;

    // ...
}
laravel-console-mutex - 9.0.0

Published by dmitry-ivanov over 2 years ago

9.0.0 (19 Feb 2022)

Added

  • Laravel 9 support;
laravel-console-mutex - 8.1.0

Published by dmitry-ivanov almost 4 years ago

8.1.0 (21 Dec 2020)

Added

  • PHP8 support;
laravel-console-mutex - 7.1.0

Published by dmitry-ivanov almost 4 years ago

7.1.0 (21 Dec 2020)

Added

  • PHP8 support;
laravel-console-mutex - 6.2.0

Published by dmitry-ivanov almost 4 years ago

6.2.0 (21 Dec 2020)

Added

  • PHP8 support;
laravel-console-mutex - 5.8.1

Published by dmitry-ivanov almost 4 years ago

5.8.1 (12 Nov 2020)

Changed

  • Throw custom MutexRuntimeException;
laravel-console-mutex - 5.7.5

Published by dmitry-ivanov almost 4 years ago

5.7.5 (12 Nov 2020)

Changed

  • Throw custom MutexRuntimeException;
laravel-console-mutex - 5.6.4

Published by dmitry-ivanov almost 4 years ago

5.6.4 (12 Nov 2020)

Changed

  • Throw custom MutexRuntimeException;
laravel-console-mutex - 5.5.6

Published by dmitry-ivanov almost 4 years ago

5.5.6 (12 Nov 2020)

Changed

  • Throw custom MutexRuntimeException (for @moazam1 - #22)
laravel-console-mutex - 8.0.0

Published by dmitry-ivanov about 4 years ago

8.0.0 (15 Sep 2020)

Added

  • Laravel 8 support;
laravel-console-mutex - 7.0.0

Published by dmitry-ivanov over 4 years ago

7.0.0 (24 Mar 2020)

Added

  • Laravel 7 support;
laravel-console-mutex - 6.1.0

Published by dmitry-ivanov over 4 years ago

6.1.0 (28 Feb 2020)

Fixed

  • PSR-12 changes, doc-blocks added, various refactorings here and there;
laravel-console-mutex - 6.0.0

Published by dmitry-ivanov about 5 years ago

  • Laravel 6 support added;
  • The Illuminated\Console\MutexRuntimeException is thrown now, instead of the RuntimeException;
laravel-console-mutex - 5.8.0

Published by dmitry-ivanov over 5 years ago

  • Laravel 5.8 support added;
laravel-console-mutex - Release 5.7.4

Published by dmitry-ivanov about 6 years ago

  • Minor fixes;
laravel-console-mutex - Release 5.7.3

Published by dmitry-ivanov about 6 years ago

  • Git attributes added;
laravel-console-mutex - Release 5.7.2

Published by dmitry-ivanov about 6 years ago

  • Minor fixes;
laravel-console-mutex - Release 5.7.1

Published by dmitry-ivanov about 6 years ago

  • Tests fixed;
Package Rankings
Top 2.56% on Packagist.org
Badges
Extracted from project README
StyleCI Build Status Coverage Status Laravel Idea Material Theme UI Plugin
Related Projects