mirror of
https://github.com/danog/amp.git
synced 2024-11-26 20:15:00 +01:00
30 lines
890 B
Markdown
30 lines
890 B
Markdown
Amp
|
|
====
|
|
Amp is a non-blocking concurrency framework for PHP applications
|
|
|
|
## The Guide
|
|
|
|
We've spent *a lot* of time compiling all the information necessary to write concurrent applications
|
|
using the Amp framework in [the Guide](http://amphp.github.io/amp/). Please use it!
|
|
|
|
**Dependencies**
|
|
|
|
- PHP 5.5+
|
|
|
|
Optional PHP extensions may be used to improve performance in production environments and react to process control signals:
|
|
|
|
- [php-uv](https://github.com/chobie/php-uv) extension for libuv backends
|
|
- [pecl/libevent](http://pecl.php.net/package/libevent) for libevent backends ([download Windows .dll](http://windows.php.net/downloads/pecl/releases/libevent/0.0.5/))
|
|
|
|
**Installation**
|
|
|
|
```bash
|
|
$ git clone https://github.com/amphp/amp.git
|
|
$ cd amp
|
|
$ composer.phar install
|
|
```
|
|
|
|
**Community**
|
|
|
|
If you have questions stop by the [amp chat channel](https://gitter.im/amphp/amp) on Gitter.
|