itkg/profiler

Itkg profiler library

dev-master 2015-01-06 21:11 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:24:39 UTC


README

Build Status Scrutinizer Code Quality Code Coverage

Installation

Installation by Composer

If you use composer, add itkg/profiler as a dependency to the composer.json of your application

    "require": {
        ...
        "itkg/profiler": "dev-master"
        ...
    },

To install assets in your web directory with composer, you can add this lines :

    "extra": {
        "itkg_profiler_asset_dir": "path/to/your/web/directory"
    },
    "scripts": {
        "post-update-cmd":  "Itkg\\Profiler\\Composer\\Installer::copyAssets",
        "post-install-cmd": "Itkg\\Profiler\\Composer\\Installer::copyAssets"
    }