Questions tagged [omnipay]

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+

Omnipay is a payment processing library for PHP, based on ideas from .

292 questions
16
votes
1 answer

Difference between Omnipay and Payum

I was looking for a payment solution for my web-app. I saw that there are APIs like stripe (for credit cards) or PayPal plugins that can deal with certain paying methods. Then I saw that there are libaries that can deal with all sorts of paying…
damianh
  • 309
  • 2
  • 10
15
votes
1 answer

Omnipay paypal integration with laravel 4

I want to integrate Omnipay paypal in laravel 4. I have gone through but I was unable to understand how to do it. I didn't find any documentation. I have gone through this, this and this. I have installed it using Composer. Now I am confused in…
Enthusiast
  • 761
  • 2
  • 7
  • 14
11
votes
2 answers

Laravel Omnipay - The transactionReference parameter is required

I'm working with the open source ticket system called Attendize. They already have the payment provider Stripe integrated. Now I'm trying to make this work with the payment provider Mollie. The problem is I keep stumbling on this error: My code…
nielsv
  • 6,540
  • 35
  • 111
  • 215
9
votes
4 answers

posting to endpoint to get the redirect url before purchase

I'm trying to create a custom omnipay driver for a local gateway called creditguard. For this gateway you need to post the data to the endpoint and get back a redirect url for the payment form. My question is how do you post and get the response…
nirz
  • 237
  • 3
  • 8
9
votes
2 answers

How to run $curl in xampp shell?

There is a plugin that need to config the composer First , I need to run: https://github.com/thephpleague/omnipay composer require omnipay/paypal:~2.0 So, I have type in the above command in xampp shell, it works, and a composer.json , vendor…
user3538235
  • 1,991
  • 6
  • 27
  • 55
9
votes
1 answer

PayPal Express Checkout with Omnipay not showing order in Sandbox account

I have used the Omnipay PayPal_Express checkout script on my site and everything works fine when I pay for an order except the order doesn't show in the PayPal Sandbox account. It does show when I use the same script for PayPal_Pro. My code is as…
Pete Naylor
  • 776
  • 2
  • 14
  • 33
5
votes
1 answer

Omnipay MiGS: how to handle users closing the browser after a successful transaction?

Assuming a user completes their transaction successfully after being redirected to Mastercard for payment, but closes the browser before redirecting back to the vpc_ReturnURL supplied to the Omnipay driver, is there a way to handle this…
Ryan
  • 10,041
  • 27
  • 91
  • 156
5
votes
2 answers

Cybersource Payment Gateway set multiple redirect url

I am having issues with cybersource payment. I am using omnipay for cybersource. The issue is that my site has multiple locations where payments are collected like while adding credit in the account there is a separate url, while registration page…
Sandeep J Patel
  • 910
  • 9
  • 24
5
votes
1 answer

How to create a customer in omnipay-stripe

I'm using Omnipay-stripe and I'm trying to Create a customer with the following code: $gateway = Omnipay::create('Stripe'); $gateway->setApiKey('sk_test_....'); $token = $this->input->post('stripeToken'); // Code Igniter for…
Rob
  • 2,332
  • 7
  • 31
  • 35
5
votes
0 answers

How to add paypal pro (omnipay gateway) to sylius

I feel like I've read quite a few threads of people wanting help with adding a gateway, but I haven't seemed to find any solution that's been shared once the asker figured out the answer. I know there have been suggestions to look at the Payum…
sabliao
  • 147
  • 3
  • 10
5
votes
1 answer

Omnipay how to add new gateway

Does anyone know how I could add a new payment gateway to Omnipay? I read the blog https://groups.google.com/forum/#!topic/omnipay/j7OeQQSB95A I followed the following steps: Cloned the Omnipay repository using composer Inside the vendor/Omnipay/…
Prashant
  • 2,005
  • 3
  • 17
  • 24
5
votes
3 answers

omnipay paypal express not returning address

I am using the omnipay setup here: https://github.com/adrianmacneil/omnipay to process a paypal express checkout. The process works fine in that the user is redirected to paypal -> they login and choose to pay -> they get returned to my site at…
Stuh_blue
  • 171
  • 2
  • 11
4
votes
2 answers

How to mock a paypal transaction in laravel with phpunit?

While testing: While checkout items from my website, need to mock confirmation... so we can then continue processing the order. Where the testing can be done.. How would i swap out good code for a mock? such as: $gateway =…
Harry Bosh
  • 3,611
  • 2
  • 36
  • 34
4
votes
1 answer

Response object - Payment with Mollie and Omnipay

I'm trying to create a payment with Omnipay and Mollie in my Laravel project. I'm using the following 2 libraries: https://github.com/barryvdh/laravel-omnipay https://github.com/thephpleague/omnipay-mollie I'm doing the following in my…
nielsv
  • 6,540
  • 35
  • 111
  • 215
4
votes
3 answers

No 'Access-Control-Allow-Origin' header is present on the requested resource - Mollie payment ajax

I'm trying to create a mollie payment with the following 2 libraries: https://github.com/barryvdh/laravel-omnipay https://github.com/thephpleague/omnipay-mollie When the client fills in the form and submits an ajax request will be made to a…
nielsv
  • 6,540
  • 35
  • 111
  • 215
1
2 3
19 20