Skip to content

Commit 2241b8d

Browse files
feat: drop support for PHP 8.0 and 8.1 (#104)
- Update minimum PHP version requirement from ^8.0 to ^8.2 in composer.json - Remove symfony/polyfill-php80 dependency (no longer needed with PHP 8.2+) - Update README.md to reflect PHP 8.2+ requirement Co-authored-by: Claude <noreply@anthropic.com>
1 parent c713e82 commit 2241b8d

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Requirements
66

7-
* PHP 8.0+
7+
* PHP 8.2+
88
* The `ext-json` extension.
99

1010
## Installation

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,14 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^8.0",
15+
"php": "^8.2",
1616
"ext-json": "*",
1717
"jms/serializer": "^3.0",
1818
"doctrine/annotations": "^2.0",
1919
"guzzlehttp/psr7": "^2.0",
2020
"deviantintegral/jms-serializer-uri-handler": "^1.1",
2121
"deviantintegral/null-date-time": "^1.0",
22-
"symfony/console": "^5.0||^6.0",
23-
"symfony/polyfill-php80": "^1.20"
22+
"symfony/console": "^5.0||^6.0"
2423
},
2524
"require-dev": {
2625
"friendsofphp/php-cs-fixer": "3.92.0",

0 commit comments

Comments
 (0)