consolly / io
Helpful wrapper for input/output tasks
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/consolly/io
This package is not auto-updated.
Last update: 2025-06-18 16:32:11 UTC
README
Package for working with input/output tasks
Install
composer require consolly/io
How to use
use Consolly\IO\Error\Err; use Consolly\IO\Input\In; use Consolly\IO\Output\Out; Out::write('text'); // Write to stdout thread Err::write('error text'); // Write to stderr thread In::read(); // It will read stdin thread and return data