From 905c39670353c691d76f4b46dca16174732609ce Mon Sep 17 00:00:00 2001 From: Chris Boulton Date: Wed, 1 Aug 2012 11:39:12 +1000 Subject: [PATCH] add basic composer.json. closes #59 --- composer.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..594f13f --- /dev/null +++ b/composer.json @@ -0,0 +1,22 @@ +{ + "name": "chrisboulton/php-resque", + "type": "library", + "description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby.", + "keywords": ["job", "background", "redis", "resque"], + "homepage": "http://www.github.com/chrisboulton/php-resque/", + "license": "MIT", + "authors": [ + { + "name": "Chris Boulton", + "email": "chris@bigcommerce.com" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-0": { + "Resque": "lib" + } + } +} \ No newline at end of file