Skip to content

ApiBootstraper/ABRestClientBundle

Repository files navigation

TPRestClientBundle

This Symfony2 Bundle is based on PEST library for your Symfony project.

Installation

With the deps file

Add this lines into deps:

[TPRestClientBundle]
    git=http://github.com/TracklineProject/TPRestClientBundle.git
    target=/bundles/TP/Bundle/TPRestClientBundle

And run

./bin/vendors install

Update autoloader & kernel

<?php // app/autoload.php

$loader->registerNamespaces(array(
    // ... 
    'TP'    => __DIR__.'/../vendor/bundles',
));
<?php // app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ... 
        new TP\Bundle\TPRestClientBundle\TPRestClientBundle(),
    );
}

Configurations are not implemented yet

Configuration

# app/config/config.yml

tp_rest_client:
    defaults:
        base_url:   'http://api.domain.tld'
        headers:
            - "X-Api-Version: 1"

About

API Rest Client based on Pest librairy for Symfony 2

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages