For8BitBundle
This symfony3 bundle allows you to get JSON-encoded locations data stored in predefined format., (*1)
Transport layer is provided by third-party bundle guzzlehttp/guzzle., (*2)
You can find more
information about For8BitBundle on its dedicated page at
https://github.com/ilias25/for8bit-bundle., (*3)
Installation
Installing the bundle via packagist is the quickest and simplest method of installing the bundle. Here are the steps:, (*4)
Step 1: Composer require
$ php composer.phar require "ilias25/for8bit-bundle":"dev-master"
Step 2: Enable the bundle in the kernel
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Ilias25\For8BitBundle\For8BitBundle(),
// ...
);
}
Step 3: Add routing (for default controller)
ilias25-for8bit:
resource: '@For8BitBundle/Resources/config/routing.yml'
prefix: /for8bit
That's it! You are ready to use For8BitBundle by path /for8bit with symfony3!, (*5)