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

Paypal sandbox and Omnipay

After I purchase on my return url I get this success message: Array ( [TOKEN] => EC-55E14916SE342401J [TIMESTAMP] => 2016-02-12T16:59:00Z [CORRELATIONID] => 5d020c7d4479b [ACK] => Success [VERSION] => 119.0 [BUILD] => 18308778 ) But on the…
Vladimir Djukic
  • 2,042
  • 7
  • 29
  • 60
1
vote
1 answer

Handle paypal redirect failuers with omnipay paypal

I've implemented Omnipay paypal into my Laravel site. First I do an authorization call to paypal which looks like this: $invoice = $this->find($id); $gateway =…
henrik
  • 1,558
  • 3
  • 14
  • 29
1
vote
2 answers

How to set up Omnipay with Laravel?

I am using this packet: https://github.com/barryvdh/laravel-omnipay In my controller I added: $params = [ 'amount' => '10', 'issuer' => 22, 'description' => 'desc', 'returnUrl' =>…
Vladimir Djukic
  • 2,042
  • 7
  • 29
  • 60
1
vote
3 answers

Installing Omnipay with laravel 5.2

I am developing an eCommerce website using Laravel 5.2 and trying to install Omipay ( payment processing library ) via composer. But composer throwing the following errors when I tried. Your requirements could not be resolved to an installable set…
Rizwan Khan
  • 474
  • 2
  • 7
  • 21
1
vote
3 answers

Omnipay migs integration

Hello I'm using omnipay github lib with migs integration in my project. The sample code isn't seems to be working. Can anyone help me with this? require_once 'vendor/autoload.php'; use \Omnipay\Omnipay as omnipay; $gateway =…
Mohammad Sharaf Ali
  • 569
  • 1
  • 4
  • 19
1
vote
2 answers

Missing CreditCard Class when using Omnipay Paypal for Laravel 5

Here are the repo included in my composer: omnipay & paypal In my config/laravel-omnipay.php: 'gateways' => [ 'paypal' => [ 'driver' => 'PayPal_Rest', 'options' => [ 'solutionType' => '', 'landingPage' …
shaNnex
  • 1,043
  • 2
  • 19
  • 34
1
vote
1 answer

Omnipay Netbanx issue with state & country errors

I'm in the process of implementing Netbanx as a payment gateway using the Omnipay PHP library, but I'm having an issues with errors relating to "Node: state" and "Node: country" strings being less than the minLength facet. Note: I'm using the test…
JasonMortonNZ
  • 3,752
  • 8
  • 34
  • 56
1
vote
0 answers

How to use OmniPay from a Joomla! component

I am trying to call OmniPay from a ChronoForms v5 form in Joomla! 3 running PHP 5,6. I have made some progress but am hitting problems with paths and Name Spaces and could use some help. After a struggle I have OmniPay installed from Composer in a…
GreyHead
  • 230
  • 3
  • 23
1
vote
1 answer

How to validate payment using PHP Omnipay and Paypal Express Checkout?

we use Paypal Express as checkout, using Omnipay php library. Now after the buyer entered his password and agreed to payment on the paypal site, he will be returned to the homepage's success page. I now wonder, how I can validate that the payment…
ffx
  • 51
  • 3
1
vote
1 answer

Error in installing omnipay in CodeIgniter

I'm trying to add omnipay in CodeIgniter (version 2.2.4) I followed the instructions in installing composer using this link:https://philsturgeon.uk/blog/2012/05/composer-with-codeigniter/ but I'm having this error: Fatal error: Uncaught…
batag
  • 11
  • 1
1
vote
0 answers

OmniPay SagePay Server method - RedirectionURL 5006 error

To give you some background, I wrote a payment class that wraps around PaypalExpress and SagePayDirect using Omnipay. It was working, but then, I also needed to add SagePayServer. Unfrotunately after three days of work, I haven't been able to get…
earthling
  • 555
  • 4
  • 14
1
vote
1 answer

laravel 5 with omnipay composer update issue

after composer update i got following error ( ! ) Fatal error: Uncaught exception 'ReflectionException' with message 'Class App\Http\Kernel does not exist' in D:\wamp\www\gastrodr\vendor\laravel\framework\src\Illuminate\Container\Container.php on…
faz faz
  • 171
  • 1
  • 3
  • 16
1
vote
0 answers

paypal permission error when using omnipay with laravel

I have used this in my project, hoping to integrate paypal express. but I've got this error: You do not have permissions to make this API call here is my controller: public function index() { $gateway = Omnipay::create('PayPal_Express'); …
shaNnex
  • 1,043
  • 2
  • 19
  • 34
1
vote
0 answers

Does Omnipay uses Website Payment Pro or Paypal Payments Pro?

I just read Paypal's documentation and I'm seriously confused. It says that 'Website Payments Pro is a legacy product and has been replaced by PayPal Payments Pro' Now when I discovered Omnipay I was certain that website payments pro and paypal…
Ant100
  • 403
  • 1
  • 8
  • 26
1
vote
1 answer

Integrate Mollie in Sylius payumbundle

I'm trying to integrate Mollie in the sylius payumbundle via the omnipay bridge. This is what my configuration looks like: sylius_payment: gateways: mollie: Mollie payum: contexts: mollie: omnipay_onsite: …
Maarten
  • 11
  • 3