Skip to content

Latest commit

 

History

History
executable file
·
47 lines (33 loc) · 1.29 KB

README.md

File metadata and controls

executable file
·
47 lines (33 loc) · 1.29 KB

ThormeierTransportClientBundle

Build Status

Introduction

This bundle provides simple access to the OpenData Transport API in Symfony2. The Transport API provides Swiss public transport data, that is converted into instances of Doctrine-like entity classes within this bundle for further usage.

<?php

$transportClient = $this->container->get('transport.client');

This bundle provides a new transport.client service that returns an instance of Thormeier\TransportClientBundle\Service\Transport

Installation

Step 1: Composer require

Add the Github repository to your composer.json:

{
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/thormeier/transport-client"
        }
    ],
    "require": {
        "thormeier/transport-client": "dev-master"
    }
}

Step2: Enable the bundle in the kernel

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Thormeier\TransportClientBundle\ThormeierTransportClientBundle(),
        // ...
    );
}