Skip to content

Commit

Permalink
badges
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis committed Apr 22, 2021
1 parent 9faa5d8 commit 3f9bdb3
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
# @link https://github.com/JBZoo/Retry
#

/build export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.phpstorm.meta.php export-ignore
/.travis.yml export-ignore
/phpunit.xml.dist export-ignore

* text eol=lf

# (binary is a macro for -text -diff)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# JBZoo / Retry

[![Build Status](https://travis-ci.org/JBZoo/Retry.svg)](https://travis-ci.org/JBZoo/Retry) [![Coverage Status](https://coveralls.io/repos/JBZoo/Retry/badge.svg)](https://coveralls.io/github/JBZoo/Retry) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Retry/coverage.svg)](https://shepherd.dev/github/JBZoo/Retry)
[![Build Status](https://travis-ci.org/JBZoo/Retry.svg)](https://travis-ci.org/JBZoo/Retry) [![Coverage Status](https://coveralls.io/repos/JBZoo/Retry/badge.svg)](https://coveralls.io/github/JBZoo/Retry) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Retry/coverage.svg)](https://shepherd.dev/github/JBZoo/Retry) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jbzoo/retry/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jbzoo/retry/?branch=master) [![CodeFactor](https://www.codefactor.io/repository/github/jbzoo/retry/badge)](https://www.codefactor.io/repository/github/jbzoo/retry/issues) [![PHP Strict Types](https://img.shields.io/badge/strict__types-%3D1-brightgreen)](https://www.php.net/manual/en/language.types.declarations.php#language.types.declarations.strict)
[![Stable Version](https://poser.pugx.org/jbzoo/retry/version)](https://packagist.org/packages/jbzoo/retry) [![Latest Unstable Version](https://poser.pugx.org/jbzoo/retry/v/unstable)](https://packagist.org/packages/jbzoo/retry) [![Dependents](https://poser.pugx.org/jbzoo/retry/dependents)](https://packagist.org/packages/jbzoo/retry/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/jbzoo/retry)](https://github.com/JBZoo/Retry/issues) [![Total Downloads](https://poser.pugx.org/jbzoo/retry/downloads)](https://packagist.org/packages/jbzoo/retry/stats) [![GitHub License](https://img.shields.io/github/license/jbzoo/retry)](https://github.com/JBZoo/Retry/blob/master/LICENSE)


Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
},

"require-dev" : {
"jbzoo/toolbox-dev" : "^2.6.2",
"jbzoo/jbdump" : ">=1.5.4"
"jbzoo/toolbox-dev" : "^2.10.0",
"jbzoo/jbdump" : ">=1.5.6"
},

"autoload" : {
Expand Down
12 changes: 12 additions & 0 deletions tests/RetryReadmeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,16 @@ class RetryReadmeTest extends AbstractReadmeTest
* @var string
*/
protected $packageName = 'Retry';

/**
* @inheritDoc
*/
protected function setUp(): void
{
parent::setUp();

$this->params['scrutinizer'] = true;
$this->params['codefactor'] = true;
$this->params['strict_types'] = true;
}
}

0 comments on commit 3f9bdb3

Please sign in to comment.