From cbc3967fa1183c36ad24d251528e08349d89dcc0 Mon Sep 17 00:00:00 2001 From: Kirk Date: Thu, 9 May 2024 10:51:34 +1200 Subject: [PATCH] Added composer.json file --- composer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 composer.json 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"] +}