You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove enum support (PHP 8.1+ feature)
- Convert constructor property promotion to traditional syntax
- Replace mixed type hints with docblock annotations
- Replace match expressions with if/else statements
- Replace arrow functions with traditional closures
- Replace str_contains/str_starts_with/str_ends_with with strpos
- Convert ToonDelimiter enum to constants class
- Update composer.json for PHP ^7.0|^8.0
- Update GitHub Actions workflow for PHP 7.0-8.0 testing
- Remove enum test for PHP 7 compatibility
- Update PHPStan to level 6
- All 32 tests passing
Copy file name to clipboardExpand all lines: composer.json
+6-5Lines changed: 6 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,14 @@
1
1
{
2
2
"name": "iamgerwin/toon-php",
3
-
"description": "A lightweight, fast, and feature-rich TOON (Token-Oriented Object Notation) library for PHP - optimized for LLM contexts with 30-60% token savings",
3
+
"description": "A lightweight, fast, and feature-rich TOON (Token-Oriented Object Notation) library for PHP - optimized for LLM contexts with 30-60% token savings (PHP 7.0-8.0 compatible)",
0 commit comments