PHPackages                             polidog/web-pay-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. polidog/web-pay-bundle

ActiveLibrary

polidog/web-pay-bundle
======================

0.0.2(9y ago)0170MITPHPPHP &gt;= 5.4.0

Since Aug 1Pushed 9y ago1 watchersCompare

[ Source](https://github.com/polidog/WebPayBundle)[ Packagist](https://packagist.org/packages/polidog/web-pay-bundle)[ RSS](/packages/polidog-web-pay-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (7)Versions (3)Used By (0)

WebPayBundle
============

[](#webpaybundle)

A Symfony Bundle for including [webpay-php](https://github.com/webpay/webpay-php)

Requirements
------------

[](#requirements)

PHP 5.4+

Installation
------------

[](#installation)

```
$ composer require polidog/web-pay-bundl

```

and adding an instance of `Polidog\WepPayBundle\PolidogWebPayBundle` to your application's kernel.

```
$ vim app/AppKernel.php

...

    public function registerBundles()
    {
        $bundles = [
            // ...
            new Polidog\WebPayBundle\PolidogWebPayBundle(),
        ];
        // ...

    }

```

and parameter settings.

```
polidog_web_pay:
    public_api_key: "your pubic api key"
    secret_api_key: "your secret api key"

```

Usage
-----

[](#usage)

basic api call for controller.

```
