-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
29 lines (29 loc) · 896 Bytes
/
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
{
"name": "abacaphiliac/events-capable",
"description": "Provides a config-based initializer that attaches listeners to implementations of \\Zend\\EventManager\\EventsCapableInterface.",
"type": "library",
"license": "MIT",
"extra": {
"branch-alias": {
"dev-master": "0.2-dev",
"dev-develop": "0.3-dev"
}
},
"require": {
"zendframework/zend-eventmanager": "^2",
"zendframework/zend-servicemanager": "^2",
"zendframework/zend-stdlib": "^2"
},
"require-dev": {
"phpunit/phpunit": "^5|^4.8",
"phing/phing": "^2",
"zendframework/zend-validator": "^2",
"squizlabs/php_codesniffer": "^2.5",
"jakub-onderka/php-parallel-lint": "^0.9.2"
},
"autoload": {
"psr-4": {
"abacaphiliac\\EventsCapable\\": "src/EventsCapable"
}
}
}