Phalcon Incubator

用于Phalcon PHP Framework的Incubator(孵化器)适配器/功能。( Incubator adapters/functionality for the Phalcon PHP Framework. )

Github星跟蹤圖

Phalcon是一个开源的Web框架,作为PHP语言的C扩展提供了高性能和更低的资源消耗。

Phalcon Incubator(孵化器)

这是一个存储库,用于发布/共享/试验可能可能合并到Phalcon Framework中的新适配器、原型或功能。

我们也欢迎社群提交片段,以进一步扩展框架。

此存储库中的代码是用PHP编写的。

概覽

名稱與所有者phalcon/incubator
主編程語言PHP
編程語言PHP (語言數: 2)
平台BSD, Linux, Mac, Windows
許可證Other
發布數45
最新版本名稱v4.0.0-alpha.7 (發布於 )
第一版名稱v1.2.4 (發布於 )
創建於2012-11-25 23:45:51
推送於2023-07-05 11:44:58
最后一次提交2023-07-05 12:37:52
星數730
關注者數90
派生數343
提交數1.6k
已啟用問題?
問題數246
打開的問題數16
拉請求數567
打開的拉請求數0
關閉的拉請求數162
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?

Phalcon Incubator

Build Status
Latest Version
Software License
Total Downloads
Daily Downloads

This is a repository to publish/share/experiment with new adapters, prototypes or functionality that can potentially be incorporated into the Phalcon 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.4"
    }
}

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

Tests are located in tests/ and use Codeception. See tests/README.md.

Contributing

See CONTRIBUTING.md.

Contributions Index

See INDEX.md.

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

License

Incubator is open-sourced software licensed under the New BSD License.
© 2011-2018, Phalcon Framework Team

去到頂部