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
4
votes
2 answers

Generic database design for multiple gateways

I'm developing a website (with payments) that needs to support multiple payment gateways. I'm going to use omnipay package (thanks God there is a package to handle this) but now I was wondering what is the best way to store all the payment…
TJ is too short
  • 827
  • 3
  • 15
  • 35
4
votes
1 answer

Omnipay, paypal REST with laravel 5

The response i keep getting at dd($finalResponse); is: RestResponse {#298 ▼ #statusCode: 400 #request: RestCompletePurchaseRequest {#300 ▶} #data: array:4 [▼ "name" => "PAYMENT_NOT_APPROVED_FOR_EXECUTION" "message" => "Payer has not…
Harry Bosh
  • 3,611
  • 2
  • 36
  • 34
4
votes
2 answers

Laravel Omnipay with Omnipay/Paypal - Class not found

I'm trying to integrate the Omnipay Paypal package with my Laravel 4.1 application. I've installed the laravel-omnipay package, as suggested by Omnipay, and followed the instructions on how to set it up. I've added the laravel-omnipay package to…
Jazerix
  • 4,729
  • 10
  • 39
  • 71
3
votes
4 answers

SagePa 3DS2 3377 : The ACS has provided an Erro message. CReq validation failure from thephpleague/omnipay-sagepay

I'm using thephpleague/omnipay-sagepay https://github.com/thephpleague/omnipay-sagepay After receiving response from the 3DS Notification, I am running the following code: $gateway = $this->fetchGateway(); $completeRequest =…
3
votes
1 answer

Installing Omnipay/payu with laravel 5.1

I am developing a website using Laravel 5.1 and i need to have a shopping cart set up, i am trying to install Omnipay for this, i have selected three gateways i will be using: Paypal, Stripe and PayU. My require under composer.json looks like…
Sulfur0
  • 39
  • 7
3
votes
1 answer

Fatal error: Uncaught Error: Class 'Omnipay\Omnipay' not found

I'm messing around with Omnipay and I received this message: Fatal error: Uncaught Error: Class 'Omnipay\Omnipay' not found The directory listing: composer.json composer.lock test.php vendor test.php
John
  • 1
  • 13
  • 98
  • 177
3
votes
1 answer

Using Omnipay gateway in Sylius with Payum + OmnipayBridge

I have implemented an Omnipay gateway that I now would like to use in Sylius which uses payum 1.3, payum-bundle 1.0, and omnipay-bridge 1.0. I have configured the gateway (it's a redirecting one that shows a separate payment page and, once payment…
vesse
  • 4,871
  • 26
  • 35
3
votes
1 answer

Omnipay paypal integration - confirming payment status

I use Omnipay paypal library. I can make a successful payment but I have problems confirming the payment status. In the response I always get PAYMENTINFO_0_PAYMENTSTATUS => Pending Here is my purchase code - I get redirected to paypal and it's all…
bukowski
  • 1,893
  • 7
  • 34
  • 54
3
votes
0 answers

Any example of payments for omnipay?

I'm trying to use omnipay to have a easy way to implement payments on my portal. I'm interesting on paypal-express, authorize.net, mollie so far. Payments are different each other and they need different kind of credentials and different parameters…
Bastianon Massimo
  • 1,710
  • 1
  • 16
  • 23
3
votes
1 answer

Omnipay add new gateway

Based on this answer: Omnipay how to add new gateway I try to add a new gateway for omnipay. My folder…
3
votes
2 answers

Laravel Session is not persisting when redirecting to external website

I am assigning the following array to transactionInfo. $transactionDetails=[ 'amount' => $total, 'description'=>$description, 'notify_url'=>'http://url.com/paypal/log', …
tylersDisplayName
  • 1,603
  • 4
  • 24
  • 42
3
votes
2 answers

How do I get PayPal_Express response using OmniPay?

I have searched all over and have ran in circles on OmniPays github trying to find documentation on how to implement PayPal Express in OmniPay. $response = Omnipay::purchase([ 'amount' => $total, 'encodedTestIDs' =>…
tylersDisplayName
  • 1,603
  • 4
  • 24
  • 42
3
votes
1 answer

How to use omnipay for implementing online payment with CodeIgniter?

I am trying to using omnipay for implementing online payment. I have read several article on this topic. Also, I have read the omnipay documentation on github. But I could not understand, how can I implement it ? Because, The documentation is not…
user3617840
  • 67
  • 2
  • 10
3
votes
1 answer

Omnipay Stripe Extra Parameters

Im trying to use the Omnipay API with Stripe, but I can't pass in extra parameters such as "Name", "Metadata", or "Zip". // The token is grabbed from stripe JS $this->stripe_gateway = Omnipay::create('Stripe'); $response =…
JREAM
  • 5,741
  • 11
  • 46
  • 84
3
votes
1 answer

Omnipay - How do I pass 'custom' or 'invoice' parameters to Paypal?

In the past I have used html forms to pass hidden 'custom' and 'invoice' parameters to Paypal during Credit Card transactions, using Paypal-Pro, so that I can use them in the IPN response later. However I can't seem to work out how to set/send these…
Daryl
  • 75
  • 7
1
2
3
19 20