gitextract_cqkhw3dv/ ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .php-cs-fixer.php ├── CHANGELOG.md ├── Command/ │ └── NotifyDeploymentCommand.php ├── DependencyInjection/ │ ├── Compiler/ │ │ └── MonologHandlerPass.php │ ├── Configuration.php │ └── EkinoNewRelicExtension.php ├── EkinoNewRelicBundle.php ├── Exception/ │ └── DeprecationException.php ├── LICENSE ├── Listener/ │ ├── CommandListener.php │ ├── DeprecationListener.php │ ├── ExceptionListener.php │ ├── RequestListener.php │ └── ResponseListener.php ├── Logging/ │ └── AdaptiveHandler.php ├── NewRelic/ │ ├── AdaptiveInteractor.php │ ├── BlackholeInteractor.php │ ├── Config.php │ ├── LoggingInteractorDecorator.php │ ├── NewRelicInteractor.php │ └── NewRelicInteractorInterface.php ├── README.md ├── Resources/ │ ├── config/ │ │ ├── command_listener.xml │ │ ├── deprecation_listener.xml │ │ ├── exception_listener.xml │ │ ├── http_listener.xml │ │ ├── monolog.xml │ │ ├── services.xml │ │ └── twig.xml │ └── recipes/ │ └── newrelic.rb ├── Tests/ │ ├── AppKernel.php │ ├── BundleInitializationTest.php │ ├── DependencyInjection/ │ │ ├── Compiler/ │ │ │ └── MonologHandlerPassTest.php │ │ ├── ConfigurationTest.php │ │ └── EkinoNewRelicExtensionTest.php │ ├── Listener/ │ │ ├── CommandListenerTest.php │ │ ├── DeprecationListenerTest.php │ │ ├── ExceptionListenerTest.php │ │ ├── RequestListenerTest.php │ │ └── ResponseListenerTest.php │ ├── NewRelic/ │ │ ├── ConfigTest.php │ │ └── LoggingInteractorDecoratorTest.php │ ├── TransactionNamingStrategy/ │ │ └── ControllerNamingStrategyTest.php │ └── Twig/ │ └── NewRelicExtensionTest.php ├── TransactionNamingStrategy/ │ ├── ControllerNamingStrategy.php │ ├── RouteNamingStrategy.php │ └── TransactionNamingStrategyInterface.php ├── Twig/ │ └── NewRelicExtension.php ├── UPGRADE-2.0.md ├── composer.json └── phpunit.xml.dist