Php8 and httpful to guzzle upgrade #1
Draft
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 modernize the codebase, replace deprecated dependencies, and enhance test coverage. The changes include upgrading the PHP version, replacing the
Httpfullibrary withGuzzle, updating test frameworks, and improving code quality and maintainability.Dependency and Configuration Updates:
composer.jsonto require PHP^8.0and replaced theHttpfullibrary withGuzzle(^7.9.3). Also upgradedphpunit/phpunitto^9.5for modern testing capabilities. Added aplatformconfiguration to specify PHP8.0.27. [1] [2]HTTP Client Migration:
GuzzleHttp\ClientinPaymentApito replaceHttpful. Updated all methods to useGuzzlefor HTTP requests and adjusted return types to use the newHttpResponsewrapper class for consistency. [1] [2] [3]HttpResponseclass to encapsulate HTTP response data, including body, status code, and headers.Code Quality Improvements:
searchByOrderIdwhere theend-dateparameter was incorrectly set to$limitinstead of$endDate.: voidforsetupBeforeClass()inPaymentApiTest.Test Suite Modernization:
PHPUnit\Framework\TestCase) and replaced deprecated assertions (e.g.,assertRegExpwithassertMatchesRegularExpression). [1] [2] [3]expectExceptionandexpectExceptionMessage.Bug Fixes and Adjustments:
PaymentApiTestto properly handle the newHttpResponsewrapper, ensuring tests access thebodyproperty correctly. Adjusted test expectations to align with sandbox behavior. [1] [2]