├── .editorconfig ├── README.md ├── composer.json └── src ├── .gitkeep ├── Channel ├── Channel.php ├── JiSuChannel.php ├── JuHeChannel.php ├── KuaiDi100Channel.php ├── KuaiDiBirdChannel.php └── ShuJuZhiHuiChannel.php ├── Config.php ├── Exceptions ├── ConfigNotFoundException.php ├── ConfigValidateException.php ├── Exception.php ├── HttpException.php ├── InvalidArgumentException.php └── NoQueryAvailableException.php ├── Factory.php ├── Logistics.php ├── SupportLogistics.php └── Traits └── HttpRequest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/.editorconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/composer.json -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Channel/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Channel/Channel.php -------------------------------------------------------------------------------- /src/Channel/JiSuChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Channel/JiSuChannel.php -------------------------------------------------------------------------------- /src/Channel/JuHeChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Channel/JuHeChannel.php -------------------------------------------------------------------------------- /src/Channel/KuaiDi100Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Channel/KuaiDi100Channel.php -------------------------------------------------------------------------------- /src/Channel/KuaiDiBirdChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Channel/KuaiDiBirdChannel.php -------------------------------------------------------------------------------- /src/Channel/ShuJuZhiHuiChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Channel/ShuJuZhiHuiChannel.php -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/Exceptions/ConfigNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Exceptions/ConfigNotFoundException.php -------------------------------------------------------------------------------- /src/Exceptions/ConfigValidateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Exceptions/ConfigValidateException.php -------------------------------------------------------------------------------- /src/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Exceptions/Exception.php -------------------------------------------------------------------------------- /src/Exceptions/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Exceptions/HttpException.php -------------------------------------------------------------------------------- /src/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exceptions/NoQueryAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Exceptions/NoQueryAvailableException.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Logistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Logistics.php -------------------------------------------------------------------------------- /src/SupportLogistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/SupportLogistics.php -------------------------------------------------------------------------------- /src/Traits/HttpRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uuk020/logistics/HEAD/src/Traits/HttpRequest.php --------------------------------------------------------------------------------