Skip to content

Commit da61b61

Browse files
Merge branch 'release/5.1.0'
2 parents fc95f4e + b8eaf80 commit da61b61

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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

.php-cs-fixer.dist.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,6 @@
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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `sebastiaanluca/php-pipe-operator` will be documented in
44

55
Updates 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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
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
},

tests/MethodsTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)