forked from javibravo/simpleue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 902 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
{
"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",
"authors": [
{
"name": "Javier Bravo",
"email": "javibravo85@gmail.com"
}
],
"require": {
"php": ">=5.5",
"psr/log": "~1.0"
},
"autoload": {
"psr-4": {"Simpleue\\": "src/Simpleue"}
},
"require-dev": {
"phpunit/phpunit": "4.0.*",
"predis/predis": "^1.0",
"aws/aws-sdk-php": "^3.9"
},
"autoload-dev": {
"psr-4": {"Simpleue\\": "tests/Simpleue"}
},
"suggest": {
"predis/predis": "Allow work with Redis queues",
"aws/aws-sdk-php": "Allow work with AWS Simple Queue Service (SQS) queues"
}
}