pantaovay/incubator
Composer 安装命令:
composer require pantaovay/incubator
包简介
Adapters, prototypes or functionality that can be potentially incorporated to the C-framework.
关键字:
README 文档
README
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
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
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:
$loader = new Phalcon\Loader(); $loader->registerNamespaces([ 'Phalcon' => '/path/to/incubator/Library/Phalcon/' ]); $loader->register();
Testing
See TESTING.md
Contributing
See CONTRIBUTING.md
Contributions Index
Acl
- Phalcon\Acl\Adapter\Database - ACL lists stored in database tables (@phalcon)
- Phalcon\Acl\Adapter\Mongo - ACL lists stored in Mongo collections (@phalcon)
- Phalcon\Acl\Adapter\Redis - ACL lists stored in a Redis cluster (@Green-Cat)
- Phalcon\Acl\Factory\Memory - ACL factory class intended for use with Memory adapter (@digitronac)
Annotations
- Phalcon\Annotations\Adapter\Memcached - Memcached adapter for storing annotations (@igusev)
- Phalcon\Annotations\Adapter\Redis - Redis adapter for storing annotations (@sergeyklay)
- Phalcon\Annotations\Adapter\Aerospike - Aerospike adapter for storing annotations (@sergeyklay)
Behaviors
- Phalcon\Mvc\Model\Behavior\Blameable - logs with every created or updated row in your database who created and who updated it (@phalcon)
- Phalcon\Mvc\Model\Behavior\NestedSet - Nested Set behavior for models (@braska)
Cache
- Phalcon\Cache\Backend\Aerospike - Aerospike backend for caching data (@sergeyklay)
- Phalcon\Cache\Backend\Database - Database backend for caching data (@phalcon)
- Phalcon\Cache\Backend\Wincache - Wincache backend for caching data (@nazwa)
Config
- Phalcon\Config\Loader - Dynamic config loader by file extension (@Kachit)
- Phalcon\Config\Adapter\Xml - Reads xml files and converts them to Phalcon\Config objects. (@sergeyklay)
Console
- Phalcon\Cli\Console\Extended - Extended Console application that uses annotations in order to create automatically a help description (@sarrubia)
- Phalcon\Cli\Environment - This component provides functionality that helps writing CLI oriented code that has runtime-specific execution params (@sergeyklay)
Crypt
- Phalcon\Legacy\Crypt - Port of Phalcon 2.0.x (legacy)
Phalcon\Crypt(@sergeyklay)
Database
Adapter
- Phalcon\Db\Adapter\Cacheable\Mysql - MySQL adapter that aggressively caches all the queries executed (@phalcon)
- Phalcon\Db\Adapter\Factory - Phalcon DB adapters Factory (@Kachit)
- Phalcon\Db\Adapter\MongoDB - Database adapter for the new MongoDB extension (@tigerstrikemedia)
- Phalcon\Db\Adapter\Pdo\Oracle - Database adapter for the Oracle for the Oracle RDBMS. (@sergeyklay)
Dialect
- Phalcon\Db\Dialect\MysqlExtended - Generates database specific SQL for the MySQL RDBMS. Extended version. (@phalcon)
- Phalcon\Db\Dialect\Oracle - Generates database specific SQL for the Oracle RDBMS. (@sergeyklay)
Http
- Phalcon\Http - Uri utility (@tugrul)
- Phalcon\Http\Client - Http Request and Response (@tugrul)
Logger
- Phalcon\Logger\Adapter\Database - Adapter to store logs in a database table (@phalcon)
- Phalcon\Logger\Adapter\Firelogger - Adapter to log messages in the Firelogger console in Firebug (@phalcon)
- Phalcon\Logger\Adapter\File\Multiple - Adapter to log to multiple files (@rlaffers)
Mailer
- Phalcon\Mailer\Manager - Mailer wrapper over SwiftMailer (@KorsaR-ZN)
Model MetaData Adapters
- Phalcon\Mvc\Model\MetaData\Wincache - Adapter for the Wincache php extension
MVC
- Phalcon\Mvc\MongoCollection - Collection class for the new MongoDB Extension (@tigerstrikemedia)
Template Engines
- Phalcon\Mvc\View\Engine\Mustache - Adapter for Mustache (@phalcon)
- Phalcon\Mvc\View\Engine\Twig - Adapter for Twig (@phalcon)
- Phalcon\Mvc\View\Engine\Smarty - Adapter for Smarty (@phalcon)
Error Handling
- Phalcon\Error - Error handler used to centralize the error handling and displaying clean error pages (@theDisco)
- Phalcon\Utils\PrettyExceptions - Pretty Exceptions is an utility to show exceptions/errors/warnings/notices using a nicely visualization. (@phalcon / @kenjikobe)
Queue
- Phalcon\Queue\Beanstalk\Extended - Extended class to access the beanstalk queue service (@endeveit)
Test
- Phalcon\Test\FunctionalTestCase - Mvc app test case wrapper (@thecodeassassin)
- Phalcon\Test\ModelTestCase - Model test case wrapper (@thecodeassassin)
- Phalcon\Test\UnitTestCase - Generic test case wrapper (@thecodeassassin)
Translate
- Phalcon\Translate\Adapter\Database - Translation adapter using relational databases (@phalcon)
- Phalcon\Translate\Adapter\ResourceBundle - Translation adapter using ResourceBundle (@phalcon)
Session
- Phalcon\Session\Adapter\Aerospike - Aerospike adapter for storing sessions (@sergeyklay)
- Phalcon\Session\Adapter\Database - Database adapter for storing sessions (@phalcon)
- Phalcon\Session\Adapter\Mongo - MongoDb adapter for storing sessions (@phalcon)
- Phalcon\Session\Adapter\HandlerSocket - HandlerSocket adapter for storing sessions (@Xrymz)
Utils
- Phalcon\Utils\Slug - Creates a slug for the passed string taking into account international characters. (@niden)
- Phalcon\Avatar\Gravatar - Provides an easy way to retrieve a user's profile image from Gravatar site based on a given email address (@sergeyklay)
Validators
- Phalcon\Validation\Validator\CardNumber - Allows to validate credit card number using Luhn algorithm (@parshikov)
- Phalcon\Validation\Validator\ReCaptcha - The reCAPTCHA Validator (@pflorek)
- Phalcon\Validation\Validator\ConfirmationOf - Validates confirmation of other field value (@davihu)
- Phalcon\Validation\Validator\Decimal - Allows to validate if a field has a valid number in proper decimal format (negative and decimal numbers allowed) (@sergeyklay)
- Phalcon\Validation\Validator\MongoId - Validate MongoId value (@Kachit)
- Phalcon\Validation\Validator\PasswordStrength - Validates password strength (@davihu)
License
Incubator is open-sourced software licensed under the New BSD License. © Phalcon Framework Team and contributors
pantaovay/incubator 适用场景与选型建议
pantaovay/incubator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 268 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 10 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「phalcon」 「incubator」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pantaovay/incubator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pantaovay/incubator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pantaovay/incubator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Phalcon Incubator Validation
Phalcon Incubator Config Adapters
Phalcon Incubator MongoDB
Phalcon Incubator Mailer Adapters
Uniondrug Trace Client Component for uniondrug/framework
统计信息
- 总下载量: 268
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2016-10-18