File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ to more sophisticated solution.
1717
1818## Installation
1919
20- Clone or download the repository to your server.
20+ Clone or download the repository to your server. The package is also installable via composer running the following
21+ command:
22+
23+ ` composer require bloatless/php-websocket `
2124
2225### Requirements
2326
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " bloatless/php-websocket" ,
3+ "description" : " A simple WebSocket Server and Client implementation in PHP." ,
4+ "keywords" : [
5+ " php" ,
6+ " websockets" ,
7+ " websocket-server" ,
8+ " bloatless"
9+ ],
10+ "license" : " MIT" ,
11+ "homepage" : " https://bloatless.org" ,
12+ "authors" : [
13+ {
14+ "name" : " Simon Samtleben" ,
15+ 16+ }
17+ ],
18+ "autoload" : {
19+ "psr-4" : {
20+ "Bloatless\\ WebSocket\\ " : " src/"
21+ }
22+ },
23+ "require" : {
24+ "php" : " ^7.2" ,
25+ }
26+ }
You can’t perform that action at this time.
0 commit comments