-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.14 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
{
"name": "honeybee/rabbitmq3-adapter",
"type": "library",
"description": "RabbitMQ 3.x adapter for Honeybee.",
"keywords": [ "honeybee", "rabbitmq", "adapter" ],
"homepage": "https://github.com/honeybee/couchdb",
"license": "MPL-2.0",
"prefer-stable": true,
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "[email protected]:FriendsOfHoneybee/php-amqplib.git"
}
],
"require": {
"honeybee/honeybee": "dev-feature/disconnect as 0.2",
"php-amqplib/php-amqplib": "master@dev"
},
"require-dev": {
"mockery/mockery": "^0.9",
"phpunit/phpunit": "^5.5",
"satooshi/php-coveralls": "master@dev",
"squizlabs/php_codesniffer": "^2.8"
},
"autoload": {
"psr-4": { "Honeybee\\RabbitMq3\\": "src" }
},
"autoload-dev": {
"psr-4": { "Honeybee\\Tests\\RabbitMq3\\" : "tests" }
},
"scripts": {
"test": "phpunit",
"code-sniffer": "phpcs --extensions=php --standard=psr2 src tests",
"build": [
"@test",
"@code-sniffer"
]
}
}