File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.3.1 (2015-11-26)
4
+
5
+ * Fix: Support calling ` Readline::setInput() ` during ` line ` event
6
+ (#28 )
7
+
8
+ ``` php
9
+ $stdio->on('line', function ($line) use ($stdio) {
10
+ $stdio->getReadline()->setInput($line . '!');
11
+ });
12
+ ```
13
+
3
14
## 0.3.0 (2015-05-18)
4
15
5
16
* Feature: Support multi-byte UTF-8 characters and account for cell width
Original file line number Diff line number Diff line change @@ -263,17 +263,15 @@ $stdin = $stdio->getInput();
263
263
264
264
## Install
265
265
266
- The recommended way to install this library is [ through composer ] ( https://getcomposer.org ) .
267
- [ New to composer ?] ( https://getcomposer.org/doc/00-intro.md )
266
+ The recommended way to install this library is [ through Composer ] ( https://getcomposer.org ) .
267
+ [ New to Composer ?] ( https://getcomposer.org/doc/00-intro.md )
268
268
269
- ``` JSON
270
- {
271
- "require" : {
272
- "clue/stdio-react" : " ~0.3.0"
273
- }
274
- }
269
+ ``` bash
270
+ $ composer require clue/stdio-react:~ 0.3.0
275
271
```
276
272
273
+ More details and upgrade guides can be found in the [ CHANGELOG] ( CHANGELOG.md ) .
274
+
277
275
## License
278
276
279
277
MIT
You can’t perform that action at this time.
0 commit comments