您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)使用composer怎么安裝thinkphp6.0框架,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
安裝composer -vvv的參數(shù)是表示展示安裝進(jìn)度,測試時(shí)使用其他參數(shù)安裝失敗,一直卡著不動(dòng)
curl -vvv https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
先安裝下git,才能clone下github上的代碼
apt-get install git
在創(chuàng)建項(xiàng)目之前,要安裝php的擴(kuò)展和unzip命令,沒有這幾個(gè)擴(kuò)展后面創(chuàng)建項(xiàng)目不成功
apt-get install php7.3-mbstring php7.3-zip apt-get install unzip
如果遇到警示,不準(zhǔn)使用root執(zhí)行,可以直接忽略不用管就行,沒必要使用一個(gè)非root用戶。先把鏡像站給設(shè)置了,再去創(chuàng)建項(xiàng)目,否則會(huì)卡住一動(dòng)不動(dòng)
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/ composer create-project topthink/think=6.0.x-dev thinkphp
框架代碼下載完成后,要把根目錄的.example.env 改成.env,這樣默認(rèn)是開啟了調(diào)試模式,可以看到代碼中的錯(cuò)誤
配置nginx的重寫用來去除index.php前綴,配置pathinfo變量傳遞才能使用tp6.0的路由
thinkphp下的nginx配置文件如下:
server { listen 80; server_name tp.com; access_log /var/log/nginx/tp.com.access.log main; error_log /var/log/nginx/tp.com.error.log; root /var/www/html/thinkphp/public; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php?s=$1 last; break; } location / { index index.html index.php; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_split_path_info ^(.+\.php)(/.*)$; fastcgi_param PATH_INFO $fastcgi_path_info; include fastcgi_params; } }
關(guān)于使用composer怎么安裝thinkphp6.0框架就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。