-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 927 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": "kfzteile24/queue-bundle",
"description": "Provides an abstraction on top of AWS' PHP SDK Sqs- and SnsClient to make it DI friendly.",
"license": "MIT",
"type": "symfony-bundle",
"autoload": {
"psr-4": { "Kfz24\\QueueBundle\\": "" },
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Kfz24\\QueueBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.1",
"ext-json": "*",
"aws/aws-sdk-php": "^3.115",
"aws/aws-php-sns-message-validator": "^1.6",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"phpunit/phpunit": "~5.7.5",
"symfony/config": "^3.4",
"symfony/http-kernel": "^3.4",
"symfony/serializer": "^3.4",
"jms/serializer-bundle": "^3.4"
},
"minimum-stability": "stable",
"prefer-stable": true
}