File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed
Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1212 strategy :
1313 fail-fast : false
1414 matrix :
15- php : [8.0, 8. 1]
15+ php : [8.1]
1616 dependency-version : [prefer-lowest, prefer-stable]
1717 os : [ubuntu-latest]
1818
Original file line number Diff line number Diff line change 232232 ])
233233 ->name ('*.php ' )
234234 ->notName ('*.blade.php ' )
235- // Remove when dropping support for PHP 8.0
236- ->notName ('MethodsTest.php ' )
237235 ->ignoreDotFiles (true )
238236 ->ignoreVCS (true );
239237
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `sebastiaanluca/php-pipe-operator` will be documented in
44
55Updates should follow the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
66
7+ ## 5.1.0 (2022-03-17)
8+
9+ ### Removed
10+
11+ - Dropped support for PHP 8
12+
713## 5.0.1 (2022-03-17)
814
915### Fixed
Original file line number Diff line number Diff line change 1919 }
2020 ],
2121 "require" : {
22- "php" : " ~8.0|~8. 1"
22+ "php" : " ~8.1"
2323 },
2424 "require-dev" : {
25- "ext-mbstring" : " * " ,
25+ "ext-mbstring" : " ~8.1 " ,
2626 "friendsofphp/php-cs-fixer" : " ^3.7" ,
2727 "phpunit/phpunit" : " ^9.5"
2828 },
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ public function it can transform a value using a callable string method
5353
5454 /**
5555 * @test
56- * @requires PHP >= 8.1
5756 */
5857 public function it can transform a value using a first class callable method (): void
5958 {
@@ -67,7 +66,6 @@ public function it can transform a value using a first class callable
6766
6867 /**
6968 * @test
70- * @requires PHP >= 8.1
7169 */
7270 public function it can transform a value using a first class callable method with parameters (): void
7371 {
@@ -125,7 +123,6 @@ public function it can transform a value using a public class method():
125123
126124 /**
127125 * @test
128- * @requires PHP >= 8.1
129126 */
130127 public function it can transform a value using a first class callable class method (): void
131128 {
You can’t perform that action at this time.
0 commit comments