omnipay
omnipay copied to clipboard
A framework agnostic, multi-gateway payment processing library for PHP 5.6+
Would be great to require developers to translate gateway parameters. Maybe a method in GatewayInterface? The problem is when I want to provide UI for configurable parameters (apiKey, testMode etc)...
`$factory->getSupportedGateways()` contains `Buckaroo` in the list, but when I try to create it I am getting an exception: ``` RuntimeException in GatewayFactory.php line 105: Class '\Omnipay\Buckaroo\Gateway' not found ``` There...
$gateway = Omnipay::create('PayU'); $gateway->setMerchantId('JBZaLc'); $gateway->setSecretKey('GQs7yium'); $gateway->setTestMode(true); $params = [ 'txnid' => 'A_UNIQUE_TRANSACTION_ID', 'amount' => 10.50, 'productinfo' => 'A book', 'firstname' => 'Peter', 'email' => '[email protected]', 'phone' => '1234567890', 'returnUrl' =>...
There are a lot of drivers for Omnipay available but most of them don't work out of the box because they don't comply fully to the Omnipay standards. This seems...
As more gateways provide a way to tokenize creditcard details, should we create some standard for this? Problem is that the javascript is generally tied to a form, so nut...
At the moment there are 3 tickets open that relate to bank based payment systems: - https://github.com/thephpleague/omnipay/issues/243 - https://github.com/thephpleague/omnipay/issues/244 - https://github.com/thephpleague/omnipay/issues/206 I'm treating "bank based" as Electronic Funds Transfers so...
Nice to see this implemented, but the documentation is lacking. I found no way to integrate this, I use omnipay with the bridge in payum, and without notification I need...
The `OmniPay\Common\Item` class holds a single item in the basket. It has a limited number of properties that can be set, and that puts some of the gateways to shame....
Not much of an issue, more of an announcement. I recently had to write a new gateway plugin for a gateway that uses SOAP with WSDL. Previously I had worked...
I'm using ExpressoStore in EE which uses Omnipay as a payment library. And tried to update the omnipay by running `composer update`. `Fatal error: Call to undefined method Omnipay\Common\Item::getCode() in...