Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
filter:
paths: [library/*]
excluded_paths:
- tests/*

checks:
php:
code_rating: true

tools:
external_code_coverage:
runs: 4
php_cpd:
excluded_dirs: [vendor]
php_pdepend:
excluded_dirs: [vendor]
sensiolabs_security_checker: true
php_analyzer: true
php_changetracking: true
php_cpd: true
php_mess_detector: true
php_pdepend: true
sensiolabs_security_checker: true
12 changes: 4 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# a Courtesy of Respect/Foundation

language: php

env: FOUNDATION_NO_WAIT=1
language:
php

php:
- 5.3
Expand All @@ -12,12 +9,11 @@ php:
- hhvm

before_script:
- make composer-install-dev
- composer install --dev --no-interaction --prefer-source
- phpenv rehash

script:
- make testdox
- make scrutinizer-coverage
- vendor/bin/phpunit --configuration tests/phpunit.xml --testdox tests/

matrix:
allow_failures:
Expand Down