Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.56 KB

File metadata and controls

52 lines (34 loc) · 1.56 KB

Installation

Table of contents

Requirements

Install via Composer

composer require nowo-tech/sentry-bundle

Symfony Flex (automatic registration)

If you install from Packagist and your project uses Symfony Flex, the recipe will:

  • Register the bundle in config/bundles.php
  • Create the default configuration file at config/packages/nowo_sentry.yaml

No further steps are required.

Manual registration

For private bundles or Git installations (when the Flex recipe is not applied), register the bundle in config/bundles.php:

<?php

return [
    // ... other bundles
    Nowo\SentryBundle\NowoSentryBundle::class => ['all' => true],
];

Note: This bundle extends the official Sentry Symfony bundle. Ensure sentry/sentry-symfony is installed and configured first. Your existing config/packages/sentry.yaml continues to work; this bundle adds listeners and options on top.

Next steps

  • Configuration – Configure listeners and options
  • Usage – Event listeners and SentryErrorReporter service
  • Engram – AI persistent memory for Cursor and other MCP clients (optional)