-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |