-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·54 lines (49 loc) · 1.27 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
{
"name": "evaneos/burrow",
"description": "AMQP Messaging Event component",
"license": "MIT",
"authors": [
{
"name": "Evaneos",
"email": "[email protected]"
}
],
"require" : {
"php": ">=5.5.9",
"php-amqplib/php-amqplib": "^2.6",
"psr/log": "~1.0",
"symfony/console": "^2.8|^3.0|^4.0",
"beberlei/assert": "^2.6",
"beberlei/metrics": "^2.8",
"evaneos/daemon": "^2.0",
"league/event": "^2.2",
"ext-pcntl": "*"
},
"require-dev" : {
"phpunit/phpunit" : "~4.0|~5.0",
"monolog/monolog": "~1.13",
"mockery/mockery": "^0.9.4",
"fzaninotto/faker": "^1.6",
"symfony/process": "^3.2",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-4": {
"Burrow\\": "src/",
"Burrow\\Examples\\": "examples/src/"
}
},
"autoload-dev": {
"psr-4": {
"Burrow\\Test\\": "tests/unit/",
"Burrow\\Test\\Validation\\": "tests/validation/",
"Burrow\\Test\\Integration\\": "tests/integration/"
}
},
"bin": [ "bin/burrow" ],
"extra": {
"branch-alias": {
"dev-master": "3.3.x-dev"
}
}
}