PHPackages                             bootphp/cache - 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. [Caching](/categories/caching)
4. /
5. bootphp/cache

ActiveLibrary[Caching](/categories/caching)

bootphp/cache
=============

PHP Cache Lib

0243PHP

Since Aug 11Pushed 9y ago1 watchersCompare

[ Source](https://github.com/bootphp/cache)[ Packagist](https://packagist.org/packages/bootphp/cache)[ RSS](/packages/bootphp-cache/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

loader
======

[](#loader)

Entry point for your core-php application

Now Entry point of your application would look something like this

##### index.php

[](#indexphp)

```
namespace app {

    use \bootphp\loader\Loader;
    use \bootphp\fn;

    include_once "lib/autoload.php";

    class Index extends Loader
    {
        public $title = "DEFAULT_TITLE";

        public function __construct()
        {
            // TODO: Something you want to do before I do something.
            fn::println("__construct");
            fn::println("Title in query is " . $this->title);
            fn::println("Title2 in query is " . $this->title2);
            fn::println("Title3 in query is " . $this->title3);
        }

        public function invoke($options)
        {
            // TODO: What you want to do?.
            // You can access all Query params here as instance properties like : $this->title
            fn::println("invoke");
            fn::println("Title in query is " . $this->title);
            fn::println("Title2 in query is " . $this->title2);
            fn::println("Title3 in query is " . $this->title3);
        }

        public function __destruct()
        {
            // Now evrything is done.
            // TODO: Something you want to do before i say goodbye.
        }

    }

    (new Index)();
    //OR (new Index())->execute();
}
```

Try this url with different values or no values

```
    http://localhost/index.php?title=lucas&title2=no&title3=yes
```

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5462166?v=4)[Lalit Tanwar | The Architect](/maintainers/lnt)[@lnt](https://github.com/lnt)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/bootphp-cache/health.svg)

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

###  Alternatives

[iazaran/smart-cache

Smart Cache is a caching optimization package designed to enhance the way your Laravel application handles data caching. It intelligently manages large data sets by compressing, chunking, or applying other optimization strategies to keep your application performant and efficient.

21114.2k](/packages/iazaran-smart-cache)[phpfastcache/phpssdb

PHP SSDB Driver for phpFastCache

14736.9k1](/packages/phpfastcache-phpssdb)

PHPackages © 2026

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