This package is abandoned and no longer maintained. No replacement package was suggested.

Helpful wrapper for input/output tasks

1.0.0 2020-11-24 18:57 UTC

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