diff --git a/.gitignore b/.gitignore index f1631981..9a5e54b5 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ extension/tests/*.log extension/tests/*.php support/libxhprof/.phutil_module_cache + +/composer.lock +/vendor diff --git a/composer.json b/composer.json index 037bbfd0..d986efb9 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "facebook/xhprof", + "name": "pbweb/xhprof", "type": "library", "description": "XHProf: A Hierarchical Profiler for PHP", "keywords": ["profiling", "performance"], @@ -14,5 +14,14 @@ "xhprof_lib/utils/xhprof_runs.php" ] }, - "bin": ["bin/xhprofile"] + "bin": ["bin/xhprofile"], + "replace": { + "facebook/xhprof": "*", + "lox/xhprof": "*" + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } }