diff --git a/_backend/composer.json b/_backend/composer.json index cf825b640b..3a31671016 100644 --- a/_backend/composer.json +++ b/_backend/composer.json @@ -14,7 +14,7 @@ } }, "require": { - "stripe/stripe-php": "13.17.0", + "stripe/stripe-php": "14.4.0", "sentry/sdk": "^3.3.0", "erusev/parsedown-extra": "^0.8", "geoip2/geoip2": "^3.0", diff --git a/_backend/composer.lock b/_backend/composer.lock index 26c1a82a58..d6a3ec22bb 100644 --- a/_backend/composer.lock +++ b/_backend/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "09e007bab1e23d618b6b6f1eeaa9e06f", + "content-hash": "7db6222143533af16e8ec17ffff6a929", "packages": [ { "name": "clue/stream-filter", @@ -1591,16 +1591,16 @@ }, { "name": "stripe/stripe-php", - "version": "v13.17.0", + "version": "v14.4.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "24d3d9ed8406e10d24452af44597300173655f69" + "reference": "044f9dd190967b8fb7e55fd0ea25f11c625c00a4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/24d3d9ed8406e10d24452af44597300173655f69", - "reference": "24d3d9ed8406e10d24452af44597300173655f69", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/044f9dd190967b8fb7e55fd0ea25f11c625c00a4", + "reference": "044f9dd190967b8fb7e55fd0ea25f11c625c00a4", "shasum": "" }, "require": { @@ -1644,9 +1644,9 @@ ], "support": { "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v13.17.0" + "source": "https://github.com/stripe/stripe-php/tree/v14.4.0" }, - "time": "2024-04-04T22:16:10+00:00" + "time": "2024-04-25T20:38:24+00:00" }, { "name": "symfony/deprecation-contracts", diff --git a/api/create-checkout-session.php b/api/create-checkout-session.php index 23e5fe5cc1..cfcf1971f5 100644 --- a/api/create-checkout-session.php +++ b/api/create-checkout-session.php @@ -5,7 +5,7 @@ $stripe = new \Stripe\StripeClient([ "api_key" => $config['stripe_sk'], - "stripe_version" => "2023-08-16" + "stripe_version" => "2024-04-10" ]); if (isset($_POST['amount'])) { diff --git a/api/download.php b/api/download.php index 71c941b3d7..e7e4493f18 100644 --- a/api/download.php +++ b/api/download.php @@ -17,7 +17,7 @@ $stripe = new \Stripe\StripeClient([ "api_key" => $config['stripe_sk'], - "stripe_version" => "2023-08-16" + "stripe_version" => "2024-04-10" ]); /** diff --git a/index.php b/index.php index effbda77ce..3e9a5dcfd4 100644 --- a/index.php +++ b/index.php @@ -21,7 +21,7 @@ $stripe = new \Stripe\StripeClient([ "api_key" => $config['stripe_sk'], - "stripe_version" => "2023-08-16" + "stripe_version" => "2024-04-10" ]); if (isset($_GET['checkout_session_id'])) {