-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (28 loc) · 794 Bytes
/
composer.json
File metadata and controls
31 lines (28 loc) · 794 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
{
"name": "event-band/band-framework",
"description": "Asynchronous event dispatching",
"keywords": ["event", "dispatcher", "queue", "async", "asynchronous", "message"],
"homepage": "http://github.com/chEbba/EventBand",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kirill chEbba Chebunin",
"email": "iam@chebba.org",
"homepage": "http://github.com/chEbba"
}
],
"autoload": {
"psr-0": { "EventBand": "src/" }
},
"require": {
"php": ">=5.4",
"symfony/property-access": "2.*",
"che/log-stock": "1.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/property-access" : "2.2.0",
"che/log-stock": "1.0.0"
}
}