1sabre/event 2=========== 3 4A lightweight library for event-based development in PHP. 5 6This library provides two patterns: 7 81. EventEmitter 92. Promises 10 11Full documentation can be found on [the website][1]. 12 13Installation 14------------ 15 16Make sure you have [composer][3] installed, and then run: 17 18 composer require sabre/event "~2.0.0" 19 20For legacy reasons, we also provide a unsupported [PHP 5.3 compatible version][6]. 21We recommend that you update your servers and use the regular version instead, though. 22 23Build status 24------------ 25 26| branch | status | 27| ------ | ------ | 28| master | [![Build Status](https://travis-ci.org/fruux/sabre-event.svg?branch=master)](https://travis-ci.org/fruux/sabre-event) | 29| 2.0 | [![Build Status](https://travis-ci.org/fruux/sabre-event.svg?branch=2.0)](https://travis-ci.org/fruux/sabre-event) | 30| 1.0 | [![Build Status](https://travis-ci.org/fruux/sabre-event.svg?branch=1.0)](https://travis-ci.org/fruux/sabre-event) | 31| php53 | [![Build Status](https://travis-ci.org/fruux/sabre-event.svg?branch=php53)](https://travis-ci.org/fruux/sabre-event) | 32 33 34Questions? 35---------- 36 37Head over to the [sabre/dav mailinglist][4], or you can also just open a ticket 38on [GitHub][5]. 39 40Made at fruux 41------------- 42 43This library is being developed by [fruux](https://fruux.com/). Drop us a line for commercial services or enterprise support. 44 45[1]: http://sabre.io/event/ 46[3]: http://getcomposer.org/ 47[4]: http://groups.google.com/group/sabredav-discuss 48[5]: https://github.com/fruux/sabre-event/issues/ 49[6]: https://github.com/fruux/sabre-event/tree/php53 50