Skip to content

Commit

Permalink
Attempt fixing the builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsacksick committed Mar 2, 2023
1 parent 36e415d commit c3f5877
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
args: --coverage-text
php_extensions: xdebug
php_version: 7.3
memory_limit: "192M"
version: 9
env:
XDEBUG_MODE: coverage
Expand All @@ -40,6 +41,7 @@ jobs:
args: --coverage-text
php_extensions: xdebug
php_version: 8.1
memory_limit: "192M"
version: 9
env:
XDEBUG_MODE: coverage
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ An SDK for Authorize.net, using Guzzle.

## Dependencies

PHP version >= 7.2 is required.
PHP version >= 7.3 is required.

The following PHP extensions are required:
* json
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "library",
"keywords": ["authorizenet", "authorize.net", "payment", "ecommerce"],
"require": {
"php": ">=7.2",
"php": ">=7.3",
"ext-json": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
Expand Down
4 changes: 2 additions & 2 deletions tests/ARBCreateSubscriptionRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ protected function cleanupSubscriptions()
$response = $cancel->execute();
$this->assertEquals('Ok', $response->getResultCode());
$canceled_count++;
// Stop after canceling 100 subscriptions.
if ($canceled_count > 100) {
// Stop after canceling 50 subscriptions.
if ($canceled_count > 50) {
break 2;
}
}
Expand Down

0 comments on commit c3f5877

Please sign in to comment.