forked from ebernhardson/php-resque-pool
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 814 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "shonm/php-resque-pool",
"type": "library",
"description": "php-resque worker pool manager",
"keywords": [],
"homepage": "http://github.com/ShonM/php-resque-pool",
"license": "",
"authors": [
{
"name": "Erik Bernhardson",
"email": "bernhardsonerik@gmail.com"
},
{
"name": "Nicholas Evans",
"email": "nick@ekenosen.net"
}
],
"require": {
"php": ">=5.3.0",
"symfony/yaml": "2.1.*",
"chrisboulton/php-resque": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*@dev"
},
"autoload": {
"psr-0": { "Resque\\Pool": "lib/" }
},
"bin": [
"bin/resque-pool"
],
"target-dir": "",
"minimum-stability": "dev"
}