You've already forked ugly-queue
Initial commit, docs and tests forthcoming.
This commit is contained in:
36
composer.json
Normal file
36
composer.json
Normal 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/"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user