Created 安装 (markdown)

安正超 2015-02-11 00:06:55 +08:00
parent eca5266532
commit aebd175e31

22
安装.md Normal file

@ -0,0 +1,22 @@
环境要求: PHP >= 5.3.0
1. 使用composer:
```shell
composer require overtrue/wechat
```
2. 手动安装
下载[最新版zip包](https://github.com/overtrue/wechat/archive/master.zip) 或者下载指定版本:https://github.com/overtrue/wechat/releases
然后引入根目录的autoload.php即可
```php
<?php
require "wechat/autoload.php"; // 路径请修改为你具体的实际路径
use Overtrue\Wechat\Wechat;
...
```