PHP code example of envern / wechat

1. Go to this page and download the library: Download envern/wechat library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

envern / wechat example snippets

 
wechat
 ├── src                    
 │   ├── Helper.php                             -- 辅助函数库
 │   ├── WeChatOffi.php                         -- 微信公众号
 │   ├── WeChatPay.php                          -- 微信支付
 │   ├── WeChatWork.php                         -- 企业微信
 │   └── WeChatMini.php                         -- 微信小程序
 ├── vendor                
 │   ├── composer
 │   │   ├── autoload_classmap.php
 │   │   ├── autoload_namespaces.php
 │   │   ├── autoload_psr4.php
 │   │   ├── autoload_real.php
 │   │   ├── autoload_static.php
 │   │   └── ClassLoader.php
 │   └── autoload.php
 ├── .gitignore                                 -- 过滤文件
 ├── composer.json                              -- composer 配置文件
 └── README.md                                  -- 自述文件