1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
Go to file
2017-05-26 21:50:56 +02:00
docs Update documentation share 2017-05-26 21:50:56 +02:00
examples Add asyncCall 2017-05-03 15:21:49 +02:00
lib Implement NullCancellationToken 2017-05-24 10:34:54 +02:00
test Fix issues with interval = 0 repeat watchers, fixes #131 2017-05-23 19:46:23 +02:00
travis Do not use verbose extraction output when installing UV 2017-05-26 12:29:34 +02:00
.editorconfig Update php-cs-fixer to version 2 and upgrade rules 2017-04-24 16:22:02 +02:00
.gitattributes Fix example → examples in Git attributes 2017-04-16 21:58:11 +02:00
.gitignore Added further Internal\Producer tests 2017-05-02 18:10:10 +02:00
.gitmodules Update submodule to https 2017-05-26 20:04:45 +02:00
.php_cs.dist Revert to assertEquals where order might be different, remove strict rule 2017-04-24 16:28:56 +02:00
.travis.yml Disable xdebug completely for Travis 2017-05-26 11:42:25 +02:00
CHANGELOG.md Add changelog for 2.0.0, fixes #92 2017-05-04 17:27:50 +02:00
composer.json Add 'event-loop' keyword to composer.json 2017-05-09 12:31:17 +02:00
CONTRIBUTING.md update contributing file 2015-07-22 00:24:48 -04:00
LICENSE Fix copyright dates 2017-03-12 12:38:18 +01:00
Makefile Add Makefile that automatically setups, runs tests and checks code style 2017-05-04 08:44:44 +02:00
phpunit.xml.dist Fix potential issues when operating on destroyed uv handles in shutdown sequence 2017-05-16 18:17:12 +02:00
README.md Update managing-concurrency to v2, updating the docs for helpers still outstanding, fixes #78 2017-03-13 15:49:25 +01:00

amp

Build Status CoverageStatus Unstable v2 License

amphp/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.

Installation

This package can be installed as a Composer dependency.

composer require amphp/amp ^2@dev

Requirements

  • PHP 7.0+
Optional Extension Backends

Extensions are only needed if your app necessitates a high numbers of concurrent socket connections.

Documentation

Documentation is bundled within this repository in the ./docs directory.

Versioning

amphp/amp follows the semver semantic versioning specification like all other amphp packages.

Compatible Packages

Compatible packages should use the amphp topic on GitHub.

Security

If you discover any security related issues, please email bobwei9@hotmail.com or me@kelunik.com instead of using the issue tracker.

License

The MIT License (MIT). Please see LICENSE for more information.