From d4089ee59f89b51f2995e1d175208bc8e1bb7e58 Mon Sep 17 00:00:00 2001 From: sji Date: Mon, 28 Mar 2022 13:45:05 +0900 Subject: [PATCH] Remove downloads badge and change the order of the Installation section This currently doesn't reflect actual downloads, because number of people install this tool via composer is much lower than those who clone directly from GitHub. --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6f7c3963..5f071c7b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Reli ![Minimum PHP version: 8.0.0](https://img.shields.io/badge/php-8.0.0%2B-blue.svg) [![Packagist](https://img.shields.io/packagist/v/sj-i/php-profiler.svg)](https://packagist.org/packages/sj-i/php-profiler) -[![Packagist](https://img.shields.io/packagist/dt/sj-i/php-profiler.svg)](https://packagist.org/packages/sj-i/php-profiler) [![Github Actions](https://github.com/sj-i/php-profiler/workflows/build/badge.svg)](https://github.com/sj-i/php-profiler/actions) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/sj-i/php-profiler/badges/quality-score.png?b=0.5.x)](https://scrutinizer-ci.com/g/sj-i/php-profiler/?branch=0.5.x) [![Coverage Status](https://coveralls.io/repos/github/sj-i/php-profiler/badge.svg?branch=0.5.x)](https://coveralls.io/github/sj-i/php-profiler?branch=0.5.x) @@ -75,18 +74,18 @@ Much of what can be done with phpspy will be done with reli in the future. On targeting ZTS, the target process must load libpthread.so, and also you must have unstripped binary of the interpreter and the libpthread.so, to find EG from the TLS. ## Installation -### From Git +### From Composer ```bash -git clone git@github.com:reliforp/reli-prof.git +composer create-project reliforp/reli-prof cd reli -composer install ./reli ``` -### From Composer +### From Git ```bash -composer create-project reliforp/reli-prof +git clone git@github.com:reliforp/reli-prof.git cd reli +composer install ./reli ```