forked from CVO-Technologies/cakephp-gearman
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
51 lines (51 loc) · 1.28 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
{
"name": "0100dev/cakephp-rabbitmq",
"description": "A RabbitMQ plugin for CakePHP 3",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"0100Dev",
"rabbitmq",
"consumers",
"producers"
],
"homepage": "https://github.com/0100Dev/cakephp-rabbitmq",
"license": "MIT",
"authors": [
{
"name": "Wouter van Os",
"homepage": "https://0100dev.nl",
"role": "Author"
},
{
"name": "Marlin Cremers",
"homepage": "https://cvo-technologies.com/",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/0100Dev/cakephp-rabbitmq/issues",
"source": "https://github.com/0100Dev/cakephp-rabbitmq"
},
"require": {
"php": ">=5.5.9",
"php-amqplib/php-amqplib": "2.6.*",
"cakephp/cakephp": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"cakephp/debug_kit": "~3.2",
"cakephp/cakephp-codesniffer": "2.*"
},
"autoload": {
"psr-4": {
"DevApp\\RabbitMQ\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TestApp\\": "tests/TestApp/src",
"DevApp\\RabbitMQ\\Test\\": "tests"
}
}
}