├── .github ├── pull_request_template.md └── workflows │ └── code_checks.yaml ├── .gitignore ├── CHANGELOG.md ├── DependencyInjection ├── Configuration.php └── RollbarExtension.php ├── Factories └── RollbarHandlerFactory.php ├── LICENSE ├── Payload ├── ErrorItem.php ├── Generator.php ├── TraceChain.php └── TraceItem.php ├── README.md ├── Resources ├── config │ └── services.yml └── doc │ └── index.rst ├── RollbarBundle.php ├── Tests ├── DependencyInjection │ ├── ConfigurationTest.php │ └── RollbarExtensionTest.php ├── Fixtures │ ├── App │ │ ├── AppKernel.php │ │ └── config │ │ │ ├── config.yml │ │ │ ├── config_test.yml │ │ │ └── parameters.yml │ └── fatal.php └── Payload │ ├── ErrorItemTest.php │ ├── GeneratorTest.php │ ├── TraceChainTest.php │ └── TraceItemTest.php ├── composer.json ├── phpunit.xml └── var └── .gitkeep /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/code_checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/.github/workflows/code_checks.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /DependencyInjection/RollbarExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/DependencyInjection/RollbarExtension.php -------------------------------------------------------------------------------- /Factories/RollbarHandlerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Factories/RollbarHandlerFactory.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Payload/ErrorItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Payload/ErrorItem.php -------------------------------------------------------------------------------- /Payload/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Payload/Generator.php -------------------------------------------------------------------------------- /Payload/TraceChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Payload/TraceChain.php -------------------------------------------------------------------------------- /Payload/TraceItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Payload/TraceItem.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Resources/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Resources/doc/index.rst -------------------------------------------------------------------------------- /RollbarBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/RollbarBundle.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Tests/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/RollbarExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Tests/DependencyInjection/RollbarExtensionTest.php -------------------------------------------------------------------------------- /Tests/Fixtures/App/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Tests/Fixtures/App/AppKernel.php -------------------------------------------------------------------------------- /Tests/Fixtures/App/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Tests/Fixtures/App/config/config.yml -------------------------------------------------------------------------------- /Tests/Fixtures/App/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Tests/Fixtures/App/config/config_test.yml -------------------------------------------------------------------------------- /Tests/Fixtures/App/config/parameters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rollbar/rollbar-php-symfony-bundle/HEAD/Tests/Fixtures/App/config/parameters.yml -------------------------------------------------------------------------------- /Tests/Fixtures/fatal.php: -------------------------------------------------------------------------------- 1 |