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
- Host: GitHub
- URL: https://github.com/fabiang/lzw
- Owner: fabiang
- License: other
- Created: 2014-02-03T16:55:49.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-07T18:37:06.000Z (almost 12 years ago)
- Last Synced: 2023-03-11T05:34:35.080Z (almost 3 years ago)
- Language: PHP
- Size: 156 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fabiang/lzw [](https://travis-ci.org/fabiang/lzw) [](https://scrutinizer-ci.com/g/fabiang/lzw/) [](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": "*"
}
}