The official PHP SDK for Sentry.
// Instantiate a new client with a compatible DSN and install built-in
// handlers
$client = (new Raven_Client('https://public:[email protected]/1'))->install();
// Capture an exception
$event_id = $client->captureException($ex);
// Give the user feedback
echo "Sorry, there was an error!";
echo "Your reference ID is " . $event_id;
For more information, see our documentation.
Dependencies are managed through composer:
$ composer install
Tests can then be run via phpunit:
$ vendor/bin/phpunit
- Documentation
- Bug Tracker
- Code
- Mailing List
- IRC (irc.freenode.net, #sentry)