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

ActiveLibrary

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

Library of useful classes

0.12(1y ago)119.0k↓36.8%MITCSSPHP &gt;=8.0

Since May 12Pushed 1y agoCompare

[ Source](https://github.com/Sofiosko/Utils)[ Packagist](https://packagist.org/packages/biteit/utils)[ RSS](/packages/biteit-utils/feed)WikiDiscussions master Synced 1mo 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

36

—

LowBetter than 82% of packages

Maintenance32

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

690d 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.7k3.7M389](/packages/pimcore-pimcore)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[elgg/elgg

Elgg is an award-winning social networking engine, delivering the building blocks that enable businesses, schools, universities and associations to create their own fully-featured social networks and applications.

1.7k15.7k5](/packages/elgg-elgg)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[appwrite/sdk-generator

Appwrite PHP library for generating API SDKs for multiple programming languages and platforms

309166.5k1](/packages/appwrite-sdk-generator)[sebastienheyd/boilerplate

Laravel Boilerplate based on AdminLTE 3 with blade components, user management, roles, permissions, logs viewer, ...

28618.2k3](/packages/sebastienheyd-boilerplate)

PHPackages © 2026

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