[PECL-CVS] [pecl-file_formats-lzf] master: add composer.json for packagist
[email protected] (Remi Collet) Fri, 20 Mar 2026 09:45:27 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Remi Collet (remicollet)
Date: 2026-03-20T10:45:19+01:00
Commit: https://github.com/php/pecl-file_formats-lzf/commit/8d7da904b89e5519cebd97e59060e97219665336
Raw diff: https://github.com/php/pecl-file_formats-lzf/commit/8d7da904b89e5519cebd97e59060e97219665336.diff
add composer.json for packagist
Changed paths:
A composer.json
Diff:
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"
+ }
+ ]
+ }
+}