PHPackages                             jvmanji/universal-access - 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. jvmanji/universal-access

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

jvmanji/universal-access
========================

This package includes PHP wrapper for arrays and objects, which simplifies access to nested properties/keys.

0479PHP

Since Dec 10Pushed 7y ago1 watchersCompare

[ Source](https://github.com/jvmanji/UniversalAccess)[ Packagist](https://packagist.org/packages/jvmanji/universal-access)[ RSS](/packages/jvmanji-universal-access/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

UniversalAccess
===============

[](#universalaccess)

This package includes PHP wrapper for arrays and objects. When you get data from 3rd party API's you offten get into an "isset hell":

```
    if (isset($result->profile) &&
        isset($result->profile->map_data) &&
        isset($result->profile->map_data->work_places)) {
      // do sth with: $result->profile->map_data->work_places
    }
```

By using this class you can do just:

```
    use UniversalAccess\Wrapper as W;

    $data = W::wrap($result);

    if (isset($data->profile->map_data->work_places)) {
      $work_places = $data->profile->map_data->work_places->raw();
    }
```

Examples
--------

[](#examples)

More examples are in examples directory.

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

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.

### Community

Maintainers

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

---

Top Contributors

[![rafal-tobola](https://avatars.githubusercontent.com/u/3703505?v=4)](https://github.com/rafal-tobola "rafal-tobola (6 commits)")

### Embed Badge

![Health badge](/badges/jvmanji-universal-access/health.svg)

```
[![Health](https://phpackages.com/badges/jvmanji-universal-access/health.svg)](https://phpackages.com/packages/jvmanji-universal-access)
```

###  Alternatives

[webkings-ca/gocomposer

Converts Drupal 8 Sites to the latest Composer Managed Template

151.8k](/packages/webkings-ca-gocomposer)

PHPackages © 2026

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