├── .gitignore ├── README.md ├── composer.json ├── demo └── swoole.php └── src ├── Api ├── Activity.php ├── Apith.php ├── Coupon.php ├── Gift.php ├── Good.php ├── Jingyong.php ├── Link.php └── Promotion.php ├── JdFatory.php └── Tools ├── Helpers.php └── JdGateWay.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /demo/swoole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/demo/swoole.php -------------------------------------------------------------------------------- /src/Api/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Activity.php -------------------------------------------------------------------------------- /src/Api/Apith.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Apith.php -------------------------------------------------------------------------------- /src/Api/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Coupon.php -------------------------------------------------------------------------------- /src/Api/Gift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Gift.php -------------------------------------------------------------------------------- /src/Api/Good.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Good.php -------------------------------------------------------------------------------- /src/Api/Jingyong.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Jingyong.php -------------------------------------------------------------------------------- /src/Api/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Link.php -------------------------------------------------------------------------------- /src/Api/Promotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Api/Promotion.php -------------------------------------------------------------------------------- /src/JdFatory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/JdFatory.php -------------------------------------------------------------------------------- /src/Tools/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Tools/Helpers.php -------------------------------------------------------------------------------- /src/Tools/JdGateWay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumufeng/jd-union-sdk/HEAD/src/Tools/JdGateWay.php --------------------------------------------------------------------------------