Skip to content

Commit

Permalink
Merge 49a25c0 into 370bcc4
Browse files Browse the repository at this point in the history
  • Loading branch information
wallin committed Jun 27, 2018
2 parents 370bcc4 + 49a25c0 commit cd6b7f6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -9,7 +9,7 @@ script:
- mkdir -p build/logs
- php vendor/bin/phpunit -c phpunit.xml
after_script:
- php vendor/bin/coveralls -v
- php vendor/bin/php-coveralls -v
notifications:
slack:
secure: d6VHA/1HeSMhxNJSKwm0SisupkIw+BP3y97IUp8wCdLaLO5y7fIRF7g35cZbbzMOTaFYUIXabfPuyzCTA1+1JvbgbJ8ykr2/g8LmThe5MXxLvMXtKH2A/qCmQ0TGZ7rMRxjAm14X28920n1vyc+bu5McMZsOnKnACz/SmTnrbKs=
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/castle/castle-php.png)](https://travis-ci.org/castle/castle-php)
[![Code Climate](https://codeclimate.com/github/castle/castle-php.png)](https://codeclimate.com/github/castle/castle-php)
[![Coverage Status](https://coveralls.io/repos/castle/castle-php/badge.png?branch=master)](https://coveralls.io/r/castle/castle-php?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/castle/castle-php/badge.svg?branch=fix%2Fcode-coverage)](https://coveralls.io/github/castle/castle-php?branch=fix%2Fcode-coverage)

# PHP SDK for Castle

Expand Down
3 changes: 1 addition & 2 deletions composer.json
Expand Up @@ -24,7 +24,6 @@
},
"require-dev": {
"phpunit/phpunit": "*",
"phpunit/phpcov": "*",
"satooshi/php-coveralls": "*"
"php-coveralls/php-coveralls": "*"
}
}
12 changes: 6 additions & 6 deletions phpunit.xml
Expand Up @@ -6,16 +6,16 @@
</testsuite>
</testsuites>
<logging>
<log type="coverage-php" target="build/cov/coverage.cov"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<blacklist>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./test</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<directory suffix=".php">./lib/Castle</directory>
<directory suffix=".php">./lib/RestModel</directory>
<exclude>
<file>./lib/Castle/CookieStore.php</file>
<file>./lib/Castle/CurlTransport.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>

0 comments on commit cd6b7f6

Please sign in to comment.