-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 1.14 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
{
"name": "mcfedr/sqs-queue-driver-bundle",
"type": "symfony-bundle",
"description": "A bundle for running symfony background tasks with SQS as the engine",
"keywords": ["queue", "job", "schedule", "task", "sqs", "aws"],
"autoload": {
"psr-4": { "Mcfedr\\SqsQueueDriverBundle\\": "src/Mcfedr/SqsQueueDriverBundle/"}
},
"autoload-dev": {
"psr-4": { "Mcfedr\\SqsQueueDriverBundle\\" : "tests/Mcfedr/SqsQueueDriverBundle/" },
"classmap": ["tests/TestKernel.php"]
},
"require": {
"php": ">=5.5",
"symfony/framework-bundle": "^3.0|^4.0",
"mcfedr/queue-manager-bundle": "^5.2",
"aws/aws-sdk-php": "^3.15"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.3",
"symfony/monolog-bundle": "^2.8|^3.0|^4.0",
"friendsofphp/php-cs-fixer": "^2.1",
"symfony/browser-kit": "^3.0|^4.0"
},
"suggest": {
"mcfedr/doctrine-delay-queue-driver-bundle": "A driver to delay tasks, useful with sqs"
},
"authors": [
{
"name": "Fred Cox",
"email": "[email protected]"
}
],
"license": "MIT"
}