|  | ||
|---|---|---|
| .. | ||
| src | ||
| tests | ||
| .gitignore | ||
| .php_cs | ||
| .travis.yml | ||
| LICENSE | ||
| README.md | ||
| composer.json | ||
| phpunit.xml | ||
		
			
				
				README.md
			
		
		
			
			
		
	
	
EasyWeChat Composer Plugin
Usage
Set the type to be easywechat-extension in your package composer.json file:
{
    "name": "your/package",
    "type": "easywechat-extension"
}
Specify server observer classes in the extra section:
{
    "name": "your/package",
    "type": "easywechat-extension",
    "extra": {
        "observers": [
            "Acme\\Observers\\Handler"
        ]
    }
}
Examples
Server Delegation
目前仅支持 Laravel
- 
在 config/app.php中添加EasyWeChatComposer\Laravel\ServiceProvider::class
- 
在本地项目的 .env文件中添加如下配置:
EASYWECHAT_DELEGATION=true # false 则不启用
EASYWECHAT_DELEGATION_HOST=https://example.com # 线上域名
