An open API service indexing awesome lists of open source software.

https://github.com/fabiang/lzw

Compression library for Lempel–Ziv–Welch (LZW) for PHP
https://github.com/fabiang/lzw

Last synced: 3 months ago
JSON representation

Compression library for Lempel–Ziv–Welch (LZW) for PHP

Awesome Lists containing this project

README

          

# fabiang/lzw [![Build Status](https://travis-ci.org/fabiang/lzw.png)](https://travis-ci.org/fabiang/lzw) [![Scrutinizer Quality Score](https://scrutinizer-ci.com/g/fabiang/lzw/badges/quality-score.png?s=77141956b08182d4afb8f300a129b947ad4fb168)](https://scrutinizer-ci.com/g/fabiang/lzw/) [![Code Coverage](https://scrutinizer-ci.com/g/fabiang/lzw/badges/coverage.png?s=e03b7b7e4b57606401a23fcad97f79f8dfd97c96)](https://scrutinizer-ci.com/g/fabiang/lzw/)

Compression library for Lempel–Ziv–Welch (LZW) for PHP. Read more [about LZW on Wikipedia](http://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Welch).

This library supports mulit-byte encodings and is **work in progress**.

## SYSTEM REQUIREMENTS

- PHP 5.3
- ext-mbstring - for handling multibyte string (should be available on most systems)

## LICENCE

BSD-2-Clause. See the [LICENCE](LICENCE.md).

## INSTALLATION

New to Composer? Read the [introduction](https://getcomposer.org/doc/00-intro.md#introduction). Add the following to your composer file:

{
"require": {
"fabiang/lzw": "*"
}
}