-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.24 KB
/
composer.json
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
{
"name": "phly/zend-servicemanager-interop",
"type": "library",
"description": "Providing service-provider compilation for zend-servicemanager",
"homepage": "https://github.com/phly/zend-servicemanager-interop",
"license": "BSD-2-CLAUSE",
"keywords": [
"di",
"psr",
"psr-11",
"service-provider"
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"require": {
"php": "^5.6 || ^7.0",
"container-interop/container-interop": "^1.1",
"container-interop/service-provider": "^0.2",
"zendframework/zend-servicemanager": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Zend\\ServiceManager\\Interop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\ServiceManager\\Interop\\": "test/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"coveralls": "coveralls",
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
}
}