1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
Go to file
2017-05-04 08:44:44 +02:00
docs Add notes about timer drift, fixes #80 2017-05-03 15:50:03 +02:00
examples Add asyncCall 2017-05-03 15:21:49 +02:00
lib Add asyncCall 2017-05-03 15:21:49 +02:00
test Increase repeat watcher to make test failure more unlikely 2017-05-03 22:21:57 +02:00
travis Make travis scripts executable 2017-04-24 15:27:04 +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
.php_cs.dist Revert to assertEquals where order might be different, remove strict rule 2017-04-24 16:28:56 +02:00
.travis.yml Fix phpcov executable 2017-04-26 22:30:44 +02:00
CHANGELOG.md Improve changelog formatting 2016-05-12 16:49:46 +02:00
composer.json Update php-cs-fixer to version 2 and upgrade rules 2017-04-24 16:22:02 +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 Disable coverage by default, increase timeout for signal test 2017-03-25 21:47:30 +01: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.