v0.2.0
版本发布时间: 2015-05-17 19:44:50
clue/reactphp-stdio最新发布版本:v2.6.0(2022-03-18 23:13:45)
- Feature: Support echo replacements (asterisk for password prompts) (#11)
$stdio->getReadline()->setEcho('*');
- Feature: Add accessors for text input buffer and current cursor position (#8 and #9)
$stdio->getReadline()->setInput('hello');
$stdio->getReadline()->getCursorPosition();
- Feature: All setters now return self to allow easy method chaining (#7)
$stdio->getReadline()->setPrompt('Password: ')->setEcho('*')->setInput('secret');