mic / log-like-rails
A package for Laravel 4 to log every requests and input like Ruby On Rails.
Installs: 53
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/mic/log-like-rails
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-10-21 07:03:16 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.
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
