summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json32
1 files changed, 32 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..be10e25
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,32 @@
+{
+ "name": "pda/pheanstalk",
+ "type": "library",
+ "description": "PHP client for beanstalkd queue",
+ "keywords": ["beanstalkd"],
+ "homepage": "https://github.com/pda/pheanstalk",
+ "license": "MIT",
+ "authors": [
+ {
+ "name": "Paul Annesley",
+ "email": "paul@annesley.cc",
+ "homepage": "http://paul.annesley.cc/",
+ "role": "Developer"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~4.0"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pheanstalk\\": "src/"
+ }
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0-dev"
+ }
+ }
+}