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

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

biteit/utils
============

Library of useful classes

0.12(2y ago)119.9k↓75.4%MITCSSPHP &gt;=8.0

Since May 12Pushed 2y agoCompare

[ Source](https://github.com/Sofiosko/Utils)[ Packagist](https://packagist.org/packages/biteit/utils)[ RSS](/packages/biteit-utils/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)Dependencies (1)Versions (18)Used By (0)

**ArrayWalker.php** - Enables access to values in multidimensional arrays without using offsetGet and checking the existence of a key.

```
$array = [
    'level-1' => [
        'value' => 1,
        'level-2' => [
            'value' => 2
        ]
    ]
];

$walker = \BiteIT\Utils\ArrayWalker::create($array);

var_dump([
    $walker->get('level-1/value'), // returns 1
    $walker->get('level-1/level-2) // returns ['value' => 2]
]);
```

**Timer** - Nests traced processes and renders nested lists for better orientation.

```
\BiteIT\Utils\Timer::start('level-1');
// your code
\BiteIT\Utils\Timer::start('level-1-1');
// your code
\BiteIT\Utils\Timer::end('level-1-1');
\BiteIT\Utils\Timer::end('level-1');

// renders nested list
echo \BiteIT\Utils\Timer::getInstance()->renderList();
```

Outputs:

```

        level-1 (3.0017)

                level-1-1 (3.0016)

                        level-1-1-1 (1.0009)

                        level-1-1-2 (2.0007)

        level-2 (0)

                level-2-1 (0)

```

**WebLoader** - Merges, minifies, cache and renders assets. It also looks for differences in files, automatically removes old merged and creates new.

Method 1 - Standard usage

```
use BiteIT\Utils\WebLoader;

$wl = new WebLoader(WebLoader::TYPE_CSS, __DIR__.'/assets', 'http://localhost/Utils/tests/assets');
$wl->setCache(true);
$wl->setDestination(__DIR__.'/webtemp/', 'http://localhost/Utils/tests/webtemp');
$wl->addLocal('style.css');
$wl->addLocal('style-2.css');
$wl->addRemote('https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css');

echo $wl->render();
```

Method 2 - Using WLCreator

```
use BiteIT\Utils\WLCreator;

$wlc = new WLCreator(__DIR__.'/webtemp/', 'http://localhost/Utils/tests/webtemp', __DIR__.'/assets', 'http://localhost/Utils/tests/assets');
$wlc->setCache(true);

$wl = $wlc->getCssLoader();
$wl->addLocal('style.css');
$wl->addLocal('style-2.css');
$wl->addRemote('https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css');
echo $wl->render();
```

Outputs:

```

```

WebLoader known issues:

- Assets baseUrl must be accessible trough browser for non cached webloader render. Because it will just render list of sources with timestamp at the end.

ArrayWalker known issues:

- Multidimensional OffsetGet and OffsetUnset not working. ArrayWalker was not intended to implement ArrayAccess but may be fixed soon.

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 86.8% 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 ~125 days

Recently: every ~282 days

Total

16

Last Release

737d ago

PHP version history (2 changes)0.0.1PHP &gt;=7.1

0.12PHP &gt;=8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/006243654f6be437ad2830eef3ed92609ad0e4b98d1788a89d7884fb8a83e0c1?d=identicon)[manweCZ](/maintainers/manweCZ)

---

Top Contributors

[![Sofiosko](https://avatars.githubusercontent.com/u/24888906?v=4)](https://github.com/Sofiosko "Sofiosko (33 commits)")[![radek-cmyk](https://avatars.githubusercontent.com/u/254740070?v=4)](https://github.com/radek-cmyk "radek-cmyk (5 commits)")

### Embed Badge

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

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

###  Alternatives

[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M508](/packages/pimcore-pimcore)[moodle/moodle

Moodle - the world's open source learning platform

7.2k88.5k88](/packages/moodle-moodle)[appwrite/sdk-generator

SDK generator for Appwrite APIs across multiple programming languages and platforms

322207.2k3](/packages/appwrite-sdk-generator)[flarum/core

Delightfully simple forum software.

201.4M2.3k](/packages/flarum-core)[contao/core-bundle

Contao Open Source CMS

1231.6M2.8k](/packages/contao-core-bundle)[grafite/forms

A remarkably magical form package for Laravel.

376.9k1](/packages/grafite-forms)

PHPackages © 2026

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