2017 © Pedro PelĂĄez
 

symfony-bundle payu-bundle

Symfony PayuBundle

image

mkurc1/payu-bundle

Symfony PayuBundle

  • Tuesday, October 6, 2015
  • by mkurc1
  • Repository
  • 2 Watchers
  • 3 Stars
  • 50 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

PayUBundle

The bundle integrate PayU into Symfony Framework., (*1)

Configure

Require the bundle with composer:, (*2)

$ composer require mkurc1/payu-bundle

Enable the bundle in the kernel:, (*3)

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new PayuBundle\PayuBundle(),
        // ...
    );
}

Create your Order class and implement OrderInterface:, (*4)

<?php

namespace AppBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use PayuBundle\Entity\OrderInterface;

/**
 * @ORM\Table("payu_order")
 * @ORM\Entity()
 */
class Order implements OrderInterface
{
    /**
     * @var integer
     *
     * @ORM\Column(type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    private $id;


    public function getName()
    {
        return 'Order';
    }

    public function getDescription()
    {
        return 'Payment order number ' . $this->getId();
    }

    public function getTotalPrice()
    {
        return 111; // your price
    }

    /**
     * @return int
     */
    public function getId()
    {
        return $this->id;
    }
}

Create your PayuOrderRequest class:, (*5)

<?php

namespace AppBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use PayuBundle\Entity\PayuOrderRequest as AbstractPayuOrderRequest;

/**
 * @ORM\Table("payu_request")
 * @ORM\Entity()
 */
class PayuOrderRequest extends AbstractPayuOrderRequest
{
    /**
     * @var Order
     *
     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Order")
     * @ORM\JoinColumn(nullable=false)
     */
    private $order;

    /**
     * @return Order
     */
    public function getOrder()
    {
        return $this->order;
    }

    /**
     * @param Order $order
     */
    public function setOrder($order)
    {
        $this->order = $order;
    }
}

Configure your application:, (*6)

# app/config/config.yml
monolog:
    handlers:
        payu:
            type: stream
            path: "%kernel.logs_dir%/payu.log"
            channels: [payu]

payu:
    class:
        request: AppBundle\Entity\PayuOrderRequest # your PayuOrderRequest class
    redirect: app_profile_edit # redirect to route after payment
    environment: secure
    pos_id: 145227
    signature_key: 13a980d4f851f3d9a1cfc792fb1f5e50

Configure your routing:, (*7)

# app/config/routing.yml
payu:
    resource: "@PayuBundle/Controller/"
    type:     annotation

Create your Controller:, (*8)

<?php

namespace AppBundle\Controller;

use AppBundle\Entity\Order;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;

/**
 * @Route("/order")
 */
class OrderController extends Controller
{
    /**
     * @Route("/pay/{order}")
     * @Method("GET")
     */
    public function payAction(Order $order)
    {
        $payRequest = $this->get('payu.client')->createRequest($order);

        return $this->redirect($payRequest->getResponse()->redirectUri);
    }
}

Update your database schema:, (*9)

$ php app/console doctrine:schema:update --force

You now can use your payment system!, (*10)

License

The bundle is released under the MIT License., (*11)

The Versions

21/09 2015

1.0.2

1.0.2.0

Symfony PayuBundle

  Sources   Download

MIT

The Requires

 

by MichaƂ Kurcewicz

payment ecommerce payu

21/09 2015

1.0.1

1.0.1.0

Symfony PayuBundle

  Sources   Download

MIT

The Requires

 

by MichaƂ Kurcewicz

payment ecommerce payu

21/09 2015

1.0.0

1.0.0.0

Symfony PayuBundle

  Sources   Download

MIT

The Requires

 

by MichaƂ Kurcewicz

payment ecommerce payu