├── .gitignore ├── .travis.yml ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Providers │ └── QueryTracerServiceProvider.php └── Scopes │ └── QueryTracer.php └── tests └── QueryTracerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | 3 | /vendor 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Providers/QueryTracerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/src/Providers/QueryTracerServiceProvider.php -------------------------------------------------------------------------------- /src/Scopes/QueryTracer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/src/Scopes/QueryTracer.php -------------------------------------------------------------------------------- /tests/QueryTracerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitztrev/query-tracer/HEAD/tests/QueryTracerTest.php --------------------------------------------------------------------------------