-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 934 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 934 Bytes
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
{
"name": "tricae/queue",
"description": "A PHP Lib for Handle Queue (Rabbit, Redis, ...)",
"type": "library",
"require": {
"videlalvaro/php-amqplib": "2.4.*"
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "@stable"
},
"autoload": {
"psr-4": {
"Queue\\": "src",
"QueueTest\\": "tests"
}
},
"authors": [
{
"name": "markomafs",
"email": "marco.souza@tricae.com.br"
},
{
"name": "tonicospinelli",
"email": "antonio.spinelli@kanui.com.br"
}
],
"minimum-stability": "RC",
"scripts": {
"test": "phpunit -c tests/phpunit.xml",
"phpmd": "phpmd src text cleancode,codesize,controversial,design,naming,unusedcode",
"phpcs": "phpcs --standard=PSR2 src"
}
}