PHPackages                             whateverthing/qed - 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. whateverthing/qed

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

whateverthing/qed
=================

Wrapper for BCMath functions

v0.2.0(2y ago)021[1 issues](https://github.com/beryllium/Qed/issues)[1 PRs](https://github.com/beryllium/Qed/pulls)MITPHP

Since Dec 1Pushed 2y ago1 watchersCompare

[ Source](https://github.com/beryllium/Qed)[ Packagist](https://packagist.org/packages/whateverthing/qed)[ RSS](/packages/whateverthing-qed/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (4)Used By (0)

Qed by Whateverthing
====================

[](#qed-by-whateverthing)

Qed (pronounced "ked") provides method chaining on BCMath operations, allowing you to write smoother and more readable calculation code.

Qed also includes polyfill functions for `bcround`, `bcceil`, and `bcfloor`, which have official implementations coming in [a future PHP release](https://wiki.php.net/rfc/adding_bcround_bcfloor_bcceil_to_bcmath).

(Note that Qed's polyfills are not guaranteed to be mathematically sound. Please don't use them for anything even the slightest bit important.)

Example
-------

[](#example)

**A set of basic operations:**

```
$num = new Qed('123');
$num = $num->add('27')->mul('4');

echo $num->value; // 600
```

**Setting the scale:**

BCMath operations have a concept of a "scale factor". This can become quite important - certain numbers may end up being unintentionally truncated if the scale is not set to a suitable value.

Scale may be a bit different than precision. For more information, see the [bcscale() documentation](https://www.php.net/manual/en/function.bcscale.php) on the PHP website.

```
$num = new Qed('123', 5);
$divisor = new Qed('456');
$num = $num->div($divisor)->mul('10');

echo $num->value; // 2.69730
```

Note that the scale follows the left-side of the flow. If a `Qed` object is passed as the divisor (or any other operand), that object's scale will be ignored.

**Rounding:**

While `bcround()` isn't yet available in PHP, Qed provides a polyfill function and a helper method. This polyfill function is primitive and deeply unreliable.

But, if you want to risk it, here's how to use it:

```
$num = new Qed('123', 10);
$divisor = new Qed('456');
$num = $num->div($divisor)->mul('10')->round(2);

echo $num->value; // 2.70
```

Note that the precision value is NOT the same as a normal "scale" value, because scale factor cannot be a negative value (but precision can). The returned Qed object will have the same scale value as the originating instance, the precision value is only applied to the internals of `bcround`.

There is a second parameter, `$roundHalf`, which can be one of the `PHP_ROUND_HALF_*` constants. See [php.net/round](https://www.php.net/round)for more information about how they are expected to work.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Every ~1 days

Total

2

Last Release

898d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/602491?v=4)[Kevin Boyd](/maintainers/beryllium)[@beryllium](https://github.com/beryllium)

---

Top Contributors

[![beryllium](https://avatars.githubusercontent.com/u/602491?v=4)](https://github.com/beryllium "beryllium (12 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/whateverthing-qed/health.svg)

```
[![Health](https://phpackages.com/badges/whateverthing-qed/health.svg)](https://phpackages.com/packages/whateverthing-qed)
```

PHPackages © 2026

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