2017 © Pedro Peláez
 

library guide

Endroid Guide

image

endroid/guide

Endroid Guide

  • Sunday, July 15, 2018
  • by endroid
  • Repository
  • 1 Watchers
  • 1 Stars
  • 674 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 17 Versions
  • 12 % Grown

The README.md

Guide

By endroid, (*1)

Latest Stable Version Build Status Total Downloads Monthly Downloads License, (*2)

This library helps you building a TV guide from different sources., (*3)

Installation

Use Composer to install the library., (*4)

``` bash $ composer require endroid/guide, (*5)


## Symfony integration Register the Symfony bundle in the kernel. ```php // app/AppKernel.php public function registerBundles() { $bundles = [ // ... new Endroid\Guide\Bundle\GuideBundle\EndroidGuideBundle(), ]; }

The bundle makes use of different loaders to build a guide. Each loader having its own configuration. This is an example of such a configuration., (*6)

endroid_guide:
    shows:
        -
            type: epguides
            label: Fargo
        -
            type: epguides
            label: Homeland

Add the following section to your routing to be able to visit the guide., (*7)

yml endroid_guide: resource: "@EndroidGuideBundle/Resources/config/routes.yaml" prefix: /guide, (*8)

Versioning

Version numbers follow the MAJOR.MINOR.PATCH scheme. Backwards compatibility breaking changes will be kept to a minimum but be aware that these can occur. Lock your dependencies for production and test your code when upgrading., (*9)

License

This bundle is under the MIT license. For the full copyright and license information please view the LICENSE file that was distributed with this source code., (*10)

The Versions