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

Commit 6d6c467

Browse files
committed
Implemented support for PHPUnit 6.
1 parent fdc5748 commit 6d6c467

14 files changed

+1622
-56
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/coverage/
22
/test/bin/php-cs-fixer
33
/vendor/
4-
/composer.lock
54
/README.html

.travis.yml

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

33
matrix:
44
include:
5-
- php: 5.3
6-
- php: 5.4
7-
- php: 5.5
8-
- php: 5.6
95
- php: 7.0
106
- php: 7.1
117
- php: nightly
12-
- php: hhvm-3.6
13-
sudo: required
14-
dist: trusty
15-
group: edge
16-
- php: hhvm-3.9
17-
sudo: required
18-
dist: trusty
19-
group: edge
20-
- php: hhvm-3.12
21-
sudo: required
22-
dist: trusty
23-
group: edge
248
- php: hhvm-3.15
259
sudo: required
2610
dist: trusty
2711
group: edge
28-
- php: hhvm-3.18
29-
sudo: required
30-
dist: trusty
31-
group: edge
12+
env: HHVMPHP7=1
3213
- php: hhvm-3.18
3314
sudo: required
3415
dist: trusty
@@ -38,6 +19,7 @@ matrix:
3819
sudo: required
3920
dist: trusty
4021
group: edge
22+
env: HHVMPHP7=1
4123
fast_finish: true
4224
allow_failures:
4325
- php: nightly

CHANGELOG.md

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

3+
## 2.0.0 (2017-04-24)
4+
5+
- **[NEW]** Support for PHPUnit 6.
6+
- **[BC BREAK]** Dropped support for PHP < 7.
7+
38
## 1.0.0 (2017-04-24)
49

510
- **[IMPROVED]** Updated to use the new Phony `1.0.0` release.

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ install:
1212
- echo extension_dir=ext >> php.ini
1313
- echo extension=php_openssl.dll >> php.ini
1414
- echo extension=php_curl.dll >> php.ini
15+
- echo extension=php_mbstring.dll >> php.ini
1516
- SET PATH=C:\tools\php;%PATH%
1617
- cd C:\projects\phony
1718
- php -r "readfile('http://getcomposer.org/installer');" | php

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=5.3",
15+
"php": ">=7",
1616
"eloquent/phony": "^1",
17-
"phpunit/phpunit": "^4|^5"
17+
"phpunit/phpunit": "^6"
1818
},
1919
"require-dev": {
2020
"errors/exceptions": "^0.1"
@@ -31,5 +31,10 @@
3131
"psr-4": {
3232
"Eloquent\\Phony\\Phpunit\\": "test/src"
3333
}
34+
},
35+
"config": {
36+
"platform": {
37+
"php": "7.0.99999"
38+
}
3439
}
3540
}

0 commit comments

Comments
 (0)