Skip to content

Commit 82b1697

Browse files
feat: remove PHP 8.2 and Laravel 10 support
BREAKING CHANGE: Minimum requirements increased to PHP 8.3+ and Laravel 11+
1 parent b2e4a3c commit 82b1697

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,13 @@ jobs:
2222
matrix:
2323
os: [ubuntu-latest, windows-latest]
2424
php: [8.4, 8.3]
25-
laravel: [12.*, 11.*, 10.*]
25+
laravel: [12.*, 11.*]
2626
stability: [prefer-lowest, prefer-stable]
2727
include:
2828
- laravel: 12.*
2929
testbench: 10.*
3030
- laravel: 11.*
3131
testbench: 9.*
32-
- laravel: 10.*
33-
testbench: 8.*
3432

3533
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3634

@@ -68,15 +66,13 @@ jobs:
6866
fail-fast: true
6967
matrix:
7068
php: [8.4, 8.3]
71-
laravel: [12.*, 11.*, 10.*]
69+
laravel: [12.*, 11.*]
7270
stability: [prefer-stable]
7371
include:
7472
- laravel: 12.*
7573
testbench: 10.*
7674
- laravel: 11.*
7775
testbench: 9.*
78-
- laravel: 10.*
79-
testbench: 8.*
8076

8177
name: Redis Integration - P${{ matrix.php }} - L${{ matrix.laravel }}
8278

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Extensible architecture with events for reactive monitoring and notifications.
112112

113113
## Requirements
114114

115-
- PHP 8.2+
115+
- PHP 8.3+
116116
- Laravel 11.0+ or 12.0+
117117
- Redis or Database for metrics storage
118118

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"require": {
2424
"php": "^8.3|^8.4",
2525
"gophpeek/system-metrics": "^1.0",
26-
"illuminate/contracts": "^10.0|^11.0|^12.0",
26+
"illuminate/contracts": "^11.0|^12.0",
2727
"spatie/laravel-package-tools": "^1.16",
2828
"spatie/laravel-prometheus": "^1.3"
2929
},

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Get Laravel Queue Metrics up and running in your Laravel application.
44

55
## Requirements
66

7-
- **PHP**: 8.2 or higher
7+
- **PHP**: 8.3 or higher
88
- **Laravel**: 11.0+ or 12.0+
99
- **Storage**: Redis (recommended) or Database
1010
- **Optional**: [gophpeek/system-metrics](https://github.com/gophpeek/system-metrics) for server monitoring

0 commit comments

Comments
 (0)