-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (45 loc) · 1007 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "graze/queue",
"description": ":postbox: Flexible abstraction for working with queues in PHP.",
"license": "MIT",
"authors": [
{
"name": "Graze Developers",
"email": "[email protected]",
"homepage": "https://github.com/graze/queue/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"Graze\\Queue\\": "src/",
"Graze\\Queue\\Test\\": "tests/src/"
}
},
"autoload-dev": {
"classmap": [
"tests/unit/",
"tests/integration"
]
},
"require": {
"php": "^5.5|^7",
"graze/data-structure": "^2"
},
"require-dev": {
"aws/aws-sdk-php": "^3",
"hamcrest/hamcrest-php": "^2",
"mockery/mockery": "^1",
"phpunit/phpunit": "^5.7.21|^6|^7",
"squizlabs/php_codesniffer": "^3",
"graze/standards": "^2",
"graze/hamcrest-test-listener": "^2|^3"
},
"suggest": {
"aws/aws-sdk-php": "Required when using the SQS Adapter"
},
"config": {
"platform": {
"php": "7.2"
}
}
}