PHPackages                             sneakybobito/incubator - 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. sneakybobito/incubator

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

sneakybobito/incubator
======================

Adapters, prototypes or functionality that can be potentially incorporated to the C-framework.

01.8kPHP

Since Dec 23Pushed 12y ago1 watchersCompare

[ Source](https://github.com/gsouf/incubator)[ Packagist](https://packagist.org/packages/sneakybobito/incubator)[ RSS](/packages/sneakybobito-incubator/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Phalcon Incubator
=================

[](#phalcon-incubator)

Phalcon PHP is a web framework delivered as a C extension providing high performance and lower resource consumption.

This is a repository to publish/share/experimient with new adapters, prototypes or functionality that potentially can be incorporated to the C-framework.

Also we welcome submissions from the community of snippets that could extend the framework more.

The code in this repository is written in PHP.

Installation
------------

[](#installation)

### Installing via Composer

[](#installing-via-composer)

Install composer in a common location or in your project:

```
curl -s http://getcomposer.org/installer | php
```

Create the composer.json file as follows:

```
{
    "require": {
        "phalcon/incubator": "dev-master"
    }
}
```

Run the composer installer:

```
php composer.phar install
```

### Installing via Github

[](#installing-via-github)

Just clone the repository in a common location or inside your project:

```
git clone https://github.com/phalcon/incubator.git

```

Autoloading from the Incubator
------------------------------

[](#autoloading-from-the-incubator)

Add or register the following namespace strategy to your Phalcon\\Loader in order to load classes from the incubator repository:

```
$loader = new Phalcon\Loader();

$loader->registerNamespaces(array(
	'Phalcon' => '/path/to/incubator/Library/Phalcon/'
));

$loader->register();
```

Contributions Index
-------------------

[](#contributions-index)

### Acl

[](#acl)

- [Phalcon\\Acl\\Adapter\\Database](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Acl/Adapter) - ACL lists stored in database tables
- [Phalcon\\Acl\\Adapter\\Mongo](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Acl/Adapter) - ACL lists stored in Mongo collections

### Cache

[](#cache)

- [Phalcon\\Cache\\Backend\\Database](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Cache/Backend) - Database backend for caching data (phalcon)
- [Phalcon\\Cache\\Backend\\Redis](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Cache/Backend) - Redis backend for caching data (kenjikobe)

### Config

[](#config)

- [Phalcon\\Config\\Adapter\\Json](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Config/Adapter) - Json adapter (ofpiyush)
- [Phalcon\\Config\\Adapter\\Yaml](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Config/Adapter) - YAML adapter (freekzy)

### Database

[](#database)

- [Phalcon\\Db\\Adapter\\Cacheable\\Mysql](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Db) - MySQL adapter that agressively caches all the queries executed (phalcon)

### Logger

[](#logger)

- [Phalcon\\Logger\\Adapter\\Firephp](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Logger) - Adapter to log messages in Firebug (phalcon)
- [Phalcon\\Logger\\Adapter\\Database](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Logger) - Adapter to store logs in a database table (phalcon)

### Template Engines

[](#template-engines)

- [Phalcon\\Mvc\\View\\Engine\\Mustache](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Mvc/View/Engine) - Adapter for Mustache (phalcon)
- [Phalcon\\Mvc\\View\\Engine\\Twig](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Mvc/View/Engine) - Adapter for Twig (phalcon)
- [Phalcon\\Mvc\\View\\Engine\\Smarty](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Mvc/View/Engine) - Adapter for Smarty (phalcon)

### ORM Validators

[](#orm-validators)

- [Phalcon\\Mvc\\Model\\Validator\\ConfirmationOf](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Mvc/Model) - Allows to validate if a field has a confirmation field with the same value (suxxes)

### Error Handling

[](#error-handling)

- [Phalcon\\Error](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Error) - Error handler used to centralize the error handling and displaying clean error pages (theDisco)
- [Phalcon\\Utils\\PrettyExceptions](https://github.com/phalcon/pretty-exceptions) - Pretty Exceptions is an utility to show exceptions/errors/warnings/notices using a nicely visualization. (phalcon/kenjikobe)

### Translate

[](#translate)

- [Phalcon\\Translate\\Adapter\\Gettext](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Translate/Adapter) - Translation adapter for Gettext (phalcon)
- [Phalcon\\Translate\\Adapter\\Database](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Translate/Adapter) - Translation adapter using relational databases (phalcon)

### Session

[](#session)

- [Phalcon\\Session\\Adapter\\Database](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Session/Adapter) - Database adapter for storing sessions (phalcon)
- [Phalcon\\Session\\Adapter\\Memcache](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Session/Adapter) - Memcache adapter for storing sessions (meets-ecommerce)
- [Phalcon\\Session\\Adapter\\Mongo](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Session/Adapter) - MongoDb adapter for storing sessions (phalcon)
- [Phalcon\\Session\\Adapter\\Redis](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Session/Adapter) - Redis adapter for storing sessions (phalcon)
- [Phalcon\\Session\\Adapter\\HandlerSocket](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Session/Adapter) - HandlerSocket adapter for storing sessions (Xrymz)

### Utils

[](#utils)

- [Phalcon\\Utils\\Slug](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Utils) - Creates a slug for the passed string taking into account international characters. (niden)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community18

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor4

4 contributors hold 50%+ of commits

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/e6f24737cd0c46fea5e7a294f91582b35a052ce23cd2375f8f48e2faecb6fd78?d=identicon)[gsouf](/maintainers/gsouf)

---

Top Contributors

[![niden](https://avatars.githubusercontent.com/u/1073784?v=4)](https://github.com/niden "niden (19 commits)")[![xboston](https://avatars.githubusercontent.com/u/201306?v=4)](https://github.com/xboston "xboston (6 commits)")[![gsouf](https://avatars.githubusercontent.com/u/3215399?v=4)](https://github.com/gsouf "gsouf (6 commits)")[![endeveit](https://avatars.githubusercontent.com/u/197781?v=4)](https://github.com/endeveit "endeveit (5 commits)")[![tugrul](https://avatars.githubusercontent.com/u/163442?v=4)](https://github.com/tugrul "tugrul (4 commits)")[![kenjikobe](https://avatars.githubusercontent.com/u/2137523?v=4)](https://github.com/kenjikobe "kenjikobe (4 commits)")[![tmihalik](https://avatars.githubusercontent.com/u/440762?v=4)](https://github.com/tmihalik "tmihalik (4 commits)")[![Xrymz](https://avatars.githubusercontent.com/u/309405?v=4)](https://github.com/Xrymz "Xrymz (2 commits)")[![sjinks](https://avatars.githubusercontent.com/u/7810770?v=4)](https://github.com/sjinks "sjinks (2 commits)")[![suxxes](https://avatars.githubusercontent.com/u/141334?v=4)](https://github.com/suxxes "suxxes (2 commits)")[![theDisco](https://avatars.githubusercontent.com/u/199368?v=4)](https://github.com/theDisco "theDisco (2 commits)")[![sukobuto](https://avatars.githubusercontent.com/u/1277008?v=4)](https://github.com/sukobuto "sukobuto (1 commits)")[![freekzy](https://avatars.githubusercontent.com/u/147521289?v=4)](https://github.com/freekzy "freekzy (1 commits)")[![eugene-p](https://avatars.githubusercontent.com/u/916290?v=4)](https://github.com/eugene-p "eugene-p (1 commits)")[![lukashin](https://avatars.githubusercontent.com/u/5064002?v=4)](https://github.com/lukashin "lukashin (1 commits)")[![p0rsche](https://avatars.githubusercontent.com/u/1512411?v=4)](https://github.com/p0rsche "p0rsche (1 commits)")[![sirian](https://avatars.githubusercontent.com/u/897643?v=4)](https://github.com/sirian "sirian (1 commits)")[![Icefish](https://avatars.githubusercontent.com/u/1073366?v=4)](https://github.com/Icefish "Icefish (1 commits)")

### Embed Badge

![Health badge](/badges/sneakybobito-incubator/health.svg)

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

###  Alternatives

[reportico/yii2-reportico

Reportico

2116.5k](/packages/reportico-yii2-reportico)[pishran/laravel-persian-string

Convert Arabic/English/etc numbers and characters to Persian numbers and characters in Laravel models.

206.7k](/packages/pishran-laravel-persian-string)

PHPackages © 2026

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