/PaymentBundle

Payment bundle for Symfony2

Primary LanguagePHP

Installation

Update deps file

[StfalconPaymentBundle]
    git=https://github.com/stfalcon/PaymentBundle.git
    target=bundles/Stfalcon/Bundle/PaymentBundle

Update autoload.php

<?php
$loader->registerNamespaces(array(
   ...
    'Stfalcon'         => __DIR__.'/../vendor/bundles'
    ...
));

Update AppKernel.php

<?php
        $bundles = array(
            ....
            new Stfalcon\Bundle\PaymentBundle\StfalconPaymentBundle()
            ....
        );

Update Configuration config.yml

stfalcon_payment:
    interkassa:
        shop_id:
        secret_key:

Update routing.yml

StfalconPaymentBundle:
    resource: "@StfalconPaymentBundle/Resources/config/routing/payment.xml"
    prefix:   /payment