├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src └── Processor │ └── TimerProcessor.php └── tests ├── Processor └── TimerProcessorTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Processor/TimerProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/src/Processor/TimerProcessor.php -------------------------------------------------------------------------------- /tests/Processor/TimerProcessorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glopgar/monolog-timer-processor/HEAD/tests/Processor/TimerProcessorTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |