PHPackages                             highlight/php-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. highlight/php-sdk

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

highlight/php-sdk
=================

Highlight's OpenTelemetry SDK for PHP.

41.8k↓33.3%4[3 issues](https://github.com/highlight/highlight-php/issues)[1 PRs](https://github.com/highlight/highlight-php/pulls)PHP

Since Feb 21Pushed 2y ago3 watchersCompare

[ Source](https://github.com/highlight/highlight-php)[ Packagist](https://packagist.org/packages/highlight/php-sdk)[ RSS](/packages/highlight-php-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

 [![docs-thumbnail](https://user-images.githubusercontent.com/20292680/233754540-409ee4cf-beab-46b1-b313-d2d717a87fd6.png)](https://user-images.githubusercontent.com/20292680/233754540-409ee4cf-beab-46b1-b313-d2d717a87fd6.png)

 [![PRs Welcome](https://camo.githubusercontent.com/2b429ff8971105c9cdce0abcda00a1dc3d8df4ed613afa5bd9e8369272be4ef4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5052732d77656c636f6d652d627269676874677265656e2e7376673f7374796c653d736869656c6473)](http://makeapullrequest.com) [![Join Discord Community](https://camo.githubusercontent.com/06f25a3b3a0432d74691c005a1ac163330335ea42730bf681e2ff3291c0709fd/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646973636f7264253230636f6d6d756e6974792d6a6f696e2d626c7565)](https://highlight.io/community) [![GitHub commit activity](https://camo.githubusercontent.com/5b49a149563260a6bc982a4b919b130228ae0bc5adf993e20234f7a2e73813fe/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f686967686c696768742f686967686c69676874)](https://camo.githubusercontent.com/5b49a149563260a6bc982a4b919b130228ae0bc5adf993e20234f7a2e73813fe/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6d6d69742d61637469766974792f6d2f686967686c696768742f686967686c69676874) [![GitHub closed issues](https://camo.githubusercontent.com/5710f86b718c5b6bfc80a28b12f50ddd48b7f30559199ce6d34113d4e7783994/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d636c6f7365642f686967686c696768742f686967686c69676874)](https://camo.githubusercontent.com/5710f86b718c5b6bfc80a28b12f50ddd48b7f30559199ce6d34113d4e7783994/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d636c6f7365642f686967686c696768742f686967686c69676874)

 [Docs](https://highlight.io/docs) - [Community (Support &amp; Feedback)](https://highlight.io/community) - [Feature request](https://github.com/highlight/highlight/issues/new?assignees=&labels=external+bug+%2F+request&template=feature_request.md&title=) - [Bug report](https://github.com/highlight/highlight/issues/new?assignees=&labels=external+bug+%2F+request&template=bug_report.md&title=)

[highlight.io](https://highlight.io): The open-source, fullstack monitoring platform.
=====================================================================================

[](#highlightio-the-open-source-fullstack-monitoring-platform)

highlight.io is a monitoring tool for the next generation of developers (like you!). Unlike the age-old, outdated tools out there, we aim to build a [cohesive](#we-build-a-cohesive-product), [modern](#we-build-for-todays-developer) and [fully-featured](#features) monitoring solution, something we wished WE had. And it's all open source :)

At a high level, highlight.io's feature set is:

- [Session Replay](#session-replay-understand-why-bugs-happen)
- [Error Monitoring](#error-monitoring-understand-what-bugs-are-happening)
- [Logging](#logging)

We strive to make highlight.io as easy to install as a few lines of code in any environment.

Read more about our [features](#features), [values](#our-values) and [mission](#our-mission) below, and get started at  today!

Highlight PHP SDK
=================

[](#highlight-php-sdk)

Below are some examples demonstrating usage of the PHP SDK:

```
    use Highlight\SDK\Common\HighlightOptions;
    use Highlight\SDK\Highlight;

    $projectId = '1jdkeo52';

    // Use only a projectId to bootstrap Highlight
    if (!Highlight::isInitialized()) {
        Highlight::init($projectId);
    }

    // Use a HighlightOptions instance to bootstrap Highlight
    $options = HighlightOptions::builder($projectId)->build();
    if (!Highlight::isInitialized()) {
        Highlight::initWithOptions($options);
    }

    // Use a HighlightOptions instance prepped with a serviceName to bootstrap Highlight
    $options = HighlightOptions::builder($projectId)->serviceName('test-service-01')->build();

    if (!Highlight::isInitialized()) {
        Highlight::initWithOptions($options);
    }
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance5

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity19

Early-stage or recently created project

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/1dd26968bf395978ca5ee4d3fcaa4a7348b02f2f7984f253f3c578eb2620d154?d=identicon)[vadim-highlight](/maintainers/vadim-highlight)

---

Top Contributors

[![ayewo](https://avatars.githubusercontent.com/u/20957603?v=4)](https://github.com/ayewo "ayewo (2 commits)")[![Vadman97](https://avatars.githubusercontent.com/u/1351531?v=4)](https://github.com/Vadman97 "Vadman97 (1 commits)")

### Embed Badge

![Health badge](/badges/highlight-php-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/highlight-php-sdk/health.svg)](https://phpackages.com/packages/highlight-php-sdk)
```

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B9.2k](/packages/psr-log)[itsgoingd/clockwork

php dev tools in your browser

5.9k27.6M94](/packages/itsgoingd-clockwork)[graylog2/gelf-php

A php implementation to send log-messages to a GELF compatible backend like Graylog2.

41838.2M138](/packages/graylog2-gelf-php)[bugsnag/bugsnag-psr-logger

Official Bugsnag PHP PSR Logger.

32132.5M2](/packages/bugsnag-bugsnag-psr-logger)[consolidation/log

Improved Psr-3 / Psr\\Log logger based on Symfony Console components.

15462.2M7](/packages/consolidation-log)[ekino/newrelic-bundle

Integrate New Relic into Symfony2

28111.2M8](/packages/ekino-newrelic-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
