-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 KB
/
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
37
38
39
40
41
42
{
"name": "josegonzalez/queuesadilla",
"type": "library",
"description": "Queue background jobs to any backend system",
"keywords": ["php", "queue"],
"homepage": "https://github.com/josegonzalez/php-queuesadilla",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "queuesadilla@josegonzalez.com",
"homepage": "http://josediazgonzalez.com",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.2.0",
"psr/log": "~1.0",
"league/event": "~2.0",
"ext-pcntl": "*"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"iron-io/iron_mq": "dev-master",
"monolog/monolog": "*",
"pda/pheanstalk": "~3.0",
"phpmd/phpmd": "dev-master",
"predis/predis": "~1.0",
"php-coveralls/php-coveralls": "~2.0",
"squizlabs/php_codesniffer": "dev-master"
},
"suggest": {
"pda/pheanstalk": "Adds support for Beanstalk background workers",
"iron-io/iron_mq": "Adds support for IronMQ background workers",
"monolog/monolog": "Adds support for logging"
},
"autoload": {
"psr-0": {
"josegonzalez\\Queuesadilla": ["src", "tests"]
}
}
}