mic/log-like-rails

There is no license information available for the latest version (dev-master) of this package.

A package for Laravel 4 to log every requests and input like Ruby On Rails.

dev-master 2014-09-10 13:32 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:08:56 UTC


README

A package for Laravel 4 to log every requests and input like Ruby On Rails.

*** YOU DON'T HAVE TO ADD LOG BY YOURSELF. THIS PACKAGE WILL LOG EVERY REQUEST.

Log-Like-Rails Example

Installation

Add LogLikeRails as a requirement to composer.json:

{
  ...
  "require": {
    ...
    "mic/log-like-rails": "dev-master"
    ...
  },
}

Update composer:

    php composer.phar update

Add the provider to your app/config/app.php:

  'providers' => array(
  
    ...
    
    'Mic\LogLikeRails\LogLikeRailsServiceProvider',
    
  ),

Publish package config:

  php artisan config:publish mic/log-like-rails