-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "zfr/zfr-eb-worker",
"type": "library",
"license": "MIT",
"description" : "Thin abstraction around AWS SQS for Elastic Beanstalk worker environments",
"keywords": [
"sqs",
"middleware",
"expressive",
"elastic beanstalk"
],
"homepage": "https://github.com/zf-fr/zfr-eb-worker",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"extra": {
"zf": {
"config-provider": "ZfrEbWorker\\ConfigProvider"
}
},
"require": {
"php": "^7.1",
"aws/aws-sdk-php": "^3.0",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"webimpress/http-middleware-compatibility": "^0.1.4",
"zendframework/zend-stratigility": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "~5.1",
"squizlabs/php_codesniffer": "^2.3",
"zendframework/zend-diactoros": "^1.3",
"symfony/console": "^3.0",
"guzzlehttp/guzzle": "^6.0"
},
"suggest": {
"symfony/console": "If you want to use the CLI local worker and publisher (^3.0)",
"guzzlehttp/guzzle": "If you want to use the CLI local worker and publisher (^6.0)"
},
"autoload": {
"psr-4": {
"ZfrEbWorker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrEbWorkerTest\\": "test/"
}
},
"scripts": {
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
}
}