PHPackages                             sensorario/php-store - 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. sensorario/php-store

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

sensorario/php-store
====================

v0.3.4(6y ago)14PHP

Since Apr 21Pushed 6y agoCompare

[ Source](https://github.com/sensorario/store)[ Packagist](https://packagist.org/packages/sensorario/php-store)[ RSS](/packages/sensorario-php-store/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependencies (1)Versions (23)Used By (0)

Store
=====

[](#store)

Just for fun php "database".

Folding
-------

[](#folding)

```
Memory
├── Config
│   └── Config
├── Model
│   └── Collection
├── Persistor
│   ├── FileSystemPersistor
│   └── PersistorPort
├── Services
│   ├── Helper
│   │   └── Matcher
│   ├── Memory
│   ├── NewLocalStorage
│   └── Persist
└── Storage

```

Example
-------

[](#example)

```
use Memory\Config\Config;
use Memory\Services\Memory;
use Memory\Services\Persist;
use Memory\Persistor\FileSystemPersistor;
use Memory\Storage;

class Store
{
    private $storage;

    public function __construct()
    {
        $config = new Config([
            'path' => __DIR__ . '/../../../../var/data/store',
        ]);

        $memory = new Memory();
        $memory->init($config);
        $memory->loadFromFileSystem();

        $this->storage = new Storage(
            $memory,
            new Persist(
                new FileSystemPersistor(),
                $config
            ),
            $config
        );
    }

    public function getStorage()
    {
        return $this->storage;
    }
}
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity59

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

Every ~3 days

Total

22

Last Release

2510d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6deb026c846017d92a6feb598acbbf7ad4ac8852bdd39448647dee004402182f?d=identicon)[sensorario](/maintainers/sensorario)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/sensorario-php-store/health.svg)

```
[![Health](https://phpackages.com/badges/sensorario-php-store/health.svg)](https://phpackages.com/packages/sensorario-php-store)
```

###  Alternatives

[ramsey/devtools

A Composer plugin to aid PHP library and application development.

7134.7k26](/packages/ramsey-devtools)[jimbojsb/workman

PHP process forking &amp; daemonizing library

608.8k](/packages/jimbojsb-workman)

PHPackages © 2026

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