diff options
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..8d80697 --- /dev/null +++ b/composer.json @@ -0,0 +1,24 @@ +{ + "name": "pecl/lzf", + "type": "php-ext", + "license": "PHP-3.01", + "description": "LZF compression", + "require": { + "php": ">= 7.2.0" + }, + "php-ext": { + "extension-name": "lzf", + "configure-options": [ + { + "name": "enable-lzf", + "description": "Enable lzf support" + }, { + "name": "enable-lzf-better-compression", + "description": "Sacrifice speed in favour of compression ratio" + }, { + "name": "with-liblzf", + "description": "Use system liblzf" + } + ] + } +} |
