https://github.com/ortic/phpsocket.io
Socket.IO php server side alternative
https://github.com/ortic/phpsocket.io
Last synced: 5 months ago
JSON representation
Socket.IO php server side alternative
- Host: GitHub
- URL: https://github.com/ortic/phpsocket.io
- Owner: ortic
- License: mit
- Fork: true (RickySu/phpsocket.io)
- Created: 2015-06-03T11:22:31.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-03T11:41:57.000Z (about 11 years ago)
- Last Synced: 2024-03-15T09:21:14.720Z (over 2 years ago)
- Language: PHP
- Homepage:
- Size: 208 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHPSocket.io
[](https://travis-ci.org/RickySu/phpsocket.io)
socket.io php server side alternative.
## Install
The recommended way to install phpsocket.io is [through composer](http://getcomposer.org).
```JSON
{
"require": {
"rickysu/phpsocket.io": "dev-master"
}
}
```
## What is it?
PHPSocket.io is a socket.io php server side alternative.
The event loop is based on pecl event extension.
http://php.net/manual/en/book.event.php
## Requirement
pecl/event
## Usage
see example/*
## Tests
To run the test suite, you need install the dependencies via composer, then
run PHPUnit.
$ composer install
$ phpunit
## License
MIT, see LICENSE.
## TODO
* add more session handler support.
* event queue.
* more tests.