安裝

通過 Composer 安裝

安裝孵化器的最簡單方法是使用 Composer

安裝 Composer 並在專案的根目錄中建立一個新的 composer.json 檔案。

|-- app
|-- public
|   `-- index.php
|-- vendor
|-- composer.json

將以下內容新增到 composer.json 檔案中。如果你仍在使用 Phalcon 2.0.x.

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

如果你使用的是 Phalcon 3.0.0

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

更改 composer.json 檔案後,你需要從專案的根目錄執行以下命令。

$ php composer.phar install

如果你已經安裝了檔案,並且想要更新它們。然後用 update 代替 install
預設情況下,Composer 將在專案根目錄中建立名為 vendor 的新資料夾,並將所有請求的檔案下載到此目錄中。

安裝 composer 之後,你的文件結構應如下所示:

|-- app
|-- public
|   `-- index.php
|-- vendor
|   `-- phalcon
|       `-- incubator
|           `-- docs
|           `-- Library
|           `-- tests
|-- composer.json

通過 Github 安裝

在專案根目錄中建立名為 vendor 的資料夾。並在此資料夾中建立資料夾 phalcon

|-- app
|-- public
|   `-- index.php
|-- vendor
|   `-- phalcon

現在在 phalcon 資料夾中導航並從 Github 儲存庫中克隆 Incubator。

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

預設情況下,上面的命令將下載最新版本的 Phalcon。如果你想下載早期版本,只需將 --branch 引數新增到命令中,然後新增所需的分支版本。

git clone https://github.com/phalcon/incubator.git --branch 2.0.9

通過手動方式安裝

如果上述方法讓你感到困惑並且你希望手動執行操作,則可以輕鬆地從 Github 下載儲存庫並將檔案放在專案根目錄中的 vendor/phalcon/中。

|-- app
|-- public
|   `-- index.php
|-- vendor
|   `-- phalcon