forked from graze/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (57 loc) · 1.58 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
60
61
62
63
64
65
66
67
68
69
70
{
"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/"
}
},
"autoload-dev": {
"classmap": [
"tests/unit/",
"tests/integration"
]
},
"require": {
"php": ">=5.6",
"graze/data-structure": "^2.0"
},
"require-dev": {
"aws/aws-sdk-php": "^3.0",
"hamcrest/hamcrest-php": "^1.2",
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^5.0",
"squizlabs/php_codesniffer": "^2.0",
"graze/hamcrest-test-listener": "^1.0"
},
"suggests": {
"aws/aws-sdk-php": "Required when using the SQS Adapter"
},
"scripts": {
"test": [
"composer lint --quiet",
"composer test:unit --quiet",
"composer test:integration --quiet"
],
"test:unit": [
"vendor/bin/phpunit --colors=always --testsuite unit"
],
"test:integration": [
"vendor/bin/phpunit --colors=always --testsuite integration"
],
"lint": [
"vendor/bin/phpcs -p --standard=PSR2 --warning-severity=0 src/ tests/"
],
"lint:auto-fix": [
"vendor/bin/phpcbf -p --standard=PSR2 src/ tests/"
]
}
}