PHPackages                             burdock/php-utils - 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. burdock/php-utils

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

burdock/php-utils
=================

Burdock PHP Utilities

v0.0.12(6y ago)044[2 PRs](https://github.com/ittun55/burdock-php-utils/pulls)PHP

Since Jun 3Pushed 3y ago1 watchersCompare

[ Source](https://github.com/ittun55/burdock-php-utils)[ Packagist](https://packagist.org/packages/burdock/php-utils)[ RSS](/packages/burdock-php-utils/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (7)Versions (15)Used By (0)

Burdock PHP Utilities
=====================

[](#burdock-php-utilities)

Includes
--------

[](#includes)

- Job Chaining Utility
- String Utility
- Dropbox Utility

JobChaining
-----------

[](#jobchaining)

Utilities for Job Chaining.

### What Is It ?

[](#what-is-it-)

Tool for making functions as a chained process.

### Status

[](#status)

It's not stable because I'm still learning the Functional Programing way. I might change my mind how to implement job chainer

### Features

[](#features)

- Chaining job processes.
- But not strict functional programing way. Just behave like a functor.
- Allowing multiple arguments.
- Easy logging

### How to use id.

[](#how-to-use-id)

#### 1. Wrap your job (function) by NamedJob class with job name.

[](#1-wrap-your-job-function-by-namedjob-class-with-job-name)

```
$addOne = new NamedJob('addOne', function($value) {
    return $value + 1;
});

$addTwo = new NamedJob('addTwo', function($value) {
    return $value + 2;
});

$sum = new NamedJob('sum', function($value, ...$args) {
    return array_reduce(array_merge([$value], $args), function($carry, $item) {
        return $carry + $item;
    });
});
```

#### 2. Chain then with Chain::process method.

[](#2-chain-then-with-chainprocess-method)

```
$chain = (new Chain(55))
     ->process($addOne)
     ->process($addTwo)
     ->process($sum, 3, 4)

echo $chain->getValue() . EOL; // returns 65
```

Str
---

[](#str)

Utilities for String.

### randomPassword

[](#randompassword)

Dbx
---

[](#dbx)

Thin wrapper for kunalvarma05/dropbox-php-sdk

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 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 ~14 days

Total

12

Last Release

2375d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bd728560169d88291000bced4fd1dddfa37d0c606a785ea2a4d6438488064008?d=identicon)[ittun55](/maintainers/ittun55)

---

Top Contributors

[![ittun55](https://avatars.githubusercontent.com/u/5767078?v=4)](https://github.com/ittun55 "ittun55 (17 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/burdock-php-utils/health.svg)

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

###  Alternatives

[civicrm/civicrm-core

Open source constituent relationship management for non-profits, NGOs and advocacy organizations.

728272.9k17](/packages/civicrm-civicrm-core)[j0k3r/php-readability

Automatic article extraction from HTML

186808.8k6](/packages/j0k3r-php-readability)[oat-sa/lib-lti1p3-core

OAT LTI 1.3 Core Library

36341.9k10](/packages/oat-sa-lib-lti1p3-core)[erlandmuchasaj/laravel-gzip

Gzip your responses.

40129.3k2](/packages/erlandmuchasaj-laravel-gzip)[spomky-labs/pwa-bundle

Progressive Web App Manifest Generator Bundle for Symfony.

6144.4k1](/packages/spomky-labs-pwa-bundle)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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