Skip to content

Commit f098d9c

Browse files
authored
Merge pull request #37 from dotkernel/issue35
added PHP 8.3 support
2 parents 723da75 + a72968a commit f098d9c

File tree

6 files changed

+6
-2
lines changed

6 files changed

+6
-2
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
php:
1818
- "8.1"
1919
- "8.2"
20+
- "8.3"
2021

2122
steps:
2223
- name: Checkout

.github/workflows/cs-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
php:
1818
- "8.1"
1919
- "8.2"
20+
- "8.3"
2021

2122
steps:
2223
- name: Checkout

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
php:
1818
- "8.1"
1919
- "8.2"
20+
- "8.3"
2021

2122
steps:
2223
- name: Checkout

.github/workflows/unit-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
php:
1818
- "8.1"
1919
- "8.2"
20+
- "8.3"
2021

2122
steps:
2223
- name: Checkout

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This package contains controller like middleware to be used inside a DotKernel or Mezzio application. It provides base classes for action based controllers similar to Laminas controller component. It is more lightweight though, but supports controller plugins.
44

55
![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/dot-controller)
6-
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-controller/3.4.2)
6+
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-controller/3.4.3)
77

88
[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-controller)](https://github.com/dotkernel/dot-controller/issues)
99
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-controller)](https://github.com/dotkernel/dot-controller/network)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "~8.1.0 || ~8.2.0",
21+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
2222
"psr/http-message": "^1.0 || ^2.0",
2323
"laminas/laminas-servicemanager": "^3.11.2",
2424
"dotkernel/dot-event": "^3.2.0",

0 commit comments

Comments
 (0)