forked from thomasvargiu/RabbitMqModule
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.77 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 1.77 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "thomasvargiu/rabbitmq-module",
"description": "Integrates php-amqplib with Zend Framework 2 and RabbitMq",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"homepage": "https://github.com/thomasvargiu/RabbitMqModule",
"keywords": [
"zf2",
"zend framework",
"rabbitmq",
"amqp"
],
"authors": [
{
"name": "Thomas Vargiu",
"email": "tommy@ttech.it"
}
],
"require": {
"php": "^7.1",
"psr/container": "^1.0",
"container-interop/container-interop": "^1.2",
"php-amqplib/php-amqplib": "^2.7",
"zendframework/zend-stdlib": "^3.2.1",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-modulemanager": "^2.7.1 || ^3.0",
"zendframework/zend-mvc": "^3.0.3",
"zendframework/zend-mvc-console": "^1.1.11",
"zendframework/zend-console": "^2.6",
"zendframework/zend-serializer": "^2.6.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0 || ^7.0",
"zendframework/zend-test": "^3.1",
"zendframework/zend-log": "^2.7",
"zendframework/zend-i18n": "^2.6",
"zendframework/zend-http": "^2.5.5"
},
"autoload": {
"psr-4": {
"RabbitMqModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RabbitMqModule\\": "tests/unit/"
}
},
"extra": {
"zf": {
"module": "RabbitMqModule"
}
},
"scripts": {
"test": ["@phpunit", "@phpcs"],
"ci-test": [
"@ci-phpunit",
"@phpcs"
],
"phpunit": "phpunit",
"ci-phpunit": "phpunit --coverage-clover=coverage.clover",
"phpcs": [
"php-cs-fixer fix -v --diff --dry-run src/",
"php-cs-fixer fix -v --diff --dry-run tests/"
],
"phpcs-fix": [
"php-cs-fixer fix -v --diff src/",
"php-cs-fixer fix -v --diff tests/"
]
}
}