Skip to content

Commit 2dc7240

Browse files
Merge branch 'release/3.0.0'
2 parents 78ea0a6 + 818cfcf commit 2dc7240

File tree

5 files changed

+32
-11
lines changed

5 files changed

+32
-11
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: php
22

33
php:
4-
- 7.1
5-
- 7.2
6-
- nightly
4+
- "7.2"
5+
- "7.3"
6+
- 7.4snapshot
77

88
cache:
99
directories:
@@ -16,10 +16,11 @@ env:
1616

1717
matrix:
1818
allow_failures:
19-
- php: nightly
19+
- php: 7.4snapshot
2020
fast_finish: true
2121

2222
before_install:
23+
- composer validate --strict
2324
- travis_retry composer self-update
2425

2526
install:

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
66

77
## Unreleased
88

9+
## 3.0.0 (2019-02-27)
10+
11+
### Changed
12+
13+
- Upgraded to PHPUnit 8
14+
15+
### Removed
16+
17+
- Dropped support for PHP 7.1 and lower
18+
919
## 2.1.1 (2018-03-18)
1020

1121
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A (hopefully) temporary solution to implement the pipe operator in PHP.
3535

3636
## Requirements
3737

38-
- PHP 7.1 or higher
38+
- PHP 7.2 or higher
3939

4040
## How to install
4141

composer.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.1"
22+
"php": "^7.2"
2323
},
2424
"require-dev": {
25-
"phpunit/phpunit": "^7"
25+
"phpunit/phpunit": "^8.0"
2626
},
2727
"autoload": {
2828
"psr-4": {
@@ -37,10 +37,18 @@
3737
"SebastiaanLuca\\PipeOperator\\Tests\\": "tests"
3838
}
3939
},
40-
"scripts": {
41-
"test": "vendor/bin/phpunit"
42-
},
4340
"config": {
4441
"sort-packages": true
42+
},
43+
"scripts": {
44+
"test": "vendor/bin/phpunit",
45+
"test-lowest": [
46+
"composer update --prefer-lowest --prefer-dist --no-interaction --ansi",
47+
"@test"
48+
],
49+
"test-stable": [
50+
"composer update --prefer-stable --prefer-dist --no-interaction --ansi",
51+
"@test"
52+
]
4553
}
4654
}

phpunit.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
stopOnFailure="false"
1414
failOnRisky="true"
1515
failOnWarning="true"
16-
stopOnError="false">
16+
stopOnError="false"
17+
cacheResult="false"
18+
cacheTokens="false">
1719
<testsuites>
1820
<testsuite name="Feature Tests">
1921
<directory suffix="Test.php">./tests/Feature</directory>

0 commit comments

Comments
 (0)