From bc7a8ea1f8a81cb0260eff4f894b5d6ebf518a3b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 29 Apr 2026 16:38:23 +0200 Subject: new package --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9f87341 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "iliaal/statgrab", + "type": "php-ext", + "description": "PHP extension wrapping libstatgrab, the cross-platform system-statistics library. CPU, memory, disk I/O, filesystems, network interfaces, processes, users.", + "keywords": ["system", "monitoring", "statistics", "libstatgrab", "php-extension", "pie", "pecl"], + "license": "PHP-3.01", + "homepage": "https://github.com/iliaal/statgrab", + "authors": [ + { + "name": "Ilia Alshanetsky", + "email": "ilia@ilia.ws" + } + ], + "require": { + "php": ">=8.0" + }, + "php-ext": { + "extension-name": "statgrab", + "configure-options": [ + { + "name": "with-statgrab", + "description": "Enable libstatgrab support (use =bundled for the vendored, leak-fixed copy)", + "needs-value": false + } + ], + "support-zts": false, + "support-nts": true + } +} -- cgit