Skip to content

Commit

Permalink
Downgraded PHPUnit to 4.8. Removed old PHP versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Ungureanu committed Dec 17, 2015
1 parent a1485dd commit a023393
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 119 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
}
],
"require": {
"php": ">=5.3.0"
"php": ">=5.5.0"
},
"require-dev": {
"phpunit/php-code-coverage": "~3.0",
"phpunit/phpunit": "~5.1"
"phpunit/php-code-coverage": "~2.0",
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {
Expand Down
142 changes: 28 additions & 114 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 comments on commit a023393

@remicollet
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand this change.

Please revert and drop composer.lock (which have no sense for a library).

Composer will pull PHPUnit 4.8 with php <= 5.5 and 5.1 with php 5.6 and 7.0

Please also add PHP 7.0 in the .travis file.

@fezfez
Copy link
Contributor

@fezfez fezfez commented on a023393 Jan 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@remicollet : 👍

@udan11
Copy link
Contributor

@udan11 udan11 commented on a023393 Jan 13, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@remicollet Sorry. Fixed with d888929 & 4a5287e.

Please sign in to comment.