├── .github └── FUNDING.yml ├── .gitignore ├── Readme.md ├── composer.json ├── config └── profiler.php ├── libraries ├── Console.php └── Profiler.php ├── spark.info └── views └── profiler_template.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/* -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/Readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/composer.json -------------------------------------------------------------------------------- /config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/config/profiler.php -------------------------------------------------------------------------------- /libraries/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/libraries/Console.php -------------------------------------------------------------------------------- /libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/libraries/Profiler.php -------------------------------------------------------------------------------- /spark.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/spark.info -------------------------------------------------------------------------------- /views/profiler_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lonnieezell/codeigniter-forensics/HEAD/views/profiler_template.php --------------------------------------------------------------------------------