forked from tomaj/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.71 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
{
"name": "tomaj/hermes",
"description": "Hermes background processing php library",
"type": "library",
"license": "MIT",
"keywords": ["event", "background", "workers"],
"homepage": "https://github.com/tomaj/hermes",
"authors": [
{
"name": "Tomas Majer",
"email": "[email protected]",
"homepage": "http://www.tomaj.sk/"
}
],
"support": {
"issues": "https://github.com/tomaj/hermes/issues",
"source": "https://github.com/tomaj/hermes"
},
"require": {
"php": ">= 7.1.0",
"ramsey/uuid": "~3.0",
"psr/log": "^1.0",
"tracy/tracy": "^2.0"
},
"require-dev": {
"ext-redis": "*",
"ext-zmq": "*",
"phpunit/phpunit": "~4.3",
"squizlabs/php_codesniffer": "~2.2",
"php-amqplib/php-amqplib": "^2.6.3",
"scrutinizer/ocular": "~1.1",
"jakub-onderka/php-parallel-lint": "^0.9.0",
"predis/predis": "*",
"aws/aws-sdk-php": "3.*"
},
"suggest": {
"monolog/monolog": "Basic logger implements psr/logger",
"ext-redis": "Allow use for redis driver with native redis php extension",
"ext-zmq": "Allow use for ZeroMQ driver with native zmq php extension",
"predis/predis": "Allow use for redis driver with php package Predis",
"aws/aws-sdk-php": "Allow use Amazon SQS driver",
"php-amqplib/php-amqplib": "Allow using rabbimq as driver"
},
"autoload": {
"psr-4": {
"Tomaj\\Hermes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tomaj\\Hermes\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}