# incubator
**Repository Path**: mirrors_phalcon/incubator
## Basic Information
- **Project Name**: incubator
- **Description**: Incubator adapters/functionality for the Phalcon PHP Framework
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2022-01-05
- **Last Updated**: 2026-04-05
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Phalcon Incubator
[](https://travis-ci.org/phalcon/incubator)
[](https://github.com/phalcon/incubator/releases)
[](https://github.com/phalcon/incubator/blob/master/LICENSE.txt)
[](https://packagist.org/packages/phalcon/incubator)
[](https://packagist.org/packages/phalcon/incubator)
This is a repository to publish/share/experiment with new adapters, prototypes or functionality that can potentially be incorporated into the [Phalcon Framework](https://github.com/phalcon/cphalcon).
We also welcome submissions of snippets from the community, to further extend the framework.
The code in this repository is written in PHP.
## Installation
### Installing via Composer
Install Composer in a common location or in your project:
```bash
curl -s http://getcomposer.org/installer | php
```
Then create the `composer.json` file as follows:
```json
{
"require": {
"phalcon/incubator": "^3.4"
}
}
```
If you are still using Phalcon 2.0.x, create the `composer.json` file as follows:
```json
{
"require": {
"phalcon/incubator": "^2.0"
}
}
```
Run the composer installer:
```bash
$ php composer.phar install
```
### 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
Add or register the following namespace strategy to your `Phalcon\Loader` in order
to load classes from the incubator repository:
```php
$loader = new Phalcon\Loader();
$loader->registerNamespaces(
[
'Phalcon' => '/path/to/incubator/Library/Phalcon/',
]
);
$loader->register();
```
## Testing
Tests are located in `tests/` and use Codeception. See [tests/README.md](tests/README.md).
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md).
## Contributions Index
See [INDEX.md](INDEX.md).
## Sponsors
Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/phalcon#sponsor)]
## Backers
Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/phalcon#backer)]
## License
Incubator is open-sourced software licensed under the [New BSD License](https://github.com/phalcon/incubator/blob/master/LICENSE.txt).
© 2011-2018, Phalcon Framework Team