Bump stripe-php from 16.4.0 to 17.2.1

This commit is contained in:
johnnyq
2025-05-22 12:37:35 -04:00
parent 5361391b3b
commit 6a368840fa
332 changed files with 4978 additions and 4624 deletions

View File

@@ -23,7 +23,7 @@ class Stripe
public static $apiUploadBase = 'https://files.stripe.com';
/** @var string The version of the Stripe API to use for requests. */
public static $apiVersion = \Stripe\Util\ApiVersion::CURRENT;
public static $apiVersion = Util\ApiVersion::CURRENT;
/** @var null|string The account ID for connected accounts requests. */
public static $accountId = null;
@@ -64,7 +64,7 @@ class Stripe
/** @var float Initial delay between retries, in seconds */
private static $initialNetworkRetryDelay = 0.5;
const VERSION = '16.4.0';
const VERSION = '17.2.1';
/**
* @return string the API key used for requests
@@ -230,7 +230,9 @@ class Stripe
}
/**
* @param int $maxNetworkRetries Maximum number of request retries
* > NOTE: this value is only read during client creation, so creating a client and _then_ calling this method won't affect your client's behavior.
*
* @param int $maxNetworkRetries maximum number of request retries
*/
public static function setMaxNetworkRetries($maxNetworkRetries)
{