├── .gitignore ├── .idea ├── .name ├── blade.xml ├── misc.xml ├── modules.xml ├── php.xml ├── vcs.xml └── wx_component.iml ├── CHANGELOG.md ├── README.md ├── composer.json ├── example ├── .htaccess ├── bootstrap.php ├── cert │ ├── apiclient_cert.pem │ └── apiclient_key.pem ├── component_app_event.php ├── component_auth_cb.php ├── component_event.php ├── component_js_sdk.php ├── component_oauth.php ├── component_start_auth.php ├── component_wx_pay.php ├── component_wx_pay_notify.php ├── config.php ├── js_sdk_demo │ ├── JsSdkDemo.class.php │ ├── css │ │ └── style.css │ ├── init.php │ ├── js │ │ ├── demo.js │ │ ├── zepto.js │ │ └── zepto.min.js │ ├── js_sdk_decrypt_code.php │ ├── js_sdk_demo.php │ └── js_sdk_wx_pay_notify.php ├── qrcode.php └── wx_login.php └── src ├── 3rd ├── WxpayAPI_php_v3 │ └── lib │ │ ├── WxPay.Api.php │ │ ├── WxPay.Config.php │ │ ├── WxPay.Data.php │ │ ├── WxPay.Exception.php │ │ └── WxPay.Notify.php ├── aes │ ├── demo.php │ ├── errorCode.php │ ├── pkcs7Encoder.php │ ├── sha1.php │ ├── wxBizMsgCrypt.php │ └── xmlparse.php └── wechat │ └── Wechat2.class.php ├── BaseCache.class.php ├── FileCache.class.php ├── WxComponent.class.php ├── WxComponentService.class.php ├── WxLogin.class.php └── WxPay.class.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | wx_component -------------------------------------------------------------------------------- /.idea/blade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/.idea/blade.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/php.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/.idea/php.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/wx_component.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/.idea/wx_component.iml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/composer.json -------------------------------------------------------------------------------- /example/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/.htaccess -------------------------------------------------------------------------------- /example/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/bootstrap.php -------------------------------------------------------------------------------- /example/cert/apiclient_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/cert/apiclient_cert.pem -------------------------------------------------------------------------------- /example/cert/apiclient_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/cert/apiclient_key.pem -------------------------------------------------------------------------------- /example/component_app_event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_app_event.php -------------------------------------------------------------------------------- /example/component_auth_cb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_auth_cb.php -------------------------------------------------------------------------------- /example/component_event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_event.php -------------------------------------------------------------------------------- /example/component_js_sdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_js_sdk.php -------------------------------------------------------------------------------- /example/component_oauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_oauth.php -------------------------------------------------------------------------------- /example/component_start_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_start_auth.php -------------------------------------------------------------------------------- /example/component_wx_pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_wx_pay.php -------------------------------------------------------------------------------- /example/component_wx_pay_notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/component_wx_pay_notify.php -------------------------------------------------------------------------------- /example/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/config.php -------------------------------------------------------------------------------- /example/js_sdk_demo/JsSdkDemo.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/JsSdkDemo.class.php -------------------------------------------------------------------------------- /example/js_sdk_demo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/css/style.css -------------------------------------------------------------------------------- /example/js_sdk_demo/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/init.php -------------------------------------------------------------------------------- /example/js_sdk_demo/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/js/demo.js -------------------------------------------------------------------------------- /example/js_sdk_demo/js/zepto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/js/zepto.js -------------------------------------------------------------------------------- /example/js_sdk_demo/js/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/js/zepto.min.js -------------------------------------------------------------------------------- /example/js_sdk_demo/js_sdk_decrypt_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/js_sdk_decrypt_code.php -------------------------------------------------------------------------------- /example/js_sdk_demo/js_sdk_demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/js_sdk_demo.php -------------------------------------------------------------------------------- /example/js_sdk_demo/js_sdk_wx_pay_notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/js_sdk_demo/js_sdk_wx_pay_notify.php -------------------------------------------------------------------------------- /example/qrcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/qrcode.php -------------------------------------------------------------------------------- /example/wx_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/example/wx_login.php -------------------------------------------------------------------------------- /src/3rd/WxpayAPI_php_v3/lib/WxPay.Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/WxpayAPI_php_v3/lib/WxPay.Api.php -------------------------------------------------------------------------------- /src/3rd/WxpayAPI_php_v3/lib/WxPay.Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/WxpayAPI_php_v3/lib/WxPay.Config.php -------------------------------------------------------------------------------- /src/3rd/WxpayAPI_php_v3/lib/WxPay.Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/WxpayAPI_php_v3/lib/WxPay.Data.php -------------------------------------------------------------------------------- /src/3rd/WxpayAPI_php_v3/lib/WxPay.Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/WxpayAPI_php_v3/lib/WxPay.Exception.php -------------------------------------------------------------------------------- /src/3rd/WxpayAPI_php_v3/lib/WxPay.Notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/WxpayAPI_php_v3/lib/WxPay.Notify.php -------------------------------------------------------------------------------- /src/3rd/aes/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/aes/demo.php -------------------------------------------------------------------------------- /src/3rd/aes/errorCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/aes/errorCode.php -------------------------------------------------------------------------------- /src/3rd/aes/pkcs7Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/aes/pkcs7Encoder.php -------------------------------------------------------------------------------- /src/3rd/aes/sha1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/aes/sha1.php -------------------------------------------------------------------------------- /src/3rd/aes/wxBizMsgCrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/aes/wxBizMsgCrypt.php -------------------------------------------------------------------------------- /src/3rd/aes/xmlparse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/aes/xmlparse.php -------------------------------------------------------------------------------- /src/3rd/wechat/Wechat2.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/3rd/wechat/Wechat2.class.php -------------------------------------------------------------------------------- /src/BaseCache.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/BaseCache.class.php -------------------------------------------------------------------------------- /src/FileCache.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/FileCache.class.php -------------------------------------------------------------------------------- /src/WxComponent.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/WxComponent.class.php -------------------------------------------------------------------------------- /src/WxComponentService.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/WxComponentService.class.php -------------------------------------------------------------------------------- /src/WxLogin.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/WxLogin.class.php -------------------------------------------------------------------------------- /src/WxPay.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvfan2008/wx_component/HEAD/src/WxPay.class.php --------------------------------------------------------------------------------