-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (57 loc) · 1.45 KB
/
Copy pathcomposer.json
File metadata and controls
61 lines (57 loc) · 1.45 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
{
"name": "t4web/queue",
"description": "ZF2 Module. Message broker software implementation",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"module",
"zf2 module",
"queue"
],
"homepage": "https://github.com/t4web/Queue",
"authors": [
{
"name": "Max Gulturyan",
"email": "gulturyan@gmail.com",
"homepage": "http://about.me/maxgu"
}
],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-console": "~2.5.0",
"zendframework/zend-db": "~2.5.0",
"zendframework/zend-json": "~2.5.0",
"zendframework/zend-mvc": "~2.5.0",
"zendframework/zend-servicemanager": "~2.5.0",
"symfony/process": "~3.1.0",
"react/socket": "~0.4.2",
"t4web/admin": "dev-master",
"t4web/infrastructure": "~1.2.0",
"t4web/crud": "dev-master",
"t4web/domain-module": "~1.2.0"
},
"require-dev" : {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"T4web\\Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T4web\\QueueTest\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}