Skip to content

Commit 90e6797

Browse files
authored
Merge pull request #96 from dotkernel/issue-95
Bump symfony to v8 and remove php 8.2 & 8.3 support
2 parents 016d691 + d564185 commit 90e6797

5 files changed

Lines changed: 18 additions & 13 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.2"
19-
- "8.3"
2018
- "8.4"
19+
- "8.5"
2120

2221
steps:
2322
- name: Checkout

.github/workflows/qodana_code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
checks: write
1616
strategy:
1717
matrix:
18-
php-versions: [ '8.2', '8.3', '8.4']
18+
php-versions: ['8.4', '8.5']
1919
steps:
2020
- uses: actions/checkout@v7
2121
with:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ jobs:
1515
- ubuntu-latest
1616

1717
php:
18-
- "8.2"
19-
- "8.3"
2018
- "8.4"
19+
- "8.5"
2120

2221
steps:
2322
- name: Checkout

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,27 @@ The queue system uses logs to ensure maintainability and implements retry featur
1313

1414
![Queue process](https://docs.dotkernel.org/img/queue/schema.png)
1515

16+
## Version History
17+
18+
| Branch | Release | PSR-11 | OSS Lifecycle | PHP Version |
19+
|--------|---------|--------|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
20+
| 2.0 | `> 2.0` | 1 | ![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/queue) | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/queue/2.0.0) |
21+
| 1.0 | `< 2.0` | 1 | ![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/queue) | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/queue/1.0.0) |
22+
1623
## Badges
1724

1825
![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/queue)
19-
![Packagist Dependency Version](https://img.shields.io/packagist/dependency-v/dotkernel/queue/php)
26+
![Packagist Dependency Version](https://img.shields.io/packagist/php-v/dotkernel/queue/2.0.0)
2027

2128
[![GitHub issues](https://img.shields.io/github/issues/dotkernel/queue)](https://github.com/dotkernel/queue/issues)
2229
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/queue)](https://github.com/dotkernel/queue/network)
2330
[![GitHub stars](https://img.shields.io/github/stars/dotkernel/queue)](https://github.com/dotkernel/queue/stargazers)
24-
[![GitHub license](https://img.shields.io/github/license/dotkernel/queue)](https://github.com/dotkernel/queue/blob/1.0/LICENSE.md)
31+
[![GitHub license](https://img.shields.io/github/license/dotkernel/queue)](https://github.com/dotkernel/queue/blob/2.0/LICENSE.md)
2532

2633
[![Build Status](https://github.com/mezzio/mezzio-skeleton/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/mezzio/mezzio-skeleton/actions/workflows/continuous-integration.yml)
2734
[![codecov](https://codecov.io/gh/dotkernel/queue/graph/badge.svg?token=pexSf4wIhc)](https://codecov.io/gh/dotkernel/queue)
28-
[![Qodana](https://github.com/dotkernel/queue/actions/workflows/qodana_code_quality.yml/badge.svg?branch=main)](https://github.com/dotkernel/queue/actions/workflows/qodana_code_quality.yml)
29-
[![PHPStan](https://github.com/dotkernel/queue/actions/workflows/static-analysis.yml/badge.svg?branch=main)](https://github.com/dotkernel/queue/actions/workflows/static-analysis.yml)
35+
[![Qodana](https://github.com/dotkernel/queue/actions/workflows/qodana_code_quality.yml/badge.svg?branch=2.0.0)](https://github.com/dotkernel/queue/actions/workflows/qodana_code_quality.yml)
36+
[![PHPStan](https://github.com/dotkernel/queue/actions/workflows/static-analysis.yml/badge.svg?branch=2.0.0)](https://github.com/dotkernel/queue/actions/workflows/static-analysis.yml)
3037

3138
## Documentation
3239

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
}
4444
},
4545
"require": {
46-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
46+
"php": "~8.4.0 || ~8.5.0",
4747
"dotkernel/dot-cli": "^3.11.1",
4848
"dotkernel/dot-dependency-injection": "^1.2",
49-
"dotkernel/dot-errorhandler": "4.2.1",
49+
"dotkernel/dot-errorhandler": "^5.0.0",
5050
"laminas/laminas-component-installer": "^3.5",
5151
"laminas/laminas-config-aggregator": "^1.18",
5252
"mezzio/mezzio": "^3.20",
53-
"netglue/laminas-messenger": "^2.3.0",
54-
"symfony/redis-messenger": "^v7.2.3"
53+
"netglue/laminas-messenger": "^2.5.0",
54+
"symfony/redis-messenger": "^v8.1.1"
5555
},
5656
"require-dev": {
5757
"laminas/laminas-coding-standard": "^3.0",

0 commit comments

Comments
 (0)