├── .gitignore ├── .htaccess ├── FireLogger.php ├── composer.json ├── composer.lock ├── index.php ├── license.txt ├── readme.md └── tests ├── ajax.php ├── backtrace.php ├── basic.php ├── iframe.php ├── issue_10.php └── this_is_really_long_file_name.php /.gitignore: -------------------------------------------------------------------------------- 1 | _layouts 2 | shared 3 | _site 4 | vendor 5 | composer.phar 6 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/.htaccess -------------------------------------------------------------------------------- /FireLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/FireLogger.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/composer.lock -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/readme.md -------------------------------------------------------------------------------- /tests/ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/tests/ajax.php -------------------------------------------------------------------------------- /tests/backtrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/tests/backtrace.php -------------------------------------------------------------------------------- /tests/basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/tests/basic.php -------------------------------------------------------------------------------- /tests/iframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/tests/iframe.php -------------------------------------------------------------------------------- /tests/issue_10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/tests/issue_10.php -------------------------------------------------------------------------------- /tests/this_is_really_long_file_name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binaryage/firelogger.php/HEAD/tests/this_is_really_long_file_name.php --------------------------------------------------------------------------------