Skip to content

Commit c1bc2e0

Browse files
committed
Fix Composer installation error
1 parent baac494 commit c1bc2e0

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ WebSockets change log
33

44
## ?.?.? / ????-??-??
55

6+
## 0.2.0 / 2019-09-29
7+
8+
* Fixed *Skipped installation of bin bin/xp.xp-forge.web* error
9+
when installing with Composer
10+
(@thekid)
11+
612
## 0.1.0 / 2019-09-23
713

814
* Hello World! First release - @thekid

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@ var ws = new WebSocket('ws://localhost:8081/echo');
4242
ws.onmessage = (event) => console.log(event.data);
4343

4444
ws.send('Hello'); // Will log "You said: Hello" to the console
45-
```
45+
```
46+
47+
See also
48+
--------
49+
50+
* [WebSocket chat based on Redis queues](https://gist.github.com/thekid/7f11a62e0a57d18588694f058ebcc38a)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"require-dev" : {
1616
"xp-framework/unittest": "^9.0 | ^8.0 |^7.0"
1717
},
18-
"bin": ["bin/xp.xp-forge.web"],
18+
"bin": ["bin/xp.xp-forge.ws"],
1919
"autoload" : {
2020
"files" : ["src/main/php/autoload.php"]
2121
}

0 commit comments

Comments
 (0)