Initial commit, docs and tests forthcoming.

This commit is contained in:
2014-08-08 15:06:11 -05:00
parent d3653a12fc
commit 43fa2fc744
6 changed files with 423 additions and 0 deletions

36
composer.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name" : "dcarbone/ugly-queue",
"type" : "library",
"description" : "A simple file-based queue system for PHP 5.3.3+",
"keywords": [
"php",
"queue",
"file queue",
"ugly queue"
],
"homepage": "https://github.com/dcarbone/ugly-queue",
"license": "GPLv3",
"authors" : [
{
"name" : "Daniel Carbone",
"email" : "daniel.p.carbone@gmail.com"
}
],
"require" : {
"php" : ">=5.3.3",
"dcarbone/helpers" : "6.1.*"
},
"require-dev" : {
"phpunit/phpunit": "4.1.*"
},
"autoload" : {
"psr-4" : {
"DCarbone\\" : "src/"
}
}
}