Skip to content

Commit ab7f4bf

Browse files
authored
Merge pull request #28 from dotkernel/issue-26
Dropped support for PHP 8.1
2 parents 6a63100 + f6c95d1 commit ab7f4bf

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

.github/workflows/codecov.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.1"
1918
- "8.2"
2019
- "8.3"
2120

.github/workflows/cs-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.1"
1918
- "8.2"
2019
- "8.3"
2120

.github/workflows/static-analysis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.1"
1918
- "8.2"
2019
- "8.3"
2120

.github/workflows/unit-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.1"
1918
- "8.2"
2019
- "8.3"
2120

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## 3.5.0 - 2024-02-08
2+
3+
### Changed
4+
* Removed PHP 8.1 support.
5+
6+
### Added
7+
* CHANGELOG.md
8+
9+
### Deprecated
10+
* Nothing
11+
12+
### Removed
13+
* Nothing
14+
15+
### Fixed
16+
* Nothing

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
DotKernel component to build console applications based on [laminas-cli](https://github.com/laminas/laminas-cli).
1717

1818
### Requirements
19-
- PHP >= 8.1
19+
- PHP >= 8.2
2020
- laminas/laminas-servicemanager >= 3.11,
2121
- laminas/laminas-cli >= 1.4
2222

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
},
2626
"require": {
27-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
27+
"php": "~8.2.0 || ~8.3.0",
2828
"laminas/laminas-cli": "^1.4.0",
2929
"laminas/laminas-servicemanager": "^3.11.1"
3030
},

0 commit comments

Comments
 (0)