This Symfony2 Bundle is based on PEST library for your Symfony project.
Add this lines into deps
:
[TPRestClientBundle]
git=http://github.com/TracklineProject/TPRestClientBundle.git
target=/bundles/TP/Bundle/TPRestClientBundle
And run
./bin/vendors install
<?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
# app/config/config.yml
tp_rest_client:
defaults:
base_url: 'http://api.domain.tld'
headers:
- "X-Api-Version: 1"