PHPackages                             valiant-bedrock/libscoreboard - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. valiant-bedrock/libscoreboard

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

valiant-bedrock/libscoreboard
=============================

A small scoreboard library built for PocketMine-MP

0.5.0(3y ago)522AGPL-3.0PHP

Since May 20Pushed 1y ago1 watchersCompare

[ Source](https://github.com/Valiant-Bedrock/libscoreboard)[ Packagist](https://packagist.org/packages/valiant-bedrock/libscoreboard)[ RSS](/packages/valiant-bedrock-libscoreboard/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

libscoreboard
=============

[](#libscoreboard)

A small scoreboard library built for Minecraft: Bedrock Edition

Installation
------------

[](#installation)

### Composer

[](#composer)

Run the command `composer require valiant-bedrock/libscoreboard` to install this package.

### Virion

[](#virion)

The virion for this project is located &amp; can be installed from [here](https://poggit.pmmp.io/ci/Valiant-Bedrock/libscoreboard/libscoreboard)

Enums
-----

[](#enums)

This library provides two types of enums used when sending the scoreboard:

- `DisplaySlot` - Used to specify where the scoreboard should be displayed
- `SortOrder` - Used as a way to sort the scoreboard (ascending or descending)

Methods
-------

[](#methods)

Managing View
-------------

[](#managing-view)

- `send(?SortOrder $sortOrder = null, ?DisplaySlot $displaySlot = null): void` - Sends the scoreboard to the player
- `remove(): void` - Removes the scoreboard from the client's view
- `update(): void` - Forcefully updates the client's scoreboard (Throws an exception if the scoreboard is not already visible)

### Setting Data

[](#setting-data)

This library provides multiple methods for updating the scoreboard:

- `setLines(array $lines, bool $clear = true, bool $update = true): void` - Sets the values of all lines
- `setLine(int $index, string $value, bool $update = true): void` - Sets the value of a specific line
- `removeLine(int $index, bool $update = true): void` - Removes a specific line
- `clear(bool $update = true): void` - Clears the scoreboard
- `setDisplaySlot(DisplaySlot $slot, bool $update = true): void` - Sets the display slot of the scoreboard
- `setSortOrder(SortOrder $order, bool $update = true): void` - Sets the sort order of the scoreboard

Example
-------

[](#example)

```
assert($player instanceof Player);

$scoreboard = new Scoreboard(
    player: $player,
    title: "Test Scoreboard",
    lines: [
        0 => "Name: {$player->getName()}",
        1 => "",
        2 => "Test Entry",
        3 => "",
        4 => "Test Entry 2",
    ]
);

// Sends the scoreboard to the player
$scoreboard->send(
    slot: DisplaySlot::SIDEBAR(),
    order: SortOrder::ASCENDING()
);

// Sets the line and sends it to the player (if visible)
$scoreboard->setLine(index: 2, value: "New Text Entry");

// Set multiple lines
$scoreboard->setLines(
    lines: [
        0 => "Display Name: {$player->getDisplayName()}",
        1 => "Health: " . (string) round($player->getHealth(), 2),
        2 => "",
        3 => "Updated Test Entry",
    ],
    // If clear is set to true, it'll clear the scoreboard before setting the lines
    clear: true
);

// Remove a line
$scoreboard->removeLine(index: 2);
// Changes the current sort order
$scoreboard->setSortOrder(SortOrder::DESCENDING());
// Removes the scoreboard from the player's view
$scoreboard->remove();
```

Issues
------

[](#issues)

Any issues / suggestions with this library can be reported [here](https://github.com/Valiant-Bedrock/libscoreboard/issues).

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 96.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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1450d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9c8f558299ae6ceaec9257a8cdafaceef401d6c61aa5a8b84e630a1073a160c5?d=identicon)[sylvrs](/maintainers/sylvrs)

---

Top Contributors

[![sylvrs](https://avatars.githubusercontent.com/u/13668008?v=4)](https://github.com/sylvrs "sylvrs (29 commits)")[![poggit-bot](https://avatars.githubusercontent.com/u/22427965?v=4)](https://github.com/poggit-bot "poggit-bot (1 commits)")

### Embed Badge

![Health badge](/badges/valiant-bedrock-libscoreboard/health.svg)

```
[![Health](https://phpackages.com/badges/valiant-bedrock-libscoreboard/health.svg)](https://phpackages.com/packages/valiant-bedrock-libscoreboard)
```

PHPackages © 2026

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