├── .php-cs-fixer.php ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codecov.yml ├── composer.json ├── config └── sentry.php ├── phpstan-baseline.neon ├── phpstan.neon └── src └── Sentry └── Laravel ├── BaseServiceProvider.php ├── Console ├── AboutCommandIntegration.php ├── PublishCommand.php └── TestCommand.php ├── EventHandler.php ├── Facade.php ├── Features ├── CacheIntegration.php ├── Concerns │ ├── ResolvesEventOrigin.php │ ├── TracksPushedScopesAndSpans.php │ └── WorksWithSpans.php ├── ConsoleIntegration.php ├── ConsoleSchedulingIntegration.php ├── Feature.php ├── FolioPackageIntegration.php ├── HttpClientIntegration.php ├── LivewirePackageIntegration.php ├── LogIntegration.php ├── NotificationsIntegration.php ├── PennantPackageIntegration.php ├── QueueIntegration.php └── Storage │ ├── CloudFilesystemDecorator.php │ ├── FilesystemAdapterDecorator.php │ ├── FilesystemDecorator.php │ ├── Integration.php │ ├── SentryCloudFilesystem.php │ ├── SentryFilesystem.php │ ├── SentryFilesystemAdapter.php │ └── SentryS3V3Adapter.php ├── Http ├── FlushEventsMiddleware.php ├── LaravelRequestFetcher.php ├── SetRequestIpMiddleware.php └── SetRequestMiddleware.php ├── Integration.php ├── Integration ├── ExceptionContextIntegration.php ├── LaravelContextIntegration.php └── ModelViolations │ ├── DiscardedAttributeViolationReporter.php │ ├── LazyLoadingModelViolationReporter.php │ ├── MissingAttributeModelViolationReporter.php │ └── ModelViolationReporter.php ├── LogChannel.php ├── Logs ├── LogChannel.php └── LogsHandler.php ├── SentryHandler.php ├── ServiceProvider.php ├── Tracing ├── BacktraceHelper.php ├── EventHandler.php ├── Integrations │ └── LighthouseIntegration.php ├── Middleware.php ├── Routing │ ├── TracingCallableDispatcherTracing.php │ ├── TracingControllerDispatcherTracing.php │ └── TracingRoutingDispatcher.php ├── ServiceProvider.php ├── TransactionFinisher.php └── ViewEngineDecorator.php ├── Util └── Filesize.php └── Version.php /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/codecov.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/config/sentry.php -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/phpstan-baseline.neon -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Sentry/Laravel/BaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/BaseServiceProvider.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Console/AboutCommandIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Console/AboutCommandIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Console/PublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Console/PublishCommand.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Console/TestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Console/TestCommand.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/EventHandler.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Facade.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/CacheIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/CacheIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Concerns/ResolvesEventOrigin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Concerns/ResolvesEventOrigin.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Concerns/TracksPushedScopesAndSpans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Concerns/TracksPushedScopesAndSpans.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Concerns/WorksWithSpans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Concerns/WorksWithSpans.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/ConsoleIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/ConsoleIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/ConsoleSchedulingIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/ConsoleSchedulingIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Feature.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/FolioPackageIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/FolioPackageIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/HttpClientIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/HttpClientIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/LivewirePackageIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/LivewirePackageIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/LogIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/LogIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/NotificationsIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/NotificationsIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/PennantPackageIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/PennantPackageIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/QueueIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/QueueIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/CloudFilesystemDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/CloudFilesystemDecorator.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/FilesystemAdapterDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/FilesystemAdapterDecorator.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/FilesystemDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/FilesystemDecorator.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/Integration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/SentryCloudFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/SentryCloudFilesystem.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/SentryFilesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/SentryFilesystem.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/SentryFilesystemAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/SentryFilesystemAdapter.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Features/Storage/SentryS3V3Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Features/Storage/SentryS3V3Adapter.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Http/FlushEventsMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Http/FlushEventsMiddleware.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Http/LaravelRequestFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Http/LaravelRequestFetcher.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Http/SetRequestIpMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Http/SetRequestIpMiddleware.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Http/SetRequestMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Http/SetRequestMiddleware.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration/ExceptionContextIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration/ExceptionContextIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration/LaravelContextIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration/LaravelContextIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration/ModelViolations/DiscardedAttributeViolationReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration/ModelViolations/DiscardedAttributeViolationReporter.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration/ModelViolations/LazyLoadingModelViolationReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration/ModelViolations/LazyLoadingModelViolationReporter.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration/ModelViolations/MissingAttributeModelViolationReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration/ModelViolations/MissingAttributeModelViolationReporter.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Integration/ModelViolations/ModelViolationReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Integration/ModelViolations/ModelViolationReporter.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/LogChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/LogChannel.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Logs/LogChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Logs/LogChannel.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Logs/LogsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Logs/LogsHandler.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/SentryHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/SentryHandler.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/ServiceProvider.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/BacktraceHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/BacktraceHelper.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/EventHandler.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/Integrations/LighthouseIntegration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/Integrations/LighthouseIntegration.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/Middleware.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/Routing/TracingCallableDispatcherTracing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/Routing/TracingCallableDispatcherTracing.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/Routing/TracingControllerDispatcherTracing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/Routing/TracingControllerDispatcherTracing.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/Routing/TracingRoutingDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/Routing/TracingRoutingDispatcher.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/ServiceProvider.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/TransactionFinisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/TransactionFinisher.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Tracing/ViewEngineDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Tracing/ViewEngineDecorator.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Util/Filesize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Util/Filesize.php -------------------------------------------------------------------------------- /src/Sentry/Laravel/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getsentry/sentry-laravel/HEAD/src/Sentry/Laravel/Version.php --------------------------------------------------------------------------------