├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin ├── .gitkeep └── epilog ├── bootstrap.php ├── box.json ├── commands.php ├── composer.json ├── epilog ├── phpunit.xml.dist ├── src ├── DataBag.php ├── Epilog.php ├── FakeLogTail.php ├── FlowException.php ├── InputReader.php ├── Interfaces │ ├── InputReaderInterface.php │ ├── LineParserInterface.php │ ├── LinePrinterInterface.php │ ├── TailInterface.php │ └── ThemeInterface.php ├── LogFinder │ ├── Generic.php │ └── Laravel.php ├── LogFinderFactory.php ├── LogTail.php ├── MonologLineParser.php ├── MonologLinePrinter.php ├── Theme.php └── Ticker.php ├── test ├── DataBagTest.php ├── EpilogTest.php ├── InputReaderTest.php ├── LogFinderTest.php ├── LogTailTest.php ├── MonologLineParserTest.php ├── TickerTest.php └── fixtures │ ├── laravel_a │ └── app │ │ └── storage │ │ └── logs │ │ └── log.log │ └── laravel_b │ └── app │ └── storage │ └── logs │ └── log.txt └── themes ├── chaplin.yml ├── default.yml ├── forest.yml ├── punchcard.yml ├── scrapbook.yml ├── sunrise.yml ├── sunset.yml └── traffic.yml /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | build/ 3 | composer.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/epilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/bin/epilog -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/bootstrap.php -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/box.json -------------------------------------------------------------------------------- /commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/commands.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/composer.json -------------------------------------------------------------------------------- /epilog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/epilog -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/DataBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/DataBag.php -------------------------------------------------------------------------------- /src/Epilog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Epilog.php -------------------------------------------------------------------------------- /src/FakeLogTail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/FakeLogTail.php -------------------------------------------------------------------------------- /src/FlowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/FlowException.php -------------------------------------------------------------------------------- /src/InputReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/InputReader.php -------------------------------------------------------------------------------- /src/Interfaces/InputReaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Interfaces/InputReaderInterface.php -------------------------------------------------------------------------------- /src/Interfaces/LineParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Interfaces/LineParserInterface.php -------------------------------------------------------------------------------- /src/Interfaces/LinePrinterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Interfaces/LinePrinterInterface.php -------------------------------------------------------------------------------- /src/Interfaces/TailInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Interfaces/TailInterface.php -------------------------------------------------------------------------------- /src/Interfaces/ThemeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Interfaces/ThemeInterface.php -------------------------------------------------------------------------------- /src/LogFinder/Generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/LogFinder/Generic.php -------------------------------------------------------------------------------- /src/LogFinder/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/LogFinder/Laravel.php -------------------------------------------------------------------------------- /src/LogFinderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/LogFinderFactory.php -------------------------------------------------------------------------------- /src/LogTail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/LogTail.php -------------------------------------------------------------------------------- /src/MonologLineParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/MonologLineParser.php -------------------------------------------------------------------------------- /src/MonologLinePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/MonologLinePrinter.php -------------------------------------------------------------------------------- /src/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Theme.php -------------------------------------------------------------------------------- /src/Ticker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/src/Ticker.php -------------------------------------------------------------------------------- /test/DataBagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/DataBagTest.php -------------------------------------------------------------------------------- /test/EpilogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/EpilogTest.php -------------------------------------------------------------------------------- /test/InputReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/InputReaderTest.php -------------------------------------------------------------------------------- /test/LogFinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/LogFinderTest.php -------------------------------------------------------------------------------- /test/LogTailTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/LogTailTest.php -------------------------------------------------------------------------------- /test/MonologLineParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/MonologLineParserTest.php -------------------------------------------------------------------------------- /test/TickerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/test/TickerTest.php -------------------------------------------------------------------------------- /test/fixtures/laravel_a/app/storage/logs/log.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/laravel_b/app/storage/logs/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/chaplin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/chaplin.yml -------------------------------------------------------------------------------- /themes/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/default.yml -------------------------------------------------------------------------------- /themes/forest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/forest.yml -------------------------------------------------------------------------------- /themes/punchcard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/punchcard.yml -------------------------------------------------------------------------------- /themes/scrapbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/scrapbook.yml -------------------------------------------------------------------------------- /themes/sunrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/sunrise.yml -------------------------------------------------------------------------------- /themes/sunset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/sunset.yml -------------------------------------------------------------------------------- /themes/traffic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/epilog/HEAD/themes/traffic.yml --------------------------------------------------------------------------------