├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INSTRUCTIONS.md ├── LICENSE.md ├── README.md ├── composer.json ├── composer.lock ├── config └── config.php ├── phpunit.xml.dist ├── src ├── SlowQueryNotification.php ├── SlowQueryNotifier.php ├── SlowQueryNotifierFacade.php ├── SlowQueryNotifierProvider.php └── SlowQueryTestCommand.php └── tests ├── SlowQueryNotifierTest.php ├── TestCase.php └── database.sqlite /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | .phpunit.result.cache 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/INSTRUCTIONS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/composer.lock -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/config/config.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/SlowQueryNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/src/SlowQueryNotification.php -------------------------------------------------------------------------------- /src/SlowQueryNotifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/src/SlowQueryNotifier.php -------------------------------------------------------------------------------- /src/SlowQueryNotifierFacade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/src/SlowQueryNotifierFacade.php -------------------------------------------------------------------------------- /src/SlowQueryNotifierProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/src/SlowQueryNotifierProvider.php -------------------------------------------------------------------------------- /src/SlowQueryTestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/src/SlowQueryTestCommand.php -------------------------------------------------------------------------------- /tests/SlowQueryNotifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/tests/SlowQueryNotifierTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasjohnkane/slow-query-notifier/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/database.sqlite: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------