faytekin / lzw
Compression library for Lempel–Ziv–Welch (LZW) for PHP
Installs: 1 295
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=7.2
- ext-mbstring: *
Requires (Dev)
- phpunit/phpunit: ^8.0 || ^9.0
README
Using this package, you may encode string data with Lempel–Ziv–Welch (LZW) algorithm and decode back.
System Requirements
- PHP >=7.2|^8.0
- ext-mbstring - for handling multibyte string (should be available on most systems)
Installation
You can install this package via composer:
composer require faytekin/lzw
Or add the following to your composer file:
{
"require": {
"faytekin/lzw": "^1.0"
}
}