1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 05:11:42 +01:00
amp/README.md

29 lines
988 B
Markdown
Raw Normal View History

2015-07-19 13:29:25 -04:00
# amp
2015-04-29 11:29:09 -04:00
2015-07-28 09:09:42 -04:00
[![Build Status](https://img.shields.io/travis/amphp/amp/master.svg?style=flat-square)](https://travis-ci.org/amphp/amp)
[![CoverageStatus](https://img.shields.io/coveralls/amphp/amp/master.svg?style=flat-square)](https://coveralls.io/github/amphp/amp?branch=master)
![Stable v1](https://img.shields.io/badge/stable-v1-green.svg?style=flat-square)
![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)
2015-07-19 13:29:25 -04:00
2015-07-20 15:49:04 -04:00
`amphp/amp` is a non-blocking concurrency framework for PHP applications.
2015-08-08 22:09:21 +02:00
Learn more about `amphp/amp` in [the guide](http://amphp.org/docs/amp/).
2015-07-22 00:15:36 -04:00
**Required PHP Version**
2013-08-05 16:05:08 -04:00
2015-05-20 21:44:25 -04:00
- PHP 5.5+
2015-07-22 00:06:02 -04:00
**Optional Extension Backends**
2015-07-22 00:06:02 -04:00
2015-10-31 22:54:13 -04:00
Extensions are only needed if your app necessitates high numbers of concurrent socket connections.
2015-07-22 00:06:02 -04:00
- [ev](https://pecl.php.net/package/ev)
- [libevent](https://pecl.php.net/package/libevent)
- [php-uv](https://github.com/bwoebi/php-uv) (experimental fork, requires PHP7)
2015-05-12 15:18:28 -04:00
2015-05-20 21:44:25 -04:00
**Installation**
2014-08-07 01:35:17 -04:00
2015-05-20 21:44:25 -04:00
```bash
2015-07-27 13:43:06 -04:00
$ composer require amphp/amp
2015-07-19 13:29:25 -04:00
```