SAPI Library written in PHP

dev-master 2021-02-10 13:09 UTC

This package is auto-updated.

Last update: 2024-04-10 20:21:47 UTC


README

Latest Stable Build Status Scrutinizer Coverage License

A SAPI Library written in PHP.

How to use?

$argv = ['foo', 'bar', '--baz'];
$sapi = new CLI($argv);

$input = $sapi->getInput();
$input->getArgs(); // ['foo', 'bar', '--baz']
$input->getArgsCount(); // 3
$input->read();
$input->readLine();
$input->readAll();

$output = $sapi->getOutput();
$output->write('My message...');

Installation

Install via Composer

Install Composer if you don't already have it present on your system.

To install the library, run the following command and you will get the latest version:

$ composer require secondtruth/sapi

Requirements

  • You must have at least PHP version 7.4 installed on your system.