siqwell / omnipay-coinpayments
Coinpayments gateway for Omnipay payment processing library
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 133
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 3
Open Issues: 0
Requires
- omnipay/common: ~2.0
Requires (Dev)
- omnipay/tests: ~2.0
This package is auto-updated.
Last update: 2023-06-21 21:39:19 UTC
README
Coinpayments gateway for Omnipay payment processing library.
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Stripe support for Omnipay.
Installation
Omnipay is installed via Composer. To install, simply add it
to your composer.json
file:
{ "require": { "omnipay/stripe": "~2.0" } }
And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update
Purchase
The CoinPayments integration is fairly straight forward.
$gateway = Omnipay::create('CoinPayments'); $gateway->setMerchantId('b65b2c534aced4d3f6082091aab9a3d7'); $gateway->setPrivateKey('9830beCbAe6D66460b05997530bE969D66bBa5ef0Ae0424D05a6824F97cBF7d1'); $gateway->setPublicKey('8b47f589f38cc1d177e93753ab2eb6c02a02b437d1fa1ca9a953c6928e0fa394'); $gateway->setIpnSecret('StrongSecret'); $response = $gateway->purchase([ 'amount' => '10.00', 'currency' => 'USD', // USD, RUB, EUR, etc. 'paymentMethod' => 'CreditCard', // Qiwi, CreditCard, YandexMoney, BankTransfer 'returnUrl' => 'http://merchant.com/success', // Redirect to success page 'cancelUrl' => 'http://merchant.com/failed', // Redirect to failed page 'notifyUrl' => 'http://merchant.com/notify', // Notify URL 'description' => 'Description' ])->send();