https://github.com/antidot-framework/react-socket-server
Antidot Framework WAMP protocol based react socket server
https://github.com/antidot-framework/react-socket-server
Last synced: 4 months ago
JSON representation
Antidot Framework WAMP protocol based react socket server
- Host: GitHub
- URL: https://github.com/antidot-framework/react-socket-server
- Owner: antidot-framework
- License: bsd-2-clause
- Created: 2019-07-27T14:19:33.000Z (almost 6 years ago)
- Default Branch: 1.x.x
- Last Pushed: 2021-01-30T12:42:37.000Z (over 4 years ago)
- Last Synced: 2025-01-06T07:23:23.583Z (6 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Antidot React PHP Socket Server
[](https://scrutinizer-ci.com/g/antidot-framework/react-socket-server/?branch=master)
[](https://scrutinizer-ci.com/g/antidot-framework/react-socket-server/?branch=master)
[](https://scrutinizer-ci.com/g/antidot-framework/react-socket-server/build-status/master)
[](https://scrutinizer-ci.com/code-intelligence)Adapter that allows running a [WAMP protocol](https://wamp-proto.org) [socket server](http://socketo.me/docs/wamp) in
[Antidot Framework Applications](https://github.com/antidot-framework/antidot-starter).## Installation:
Using [composer package manager](https://getcomposer.org/download/)
````bash
composer require antidot-fw/react-socket-server:dev-master
````We have to add the config provider to the framework configuration to load the necessary dependencies, we make sure to
load it after the provider of the framework itself.````php
getMergedConfig();
````## Running socket server
We just need to run a console command and we'll have the server up and running.
````bash
bin/console serve:socket:wamp
````