diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..be2aee4b --- /dev/null +++ b/composer.json @@ -0,0 +1,18 @@ +{ + "name": "longxinh/xhprof", + "type": "library", + "description": "XHProf: A Hierarchical Profiler for PHP", + "keywords": ["profiling", "performance"], + "homepage": "http://pecl.php.net/package/xhprof", + "license": "Apache-2.0", + "require": { + "php": ">=7.2.0" + }, + "autoload": { + "files": [ + "xhprof_lib/utils/xhprof_lib.php", + "xhprof_lib/utils/xhprof_runs.php" + ] + }, + "bin": ["bin/xhprofile"] +}