1{
2    "name": "sabre/event",
3    "description": "sabre/event is a library for lightweight event-based programming",
4    "keywords": [
5        "Events",
6        "EventEmitter",
7        "Promise",
8        "Hooks",
9        "Plugin",
10        "Signal",
11        "Async"
12    ],
13    "homepage": "http://sabre.io/event/",
14    "license": "BSD-3-Clause",
15    "require": {
16        "php": ">=5.5"
17    },
18    "authors": [
19        {
20            "name": "Evert Pot",
21            "email": "me@evertpot.com",
22            "homepage": "http://evertpot.com/",
23            "role": "Developer"
24        }
25    ],
26    "support": {
27        "forum": "https://groups.google.com/group/sabredav-discuss",
28        "source": "https://github.com/fruux/sabre-event"
29    },
30    "autoload": {
31        "psr-4": {
32            "Sabre\\Event\\": "lib/"
33        },
34        "files" : [
35            "lib/coroutine.php",
36            "lib/Loop/functions.php",
37            "lib/Promise/functions.php"
38        ]
39    },
40    "require-dev": {
41        "sabre/cs": "~0.0.4",
42        "phpunit/phpunit" : "*"
43    },
44    "config" : {
45        "bin-dir" : "bin/"
46    }
47}
48