Description
Align the minimum supported PHP version to at least 8.1, and fix any version requirement inconsistencies in composer.json, plugin readme, and PHPCS configuration.
Why This Matters
- PHP 7.4 is EOL; many modern PHP tools don’t support it.
- Consistency in version requirements helps avoid confusion and dependency issues.
Tasks
- Update
composer.json, plugin readme, and PHPCS to require PHP >= 8.1.
- Remove or refactor code tailored to PHP < 8.1.
- Validate and test against PHP 8.1 (and optionally 8.2+ for future-proofing).