├── BugsnagBundle.php ├── Command └── .gitkeep ├── DependencyInjection ├── BaseConfiguration.php ├── BugsnagExtension.php ├── ClientFactory.php ├── ConfigurationWithReturnType.php └── ConfigurationWithoutReturnType.php ├── EventListener ├── BugsnagListener.php └── BugsnagShutdown.php ├── LICENSE ├── Request ├── SymfonyRequest.php └── SymfonyResolver.php ├── Resources ├── config │ ├── .gitkeep │ └── services.yml ├── docs │ └── index.rst ├── public │ └── .gitkeep ├── translations │ └── .gitkeep └── views │ └── .gitkeep ├── composer.json └── create-configuration-class-alias.php /BugsnagBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/BugsnagBundle.php -------------------------------------------------------------------------------- /Command/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependencyInjection/BaseConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/DependencyInjection/BaseConfiguration.php -------------------------------------------------------------------------------- /DependencyInjection/BugsnagExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/DependencyInjection/BugsnagExtension.php -------------------------------------------------------------------------------- /DependencyInjection/ClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/DependencyInjection/ClientFactory.php -------------------------------------------------------------------------------- /DependencyInjection/ConfigurationWithReturnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/DependencyInjection/ConfigurationWithReturnType.php -------------------------------------------------------------------------------- /DependencyInjection/ConfigurationWithoutReturnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/DependencyInjection/ConfigurationWithoutReturnType.php -------------------------------------------------------------------------------- /EventListener/BugsnagListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/EventListener/BugsnagListener.php -------------------------------------------------------------------------------- /EventListener/BugsnagShutdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/EventListener/BugsnagShutdown.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/LICENSE -------------------------------------------------------------------------------- /Request/SymfonyRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/Request/SymfonyRequest.php -------------------------------------------------------------------------------- /Request/SymfonyResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/Request/SymfonyResolver.php -------------------------------------------------------------------------------- /Resources/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Resources/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/Resources/docs/index.rst -------------------------------------------------------------------------------- /Resources/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/translations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources/views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/composer.json -------------------------------------------------------------------------------- /create-configuration-class-alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugsnag/bugsnag-symfony/HEAD/create-configuration-class-alias.php --------------------------------------------------------------------------------