diff --git a/.scrutinizer.yml b/.scrutinizer.yml index e6da1f6..bd087f5 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -8,5 +8,10 @@ filter: - test/* - vendor/* +build: + environment: + php: + version: 7.2 + before_commands: - - composer install --prefer-source \ No newline at end of file + - composer install --prefer-source diff --git a/.travis.yml b/.travis.yml index 14dee81..f1f23ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,16 @@ language: php php: - - 5.5 - 5.6 - 7.0 - 7.1 + - 7.2 + - 7.3 -install: +install: - composer install -script: +script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_script: diff --git a/README.md b/README.md index f4c0083..e3db59d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ [![Build Status](https://travis-ci.org/dshovchko/php_EasyPay.svg?branch=master)](https://travis-ci.org/dshovchko/php_EasyPay) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/dshovchko/php_EasyPay/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/dshovchko/php_EasyPay/?branch=master) [![Coverage Status](https://coveralls.io/repos/github/dshovchko/php_EasyPay/badge.svg?branch=master)](https://coveralls.io/github/dshovchko/php_EasyPay?branch=master) -![Tested Status](https://php-eye.com/badge/dshovchko/php_easypay/tested.svg) php_EasyPay =========== diff --git a/composer.json b/composer.json index 7b9d614..d72f564 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ }, "require-dev": { "phpunit/phpunit": "^4.8", - "satooshi/php-coveralls": "dev-master" + "php-coveralls/php-coveralls": "2.2.x-dev" }, "autoload": { "psr-4": { @@ -33,4 +33,4 @@ "EasyPayTest\\": "test/" } } -} \ No newline at end of file +}