forked from javibravo/simpleue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.09 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
{
"name": "javibravo/simpleue",
"description": "Php package to manage queue tasks in a simple way",
"keywords": ["queue", "task", "job", "redis", "sqs"],
"homepage": "http://github.com/javibravo/simpleue",
"type": "library",
"license": "MIT",
"minimum-stability":"stable",
"authors": [
{
"name": "Javier Bravo",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6",
"ext-pcntl": "*",
"psr/log": "^1.0 || >=2.0"
},
"autoload": {
"psr-4": {"Simpleue\\": "src/Simpleue"}
},
"require-dev": {
"phpunit/phpunit": "4.0.*",
"predis/predis": "^1.0",
"aws/aws-sdk-php": "^3.9",
"pda/pheanstalk": "^3.1"
},
"autoload-dev": {
"psr-4": {"Simpleue\\": "tests/Simpleue"}
},
"suggest": {
"predis/predis": "Allow work with Redis queues",
"ext-redis": "Allow work with Redis Locker",
"aws/aws-sdk-php": "Allow work with AWS Simple Queue Service (SQS) queues",
"pda/pheanstalk": "Allow work with Beanstalkd queues"
}
}