PHPackages                             adityasetiono/api-logger-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. adityasetiono/api-logger-bundle

ActiveSymfony-bundle[HTTP &amp; Networking](/categories/http)

adityasetiono/api-logger-bundle
===============================

provides tools for REST API requests logging and profiling

1.2.1(8y ago)02511MITPHPPHP &gt;=5.3

Since Jul 10Pushed 8y ago1 watchersCompare

[ Source](https://github.com/adityasetiono/gamma-api-logger)[ Packagist](https://packagist.org/packages/adityasetiono/api-logger-bundle)[ RSS](/packages/adityasetiono-api-logger-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

SmartGamma API Logger Bundle
============================

[](#smartgamma-api-logger-bundle)

[![Build Status](https://camo.githubusercontent.com/eab54f698b3c11a76c274ce99c411d53bfa899c42f6ea96858750249053dd674/68747470733a2f2f7472617669732d63692e6f72672f736d6172742d67616d6d612f67616d6d612d6170692d6c6f676765722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/smart-gamma/gamma-api-logger)

\##About

SmartGamma Symfony2 REST API Logger bundle is a tool that we use to create [SmartGamma Symfony2 REST APIs](http://smart-gamma.com/).It enables detailed logging (possible to separate log) for incomming calls for APIs and tracks the duration, requests and responses body. As additional feature, it allows to profile your APIs and tracks slow API calls.

\##Installation

1. Using Composer To install GammaApiLoggerBundle with Composer just add the following to your composer.json file:

```
// composer.json
{
    // ...
    require: {
        // ...
        "gamma/api-logger-bundle": "dev-master"
    }
}

```

Then, you can install the new dependencies by running Composer’s update command from the directory where your composer.json file is located:

```
php composer.phar update gamma/api-logger-bundle

```

Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:

```
