-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
53 lines (53 loc) · 1.41 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
50
51
52
53
{
"name": "acelaya/zsm-annotated-services",
"description": "A component to define how dependency injection has to be performed with Zend\\ServiceManager via annotations",
"type": "library",
"keywords": [
"annotations",
"services",
"factories",
"container",
"zf2",
"zf3",
"service-manager"
],
"require": {
"php": "^5.6 || ^7.0",
"zendframework/zend-servicemanager": "^2.2 || ^3.0",
"doctrine/annotations": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"doctrine/cache": "^1.6",
"squizlabs/php_codesniffer": "^2.5"
},
"license": "MIT",
"authors": [
{
"name": "Alejandro Celaya",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Acelaya\\ZsmAnnotatedServices\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AcelayaTest\\ZsmAnnotatedServices\\": "tests"
}
},
"suggest": {
"doctrine/cache": "To cache the result of processing the annotations and speed-up your application"
},
"scripts": {
"test": "phpunit --coverage-clover build/clover.xml",
"html-test": "phpunit --coverage-html build/html",
"cs": "phpcs --standard=PSR2 ./src ./tests",
"check": [
"@test",
"@cs"
]
}
}