PHP bindings for Boost.Asio
This repository has been archived on 2018-04-01. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
CismonX 9f3a47020d
archive
2018-04-01 16:35:05 +08:00
src archive 2018-04-01 16:35:05 +08:00
stubs archive 2018-04-01 16:35:05 +08:00
tests archive 2018-04-01 16:35:05 +08:00
.travis.yml archive 2018-04-01 16:35:05 +08:00
LICENSE archive 2018-04-01 16:35:05 +08:00
README.md archive 2018-04-01 16:35:05 +08:00
config.m4 archive 2018-04-01 16:35:05 +08:00

README.md

php-asio

Travis-CI MIT license

1. About

This extension is a PHP wrapper for the Boost.Asio library, which provides a high-performance event-driven model for network I/O.

Now php-asio is in development, do not use it in production.

Bug reports and pull requests are welcome.

2. Documentation

See the Wiki page for documentation.

Signatures of classes and functions can be found within stubs/ directory, with PHPDoc.

There are also some test cases in the tests/ directory.

3. TODO list

  • Fix memory leak. (Priority: high)
  • Multi-threading support. (Priority: medium)
  • Add support for serial ports. (Priority: low)
  • Add socket onReadable() onWritable() onError() methods (with Boost version 1.66 and above). (Priority: low)
  • Add support for Windows. (Priority: low)