jhv/payment-core-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.

PaymentCoreBundle

Installs: 23

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:symfony-bundle

dev-master 2013-06-06 19:11 UTC

This package is not auto-updated.

Last update: 2020-01-19 13:28:30 UTC


README

Symfony2 Bundle :: Administração e interligação de objetos junto ao serviço de pagamento.

Configuration Reference

Arquivo de configuração padrão.

# app/config.yml
### Coração do pagamento
jhv_payment_core:
    ### Nome da conexão
    connection: "default"
    
    ### Classes para configuração
    classes:
        credit          : "Entity\\Credit"
        debit           : "Entity\\Debit"
        instruction     : "Entity\\PaymentInstruction"
        transaction     : "Transaction"
        payment_manager : "JHV\\Payment\\CoreBundle\\Manager\\PaymentManager"
        result          : "JHV\\Payment\\CoreBundle\\Operator\\Connection\\Result"
        
    ### Ouvintes // Listeners
    listeners:
        operation       : "JHV\\Payment\\CoreBundle\\Listener\\OperationListener"
        transaction     : "JHV\\Payment\\CoreBundle\\Listener\\TransactionListener"