File tree Expand file tree Collapse file tree 5 files changed +32
-11
lines changed
Expand file tree Collapse file tree 5 files changed +32
-11
lines changed Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 7.1
5- - 7.2
6- - nightly
4+ - " 7.2 "
5+ - " 7.3 "
6+ - 7.4snapshot
77
88cache :
99 directories :
1616
1717matrix :
1818 allow_failures :
19- - php : nightly
19+ - php : 7.4snapshot
2020 fast_finish : true
2121
2222before_install :
23+ - composer validate --strict
2324 - travis_retry composer self-update
2425
2526install :
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
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}
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments