-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
36 lines (36 loc) · 877 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
35
36
{
"name": "ebernhardson/php-resque-pool",
"type": "library",
"description": "php-resque worker pool manager",
"keywords": [],
"homepage": "http://github.com/ebernhardson/php-resque-pool",
"license": "",
"authors": [
{
"name": "Erik Bernhardson",
"email": "[email protected]"
},
{
"name": "Nicholas Evans",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"symfony/yaml": "~2.1|~3.0|~4.0|~5.0|~6.0",
"resque/php-resque": "~1.3"
},
"require-dev": {
"phpstan/phpstan": "~1.8"
},
"autoload": {
"psr-0": { "Resque\\Pool": "lib/" }
},
"bin": [
"bin/resque-pool"
],
"target-dir": "",
"scripts": {
"phpstan": "phpstan analyse --memory-limit=2G"
}
}