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

Commit 41f45d4

Browse files
authored
Merge pull request #4 from eloquent/phpunit-8
PHPUnit 8 support
2 parents b7c746d + dd7cdc6 commit 41f45d4

14 files changed

+479
-289
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/coverage/
22
/vendor/
33
/.php_cs.cache
4+
/.phpunit.result.cache
45
/README.html

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ language: php
22

33
matrix:
44
include:
5-
- php: 7.1
65
- php: 7.2
6+
- php: 7.3
77
- php: nightly
88
fast_finish: true
99
allow_failures:
@@ -18,7 +18,7 @@ after_script: scripts/travis-after
1818

1919
env:
2020
global:
21-
- ELOQUENT_PUBLISH_VERSION=7.2
21+
- ELOQUENT_PUBLISH_VERSION=7.3
2222
- 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="
2323

2424
cache:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Phony for PHPUnit changelog
22

3+
## 5.0.0 (2019-02-05)
4+
5+
- **[BC BREAK]** Dropped support for PHPUnit `7.x` ([#3], [#4]).
6+
- **[NEW]** Added support for PHPUnit `8.x` ([#3], [#4]).
7+
8+
[#3]: https://github.com/eloquent/phony-phpunit/pull/3
9+
[#4]: https://github.com/eloquent/phony-phpunit/pull/4
10+
311
## 4.0.1 (2018-04-05)
412

513
- **[MAINTENANCE]** Updated required PHPUnit version to avoid coverage issues

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.1",
15+
"php": ">=7.2",
1616
"eloquent/phony": "^3",
17-
"phpunit/phpunit": "^7.0.3"
17+
"phpunit/phpunit": "^8"
1818
},
1919
"require-dev": {
2020
"errors/exceptions": "^0.2",
@@ -36,12 +36,12 @@
3636
},
3737
"extra": {
3838
"branch-alias": {
39-
"dev-master": "5.0.x-dev"
39+
"dev-master": "6.0.x-dev"
4040
}
4141
},
4242
"config": {
4343
"platform": {
44-
"php": "7.1.99999"
44+
"php": "7.2.99999"
4545
}
4646
}
4747
}

0 commit comments

Comments
 (0)