Download the PHP package nafisc/ansi-util without Composer

On this page you can find all versions of the php package nafisc/ansi-util. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package ansi-util

PHP ANSI Utility

Allows you to create ANSI strings with ease in PHP.

StyleCI Total Downloads Latest Stable Version Latest Unstable Version License

Java Java Version: See here

Usage

Note: It is not guaranteed that all of these ANSI codes will work on all terminals. See here for a list of compatible terminals.

Result

\Ansi\StringBuilder

Note: Each of these functions takes an optional string parameter which will be added immediately after the ANSI code is applied. They also all follow the Fluent Design Pattern. The string builder itself implements the __toString magic method, and as such can be treated as a string.

Method Result
bold() Sets the bold flag.
dim() Sets the dim flag.
underline() Sets the underline flag.
blink() Sets the blink flag.
invertColor() Set the invert colors flag.
hide() Sets the hidden flag.
reset() Resets all colors and flags to default.
resetBold() Resets the bold flag.
resetDim() Resets the dim flag.
resetUnderline() Sets the underline flag.
resetBlink() Resets the blink flag.
resetInvertColors() Resets the invert colors flag.
resetHidden() Resets the hidden flag.
color16(int) Sets the current 16-bit foreground or background color. (See \Ansi\Color16)
color256(int) Sets the current 256-bit color. (See here for a list of color codes.)
backgroundColor256(int) Sets the current 256-bit background color. (See here for a list of color codes.)

Utility Methods

Method Result
raw(string) Adds a raw string.
ansi(value) Escapes and appends a custom ANSI value.
stripAnsi() Removes all ANSI sequences from the StringBuilder.
empty() Empties out the StringBuilder.

\Ansi\Color16

The Color16 class is a utility class for 16-bit color codes.

Note: Each of these constants needs to be prefixed with either FG_ when using it as a foreground color or BG_ when using it as a background color.


All versions of ansi-util with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nafisc/ansi-util contains the following files

Loading the files please wait ....