PHP Libraries › illuminate › queue Illuminate Queue is a PHP library that provides efficient and scalable queuing functionality for managing background jobs in applications.
Package Description Illuminate Queue is a powerful PHP library designed to handle queuing tasks seamlessly within your application, ensuring optimal performance and scalability. With its robust features and easy integration, Illuminate Queue simplifies the process of managing background jobs, allowing you to focus on core functionalities. Whether you are handling large-scale asynchronous tasks or prioritizing job execution, this library is a versatile solution for optimizing your application's workflow.
Classes: Illuminate\Queue\MaxAttemptsExceededException Illuminate\Queue\Jobs\FakeJob Illuminate\Queue\Jobs\DatabaseJob Illuminate\Queue\Jobs\JobName Illuminate\Queue\Jobs\BeanstalkdJob Illuminate\Queue\Jobs\DatabaseJobRecord Illuminate\Queue\Jobs\Job Illuminate\Queue\Jobs\RedisJob Illuminate\Queue\Jobs\SqsJob Illuminate\Queue\Jobs\SyncJob Illuminate\Queue\LuaScripts Illuminate\Queue\TimeoutExceededException Illuminate\Queue\BeanstalkdQueue Illuminate\Queue\InteractsWithQueue Illuminate\Queue\CallQueuedHandler Illuminate\Queue\ManuallyFailedException Illuminate\Queue\Worker Illuminate\Queue\SerializesAndRestoresModelIdentifiers Illuminate\Queue\Console\FailedTableCommand Illuminate\Queue\Console\FlushFailedCommand Illuminate\Queue\Console\BatchesTableCommand Illuminate\Queue\Console\RetryBatchCommand Illuminate\Queue\Console\ListenCommand Illuminate\Queue\Console\WorkCommand Illuminate\Queue\Console\RestartCommand Illuminate\Queue\Console\RetryCommand Illuminate\Queue\Console\MonitorCommand Illuminate\Queue\Console\PruneFailedJobsCommand Illuminate\Queue\Console\ForgetFailedCommand Illuminate\Queue\Console\PruneBatchesCommand Illuminate\Queue\Console\ListFailedCommand Illuminate\Queue\Console\ClearCommand Illuminate\Queue\Console\TableCommand Illuminate\Queue\QueueServiceProvider Illuminate\Queue\InvalidPayloadException Illuminate\Queue\QueueManager Illuminate\Queue\Queue Illuminate\Queue\SerializesModels Illuminate\Queue\DatabaseQueue Illuminate\Queue\NullQueue Illuminate\Queue\CallQueuedClosure Illuminate\Queue\Failed\DatabaseUuidFailedJobProvider Illuminate\Queue\Failed\NullFailedJobProvider Illuminate\Queue\Failed\PrunableFailedJobProvider Illuminate\Queue\Failed\FileFailedJobProvider Illuminate\Queue\Failed\DatabaseFailedJobProvider Illuminate\Queue\Failed\CountableFailedJobProvider Illuminate\Queue\Failed\FailedJobProviderInterface Illuminate\Queue\Failed\DynamoDbFailedJobProvider Illuminate\Queue\Connectors\NullConnector Illuminate\Queue\Connectors\DatabaseConnector Illuminate\Queue\Connectors\RedisConnector Illuminate\Queue\Connectors\SqsConnector Illuminate\Queue\Connectors\ConnectorInterface Illuminate\Queue\Connectors\BeanstalkdConnector Illuminate\Queue\Connectors\SyncConnector Illuminate\Queue\Events\JobRetryRequested Illuminate\Queue\Events\WorkerStopping Illuminate\Queue\Events\JobProcessing Illuminate\Queue\Events\JobReleasedAfterException Illuminate\Queue\Events\QueueBusy Illuminate\Queue\Events\JobQueued Illuminate\Queue\Events\JobExceptionOccurred Illuminate\Queue\Events\JobPopped Illuminate\Queue\Events\JobFailed Illuminate\Queue\Events\WorkerStarting Illuminate\Queue\Events\JobProcessed Illuminate\Queue\Events\JobTimedOut Illuminate\Queue\Events\Looping Illuminate\Queue\Events\JobQueueing Illuminate\Queue\Events\JobAttempted Illuminate\Queue\Events\JobPopping Illuminate\Queue\SqsQueue Illuminate\Queue\WorkerOptions Illuminate\Queue\Attributes\WithoutRelations Illuminate\Queue\Attributes\DeleteWhenMissingModels Illuminate\Queue\RedisQueue Illuminate\Queue\ListenerOptions Illuminate\Queue\Listener Illuminate\Queue\SyncQueue Illuminate\Queue\Middleware\ThrottlesExceptions Illuminate\Queue\Middleware\SkipIfBatchCancelled Illuminate\Queue\Middleware\RateLimitedWithRedis Illuminate\Queue\Middleware\RateLimited Illuminate\Queue\Middleware\FailOnException Illuminate\Queue\Middleware\WithoutOverlapping Illuminate\Queue\Middleware\Skip Illuminate\Queue\Middleware\ThrottlesExceptionsWithRedis Illuminate\Queue\Capsule\Manager Close Previous Versions Code Integration Example Make sure to include the correct namespace and class paths for proper usage.
<?php
// Example from PHPlibraries.com
require_once 'libs/illuminate/queue/12.33.0/loader.php';
require_once 'libs/illuminate/support/12.33.0/loader.php';
require_once 'libs/illuminate/container/12.33.0/loader.php';
use Illuminate\Queue\Queue;
use Illuminate\Queue\Worker;
$obj = new Queue();
echo '✅ Test OK: ' . get_class($obj);
?>
Report a broken download or code We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.
Community Discussion Ask questions, share tips, or report issues below.