Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 6 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,16 @@ This package requires a user, but not necessarily a paid account, on
Code Climate, so if you don't have one the first step is to signup at:
https://codeclimate.com.

To install php-test-reporter with Composer first add the following to
your composer.json file:
To install php-test-reporter with Composer run the following command.

**composer.json**

```javascript
{
"require-dev": {
"codeclimate/php-test-reporter": "dev-master"
}
}
```

Then, run:

```
$ php composer.phar install --dev
```shell
composer require codeclimate/php-test-reporter --dev
```

If adding the test-reporter to an existing project, run:
This will get you the latest version of the reporter and install it. If you do want the master, untagged, version you may use the command below:

```
$ php composer.phar update codeclimate/php-test-reporter --dev
```shell
composer require codeclimate/php-test-reporter:@dev --dev
```

## Usage
Expand Down