PHPackages                             pantaovay/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. [Framework](/categories/framework)
4. /
5. pantaovay/incubator

ActiveLibrary[Framework](/categories/framework)

pantaovay/incubator
===================

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

3.0.1.3(9y ago)0268BSD-3-ClausePHPPHP &gt;=5.5

Since Nov 27Pushed 9y ago1 watchersCompare

[ Source](https://github.com/pantaovay/incubator)[ Packagist](https://packagist.org/packages/pantaovay/incubator)[ Docs](http://phalconphp.com)[ RSS](/packages/pantaovay-incubator/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (9)Versions (31)Used By (0)

[![Build Status](https://camo.githubusercontent.com/96073a8fd8c122f477a5221685d8c3e084ba9030c1b0310645e6f38c4bf424da/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f7068616c636f6e2f696e63756261746f722f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/phalcon/incubator)[![Latest Version](https://camo.githubusercontent.com/9a82c9e559cb06c0b4f1c8de45abb3ac8cdf394db159e203a8b3db81f6f4b456/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7068616c636f6e2f696e63756261746f722e7376673f7374796c653d666c61742d737175617265)](https://github.com/phalcon/incubator/releases)[![Software License](https://camo.githubusercontent.com/cb25e110ebc973650d5506bcb5fc974551fa6dff93d0edcc328acbe538789558/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4253442d2d332d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](docs/LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/a0d583e635f667678437c0479a07db04cd91cac9953220579bd2216c3f841a66/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7068616c636f6e2f696e63756261746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/phalcon/incubator)[![Daily Downloads](https://camo.githubusercontent.com/f8aa0da64cffeef54bd2d7378d4f8f8badee360a35743ada2bc416a21e68df9e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64642f7068616c636f6e2f696e63756261746f722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/phalcon/incubator)

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

[](#phalcon-incubator)

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

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

We also welcome submissions of snippets from the community, to further extend the framework.

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
```

Then create the `composer.json` file as follows:

```
{
    "require": {
        "phalcon/incubator": "~3.0"
    }
}
```

If you are still using Phalcon 2.0.x, create the `composer.json` file as follows:

```
{
    "require": {
        "phalcon/incubator": "^2.0"
    }
}
```

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

```

For a specific Git branch (eg 2.0.13) please use:

```
git clone -b 2.0.13 git@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([
    'Phalcon' => '/path/to/incubator/Library/Phalcon/'
]);

$loader->register();
```

Testing
-------

[](#testing)

See [TESTING.md](docs/TESTING.md)

Contributing
============

[](#contributing)

See [CONTRIBUTING.md](docs/CONTRIBUTING.md)

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

[](#contributions-index)

### Acl

[](#acl)

- [Phalcon\\Acl\\Adapter\\Database](Library/Phalcon/Acl/Adapter) - ACL lists stored in database tables (@phalcon)
- [Phalcon\\Acl\\Adapter\\Mongo](Library/Phalcon/Acl/Adapter) - ACL lists stored in Mongo collections (@phalcon)
- [Phalcon\\Acl\\Adapter\\Redis](Library/Phalcon/Acl/Adapter) - ACL lists stored in a Redis cluster (@Green-Cat)
- [Phalcon\\Acl\\Factory\\Memory](Library/Phalcon/Acl/Factory) - ACL factory class intended for use with Memory adapter (@digitronac)

### Annotations

[](#annotations)

- [Phalcon\\Annotations\\Adapter\\Memcached](Library/Phalcon/Annotations/Adapter) - Memcached adapter for storing annotations (@igusev)
- [Phalcon\\Annotations\\Adapter\\Redis](Library/Phalcon/Annotations/Adapter) - Redis adapter for storing annotations (@sergeyklay)
- [Phalcon\\Annotations\\Adapter\\Aerospike](Library/Phalcon/Annotations/Adapter) - Aerospike adapter for storing annotations (@sergeyklay)

### Behaviors

[](#behaviors)

- [Phalcon\\Mvc\\Model\\Behavior\\Blameable](Library/Phalcon/Mvc/Model/Behavior) - logs with every created or updated row in your database who created and who updated it (@phalcon)
- [Phalcon\\Mvc\\Model\\Behavior\\NestedSet](Library/Phalcon/Mvc/Model/Behavior) - Nested Set behavior for models (@braska)

### Cache

[](#cache)

- [Phalcon\\Cache\\Backend\\Aerospike](Library/Phalcon/Cache/Backend) - Aerospike backend for caching data (@sergeyklay)
- [Phalcon\\Cache\\Backend\\Database](Library/Phalcon/Cache/Backend) - Database backend for caching data (@phalcon)
- [Phalcon\\Cache\\Backend\\Wincache](Library/Phalcon/Cache/Backend) - Wincache backend for caching data (@nazwa)

### Config

[](#config)

- [Phalcon\\Config\\Loader](Library/Phalcon/Config) - Dynamic config loader by file extension (@Kachit)
- [Phalcon\\Config\\Adapter\\Xml](Library/Phalcon/Config) - Reads xml files and converts them to Phalcon\\Config objects. (@sergeyklay)

### Console

[](#console)

- [Phalcon\\Cli\\Console\\Extended](Library/Phalcon/Cli/Console) - Extended Console application that uses annotations in order to create automatically a help description (@sarrubia)
- [Phalcon\\Cli\\Environment](Library/Phalcon/Cli/Environment) - This component provides functionality that helps writing CLI oriented code that has runtime-specific execution params (@sergeyklay)

### Crypt

[](#crypt)

- [Phalcon\\Legacy\\Crypt](Library/Phalcon/Legacy) - Port of Phalcon 2.0.x (legacy) `Phalcon\Crypt` (@sergeyklay)

### Database

[](#database)

#### Adapter

[](#adapter)

- [Phalcon\\Db\\Adapter\\Cacheable\\Mysql](Library/Phalcon/Db/Adapter) - MySQL adapter that aggressively caches all the queries executed (@phalcon)
- [Phalcon\\Db\\Adapter\\Factory](Library/Phalcon/Db/Adapter) - Phalcon DB adapters Factory (@Kachit)
- [Phalcon\\Db\\Adapter\\MongoDB](Library/Phalcon/Db/Adapter) - Database adapter for the new MongoDB extension (@tigerstrikemedia)
- [Phalcon\\Db\\Adapter\\Pdo\\Oracle](Library/Phalcon/Db/Adapter) - Database adapter for the Oracle for the Oracle RDBMS. (@sergeyklay)

#### Dialect

[](#dialect)

- [Phalcon\\Db\\Dialect\\MysqlExtended](Library/Phalcon/Db/Dialect) - Generates database specific SQL for the MySQL RDBMS. Extended version. (@phalcon)
- [Phalcon\\Db\\Dialect\\Oracle](Library/Phalcon/Db/Dialect) - Generates database specific SQL for the Oracle RDBMS. (@sergeyklay)

### Http

[](#http)

- [Phalcon\\Http](Library/Phalcon/Http) - Uri utility (@tugrul)
- [Phalcon\\Http\\Client](Library/Phalcon/Http/Client) - Http Request and Response (@tugrul)

### Logger

[](#logger)

- [Phalcon\\Logger\\Adapter\\Database](Library/Phalcon/Logger) - Adapter to store logs in a database table (@phalcon)
- [Phalcon\\Logger\\Adapter\\Firelogger](Library/Phalcon/Logger) - Adapter to log messages in the Firelogger console in Firebug (@phalcon)
- [Phalcon\\Logger\\Adapter\\File\\Multiple](Library/Phalcon/Logger) - Adapter to log to multiple files (@rlaffers)

### Mailer

[](#mailer)

- [Phalcon\\Mailer\\Manager](Library/Phalcon/Mailer) - Mailer wrapper over SwiftMailer (@KorsaR-ZN)

### Model MetaData Adapters

[](#model-metadata-adapters)

- [Phalcon\\Mvc\\Model\\MetaData\\Wincache](Library/Phalcon/Mvc/Model/MetaData) - Adapter for the Wincache php extension

### MVC

[](#mvc)

- [Phalcon\\Mvc\\MongoCollection](Library/Phalcon/MVC/MongoCollection) - Collection class for the new MongoDB Extension (@tigerstrikemedia)

### Template Engines

[](#template-engines)

- [Phalcon\\Mvc\\View\\Engine\\Mustache](Library/Phalcon/Mvc/View/Engine) - Adapter for Mustache (@phalcon)
- [Phalcon\\Mvc\\View\\Engine\\Twig](Library/Phalcon/Mvc/View/Engine) - Adapter for Twig (@phalcon)
- [Phalcon\\Mvc\\View\\Engine\\Smarty](Library/Phalcon/Mvc/View/Engine) - Adapter for Smarty (@phalcon)

### Error Handling

[](#error-handling)

- [Phalcon\\Error](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)

### Queue

[](#queue)

- [Phalcon\\Queue\\Beanstalk\\Extended](Library/Phalcon/Queue/Beanstalk) - Extended class to access the beanstalk queue service (@endeveit)

### Test

[](#test)

- [Phalcon\\Test\\FunctionalTestCase](https://github.com/silverbadge/incubator/tree/master/Library/Phalcon/Test) - Mvc app test case wrapper (@thecodeassassin)
- [Phalcon\\Test\\ModelTestCase](https://github.com/silverbadge/incubator/tree/master/Library/Phalcon/Test) - Model test case wrapper (@thecodeassassin)
- [Phalcon\\Test\\UnitTestCase](https://github.com/silverbadge/incubator/tree/master/Library/Phalcon/Test) - Generic test case wrapper (@thecodeassassin)

### Translate

[](#translate)

- [Phalcon\\Translate\\Adapter\\Database](Library/Phalcon/Translate/Adapter) - Translation adapter using relational databases (@phalcon)
- [Phalcon\\Translate\\Adapter\\ResourceBundle](Library/Phalcon/Translate/Adapter) - Translation adapter using ResourceBundle (@phalcon)

### Session

[](#session)

- [Phalcon\\Session\\Adapter\\Aerospike](Library/Phalcon/Session/Adapter) - Aerospike adapter for storing sessions (@sergeyklay)
- [Phalcon\\Session\\Adapter\\Database](Library/Phalcon/Session/Adapter) - Database adapter for storing sessions (@phalcon)
- [Phalcon\\Session\\Adapter\\Mongo](Library/Phalcon/Session/Adapter) - MongoDb adapter for storing sessions (@phalcon)
- [Phalcon\\Session\\Adapter\\HandlerSocket](Library/Phalcon/Session/Adapter) - HandlerSocket adapter for storing sessions (@Xrymz)

### Utils

[](#utils)

- [Phalcon\\Utils\\Slug](Library/Phalcon/Utils) - Creates a slug for the passed string taking into account international characters. (@niden)
- [Phalcon\\Avatar\\Gravatar](Library/Phalcon/Avatar) - Provides an easy way to retrieve a user's profile image from Gravatar site based on a given email address (@sergeyklay)

### Validators

[](#validators)

- [Phalcon\\Validation\\Validator\\CardNumber](Library/Phalcon/Validation/Validator) - Allows to validate credit card number using Luhn algorithm (@parshikov)
- [Phalcon\\Validation\\Validator\\ReCaptcha](Library/Phalcon/Validation/Validator) - The reCAPTCHA Validator (@pflorek)
- [Phalcon\\Validation\\Validator\\ConfirmationOf](Library/Phalcon/Validation/Validator) - Validates confirmation of other field value (@davihu)
- [Phalcon\\Validation\\Validator\\Decimal](Library/Phalcon/Validation/Validator) - Allows to validate if a field has a valid number in proper decimal format (negative and decimal numbers allowed) (@sergeyklay)
- [Phalcon\\Validation\\Validator\\MongoId](Library/Phalcon/Validation/Validator) - Validate MongoId value (@Kachit)
- [Phalcon\\Validation\\Validator\\PasswordStrength](Library/Phalcon/Validation/Validator) - Validates password strength (@davihu)

License
-------

[](#license)

Incubator is open-sourced software licensed under the [New BSD License](docs/LICENSE.md). © Phalcon Framework Team and contributors

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor2

2 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.

###  Release Activity

Cadence

Every ~36 days

Recently: every ~0 days

Total

30

Last Release

3491d ago

Major Versions

1.3.5.x-dev → v2.0.02015-05-06

1.3.x-dev → v2.0.72015-08-18

2.1.x-dev → v3.0.02016-07-29

PHP version history (5 changes)1.2.4PHP &gt;=5.3.6

v2.0.0PHP &gt;=5.3.9

v2.0.2PHP &gt;=5.3.21

v2.0.8PHP &gt;=5.4

v3.0.0PHP &gt;=5.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/dae8206235dd206486952df0d3ba63501ba711cf8bd9123d6855200eed61f1d6?d=identicon)[pantaovay](/maintainers/pantaovay)

---

Top Contributors

[![sergeyklay](https://avatars.githubusercontent.com/u/1256298?v=4)](https://github.com/sergeyklay "sergeyklay (475 commits)")[![endeveit](https://avatars.githubusercontent.com/u/197781?v=4)](https://github.com/endeveit "endeveit (132 commits)")[![iGusev](https://avatars.githubusercontent.com/u/1555767?v=4)](https://github.com/iGusev "iGusev (60 commits)")[![digitronac](https://avatars.githubusercontent.com/u/4385803?v=4)](https://github.com/digitronac "digitronac (52 commits)")[![tmihalik](https://avatars.githubusercontent.com/u/440762?v=4)](https://github.com/tmihalik "tmihalik (41 commits)")[![xboston](https://avatars.githubusercontent.com/u/201306?v=4)](https://github.com/xboston "xboston (39 commits)")[![niden](https://avatars.githubusercontent.com/u/1073784?v=4)](https://github.com/niden "niden (28 commits)")[![blocklogic-au](https://avatars.githubusercontent.com/u/1908481?v=4)](https://github.com/blocklogic-au "blocklogic-au (24 commits)")[![Kachit](https://avatars.githubusercontent.com/u/503710?v=4)](https://github.com/Kachit "Kachit (24 commits)")[![KorsaR-ZN](https://avatars.githubusercontent.com/u/579410?v=4)](https://github.com/KorsaR-ZN "KorsaR-ZN (17 commits)")[![stibiumz](https://avatars.githubusercontent.com/u/5264529?v=4)](https://github.com/stibiumz "stibiumz (15 commits)")[![SidRoberts](https://avatars.githubusercontent.com/u/1364214?v=4)](https://github.com/SidRoberts "SidRoberts (14 commits)")[![Green-Cat](https://avatars.githubusercontent.com/u/3328823?v=4)](https://github.com/Green-Cat "Green-Cat (14 commits)")[![nexik](https://avatars.githubusercontent.com/u/70645?v=4)](https://github.com/nexik "nexik (10 commits)")[![parshikov](https://avatars.githubusercontent.com/u/983028?v=4)](https://github.com/parshikov "parshikov (9 commits)")[![sjinks](https://avatars.githubusercontent.com/u/7810770?v=4)](https://github.com/sjinks "sjinks (8 commits)")[![YerlenZhubangaliyev](https://avatars.githubusercontent.com/u/1582996?v=4)](https://github.com/YerlenZhubangaliyev "YerlenZhubangaliyev (7 commits)")[![PyYoshi](https://avatars.githubusercontent.com/u/467255?v=4)](https://github.com/PyYoshi "PyYoshi (6 commits)")[![thehe](https://avatars.githubusercontent.com/u/535186?v=4)](https://github.com/thehe "thehe (6 commits)")[![davihu](https://avatars.githubusercontent.com/u/11491151?v=4)](https://github.com/davihu "davihu (6 commits)")

---

Tags

frameworkphalconincubator

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[phalcon/incubator

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

7222.9M81](/packages/phalcon-incubator)[phalcon/devtools

This tools provide you useful scripts to generate code helping to develop faster and easy applications that use with Phalcon framework.

1.3k2.0M54](/packages/phalcon-devtools)[phalcon/migrations

Run and Generate DB Migrations with Phalcon Framework

29977.8k6](/packages/phalcon-migrations)[phalcon/incubator-mailer

Phalcon Incubator Mailer Adapters

1318.1k2](/packages/phalcon-incubator-mailer)

PHPackages © 2026

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