├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── php.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config └── laralocker.php ├── phpunit.xml.dist ├── src ├── Contracts │ └── Lockable.php ├── HandlesLockerSlot.php ├── LaralockerServiceProvider.php ├── Locker.php ├── LockerJobMiddleware.php └── LockerManager.php └── tests ├── LockableJobTest.php ├── LockerManagerTest.php ├── RegistersPackage.php ├── ServiceProviderTest.php └── Stubs ├── LockableConcurrentJob.php ├── LockableCustomJob.php ├── LockableExceptionJob.php ├── LockableFailedJob.php ├── LockableJob.php └── LockableTaggableJob.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/composer.json -------------------------------------------------------------------------------- /config/laralocker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/config/laralocker.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Contracts/Lockable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/src/Contracts/Lockable.php -------------------------------------------------------------------------------- /src/HandlesLockerSlot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/src/HandlesLockerSlot.php -------------------------------------------------------------------------------- /src/LaralockerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/src/LaralockerServiceProvider.php -------------------------------------------------------------------------------- /src/Locker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/src/Locker.php -------------------------------------------------------------------------------- /src/LockerJobMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/src/LockerJobMiddleware.php -------------------------------------------------------------------------------- /src/LockerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/src/LockerManager.php -------------------------------------------------------------------------------- /tests/LockableJobTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/LockableJobTest.php -------------------------------------------------------------------------------- /tests/LockerManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/LockerManagerTest.php -------------------------------------------------------------------------------- /tests/RegistersPackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/RegistersPackage.php -------------------------------------------------------------------------------- /tests/ServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/ServiceProviderTest.php -------------------------------------------------------------------------------- /tests/Stubs/LockableConcurrentJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/Stubs/LockableConcurrentJob.php -------------------------------------------------------------------------------- /tests/Stubs/LockableCustomJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/Stubs/LockableCustomJob.php -------------------------------------------------------------------------------- /tests/Stubs/LockableExceptionJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/Stubs/LockableExceptionJob.php -------------------------------------------------------------------------------- /tests/Stubs/LockableFailedJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/Stubs/LockableFailedJob.php -------------------------------------------------------------------------------- /tests/Stubs/LockableJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/Stubs/LockableJob.php -------------------------------------------------------------------------------- /tests/Stubs/LockableTaggableJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DarkGhostHunter/Laralocker/HEAD/tests/Stubs/LockableTaggableJob.php --------------------------------------------------------------------------------