jiangchengbin / weixin
Laravel 5 wrapper for the WeiXin API.
1.0.6
2015-07-22 01:20 UTC
Requires
- php: >=5.5.9
This package is not auto-updated.
Last update: 2024-11-23 19:00:22 UTC
README
================= Laravel 5 wrapper for the WeiXin API.
Installation
Require this package, with Composer, in the root directory of your project.
composer require jiangchengbin/weixin:~1.0
Add the service provider to config/app.php
in the providers
array.
'Jiangchengbin\weixin\WeiXinServiceProvider'
If you want you can use the facade. Add the reference in config/app.php
to your aliases array.
'Weixin'=> 'Jiangchengbin\weixin\Facades\WeiXin',
Configuration
Laravel Debug requires connection configuration. To get started, you'll need to publish all vendor assets:
php artisan vendor:publish