kurzor / queue
Implementation of PHP task queue using db to store tasks and statistics
dev-master
2018-01-29 10:56 UTC
Requires
- php: >=5.3.2
- symfony/console: ^2.7
Requires (Dev)
- phpunit/dbunit: 1.4.1
- phpunit/php-invoker: ^1.1
- phpunit/phpunit: 4.7.*
- phpunit/phpunit-selenium: ^1.4
- phpunit/phpunit-story: ^1.0
This package is auto-updated.
Last update: 2025-03-25 05:01:47 UTC
README
Simple queue in PHP - currently under development.
You need to have table jobs present in your database. Please run the SQL below to create it.
DROP TABLE IF EXISTS `jobs`;
CREATE TABLE `jobs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`handler` text COLLATE utf8_czech_ci NOT NULL,
`queue` varchar(255) COLLATE utf8_czech_ci NOT NULL DEFAULT 'default',
`attempts` int(10) unsigned NOT NULL DEFAULT '0',
`run_at` datetime DEFAULT NULL,
`locked_at` datetime DEFAULT NULL,
`locked_by` varchar(255) COLLATE utf8_czech_ci DEFAULT NULL,
`failed_at` datetime DEFAULT NULL,
`error` text COLLATE utf8_czech_ci,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci;
Running tests
php composer.phar install && php composer.phar install
vendor/bin/phpunit --bootstrap=tests/TestHelper.php