Skip to content

1. Installation

Alexey Samara edited this page Dec 21, 2017 · 2 revisions

Requires:

  • PHP 7.0+
  • Symfony 3.0+
  • Guzzle Client 6.0+

Step 1: Download the Bundle

"require": {
        "wow-apps/symfony-packagist": "^1"
}

or

$ composer require wow-apps/symfony-packagist 

Step 2: Enable the Bundle (skip for Symfony 4)

// ./app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new WowApps\PackagistBundle\WowAppsPackagistBundle(),
    );

    // ...

    return $bundles
}

SensioLabsInsight

Clone this wiki locally