Skip to content

PHP bindings for the shoco string compressor

License

Notifications You must be signed in to change notification settings

jbboehr/php-shoco

Repository files navigation

php-shoco

ci Coverage Status License

PHP bindings for shoco.

Installation

phpize
./configure
make
make test
sudo make install

Usage

$input = 'foo';
$compressed = shoco_compress($input);
$uncompressed = shoco_uncompress($compressed);

License

This project is licensed under the AGPLv3.0 or later.