Skip to content

Commit

Permalink
### Added
Browse files Browse the repository at this point in the history
* Added Code Climate configuration

### Changed
* Removed support of PHP 5.4
* Updated tests to run on PHP 7.0
  • Loading branch information
chajr committed May 26, 2017
1 parent e22d4b5 commit ff57fba
Show file tree
Hide file tree
Showing 7 changed files with 1,207 additions and 124 deletions.
15 changes: 15 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpmd:
enabled: true
ratings:
paths:
- "src/*"
exclude_paths:
- "tests/*"
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
composer.phar
phpunit.phar
vendor
tests/log/*
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: php
php:
- "5.6"
- "5.5"
- "5.4"
- "7.0"
matrix:
fast_finish: true
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
}
],
"require": {
"php": ">=5.4.0"
"php": ">=5.5.0"
},
"require-dev": {
"satooshi/php-coveralls": "1.0.*"
"satooshi/php-coveralls": "1.0.*",
"phpunit/phpunit": "4.8.35"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit ff57fba

Please sign in to comment.