diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index cd72c0f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,40 +0,0 @@ -# -# JBZoo Toolbox - Data -# -# This file is part of the JBZoo Toolbox project. -# For the full copyright and license information, please view the LICENSE -# file that was distributed with this source code. -# -# @package Data -# @license MIT -# @copyright Copyright (C) JBZoo.com, All rights reserved. -# @link https://github.com/JBZoo/Data -# - -language: php -os: linux -dist: xenial - -git: - depth: false - -php: - - 7.2 - - 7.3 - - 7.4 - - 8.0 - -env: - matrix: - - JBZOO_COMPOSER_UPDATE_FLAGS="--prefer-lowest --prefer-stable" - - JBZOO_COMPOSER_UPDATE_FLAGS="" - -before_script: - - composer self-update - -script: - - make update --no-print-directory - - make test-all --no-print-directory - -after_script: - - make report-coveralls diff --git a/README.md b/README.md index 09a1f64..39b7c90 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # JBZoo / Data -[![Build Status](https://travis-ci.org/JBZoo/Data.svg?branch=master)](https://travis-ci.org/JBZoo/Data) [![Coverage Status](https://coveralls.io/repos/JBZoo/Data/badge.svg)](https://coveralls.io/github/JBZoo/Data) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Data/coverage.svg)](https://shepherd.dev/github/JBZoo/Data) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jbzoo/data/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jbzoo/data/?branch=master) [![CodeFactor](https://www.codefactor.io/repository/github/jbzoo/data/badge)](https://www.codefactor.io/repository/github/jbzoo/data/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) +[![Coverage Status](https://coveralls.io/repos/JBZoo/Data/badge.svg)](https://coveralls.io/github/JBZoo/Data) [![Psalm Coverage](https://shepherd.dev/github/JBZoo/Data/coverage.svg)](https://shepherd.dev/github/JBZoo/Data) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jbzoo/data/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jbzoo/data/?branch=master) [![CodeFactor](https://www.codefactor.io/repository/github/jbzoo/data/badge)](https://www.codefactor.io/repository/github/jbzoo/data/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/data/version)](https://packagist.org/packages/jbzoo/data) [![Latest Unstable Version](https://poser.pugx.org/jbzoo/data/v/unstable)](https://packagist.org/packages/jbzoo/data) [![Dependents](https://poser.pugx.org/jbzoo/data/dependents)](https://packagist.org/packages/jbzoo/data/dependents?order_by=downloads) [![GitHub Issues](https://img.shields.io/github/issues/jbzoo/data)](https://github.com/JBZoo/Data/issues) [![Total Downloads](https://poser.pugx.org/jbzoo/data/downloads)](https://packagist.org/packages/jbzoo/data/stats) [![GitHub License](https://img.shields.io/github/license/jbzoo/data)](https://github.com/JBZoo/Data/blob/master/LICENSE) diff --git a/composer.json b/composer.json index 28cf2a9..a39a244 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ }, "require-dev" : { - "jbzoo/toolbox-dev" : "^2.13.1", + "jbzoo/toolbox-dev" : "^3.1.0", "jbzoo/utils" : "^4.4.0", "symfony/yaml" : "^4.4|^5.0" }, diff --git a/tests/DataReadmeTest.php b/tests/DataReadmeTest.php index c45f988..b866a7c 100644 --- a/tests/DataReadmeTest.php +++ b/tests/DataReadmeTest.php @@ -36,17 +36,6 @@ protected function setUp(): void $this->params['scrutinizer'] = true; $this->params['codefactor'] = true; $this->params['strict_types'] = true; - } - - /** - * @return string|null - */ - protected function checkBadgeTravis(): ?string - { - return $this->getPreparedBadge($this->getBadge( - 'Build Status', - 'https://travis-ci.org/__VENDOR_ORIG__/__PACKAGE_ORIG__.svg?branch=master', - 'https://travis-ci.org/__VENDOR_ORIG__/__PACKAGE_ORIG__' - )); + $this->params['travis'] = false; } }