refactor: require PHP 7.1 minimum, add nullable types and return type hints in client tests #285
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant updates to improve PHP version compatibility, modernize type safety in the codebase, and enhance CI workflows. The changes primarily focus on updating PHP dependencies, adding type hints, and restructuring workflows for better maintainability.
PHP Version Compatibility and Dependency Updates:
composer.jsonandREADME.mdto>=7.1and added guidance for resolving compatibility issues with PHP 8.1+ by upgrading dependencies likephpunit/phpunitandguzzlehttp/guzzle. [1] [2]Type Hinting and Code Modernization:
string,?string,array) across multiple methods inApiClient.php,CheckoutUtils.php, andEventsClient.phpto improve type safety and readability. [1] [2] [3]Continuous Integration (CI) Workflow Enhancements:
.github/workflowsfiles to expand PHP version testing matrix, remove outdated PHP 5.6-specific logic, and streamline dependency management steps. [1] [2] [3]build-release.ymlworkflow.These changes ensure that the codebase is better aligned with modern PHP standards, improves compatibility with newer PHP versions, and enhances CI processes for better maintainability and reliability.