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
1
vote
2 answers

How to send 'description' of products to Paypal express (omnipay)?

I have setup a checkout system with Ominpay and Paypal express and it worked fine in test mode so I just went 'live' with it. Unfortunately I didn't check whether all the information was sent to paypal after checkout. It seems only the amount and…
thomas jaunism
  • 805
  • 2
  • 10
  • 31
1
vote
2 answers

Does anyone have a working example of Omnipay and Sagepay Server or Sagepay Direct (with 3D Secure)?

I'm struggling to get either to work and Omnipay doesn't come with much documentation. I've successfully used it for other payment gateways but not with Sagepay. I'm trying to integrate it into CodeIgniter but can work from examples in other…
JoJo
  • 161
  • 1
  • 12
1
vote
1 answer

Laravel Omnipay Authorize.net SIM Method Merchant ID Issue

I'm Trying to implement omnipay authorize.net using SIM method but I encountered this issue: The merchant login ID or password is invalid or the account is inactive. I already set the apiloginId from my sandbox authorize.net account. I also tried…
1
vote
1 answer

omnipay package guzzle/common is abandon

When I installed omnipay through composer I got the following errors. Are there any plans to use the latest version of Guzzle? Package guzzle/common is abandoned, you should avoid using it. Use guzzle/guzzle instead. Package guzzle/stream is…
1
vote
1 answer

The amount parameter is required - Omnipay paypal with laravel

Hello I've been trying to integrate paypal with the shopping cart for my site using Omnipay paypal with Laravel 4. I've mainly used THIS tutorial so far. I'm still in the initial stages but I've hit a snag. When I try to checkout I get an error that…
thomas jaunism
  • 805
  • 2
  • 10
  • 31
1
vote
0 answers

Do any payment gateways accept negative amounts?

I'm writing some tests to go with additional validation on the OmniPay core AbstractRequest. I accept this may not be the best place to ask, but I am seeking answers from people who have had direct coding experience of the range of payment gateways…
Jason
  • 4,411
  • 7
  • 40
  • 53
1
vote
1 answer

Laravel/Omnipay paypal, pass custom shipping amount

I'm trying pass a custom shipping price to paypal express checkout. I'm using omnipay and laravel 4. I gather this is possible as referenced in the paypal express docs but cant get it to work with omnipay Ive tried the following: /*set api…
Kiee
  • 10,661
  • 8
  • 31
  • 56
1
vote
1 answer

Laravel Omnipay-Mollie error

Im trying to make a payment system on my website with Onmipay-Mollie and Barryvdh-Laravel-Omnipay When i want to make a 'payment', and submit the form used to make a payment. I'm getting an error: Omnipay \ Common \ Exception \…
Jeroen
  • 167
  • 2
  • 16
1
vote
3 answers

SSL error Omnipay Guzzle CI - verify that the CA cert is OK

I'm using Omnipay (latest version) to perform some online payments. I'm using SSL via Cloudflares fleixble SSL so there is no actual SSL certificate installed on the domain / server. It was all working perfectly fine until yesterday and I started…
Ralph Vugts
  • 425
  • 5
  • 14
1
vote
1 answer

Migs omnipay library documentation

I have just started a project on integrating mastercard as a payment option for my website. I love the structuring of the Omnipay - MiGS library but I'd love to see a documentation on the usage of the library. Thank you.
rocksyne
  • 1,264
  • 15
  • 17
1
vote
1 answer

Show billing and shipping information in Paypal Express using Omnipay

I am using Laravel with Omnipay for our ecommerce application. We direct the customers to Paypal to make their purchase. We require shipping and billing information prior to placing an order and we would like that information to continue to Paypal…
Lynx
  • 1,462
  • 5
  • 32
  • 59
1
vote
1 answer

Get Buyer Email from Omnipay Paypal Express

I integrated the Omnipay PayPal express. After the completePurchase() I need the PayPal buyer email adress. I can access the Transaction ID with $data['PAYMENTINFO_0_TRANSACTIONID'] and also the Payer ID through $_GET['PayerID']. Any ideas how to…
Prof
  • 11
  • 2
1
vote
0 answers

Omnipay, Expresso Store and 3D Secure

I'm having trouble implementing a new payment gateway for Expresso Store using the Omnipay library. The main issue is that I can access credit card related details during the PurchaseRequest by calling $this->getCard()->getName() &…
1
vote
1 answer

Error when trying to use omnipay in sylius

I am trying to use omnipay with sylius payum bundle. When i try to browse my application i am getting the following Fatal error: Call to undefined method …
1
vote
2 answers

CodeIgniter custom value with omnipay

I'm trying to pass a custom value to a payment with PayPal - OmniPay Here is the code I use : $response = $gateway->purchase( array( 'cancelUrl'=>base_url().'checkout/cancel', 'returnUrl'=>base_url().'checkout/confirm', …