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

CLI progress indicator for PHP.

1.0.0 2017-10-17 18:11 UTC

This package is not auto-updated.

Last update: 2020-01-24 17:20:58 UTC


README

loading

CLI progress indicator for PHP.

Build Status

Install

$ composer require troublete/load

Usage

<?php
require_once 'path/to/vendor/autoload.php';

use function Load\dots;

$current = 0;
dots(function () use (&$current) {			
	$current++;
	if ($current == 100) {
		return true;
	}
	return "$current%";
}, '✔ done.');

API

Functions

dots($checkClosure, $doneText)

Will run an indicator with dots.

Arguments

ℹ️ see function loop()

spinner($checkClosure, $doneText)

Will run an indicator with an rotating bar.

Arguments

ℹ️ see function loop()

emoji($checkClosure, $doneText)

Will run an indicator with some emoji hearts.

Arguments

ℹ️ see function loop()

sphere($checkClosure, $doneText)

Will run an indicator with an pulsating sphere.

Arguments

ℹ️ see function loop()

loop($frames, $checkClosure, $doneText)

Will run an indicator with frames given.

Arguments

Argument Type Description
$frames array Loopable frames of the loading animation in the best case all with same character length so the animation seems fluid.
$checkClosure callable A callable structure, that will get called in any tick of the loading spinner (frame call) to check if loading is done. If the function returns a string or numeric value, the value will get passed as text output to the right side of the loading indicator. If the return value is true the doneText will be rendered instead of the loading indicator (plus any message beside it). If the return value is false an fatal error will be triggered.
$doneText string A text that will be displayed if the $checkClosure returned true.

Related Packages

  • Cli - It's like meow, but for PHP.
  • Crayon - A simple functional PHP library for formatting string output.

License

GPL-2.0 © Willi Eßer