PricingBlogDocumentationDocsLoginRegister

Connect your PHP project to GlitchTip

To install the SDK you will need to be using composer in your project. If you are not already using Composer please see the Composer documentation.

composer require sentry/sdk

To capture all errors, even the one during the startup of your application, you should initialize the PHP SDK as soon as possible.

Sentry\init(['dsn' => 'YOUR-GLITCHTIP-DSN-HERE' ]);

You can trigger a PHP exception by throwing one in your application:

throw new Exception("My first GlitchTip error!");