-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (39 loc) · 906 Bytes
/
Copy pathcomposer.json
File metadata and controls
41 lines (39 loc) · 906 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
36
37
38
39
40
41
{
"name": "t4web/domain-module",
"description": "ZF2 Module for Domain implementation.",
"type": "zf2-module",
"license": "BSD-3-Clause",
"keywords": [ "ddd", "zf2 module" ],
"homepage": "https://github.com/t4web/DomainModule",
"require": {
"php": ">=5.5.0",
"zendframework/zend-modulemanager": ">=2.6",
"zendframework/zend-mvc": ">=2.6",
"zendframework/zend-servicemanager": ">=2.6",
"t4web/domain": "~1.2.0",
"t4web/infrastructure": "~2.0.1"
},
"require-dev" : {
"phpunit/phpunit": "~4.5",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"T4web\\DomainModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"T4web\\DomainModuleTest\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}