Skip to content
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4 from eloquent/phpunit-8
Browse files Browse the repository at this point in the history
PHPUnit 8 support
  • Loading branch information
ezzatron authored Feb 5, 2019
2 parents b7c746d + dd7cdc6 commit 41f45d4
Show file tree
Hide file tree
Showing 14 changed files with 479 additions and 289 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/coverage/
/vendor/
/.php_cs.cache
/.phpunit.result.cache
/README.html
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: php

matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: nightly
fast_finish: true
allow_failures:
Expand All @@ -18,7 +18,7 @@ after_script: scripts/travis-after

env:
global:
- ELOQUENT_PUBLISH_VERSION=7.2
- ELOQUENT_PUBLISH_VERSION=7.3
- secure: "ZLEpRTWlti18mQqNIHSmLlQ4muizifu4FvumsisG9sd+2IfUgxGyK0QZ1o3rUBglW0jxQjJxPGsORb8/8CxjV3G+0pYJBGUnpc787r6YFKslr2BHQTJPV9pRJKtfDJ3i2c5PI6w1vZbMOnNImHPlSqyYg+vTYkN4KFP6eumH2YmIus2m7P90Wam+SLCvmvRxTv4X+HZ7RzzmG/tr6qT6s/BWiTXj34V8GQuZeWk9EzDBtNe8kMvU/R9ZtMT+umIPOJ4TJAuc4if6YkSNyn7XwzdZkfBWREbf5PbDtefgwpmiWhdBW30x9eO+rC6DPbUsj+ewu8zFSC+pxjTU/XYgrheiKgYS6dsJ/TW2rnDdVgrzeJpNkAZlj2x4k5PTdwqn2by1FDfgYpBQo+prlAZH5J7KDWBE11v/hYraqsTs4L3cYFN03wYhLivWUGeKtlT15y3vzdorqi5ubscLD2+wyKspDvKaeC6fkK1C0LYh/bk9LAsW3IsCpuUk/IfsPmF8PxP/wsi39YG41Fp9nlPMImYZpcXjCcy0Y7Wt4Ip9qGoWiSZBkPrS0UNCI98E4rr+JnVoc4p49FhRev1BdR0AR2umFNUSFVTB7OAk2zJ+VbCPn1bb1OMCl8PMlnwHwSVEBn2dbiPn4oHjVcPuFwWfHckR1pm7IKKYLYu1gsIB2VM="

cache:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Phony for PHPUnit changelog

## 5.0.0 (2019-02-05)

- **[BC BREAK]** Dropped support for PHPUnit `7.x` ([#3], [#4]).
- **[NEW]** Added support for PHPUnit `8.x` ([#3], [#4]).

[#3]: https://github.com/eloquent/phony-phpunit/pull/3
[#4]: https://github.com/eloquent/phony-phpunit/pull/4

## 4.0.1 (2018-04-05)

- **[MAINTENANCE]** Updated required PHPUnit version to avoid coverage issues
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
}
],
"require": {
"php": ">=7.1",
"php": ">=7.2",
"eloquent/phony": "^3",
"phpunit/phpunit": "^7.0.3"
"phpunit/phpunit": "^8"
},
"require-dev": {
"errors/exceptions": "^0.2",
Expand All @@ -36,12 +36,12 @@
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
"dev-master": "6.0.x-dev"
}
},
"config": {
"platform": {
"php": "7.1.99999"
"php": "7.2.99999"
}
}
}
Loading

0 comments on commit 41f45d4

Please sign in to comment.