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
0
votes
0 answers

Omnipay Stripe payment validation error with default example

According to the documentation, this is the example code I used to make the payment. $paymentMethod = $_POST['paymentMethodId']; $response = $gateway->authorize([ 'amount' => '10.00', 'currency' =>…
Dasun Tharanga
  • 163
  • 1
  • 11
0
votes
0 answers

Laravel Paypal via Omnipay - Payee account is invalid

I am trying to submit a payment against Paypal Sandbox, using the Omnipay Paypal module. I think that I have everything set up in terms of sandbox account, and my transaction is working if I don't specify a card as payment method. I am correctly…
Adam Dulson
  • 283
  • 5
  • 16
0
votes
0 answers

omnipay/paypal and notifyUrl issue

Dear stackoverflow community, Recently PayPal contacted me to upgrade my 'old-style' CodeIgniter e-commerce cart (an old standard paypal gateway with a simple form to related paypal endpoint) to a solution with access token and client_id + secret. I…
Hijacker
  • 1
  • 1
0
votes
0 answers

What values can we send to Stripe using Omnipay

I have two questions One: What values can we send to Stripe using Omnipay authorize(), example below is only sending amount and description $response = $gateway->authorize([ 'amount' => '10.00', 'currency' …
Yaser
  • 15
  • 3
0
votes
0 answers

CodeIgniter Omnipay Przelewy24: Message: The email parameter is required

I try enable payment gateway Przelewy24 with Omnipay library for Codeigniter 3. For this I install via composer both libraries. Library: https://github.com/mysiar-org/omnipay-przelewy24v1 and https://github.com/thephpleague/omnipay Then I create…
0
votes
0 answers

CodeIgniter Omnipay Przelewy24 gateway library | failed to open stream: autoload.php

For CL3 I use omnipay library: https://github.com/thephpleague/omnipay for Przelewy24: https://github.com/TicketSwap/omnipay-przelewy24 Both I install via composer and I see in: vendor/omnipay vendor/ticketswap Fallowing to documentation I…
0
votes
1 answer

Omnipay Paypal Rest - Whats is the final complete payment state?

I need to know what is the paypal payment completed state of rest api. I am doing some tests with the api. Is it "approved" or "completed"? I am using omnipay, using this code: $response = $gateway->completePurchase($params)->send(); $data =…
webifo
  • 5
  • 2
0
votes
1 answer

Unavailability of package razorpay/omnipay-razorpay

My composer.json file is as follows: { "name": "razorpay/razorpay", "description": "Razorpay PHP Client Library", "keywords": ["razorpay", "api", "php", "client"], "authors": [ { "name": "Abhay Rana", …
0
votes
0 answers

Class '\Omnipay\Gkash\Gateway' not found

I was trying to implement the gkash payment gateway in laravel project v5.8 but face some issues here, the issues is like local.ERROR: Class '\Omnipay\Gkash\Gateway' not found {"userId":"61efa2c1a4876ad729519ac1","exception":"[object]…
hannn1
  • 61
  • 1
  • 2
  • 6
0
votes
1 answer

Omnipay: Transfering money form PayPal account to Stripe account

I am creating a laravel project where I am using omnipay. I have never used omnipay before but what I know is that one can transfer money between two accounts (e.g. PayPal). However, my question is, is it possible to transfer money between two…
nooby98
  • 77
  • 6
0
votes
1 answer

Composer require patronbase/omnipay-redsys problem 1

Problem 1 - patronbase/omnipay-redsys[dev-master, v3.1.0] require omnipay/common dev-address3-support -> found omnipay/common[dev-feat-httpdecorator, dev-feat-customer, dev-feat/symfony5, dev-fix-gateway-params, dev-feat-amountinteger, dev-future,…
0
votes
1 answer

Omnipay: PayPal and Stripe sale_id for refund?

I'm trying to refund transactions via Omnipay and it looks like Omnipay supports refunds. However the documentation isn't clear and I've some confusion about how to go about this. Omnipay Example code for refund: $transaction =…
bhu1st
  • 1,282
  • 11
  • 23
0
votes
1 answer

How to install SSL certificate for sagepay on my server?

Sagepay recently changed their SSL and it has been causing issues. To resolve it they suggest pulling down the certificate in the browser and adding it to your root store. They don't give instructions on this and cannot clarify further. I've…
0
votes
0 answers

Call to undefined method Guzzle\Http\Client::request()

I'm using Aimeos extension with TYPO3 v9.5.14 to create a Shop website. I have a problem with the return urls from the payment gateway to the website : continueurl / cancelurl / callbackurl . I get the following error Call to undefined method…
MAZ
  • 222
  • 1
  • 14
0
votes
0 answers

Class '\Omnipay\FirstData\Gateway' not found Laravel 8

The error is: Class '\Omnipay\FirstData\Gateway' not found after request Omnipay in laravel php project.