The LswApiCallerBundle adds a CURL API caller to your Symfony2 application. It is easy to use from the code and is aimed to have full debugging capabilities.
Read the LeaseWebLabs blog about LswApiCallerBundle
- PHP 5.3 with curl support
- Symfony 2.1 (works under Symfony 2.0 as well)
Installation is broken down in the following steps:
- Download LswApiCallerBundle using composer
- Enable the Bundle
- Make sure the cURL module in PHP is enabled
Add LswApiCallerBundle in your composer.json:
{
"require": {
"leaseweb/api-caller-bundle": "*",
...
}
}Now tell composer to download the bundle by running the command:
$ php composer.phar update leaseweb/api-caller-bundleComposer will install the bundle to your project's vendor/leaseweb directory.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new Lsw\ApiCallerBundle\LswApiCallerBundle(),
);
}On a Debian based distribution (like Ubuntu) the package is called "php5-curl" and can be installed using the following commands:
$ sudo apt-get install php5-curl
$ sudo service apache2 restartOn a RedHat based distribution (like CentOS) the package is called "php-curl" and can be installed using the following commands:
$ sudo yum install php-curl
$ sudo service httpd restartTo check this create and run a PHP file with the following contents:
<?php phpinfo() ?>It should display that the option "cURL support" is set to "enabled".
This package should work on a Windows installation as well provided the CURL support is enabled in PHP.
You can use the caller by getting the service "api_caller" and using the "call" function with one of the available call types:
- HttpGetJson
- HttpPostJson
- HttpPutJson
- HttpDeleteJson
- HttpGetHtml
Example of usage with the "HttpGetJson" call type:
use Symfony\Bundle\FrameworkBundle\Controller\Controller
use Lsw\ApiCallerBundle\Call\HttpGetJson;
class SomeController extends Controller
{
public function someAction()
{
...
$output = $this->get('api_caller')->call(new HttpGetJson($url, $parameters));
...
}
}This bundle is under the MIT license.
The "wall-socket" icon in the web debug toolbar is part of the Picas icon set (official website: http://www.picasicons.com). The icon is licensed and may only be used to identifying the LswApiCallerBundle in the Symfony2 web debug toolbar. All ownership and copyright of this icon remain the property of Rok Benedik.
