Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
dependencies updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorkmaz committed Jul 11, 2018
1 parent 76088b1 commit 444de38
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ sudo: false

php:
- 7.1
- 7.2

before_script:
- composer install -n

script:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- if [ $TRAVIS_PHP_VERSION >= '7.1' ]; then php vendor/bin/coveralls; fi
- if [ $TRAVIS_PHP_VERSION = '7.2' ]; then php vendor/bin/coveralls; fi

after_success:
- travis_retry php vendor/bin/coveralls -v
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
"require": {
"php": "^7.1",
"psr/container": "^1.0",
"selami/stdlib": "^1.3",
"selami/router": "^0.6",
"selami/views": "~0.6",
"zendframework/zend-diactoros": "^1.4",
"selami/stdlib": "^1.6",
"selami/router": "^0.7",
"selami/views": "~0.7",
"zendframework/zend-diactoros": "^1.8",
"zendframework/zend-servicemanager": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.2",
"satooshi/php-coveralls": "~1.0",
"phpunit/phpcov": "^4.0",
"phpunit/phpunit": "^7.2",
"php-coveralls/php-coveralls": "~1.0",
"phpunit/phpcov": "^5.0",
"squizlabs/php_codesniffer": "^2.9",
"symfony/http-foundation": "^3.3"
"symfony/http-foundation": "^3.4"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 1 addition & 6 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
Expand All @@ -33,11 +33,6 @@
<group>benchmark</group>
</exclude>
</groups>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
</logging>
Expand Down

0 comments on commit 444de38

Please sign in to comment.