-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 828 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 828 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
{
"name": "t4web/infrastructure",
"description": "Infrastructure layer realization for DDD.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [ "ddd" ],
"homepage": "https://github.com/t4web/Infrastructure",
"require": {
"php": ">=5.5.0",
"zendframework/zend-db": "^2.9",
"zendframework/zend-eventmanager": "^3.2",
"t4web/domain-interface": "~1.1.0"
},
"require-dev" : {
"phpunit/phpunit": "~4.5",
"squizlabs/php_codesniffer": "^2.3"
},
"suggest": {
"t4web/domain": "DDD implementation"
},
"autoload": {
"psr-4": {
"T4webInfrastructure\\": "src/",
"T4webInfrastructureTest\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always"
}
}