Skip to content

Commit 26d80b5

Browse files
committed
Remove Scrutinizer test coverage report (it needs another Composer dependency only for that)
1 parent c43275f commit 26d80b5

File tree

4 files changed

+7
-19
lines changed

4 files changed

+7
-19
lines changed

.semver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 1
33
:minor: 0
4-
:patch: 1
4+
:patch: 2
55
:special: ''

.travis.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ sudo: false
55
php:
66
- '7.0'
77

8-
9-
## Cache composer
108
cache:
119
directories:
1210
- $HOME/.composer/cache
@@ -22,10 +20,3 @@ script:
2220
- composer lint
2321
- composer style
2422
- composer phpunit
25-
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
26-
27-
addons:
28-
code_climate:
29-
repo_token: e59094d28d3a03cedb906f90fd2a454e37282ff6065f61f33773922a6ccf8e56
30-
31-

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Latest Version on Packagist][ico-version]][link-packagist]
44
[![Software License][ico-license]](LICENSE.md)
55
[![Build Status][ico-travis]][link-travis]
6-
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
76
[![Quality Score][ico-code-quality]][link-code-quality]
87
[![Total Downloads][ico-downloads]][link-downloads]
98

@@ -15,13 +14,13 @@ It could be useful if you want to start from scratch a kata or a little exercise
1514

1615
## How To Start
1716

18-
0. If you don't have it already, [install Composer](https://getcomposer.org/download/).
19-
1. Create your project based on this bootstrap repo: `composer create-project codelytv/php-bootstrap your-kata-name`.
20-
2. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands:
17+
1. If you don't have it already, [install Composer](https://getcomposer.org/download/).
18+
2. Create your project based on this bootstrap repo: `composer create-project codelytv/php-bootstrap your-kata-name`.
19+
3. Run all the checks: `composer test`. This will do some checks that you can perform with isolated commands:
2120
1. [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint): `composer lint`.
2221
2. [PHP Style Check](https://github.com/squizlabs/PHP_CodeSniffer): `composer style`. If you want to fix style issues automatically: `composer fix-style`.
2322
3. [PHP Unit](https://phpunit.de/): `composer phpunit`.
24-
3. Start coding!
23+
4. Start coding!
2524

2625
## Helpful resources
2726

@@ -63,13 +62,11 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
6362
[ico-version]: https://img.shields.io/packagist/v/codelytv/php-bootstrap.svg?style=flat-square
6463
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
6564
[ico-travis]: https://img.shields.io/travis/CodelyTV/php-bootstrap/master.svg?style=flat-square
66-
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/CodelyTV/php-bootstrap.svg?style=flat-square
6765
[ico-code-quality]: https://img.shields.io/scrutinizer/g/CodelyTV/php-bootstrap.svg?style=flat-square
6866
[ico-downloads]: https://img.shields.io/packagist/dt/codelytv/php-bootstrap.svg?style=flat-square
6967

7068
[link-packagist]: https://packagist.org/packages/codelytv/php-bootstrap
7169
[link-travis]: https://travis-ci.org/CodelyTV/php-bootstrap
72-
[link-scrutinizer]: https://scrutinizer-ci.com/g/CodelyTV/php-bootstrap/code-structure
7370
[link-code-quality]: https://scrutinizer-ci.com/g/CodelyTV/php-bootstrap
7471
[link-downloads]: https://packagist.org/packages/codelytv/php-bootstrap
7572
[link-author]: https://github.com/CodelyTV

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codelytv/php-bootstrap",
33
"description": "Starting point if you want to bootstrap a project in PHP.",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"type": "project",
66
"keywords": [
77
"bootstrap",
@@ -10,7 +10,7 @@
1010
"boilerplate"
1111
],
1212
"homepage": "http://codely.tv",
13-
"time": "2016-09-15",
13+
"time": "2016-09-18",
1414
"license": "MIT",
1515
"authors": [
1616
{

0 commit comments

Comments
 (0)