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
Httpful
library withGuzzle
, updating test frameworks, and improving code quality and maintainability.Dependency and Configuration Updates:
composer.json
to require PHP^8.0
and replaced theHttpful
library withGuzzle
(^7.9.3
). Also upgradedphpunit/phpunit
to^9.5
for modern testing capabilities. Added aplatform
configuration to specify PHP8.0.27
. [1] [2]HTTP Client Migration:
GuzzleHttp\Client
inPaymentApi
to replaceHttpful
. Updated all methods to useGuzzle
for HTTP requests and adjusted return types to use the newHttpResponse
wrapper class for consistency. [1] [2] [3]HttpResponse
class to encapsulate HTTP response data, including body, status code, and headers.Code Quality Improvements:
searchByOrderId
where theend-date
parameter was incorrectly set to$limit
instead of$endDate
.: void
forsetupBeforeClass()
inPaymentApiTest
.Test Suite Modernization:
PHPUnit\Framework\TestCase
) and replaced deprecated assertions (e.g.,assertRegExp
withassertMatchesRegularExpression
). [1] [2] [3]expectException
andexpectExceptionMessage
.Bug Fixes and Adjustments:
PaymentApiTest
to properly handle the newHttpResponse
wrapper, ensuring tests access thebody
property correctly. Adjusted test expectations to align with sandbox behavior. [1] [2]