-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e72ee92
commit 37a7103
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,46 @@ | ||
# yii2_fecshop | ||
fecshop for ecommerce , online shop open source | ||
|
||
======== | ||
|
||
> 项目已经开始 | ||
> Terry | ||
1、安装Yii2 | ||
------------ | ||
|
||
安装这个扩展的首选方式是通过 [composer](http://getcomposer.org/download/). | ||
|
||
我的安装路径是在 /www/web/develop/fecadmin 文件夹下面 | ||
|
||
执行 | ||
|
||
``` | ||
cd /www/web/develop | ||
composer require "fxp/composer-asset-plugin:~1.1.1" | ||
composer create-project yiisoft/yii2-app-advanced fecadmin 2.0.7 | ||
cd fecadmin | ||
./init | ||
``` | ||
|
||
|
||
|
||
2、安装FecShop | ||
------------ | ||
|
||
执行 | ||
|
||
``` | ||
cd /www/web/develop/fecshop | ||
composer require --prefer-dist fancyecommerce/fecshop | ||
``` | ||
或添加 | ||
|
||
``` | ||
"fancyecommerce/fecshop": "~1.0" | ||
composer install | ||
``` | ||
|
||
执行完上面,就安装完成了。 |