PHPackages                             eecjimmy/basic - 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. eecjimmy/basic

ActiveLibrary

eecjimmy/basic
==============

basic development packages

1.0(4y ago)09PHPPHP &gt;=7.0

Since Jul 30Pushed 4y ago1 watchersCompare

[ Source](https://github.com/eecjimmy/php-cache-trait)[ Packagist](https://packagist.org/packages/eecjimmy/basic)[ RSS](/packages/eecjimmy-basic/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependenciesVersions (2)Used By (0)

usage
-----

[](#usage)

- `composer require eecjimmy/basic`

```
namespace demo;
use eecjimmy\Basic\CacheableTrait;
class Demo
{

    use CacheableTrait;

    public function getUser()
    {
        return $this->cacheGet(__METHOD__, function () {
            echo "cache missing...\n";
            return 'user';
        });
    }

    public static function getStudent()
    {
        return self::cacheGetStatic(__METHOD__, function () {
            echo "cache missing...\n";
            return 'student';
        });
    }

    public function getWithArgument($a)
    {
        $key = md5(__METHOD__ . json_encode(func_get_args()));
        return $this->cacheGet($key, function () {
            echo "cache missing...\n";
            return 'with-argument';
        });
    }
}
```

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity46

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

Unknown

Total

1

Last Release

1754d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7401963?v=4)[eecjimmy](/maintainers/eecjimmy)[@eecjimmy](https://github.com/eecjimmy)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/eecjimmy-basic/health.svg)

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

PHPackages © 2026

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