Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/move-to-codesniffer'
Browse files Browse the repository at this point in the history
* origin/feature/move-to-codesniffer:
  Do not test on hhvm
  Minor changes
  • Loading branch information
maxbanton committed Aug 29, 2016
2 parents 9f239cd + 854471f commit 5eb0534
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 271 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.idea/
/vendor/
/composer.phar
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ language: php
php:
- '5.6'
- '7.0'
- hhvm
- nightly

cache:
Expand All @@ -15,9 +14,10 @@ before_script:
- composer install --no-interaction --dev -o

script:
- php -l src/
- vendor/bin/phpcs --standard=psr2 --ignore=Tests src/
- mkdir -p build/logs
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- vendor/bin/phpcs --standard=PSR2 src/

after_script:
- php vendor/bin/coveralls -v
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"friendsofphp/php-cs-fixer": "^1.11",
"squizlabs/php_codesniffer": "^2.6",
"satooshi/php-coveralls": "^1.0"
},
"config": {
"platform": {
"php": "5.6"
}
}
}
Loading

0 comments on commit 5eb0534

Please sign in to comment.