PHPackages                             flextype-components/registry - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. flextype-components/registry

ActiveLibrary[File &amp; Storage](/categories/file-storage)

flextype-components/registry
============================

Registry component provides a mechanism for storing data globally in a well managed fashion, helping to prevent global meltdown.

v3.0.0(5y ago)05.3kMITPHPPHP ^7.1.3

Since Apr 12Pushed 5y ago1 watchersCompare

[ Source](https://github.com/flextype-components/registry)[ Packagist](https://packagist.org/packages/flextype-components/registry)[ Docs](https://github.com/flextype-components/registry)[ RSS](/packages/flextype-components-registry/feed)WikiDiscussions master Synced today

READMEChangelog (6)Dependencies (2)Versions (9)Used By (0)

Registry Component
==================

[](#registry-component)

Registry component provides a mechanism for storing data globally in a well managed fashion, helping to prevent global meltdown.

[![Version](https://camo.githubusercontent.com/0ab2715fb33f2730003970585df0b520162ef3f0ea74b0d2595ef4a55c89cf83/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f666c6578747970652d636f6d706f6e656e74732f72656769737472792e7376673f6c6162656c3d76657273696f6e26636f6c6f723d677265656e)](https://github.com/flextype-components/registry/releases) [![License](https://camo.githubusercontent.com/0cb650cae5fbc5287da2a5e73501fac11b3fd01c715f9b8045ac852e1246e241/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f636f6c6f723d677265656e)](https://github.com/flextype-components/registry) [![Total downloads](https://camo.githubusercontent.com/e0c0e0b7ecc041782c99019258e0553f4028013f6ad0221f7a2e711090689120/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f646f776e6c6f6164732f666c6578747970652d636f6d706f6e656e74732f72656769737472792f746f74616c2e7376673f636f6c6f723d677265656e)](https://github.com/flextype-components/registry) [![Quality Score](https://camo.githubusercontent.com/ba3feab6fc015e18745a6ecf0abc27566f7434cad3110b4343a03926140031b7/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f666c6578747970652d636f6d706f6e656e74732f72656769737472792e7376673f6272616e63683d6d617374657226636f6c6f723d677265656e)](https://scrutinizer-ci.com/g/flextype-components/registry?branch=master)

### Installation

[](#installation)

With [Composer](https://getcomposer.org):

```
composer require flextype-components/registry

```

### Usage

[](#usage)

```
use Flextype\Component\Registry;

$registry = new Registry();
```

### Methods

[](#methods)

MethodDescription[`set()`](#registry_set)Set a value in the registry.[`get()`](#registry_get)Get item from the registry.[`has()`](#registry_has)Determine if the registry has a value for the given name.[`delete()`](#registry_delete)Delete a value from the registry.[`flush()`](#registry_flush)Flush all values from the registry.[`all()`](#registry_all)Get all values in the register.---

####  Method: `set()`

[](#-method-set)

Set a value in the registry.

**Example:**

```
$registry->set('movies.the-thin-red-line.title', 'The Thin Red Line');
```

####  Method: `get()`

[](#-method-get)

Get item from the registry.

**Example:**

```
$registry->get('movies.the-thin-red-line.title');
```

####  Method: `has()`

[](#-method-has)

Determine if the registry has a value for the given name.

**Example:**

```
if ($registry->has('movies.the-thin-red-line.title')) {
    // do something...
}
```

####  Method: `delete()`

[](#-method-delete)

**Example:**

```
$registry->delete('movies.the-thin-red-line.title');
```

####  Method: `flush()`

[](#-method-flush)

Flush all values from the registry.

**Example:**

```
$registry->flush();
```

####  Method: `all()`

[](#-method-all)

Get all values in the register.

**Example:**

```
$dump = $registry->all();
```

### License

[](#license)

[The MIT License (MIT)](https://github.com/flextype-components/registry/blob/master/LICENSE.txt)Copyright (c) 2020 [Sergey Romanenko](https://github.com/Awilum)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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 ~139 days

Recently: every ~203 days

Total

7

Last Release

2116d ago

Major Versions

v1.2.0 → v2.0.02019-03-01

v2.0.0 → v3.0.02020-07-24

### Community

Maintainers

![](https://www.gravatar.com/avatar/652557f36367ca6ed585663426c237bf39c4e1b6589b28a20937517bf43b0fe4?d=identicon)[Awilum](/maintainers/Awilum)

---

Top Contributors

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

---

Tags

phpstorageregistryflextype-components

### Embed Badge

![Health badge](/badges/flextype-components-registry/health.svg)

```
[![Health](https://phpackages.com/badges/flextype-components-registry/health.svg)](https://phpackages.com/packages/flextype-components-registry)
```

###  Alternatives

[rsd/seafile-php-sdk

This is a PHP package for accessing Seafile Web API

3589.1k](/packages/rsd-seafile-php-sdk)

PHPackages © 2026

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