Skip to content
Alexey Samara edited this page Feb 6, 2017 · 5 revisions
Installation Commands Usage

Installation:

Requires:

  • PHP 7.0+
  • Symfony 3.0+
  • Guzzle Client 6.0+
  • Doctrine ORM 2.5+

Step 1: Download the Bundle

"require": {
        "wow-apps/symfony-proxybonanza": "^1.0.0"
}

or

$ composer require wow-apps/symfony-proxybonanza

Step 2: Enable the Bundle

// ./app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new WowApps\ProxyBonanzaBundle\WowAppsProxyBonanzaBundle()
    );

    // ...

    return $bundles
}

Step 3: Add configuration

# ProxyBonanza API
wow_apps_proxy_bonanza:
    api_url: "https://api.proxybonanza.com/v1/"
    api_key: "testAPIkey" # API key can be obtained in user panel in 'Account settings'.

Step 4: Update DB structure

Run command:

./bin/console doctrine:schema:update --force