Skip to content

Commit

Permalink
fixing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaDafinser committed Mar 10, 2016
1 parent 280ae8c commit a38ffc9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 48 deletions.
11 changes: 11 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
checks:
php:
code_rating: true
duplication: true

filter:
excluded_paths: [tests/*]

tools:
external_code_coverage:
timeout: 600 # Timeout in seconds.
21 changes: 11 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@

language: php

sudo: false

php:
- 5.5
- 5.6
- 7
- hhvm

matrix:
fast_finish: true

# faster builds on new travis setup not using sudo
sudo: false
env:
matrix:
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- DEPENDENCIES=""

before_script:
- composer self-update
- composer update --prefer-source -n --verbose
- composer update -o --prefer-source $DEPENDENCIES

script:
- vendor/bin/phpunit --coverage-clover ./clover.xml
- vendor/bin/php-cs-fixer fix src --level=psr2 --dry-run -vv
- mkdir -p build/logs
- ./vendor/bin/phpunit -c travis.phpunit.xml --coverage-clover build/logs/clover.xml

after_script:
- php vendor/bin/coveralls -v

- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then php ocular.phar code-coverage:upload --format=php-clover ./clover.xml; fi
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<phpunit
bootstrap="./tests/Bootstrap.php"
bootstrap="./vendor/autoload.php"
colors="false"
stopOnError="false"
stopOnFailure="false"
Expand Down
5 changes: 0 additions & 5 deletions tests/Bootstrap.php

This file was deleted.

32 changes: 0 additions & 32 deletions travis.phpunit.xml

This file was deleted.

0 comments on commit a38ffc9

Please sign in to comment.