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
3
votes
1 answer

Omnipay / Paypal Gateway - Transaction shows as success whereas Paypal Sandbox account do not show debt/credit of the transaction

1) I am triying for a while to get Omnipay / Paypal to work. My issue is I get "ACK = Success" but when going into the Sandbox test accounts, neither the buyer nor seller shows the transaction as booked. 2) I also got the feeling not all APIs are…
3
votes
3 answers

How do I use omnipay to check if it's a pending payment or not

I'm using Omnipay 2.1 and CodeIgniter 2.1.4 to receive Paypal payments. I use this line to complete the purchase and check if the payment was sent: $bool = $gateway->completePurchase(array('amount' => $total, 'currency' => 'EUR')) …
PJ Bergeron
  • 2,788
  • 4
  • 25
  • 42
3
votes
1 answer

How to do a capture after an authorize? and how to do a refund? in omnipay

omnipay doesn't have a complete documentation! I am trying to do a capture after an authorize but i cant seem to get it right.
Waqleh
  • 9,741
  • 8
  • 65
  • 103
3
votes
1 answer

Setting shipping info in OmniPay

I'm trying to set a shipping info (name,address, email, etc) using OmniPay for PayPal Express. I've tried adding shipping info in options array in purchase($options) object: $options = array( // required fields (username, pass, etc) //…
dede
  • 2,523
  • 2
  • 28
  • 32
2
votes
0 answers

Payment method fails - Laravel & Stripe

I'm working with Laravel and Stripe, and I want to create a customer via code. Still, I can't do it cause the payment method fails. Stripe puts the default card, and I want to create it before the payment method. I'm working with Omnipay, so I can't…
2
votes
0 answers

Omnipay driver see raw request for debugging

I am building a custom driver for Omnipay. I am looking for a way to see the raw request from my HTTP calls. I would like to see the headers and the body of the request to make sure the output is right and I have not made a mistake. Some requests…
jannej
  • 864
  • 14
  • 26
2
votes
1 answer

How to remove guzzle/guzzle package?

I need install omnipay package for laravel. composer require ignited/laravel-omnipay During the installation of the package received an error: Your requirements could not be resolved to an installable set of packages. With list a problems: …
Dmitriy Doronin
  • 728
  • 1
  • 7
  • 13
2
votes
0 answers

Omnipay create new gateway

Any one can provide me any guidance or link about each file of omnipay for example which methods are should be defined in Gateway.php or which are in Message folder ? When getData is called automatically, is reponse etc.
Kapil Verma
  • 178
  • 3
  • 17
2
votes
2 answers

Creating a subscription with Stripe Checkout and Omnipay

My code creates and loads the Stripe Checkout where the customer enters name and card details and is returned to a php script where the token is received and used to create a Stripe customer and then send a purchase request to charge their card. How…
Nick W
  • 877
  • 2
  • 15
  • 30
2
votes
1 answer

Payments with Laravel Omnipay (mollie gateway)

I'm currently stuck trying to create a payment with Omnipay. I have the following libraries installed in my project: https://github.com/barryvdh/laravel-omnipay https://github.com/thephpleague/omnipay-mollie But I'm having problems starting. I see…
nielsv
  • 6,540
  • 35
  • 111
  • 215
2
votes
1 answer

Omnipay with PayPal express checkout

I'd like to integrate PayPal Express Checkout with Omnipay, but documentation is totally uncompleted. How can I run methods like 'setExpressCheckout', 'doExpressCheckout' and 'getExpressCheckout'? Also, how to redirect all PayPal calls to IPN…
Poniat
  • 31
  • 4
2
votes
1 answer

Using Omnipay in Laravel project

I have to implement Omnipay library for online paymant system in PHP. I've read Omnipay documentation, but I don't get how it works exactly. // Setup payment gateway $gateway = Omnipay::create('Stripe'); $gateway->setApiKey('abc123'); What should…
2
votes
1 answer

Stripe connect with Omnipay

How do I set the application fee on Stripe Omnipay? It works fine when I use stripe's php library but could not get around with Omnipay. Error Message: Can only apply an application_fee when the request is made on behalf of another account (using…
Wagles
  • 33
  • 5
2
votes
1 answer

Sylius V0.17 How to add payment methods

I installed Sylius via composer create-project -s dev sylius/sylius-standard acme on my local server to take a closer look at it for a upcoming project. Now I'm stuck at adding payment-methods/ a payment-gateway. I tried to follow the docs and…
macro64
  • 61
  • 7
2
votes
3 answers

How to get all query string from Request class in laravel 5.0

In my project I am using payment gateway and Omnipay want to know if its redirecting from "back to webiste button" or by clicking on cancel button. Its redirecting to a page called complete even when its redirected. I have checked the code and there…
Code Star
  • 55
  • 1
  • 2
  • 9
1 2
3
19 20