fuelphp 安裝
本章介紹如何在您的機器上安裝 fuelphp 框架。 fuelphp 的安裝非常簡單和容易。您有兩種方法可以創建 fuelphp 應用程序:
- 第一種方法是使用名為 oil 的 fuelphp 工具進行命令行安裝。
- 第二種方法是基于 composer 的安裝。 fuelphp 使用 composer 進行安裝和包依賴,因此在繼續該過程之前,請確保 composer 已安裝在本地。
讓我們在后續部分中逐一詳細介紹每種方法。
系統要求
在開始安裝之前,必須滿足以下系統要求。
web 服務器(以下任一項)
- wamp (windows)
- 微軟 iis (windows)
- 燈 (linux)
- mamp (macintosh)
- xamp(多平臺)
- nginx(多平臺)
- php 內置開發網絡服務器(多平臺)
瀏覽器支持(以下任何一項)
- ie(internet explorer 8+)
- 火狐
- 谷歌瀏覽器
- safari
php 兼容性-php 5.3 或更高版本。要獲得最大收益,請使用最新版本。
讓我們在本教程中使用 php 的內置開發 web 服務器。內置的開發 web 服務器易于啟動,并且足以了解 fuelphp web 應用程序的基礎知識,而無需深入了解 web 服務器和配置領域的復雜性。
命令行安裝
fuelphp 的命令行安裝非常簡單,最多需要五分鐘。
安裝油包
oil 是 fuelphp 框架提供的一個特殊包/命令,用于完成 fuelphp 應用程序開發所需的許多任務,包括安裝、開發和測試應用程序。
要安裝 oil 包,打開一個 shell 并運行以下命令:
sudo curl https://get.fuelphp.com/oil | sh
該命令使用curl來下載安裝oil包。該命令將顯示類似以下信息的結果,最后安裝油包。
% total % received % xferd average speed time time time current dload upload total spent left speed 100 479 100 479 0 0 353 0 0:00:01 0:00:01--:--:-- 353
創建新項目
要使用 oil 創建新項目,請使用以下命令:
oil create <project_name> </project_name>
讓我們使用以下命令創建一個名為"helloworld"的新項目。
oil create helloworld
現在,您可以看到類似于以下內容的響應,并最終創建一個簡單的 fuelphp 應用程序框架。
composer create-project fuel/fuel helloworld installing fuel/fuel (1.8.0.1) -installing fuel/fuel (1.8.0.1) loading from cache created project in helloworld loading composer repositories with package information updating dependencies (including require-dev) -installing composer/installers (v1.3.0) loading from cache -installing fuelphp/upload (2.0.6) loading from cache -installing michelf/php-markdown (1.4.0) loading from cache -installing psr/log (1.0.2) loading from cache -installing monolog/monolog (1.18.2) loading from cache -installing phpseclib/phpseclib (2.0.0) loading from cache -installing fuel/core (1.8.0.4) loading from cache -installing fuel/auth (1.8.0.4) loading from cache -installing fuel/email (1.8.0.4) loading from cache -installing fuel/oil (1.8.0.4) loading from cache -installing fuel/orm (1.8.0.1) loading from cache -installing fuel/parser (1.8.0.4) loading from cache -installing fuel/docs (1.8.0.4) loading from cache ……………. ……………. writing lock file generating autoload files
油版
要測試 oil 是否可用并檢查版本,請使用以下命令:
$ cd helloworld $ php oil-v
上述命令產生以下結果:
fuel: 1.8 running in "development" mode
石油幫助命令
要獲取 oil 的基本幫助文檔,請使用以下命令:
$ php oil help
上面的命令將顯示類似于以下結果的幫助文檔:
usage: php oil [cell|console|generate|package|refine|help|server|test] runtime options: -f, [--force] # overwrite files that already exist -s, [--skip] # skip files that already exist -q, [--quiet] # supress status output -t, [--speak] # speak errors in a robot voice description: the 'oil' command can be used in several ways to facilitate quick development, help with testing your application and for running tasks. environment: if you want to specify a specific environment oil has to run in, overload the environment variable on the commandline: fuel_env=staging php oil <commands> more information: you can pass the parameter "help" to each of the defined command to get information about that specific command: php oil package help documentation: http://docs.fuelphp.com/packages/oil/intro.html </commands>
到目前為止,您已經知道如何使用油安裝 fuel。讓我們在下一節中介紹基于 composer 的安裝。
基于 composer 的安裝
以下命令用于使用 composer 安裝 fuelphp。
$ composer create-project fuel/fuel--prefer-dist.
git 存儲庫克隆
要將最新的開發版本安裝為本地 git 存儲庫克隆,請使用以下命令。
$ composer create-project fuel/fuel:dev-1.9/develop--prefer-source.
運行應用程序
移動到項目目錄 public 文件夾,使用以下命令使用生產服務器運行應用程序。
$ cd path/to/helloworld/public $ php-s localhost:8080 index.php
它產生以下響應。
php 5.5.31 development server started at sun may 21 12:26:10 2017 listening on http://localhost:8080 document root is /users/workspace/php-fuel/helloworld/public press ctrl-c to quit.
現在,請求 url, http://localhost:8080,它將產生以下結果。
結果
這是在開發環境中運行 fuelphp 應用程序的最簡單方法。如果您在生產環境中以這種方式創建應用程序,您將面臨安全問題。推薦的方法是設置虛擬主機配置。下一節將介紹 apache 網絡服務器。
設置虛擬主機
這是訪問 fuelphp 應用程序的更安全的方式。要設置虛擬主機,您需要將 apache 虛擬主機文件鏈接到您的應用程序。如果是內網應用,將系統主機文件 url 重定向到虛擬主機。
虛擬主機文件
打開虛擬主機并添加以下更改。
<virtualhost *:80=""> servername hello.app documentroot /path/to/public setenv fuel_env “development” <directory path="" to="" public=""> directoryindex index.php allowoverride all order allow,deny allow from all </directory> </virtualhost>
系統主機文件
現在,使用以下命令向您的計算機添加主機條目。
sudo vi /etc/hosts
然后,將以下行添加到文件末尾。
127.0.0.1 hello.app
要使所有更改可用,請重新啟動 apache 服務器并請求 url, http://hello.app。它生成 fuelphp 主頁。