Skip to content

Commit 9dccfba

Browse files
author
Chris Halbert
committed
master: Update readme and version.
1 parent 062659e commit 9dccfba

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ composer require phpbcc/phpbcc
3030
or manually add it to the require-dev section of your composer file.
3131

3232
{
33-
"require-dev": {
33+
"require-dev" : {
3434
"phpbcc/phpbcc": "*"
3535
}
3636
}
@@ -39,3 +39,15 @@ or manually add it to the require-dev section of your composer file.
3939
```
4040
> gitbcc --output-format=author reports/clover.xml
4141
```
42+
43+
## Sample Output
44+
```
45+
phpbcc version 1.0.0 by Chris Halbert
46+
47+
PHP BLAME CODE COVERAGE UNCOVERED OBJECTS (#/total) %
48+
49+
Chris Halbert (8/8) 100%
50+
FileNotFoundException.php:15, 16, 17, 18 (4/8) 50%
51+
AbstractInput.php:39, 76, 78 (3/8) 37.5%
52+
AuthorOutput.php:157 (1/8) 12.5%
53+
```

src/Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Application extends ConsoleApplication
2222
* Version of the application.
2323
* @const string
2424
*/
25-
const VERSION = '0.0.1';
25+
const VERSION = '1.0.0';
2626

2727
/**
2828
* Get the name of the command.

0 commit comments

Comments
 (0)