xola / omnipay-bundle
Integrates Omnipay 3 with Symfony 2+
Installs: 17 270
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 6
Forks: 11
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7
- league/omnipay: ^3.0
- php-http/logger-plugin: ^1.1
- symfony/framework-bundle: >=2.1 <4.0
Requires (Dev)
- omnipay/authorizenet: ^3.3
- omnipay/eway: ^3.0
- omnipay/mollie: ^5.2
- omnipay/paymentexpress: ^3.0
- omnipay/paypal: ^3.0
- omnipay/sagepay: ^3.2
- omnipay/securepay: ^3.0
- omnipay/stripe: ^3.1
- omnipay/worldpay: ^3.0
- phpunit/phpunit: ^6
- symfony/yaml: ^3.4
This package is not auto-updated.
Last update: 2025-03-25 09:20:20 UTC
README
This bundle integrates the Omnipay payment processing library into Symfony2.
This bundle supports Omnipay 3
Installation
To install via Composer, add the following to your composer.json
file:
{ "require": { "xola/omnipay-bundle": "^3" } }
Add the bundle to your application kernel.
// app/AppKernel.php public function registerBundles() { return array( // ... new Xola\OmnipayBundle\OmnipayBundle(), // ... ); }
Configuration
(Optional) In the Omnipay library, you would programmatically set parameters required by a gateway. With this bundle, it's possible to configure these parameters in your Symfony config files.
# app/config/password_dev.yml parameters: # Custom gateway omnipay.my_custom_key.apiKey: myGatewayKey omnipay.my_custom_key.gateway: MyGateway # Default Stripe gateway omnipay.stripe_default.apiKey: myApiKey omnipay.stripe_default.gateway: Stripe # Gateway for Stripe Canada account omnipay.stripe_canada.apiKey: myStripeCanadaApiKey omnipay.stripe_canada.gateway: Stripe # Authorize.NET AIM omnipay.authorize_net_aim.transactionKey: myTransactionKey omnipay.authorize_net_aim.gateway: AuthorizeNet_AIM
In the sample configuration above, my_custom_key
is a unique key you define for each of your gateways.
omnipay.my_custom_name.gateway
is the class name for a Omnipay gateway driver (e.g. Stripe
). You may choose to define
multiple keys for the same Omnipay gateway with different credentials. In the above configuration, we have configured
two gateway definitions for Stripe -- both use the Stripe Omnipay driver, however, they each use a different set of
credentials.
Usage
Use the new omnipay
service to create gateway object:
// From within a controller. This will return an instance `\Omnipay\Stripe`. `stripe_default` is the key as // specified in the config. $gateway = $this->get('omnipay')->get('stripe_default'); // From within a controller. This will return an instance of `\Omnipay\MyGateway` as specified in // `omnipay.my_custom_name.gateway` $gateway = $this->get('omnipay')->get('my_custom_name');
The rest is identical to how you would normally use Omnipay
$formData = ['number' => '4242424242424242', 'expiryMonth' => '11', 'expiryYear' => '2018', 'cvv' => '123']; $response = $gateway->purchase(['amount' => '10.00', 'currency' => 'USD', 'card' => $formData])->send(); if ($response->isSuccessful()) { // payment was successful: update database print_r($response); } elseif ($response->isRedirect()) { // redirect to offsite payment gateway $response->redirect(); } else { // payment failed: display message to customer echo $response->getMessage(); }
The gateway classes which are returned are already initialized with the parameters defined in the config files.