-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 991 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
{
"name": "sykescottages/qu",
"type": "library",
"description": "A generic wrapper for queue libraries",
"license": "MIT",
"authors": [
{
"name": "Richard Hughes",
"role": "developer"
}
],
"require": {
"php": ">=7.3",
"php-amqplib/php-amqplib": "^2.8",
"aws/aws-sdk-php": "^3.69",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpro/grumphp": "^0.15",
"sensiolabs/security-checker": "^5.0",
"nikic/php-parser": "^4.0",
"povils/phpmnd": "^2.0",
"squizlabs/php_codesniffer": "^3.4",
"doctrine/coding-standard": "^6.0"
},
"autoload": {
"psr-4": {
"SykesCottages\\Qu\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Example\\": "examples/"
}
},
"suggest": {
"ext-sockets": "Remove socket warnings when using RabbitMQ"
},
"prefer-stable": true
}