diff options
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 + } +} |
