├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── sample.png └── src ├── CILogViewer.php └── Views └── logs.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | /vendor/ 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/composer.json -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/sample.png -------------------------------------------------------------------------------- /src/CILogViewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/src/CILogViewer.php -------------------------------------------------------------------------------- /src/Views/logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeunMatt/codeigniter-log-viewer/HEAD/src/Views/logs.php --------------------------------------------------------------------------------