From ce0c3a57ec1a1ee932b03a98bb9c5c166b93dcd8 Mon Sep 17 00:00:00 2001 From: Bruce Weirdan Date: Sat, 10 Apr 2021 02:49:39 +0300 Subject: [PATCH] Update README --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ba3204d..24a1cac 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,22 @@ -[![linux build](https://img.shields.io/travis/weirdan/run-without-xdebug/master.svg?label=linux+build)](https://travis-ci.org/weirdan/run-without-xdebug) +[![CI](https://github.com/weirdan/run-without-xdebug/actions/workflows/ci.yml/badge.svg)](https://github.com/weirdan/run-without-xdebug/actions/workflows/ci.yml) ![license](https://img.shields.io/github/license/weirdan/run-without-xdebug.svg) ![php](https://img.shields.io/packagist/php-v/weirdan/run-without-xdebug.svg?colorB=8892BF&label=php) # Intro -This is a simple CLI utility to run any PHP script with XDebug disabled. XDebug, while providing many useful features, results in considerable performance hit. This is especially useful to run big unit test suites when you *don't* need code coverage (like, when fixing a bug). + +This is a simple CLI utility to run any PHP script with XDebug disabled. +XDebug, while providing many useful features, results in considerable +performance hit. This is especially useful to run big unit test suites when you +*don't* need code coverage (like, when fixing a bug). # Installation -``` + +```sh composer global require weirdan/run-without-xdebug:@dev ``` # Usage -``` + +```sh php-noxdebug `which phpunit` --testdox ```