From a324da27606205f36e645372d1ffbd5f89901281 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 15 Sep 2025 06:43:54 +0200 Subject: update to 1.1.4 (no change) drop patch merged upstream --- composer.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..1e074c8 --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "$schema": "https://getcomposer.org/schema.json", + "name": "codemasher/php-ext-xz", + "description": "A PHP Extension providing xz (LZMA2) compression/decompression via PHP streams.", + "keywords": ["php-extension", "xz", "lzma2"], + "license": "PHP-3.01", + "type": "php-ext", + "php-ext": { + "extension-name": "xz", + "priority": 99 + }, + "authors": [ + { + "name": "deniyuda348" + }, + { + "name": "udan11", + "homepage": "https://github.com/udan11/php-xz" + }, + { + "name": "smiley", + "email": "smiley@chillerlan.net", + "homepage": "https://github.com/codemasher" + }, + { + "name": "Contributors", + "homepage":"https://github.com/codemasher/php-ext-xz/graphs/contributors" + } + ], + "funding": [ + { + "type": "Ko-Fi", + "url": "https://ko-fi.com/codemasher" + } + ], + "homepage": "https://github.com/codemasher/php-ext-xz", + "support": { + "issues": "https://github.com/codemasher/php-ext-xz/issues", + "source": "https://github.com/codemasher/php-ext-xz" + } +} -- cgit