├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json └── src ├── EasyLogFormatter.php └── EasyLogHandler.php /.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyCorp/easy-log-handler/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyCorp/easy-log-handler/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyCorp/easy-log-handler/HEAD/composer.json -------------------------------------------------------------------------------- /src/EasyLogFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyCorp/easy-log-handler/HEAD/src/EasyLogFormatter.php -------------------------------------------------------------------------------- /src/EasyLogHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyCorp/easy-log-handler/HEAD/src/EasyLogHandler.php --------------------------------------------------------------------------------