因为一直是用PHPStudy的本地环境,所以composer 基于PHPStudy来安装的。
一、 安装PHPStudy
点击下载,找到自己心仪的安装位置,一路下一步即可。
二、安装composer
-
通过PHPStudy安装composer
-
设置环境变量
-
以win10为例,按下win键,输入env,回车
-
设置环境变量
-
将composer设置国内镜像
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/
- composer更新到最新版本
composer self-update
- 使用composer下载thinkphp6
composer create-project topthink/think
- 测试thinkphp6
cd tp6
php think run
ThinkPHP Development server is started On <http://127.0.0.1:8000/>
You can exit with `CTRL-C`
// 点击[http://127.0.0.1:8000](http://127.0.0.1:8000) 即可访问tp久违的页面了
-
开启thinkphp6的多应用模式
首先删除app目录下所有其他的文件
-
安装多应用模式扩展:
composer require topthink/think-multi-app
-
创建三大应用index(前端),home(后台),common(公共应用)
php think build index Successed PS D:\phpstudy\WWW\think> php think build home Successed PS D:\phpstudy\WWW\think> php think build common Successed 注意:如果没有安装think-multi-app, 使用php think build xx会报错:Command "build" is not defined.
到此,OK,可以开始学习或者干活了。