Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.52
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-auth /
vendor /
sentry /
sentry /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
src
[ DIR ]
drwxrwxr-x
AUTHORS
158
B
-rw-rw-r--
CHANGELOG.md
9.09
KB
-rw-rw-r--
LICENSE
1.49
KB
-rw-rw-r--
README.md
5.63
KB
-rw-rw-r--
UPGRADE-2.0.md
17.77
KB
-rw-rw-r--
UPGRADE-3.0.md
7.46
KB
-rw-rw-r--
codecov.yml
77
B
-rw-rw-r--
composer.json
2.61
KB
-rw-rw-r--
phpstan-baseline.neon
4.64
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
<p align="center"> <a href="https://sentry.io" target="_blank" align="center"> <img src="https://sentry-brand.storage.googleapis.com/sentry-logo-black.png" width="280"> </a> <br /> </p> _Bad software is everywhere, and we're tired of it. Sentry is on a mission to help developers write better software faster, so we can get back to enjoying technology. If you want to join us [<kbd>**Check out our open positions**</kbd>](https://sentry.io/careers/)_ # Sentry SDK for PHP [](https://packagist.org/packages/sentry/sentry) [](https://packagist.org/packages/sentry/sentry) [](https://packagist.org/packages/sentry/sentry) [](https://packagist.org/packages/sentry/sentry) [](https://discord.gg/cWnMQeA) | Version | Build Status | Code Coverage | |:---------:|:-------------:|:-----:| | `master`| [![CI][master Build Status Image]][master Build Status] | [![Coverage Status][master Code Coverage Image]][master Code Coverage] | | `develop`| [![CI][develop Build Status Image]][develop Build Status] | [![Coverage Status][develop Code Coverage Image]][develop Code Coverage] | The Sentry PHP error reporter tracks errors and exceptions that happen during the execution of your application and provides instant notification with detailed information needed to prioritize, identify, reproduce and fix each issue. ## Install To install the SDK you will need to be using [Composer]([https://getcomposer.org/) in your project. To install it please see the [docs](https://getcomposer.org/download/). This is our "core" SDK, meaning that all the important code regarding error handling lives here. If you are happy with using the HTTP client we recommend install the SDK like: [`sentry/sdk`](https://github.com/getsentry/sentry-php-sdk) ```bash composer require sentry/sdk ``` This package (`sentry/sentry`) is not tied to any specific library that sends HTTP messages. Instead, it uses [Httplug](https://github.com/php-http/httplug) to let users choose whichever PSR-7 implementation and HTTP client they want to use. If you just want to get started quickly you should run the following command: ```bash composer require sentry/sentry php-http/curl-client ``` This is basically what our metapackage (`sentry/sdk`) provides. This will install the library itself along with an HTTP client adapter that uses cURL as transport method (provided by Httplug). You do not have to use those packages if you do not want to. The SDK does not care about which transport method you want to use because it's an implementation detail of your application. You may use any package that provides [`php-http/async-client-implementation`](https://packagist.org/providers/php-http/async-client-implementation) and [`http-message-implementation`](https://packagist.org/providers/psr/http-message-implementation). ## Usage ```php \Sentry\init(['dsn' => '___PUBLIC_DSN___' ]); try { thisFunctionThrows(); // -> throw new \Exception('foo bar'); } catch (\Exception $exception) { \Sentry\captureException($exception); } ``` ### Official integrations The following integrations are fully supported and maintained by the Sentry team. - [Symfony](https://github.com/getsentry/sentry-symfony) - [Laravel](https://github.com/getsentry/sentry-laravel) ### 3rd party integrations The following integrations are available and maintained by members of the Sentry community. - [Drupal](https://www.drupal.org/project/raven) - [Neos Flow](https://github.com/flownative/flow-sentry) - [WordPress](https://wordpress.org/plugins/wp-sentry-integration/) - [ZendFramework](https://github.com/facile-it/sentry-module) - [Yii2](https://github.com/notamedia/yii2-sentry) - [Silverstripe](https://github.com/phptek/silverstripe-sentry) - ... feel free to be famous, create a port to your favourite platform! ### 3rd party integrations using old SDK 2.x - [Neos Flow](https://github.com/networkteam/Networkteam.SentryClient) - [OXID eShop](https://github.com/OXIDprojects/sentry) - [TYPO3](https://github.com/networkteam/sentry_client) ### 3rd party integrations using old SDK 1.x - [Neos CMS](https://github.com/networkteam/Netwokteam.Neos.SentryClient) - [OpenCart](https://github.com/BurdaPraha/oc_sentry) - [TYPO3](https://github.com/networkteam/sentry_client/tree/2.1.1) ## Community - [Documentation](https://docs.sentry.io/error-reporting/quickstart/?platform=php) - [Bug Tracker](http://github.com/getsentry/sentry-php/issues) - [Code](http://github.com/getsentry/sentry-php) ## Contributing Dependencies are managed through `composer`: ``` $ composer install ``` Tests can then be run via phpunit: ``` $ vendor/bin/phpunit ``` [master Build Status]: https://github.com/getsentry/sentry-php/actions?query=workflow%3ACI+branch%3Amaster [master Build Status Image]: https://github.com/getsentry/sentry-php/workflows/CI/badge.svg?branch=master [develop Build Status]: https://github.com/getsentry/sentry-php/actions?query=workflow%3ACI+branch%3Adevelop [develop Build Status Image]: https://github.com/getsentry/sentry-php/workflows/CI/badge.svg?branch=develop [master Code Coverage]: https://codecov.io/gh/getsentry/sentry-php/branch/master [master Code Coverage Image]: https://img.shields.io/codecov/c/github/getsentry/sentry-php/master?logo=codecov [develop Code Coverage]: https://codecov.io/gh/getsentry/sentry-php/branch/develop [develop Code Coverage Image]: https://img.shields.io/codecov/c/github/getsentry/sentry-php/develop?logo=codecov
Close