PHPackages                             cedriclombardot/ogone-payment-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. cedriclombardot/ogone-payment-bundle

ActiveSymfony-bundle[Payment Processing](/categories/payments)

cedriclombardot/ogone-payment-bundle
====================================

Ogone payment bundle for symfony2

71.7k5[1 issues](https://github.com/cedriclombardot/OgonePaymentBundle/issues)PHP

Since Jun 8Pushed 12y ago1 watchersCompare

[ Source](https://github.com/cedriclombardot/OgonePaymentBundle)[ Packagist](https://packagist.org/packages/cedriclombardot/ogone-payment-bundle)[ RSS](/packages/cedriclombardot-ogone-payment-bundle/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (2)Used By (0)

Ogone payment bundle, help you to make payment transactions with ogone and Symfony2 [![project status](https://camo.githubusercontent.com/16cf320ec6eb8d3d3d1c215905197fdbdbb8ae594d45235800af682e05602949/687474703a2f2f7374696c6c6d61696e7461696e65642e636f6d2f6365647269636c6f6d626172646f742f4f676f6e655061796d656e7442756e646c652e706e67)](https://camo.githubusercontent.com/16cf320ec6eb8d3d3d1c215905197fdbdbb8ae594d45235800af682e05602949/687474703a2f2f7374696c6c6d61696e7461696e65642e636f6d2f6365647269636c6f6d626172646f742f4f676f6e655061796d656e7442756e646c652e706e67)\# [![build status](https://camo.githubusercontent.com/fd716e8952a4fe6e3f45d589466da9831e3b7e6d0f09e3eae83f91c376af7955/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f6365647269636c6f6d626172646f742f4f676f6e655061796d656e7442756e646c652e706e67)](https://camo.githubusercontent.com/fd716e8952a4fe6e3f45d589466da9831e3b7e6d0f09e3eae83f91c376af7955/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f6365647269636c6f6d626172646f742f4f676f6e655061796d656e7442756e646c652e706e67)\#
=====================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#ogone-payment-bundle-help-you-to-make-payment-transactions-with-ogone-and-symfony2--)

Features
--------

[](#features)

- Full featured sample controller
- Simple transactions
- Feedback managment
- Alias managment

Comming
-------

[](#comming)

- Batch operations

Setup
-----

[](#setup)

Add in your composer.json :

```
"require": {
   "cedriclombardot/ogone-payment-bundle": "dev-master"
}

```

Configure your kernel

```
$bundles = array(
    new Cedriclombardot\OgonePaymentBundle\CedriclombardotOgonePaymentBundle(),
);
```

Configure ogone in config.yml

```
cedriclombardot_ogone_payment:
    secret:
        shaInKey: Mysecretsig1875!?
        shaOutKey: Mysecretsig1875!?
        algorithm: sha512
    general:
        PSPID: MyCompagny
        currency: EUR
        language: en_EN
    design:
        title: Give Me Your money - Payment page
        bgColor: "#4e84c4"
        txtColor: "#FFFFFF"
        tblBgColor: "#FFFFFF"
        buttonBgColor: "#00467F"
        buttonTxtColor: "#FFFFFF"
        fontType: "Verdana"
```

Creation of a transaction
-------------------------

[](#creation-of-a-transaction)

In a controller

```
