PayumBundle
PayumBundle copied to clipboard
Payum offers everything you need to work with payments. From simplest use cases to very advanced ones.
Hi! I have the PayumBundle set up with `stripe_checkout` gateway and users can do one time payments withouts issues. However, I find the customer email field empty in the Stripe...
Add configuration witch Entity Manager should be used. Also, fix https://github.com/Payum/PayumBundle/issues/463 - setup as default entity manager from Doctrine configuration
In documentation https://github.com/Payum/Payum/blob/master/docs/symfony/configure-payment-in-backend.md#with-sonata-admin is specified support for sonata admin, but in code https://github.com/Payum/PayumBundle/blob/master/DependencyInjection/PayumExtension.php#L247 support for sonata admin is disabled by exception because it's broken for at least 4 years. Issue...
Writing some Behat tests for a Stripe gateway, I found that each generated capture tokens were never been invalidated. Reading the documentation of `payum/payum` about [`capture.php`](https://github.com/Payum/Payum/blob/master/docs/examples/capture-script.md) and how `payum/payum-bundle` is...
When I install the bundle with a fresh Symfony 5.2 installation I got the following error: ``` Attempted to load class "MergeQuery" from namespace "League\Uri\Modifiers". Did you forget a "use"...
TwigUtil uses a static SplObjectStorage when registering templates. This leads to memory leaks when you have a lot of funtional tests. Registering templates through a service avoids that memory leak.
Hello, Has anyone tested paypal express checkout bundle in production? I have tried to run a test, and keep getting this error: ``` "TIMESTAMP" => "2020-04-28T09:48:24Z" "CORRELATIONID" => "96ca9cf247878" "ACK"...
Hi! I am trying to set application_fee. Stripe docs say: ``` $charge = \Stripe\Charge::create(array( "amount" => 1000, "currency" => "eur", "source" => "tok_visa", "application_fee" => 123, ), array("stripe_account" => "{CONNECTED_STRIPE_ACCOUNT_ID}"));...
I'm looking simple and correct way to run my process when payment is finish - captured, cancelled. I think it's a typical requirement. I don't want to do this in...
Hello, in the last 4 days we got 2 payments from different buyers but our orders in our cart system were not triggered. The carts of the buyers were still...