stripe-php icon indicating copy to clipboard operation
stripe-php copied to clipboard

PHP library for the Stripe API.

Results 39 stripe-php issues
Sort by recently updated
recently updated
newest added

IMO you should really just use PSR-3 and require psr/log as it is anyway part of almost every PHP project at this point.. but at least this allows setting things...

### Describe the bug I'm using the basic paymentIntent template to create a new paymentIntent: ``` \Stripe\Stripe::setApiKey("my_secret_key"); \Stripe\PaymentIntent::create([ 'amount' => 1099, 'currency' => 'eur', 'payment_method_types' => ['card'], ]); ``` I...

bug

Elsewhere in our code we reference Account::CAPABILITY_CARD_PAYMENTS or Account::CAPABILITY_TRANSFERS, but there isn't one for afterpay_clearpay_payments.

There are new rules with the PHP 8.1 update, some fixes must be done in order to prevent errors and warnings. Example below: ![image](https://user-images.githubusercontent.com/49731840/151442149-0b98ed22-e4ed-4cf6-89ac-f8fdddac43d0.png) I'm current using version **v7.112.0**.

I think the `Stripe\ApiResponse` should be psr7-compliant for easier integration in frameworks that handle psr7 responses, like Laravel, Symfony and others. What do you think?

future

Without `--no-update` `composer remove` installs all dependencies.

This pull request - [x] configures the finder for `friendsofphp/php-cs-fixer` Running ```shell vendor/bin/php-cs-fixer fix ``` on current `master` yields ``` Loaded config default from "/Users/am/Sites/stripe/stripe-php/.php-cs-fixer.php". Using cache file ".php-cs-fixer.cache". In...

### Is your feature request related to a problem? Please describe. Hello, I'm the developer of https://github.com/FabienPapet/stripe-bundle , a bundle to integrate stripe into Symfony. I would like to add...

future
feature-request

When the autoPagingInterator() is used with deletes, only 1 page can be processed, because the last item of the current collection has been deleted, therefore the pager cannot find it...

future
feature-request

Extracts `__get` method from `AbstractServiceFactory` into a trait can be used across `AbstractService` and `AbstractServiceFactory`. The method helps reading inaccessible, non-existent in our case, properties which will be utilized in...