1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00

Add banner to README

This commit is contained in:
Niklas Keller 2017-07-16 18:24:07 +02:00 committed by GitHub
parent fb2c8b8335
commit 32a6319165

View File

@ -1,11 +1,12 @@
# amp
![Amp](https://raw.githubusercontent.com/amphp/logo/master/repos/amp.png?v=16-07-2017-18-21-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 v2](https://img.shields.io/badge/stable-v2-green.svg?style=flat-square)
![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)
<p align="center">
<a href="https://travis-ci.org/amphp/amp"><img src="https://img.shields.io/travis/amphp/amp/master.svg?style=flat-square"></a>
<a href="https://coveralls.io/github/amphp/amp?branch=master"><img src="https://img.shields.io/coveralls/amphp/amp/master.svg?style=flat-square"></a>
<img src="https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square">
</p>
`amphp/amp` is a non-blocking concurrency framework for PHP. It provides an event loop, promises and streams as a base for asynchronous programming.
Amp is a non-blocking concurrency framework for PHP. It provides an event loop, promises and streams as a base for asynchronous programming.
Promises in combination with generators are used to build coroutines, which allow writing asynchronous code just like synchronous code, without any callbacks.
@ -14,7 +15,7 @@ Promises in combination with generators are used to build coroutines, which allo
This package can be installed as a [Composer](https://getcomposer.org/) dependency.
```bash
composer require amphp/amp ^2
composer require amphp/amp
```
## Requirements