1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/README.md

25 lines
1.1 KiB
Markdown
Raw Normal View History

# Amp [![Build Status](https://travis-ci.org/amphp/amp.svg?branch=v1.0.x)](https://travis-ci.org/amphp/amp)
2015-04-29 17:29:09 +02:00
2015-05-12 21:18:28 +02:00
`amphp/amp` is a non-blocking concurrency framework for PHP applications. Learn more about Amp in the
[Guide](https://stackedit.io/viewer#!url=https://raw.githubusercontent.com/amphp/amp/master/guide.md).
2014-08-07 07:35:17 +02:00
**Dependencies**
2013-08-05 22:05:08 +02:00
2015-05-21 03:44:25 +02:00
- PHP 5.5+
2014-08-07 07:35:17 +02:00
2015-05-21 03:44:25 +02:00
Optional PHP extensions may be used to improve performance in production environments and react to process control signals:
2015-04-29 17:36:26 +02:00
2015-05-21 03:44:25 +02:00
- [php-uv](https://github.com/chobie/php-uv) extension for libuv backends
2015-04-29 17:36:26 +02:00
2015-05-21 03:44:25 +02:00
**Maintained Versions**
2014-07-22 17:56:44 +02:00
2015-05-21 03:44:25 +02:00
- v1.0.0 (PHP 5.5+)
- v1.1.0 (PHP 7+)
2015-05-12 21:18:28 +02:00
2015-05-21 03:44:25 +02:00
Although there are no API breaks moving from v1.0 to v1.1 the newer release *does* require PHP 7. Amp follows the [semver](http://semver.org/) semantic versioning specification. As a result, users may require any version >= 1.0.0 using the caret operator as shown below without backwards-compatibility issues. Composer will automatically retrieve the latest stable version available for your PHP environment.
2015-05-12 21:18:28 +02:00
2015-05-21 03:44:25 +02:00
**Installation**
2014-08-07 07:35:17 +02:00
2015-05-21 03:44:25 +02:00
```bash
$ composer require amphp/amp:^1
```