⚠️ To ensure full functionality, the above dependencies might be required.
Package Description
Yii2 Queue is a feature-rich PHP library that simplifies the process of handling queues and asynchronous tasks in web applications. It provides robust solutions for managing tasks efficiently, ensuring high performance and scalability. With Yii2 Queue, developers can streamline their workflow, improve application responsiveness, and enhance user experience.
Make sure to include the correct namespace and class paths for proper usage.
<?php
// Example from PHPlibraries.com
require_once 'libs/yiisoft/yii2-queue/2.0.2/loader.php';
require_once 'libs/yiisoft/yii2/2.0.52/loader.php';
require_once 'libs/yiisoft/yii2-redis/{lib_version}/loader.php';
require_once 'libs/yiisoft/yii2-db/{lib_version}/loader.php';
use yiisoft\yii2\queue\Queue;
use yiisoft\yii2\queue\Job;
$obj = new Queue();
echo '✅ Test OK: ' . get_class($obj);
?>
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.