├── .coveralls.yml ├── .editorconfig ├── .gitignore ├── .php-cs-fixer.php ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── composer.json ├── composer.lock ├── phpunit.xml ├── publish └── config │ └── sql_logger.php ├── readme.md ├── src ├── Config.php ├── FileName.php ├── Formatter.php ├── Objects │ ├── Concerns │ │ └── ReplacesBindings.php │ └── SqlQuery.php ├── Providers │ └── ServiceProvider.php ├── Query.php ├── SqlLogger.php └── Writer.php └── tests ├── ConfigTest.php ├── FileNameTest.php ├── FormatterTest.php ├── Objects └── SqlQueryTest.php ├── QueryTest.php ├── ServiceProviderTest.php ├── SqlLoggerTest.php ├── UnitTestCase.php └── WriterTest.php /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | trim_trailing_whitespace = false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/phpunit.xml -------------------------------------------------------------------------------- /publish/config/sql_logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/publish/config/sql_logger.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/readme.md -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/FileName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/FileName.php -------------------------------------------------------------------------------- /src/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Formatter.php -------------------------------------------------------------------------------- /src/Objects/Concerns/ReplacesBindings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Objects/Concerns/ReplacesBindings.php -------------------------------------------------------------------------------- /src/Objects/SqlQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Objects/SqlQuery.php -------------------------------------------------------------------------------- /src/Providers/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Providers/ServiceProvider.php -------------------------------------------------------------------------------- /src/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Query.php -------------------------------------------------------------------------------- /src/SqlLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/SqlLogger.php -------------------------------------------------------------------------------- /src/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/src/Writer.php -------------------------------------------------------------------------------- /tests/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/ConfigTest.php -------------------------------------------------------------------------------- /tests/FileNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/FileNameTest.php -------------------------------------------------------------------------------- /tests/FormatterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/FormatterTest.php -------------------------------------------------------------------------------- /tests/Objects/SqlQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/Objects/SqlQueryTest.php -------------------------------------------------------------------------------- /tests/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/QueryTest.php -------------------------------------------------------------------------------- /tests/ServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/ServiceProviderTest.php -------------------------------------------------------------------------------- /tests/SqlLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/SqlLoggerTest.php -------------------------------------------------------------------------------- /tests/UnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/UnitTestCase.php -------------------------------------------------------------------------------- /tests/WriterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnabialek/laravel-sql-logger/HEAD/tests/WriterTest.php --------------------------------------------------------------------------------