diff options
| author | Remi Collet <remi@remirepo.net> | 2026-04-29 16:38:23 +0200 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-04-29 16:38:23 +0200 |
| commit | bc7a8ea1f8a81cb0260eff4f894b5d6ebf518a3b (patch) | |
| tree | 5513ff37acb85023ef72098ae016f190a92c09b5 /composer.json | |
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 29 |
1 files changed, 29 insertions, 0 deletions
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 + } +} |
