├── .editorconfig ├── .gitignore ├── .php_cs ├── README.md ├── composer.json ├── src ├── Config.php ├── CountryCodes.php ├── Express.php ├── Factory.php ├── contracts │ ├── Goods.php │ ├── Order.php │ ├── OrderFee.php │ ├── OrderResult.php │ ├── Package.php │ ├── PlatformInterface.php │ ├── Recipient.php │ ├── Shipper.php │ └── Transport.php ├── exceptions │ └── ExpressException.php └── platforms │ ├── CourierbutlerPlatform.php │ ├── EccangPlatform.php │ ├── EtowerPlatform.php │ ├── FeitePlatform.php │ ├── FopPlatform.php │ ├── HualeiPlatform.php │ ├── HuliantongPlatform.php │ ├── JiyouPlatform.php │ ├── K5Platform.php │ ├── Platform.php │ ├── PlatformsName.php │ ├── Rtb65Platform.php │ ├── SantaiPlatform.php │ ├── SfexpressPlatform.php │ ├── WanbPlatform.php │ ├── YuntuPlatform.php │ └── Yw56Platform.php └── tests ├── PHPUnit_Framework_TestCase.php └── platforms ├── EccangPlatformTest.php ├── EtowerPlatformTest.php ├── HuaLeiPlatformTest.php ├── HuliantongPlatformTest.php ├── JiyouPlatformTest.php ├── K5PlatformTest.php ├── SfexpressPlatformTest.php ├── WanbPlatformTest.php └── Yw56PlatformTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/.php_cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/composer.json -------------------------------------------------------------------------------- /src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/Config.php -------------------------------------------------------------------------------- /src/CountryCodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/CountryCodes.php -------------------------------------------------------------------------------- /src/Express.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/Express.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/contracts/Goods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/Goods.php -------------------------------------------------------------------------------- /src/contracts/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/Order.php -------------------------------------------------------------------------------- /src/contracts/OrderFee.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/OrderFee.php -------------------------------------------------------------------------------- /src/contracts/OrderResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/OrderResult.php -------------------------------------------------------------------------------- /src/contracts/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/Package.php -------------------------------------------------------------------------------- /src/contracts/PlatformInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/PlatformInterface.php -------------------------------------------------------------------------------- /src/contracts/Recipient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/Recipient.php -------------------------------------------------------------------------------- /src/contracts/Shipper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/Shipper.php -------------------------------------------------------------------------------- /src/contracts/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/contracts/Transport.php -------------------------------------------------------------------------------- /src/exceptions/ExpressException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/exceptions/ExpressException.php -------------------------------------------------------------------------------- /src/platforms/CourierbutlerPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/CourierbutlerPlatform.php -------------------------------------------------------------------------------- /src/platforms/EccangPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/EccangPlatform.php -------------------------------------------------------------------------------- /src/platforms/EtowerPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/EtowerPlatform.php -------------------------------------------------------------------------------- /src/platforms/FeitePlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/FeitePlatform.php -------------------------------------------------------------------------------- /src/platforms/FopPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/FopPlatform.php -------------------------------------------------------------------------------- /src/platforms/HualeiPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/HualeiPlatform.php -------------------------------------------------------------------------------- /src/platforms/HuliantongPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/HuliantongPlatform.php -------------------------------------------------------------------------------- /src/platforms/JiyouPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/JiyouPlatform.php -------------------------------------------------------------------------------- /src/platforms/K5Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/K5Platform.php -------------------------------------------------------------------------------- /src/platforms/Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/Platform.php -------------------------------------------------------------------------------- /src/platforms/PlatformsName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/PlatformsName.php -------------------------------------------------------------------------------- /src/platforms/Rtb65Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/Rtb65Platform.php -------------------------------------------------------------------------------- /src/platforms/SantaiPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/SantaiPlatform.php -------------------------------------------------------------------------------- /src/platforms/SfexpressPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/SfexpressPlatform.php -------------------------------------------------------------------------------- /src/platforms/WanbPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/WanbPlatform.php -------------------------------------------------------------------------------- /src/platforms/YuntuPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/YuntuPlatform.php -------------------------------------------------------------------------------- /src/platforms/Yw56Platform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/src/platforms/Yw56Platform.php -------------------------------------------------------------------------------- /tests/PHPUnit_Framework_TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/PHPUnit_Framework_TestCase.php -------------------------------------------------------------------------------- /tests/platforms/EccangPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/EccangPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/EtowerPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/EtowerPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/HuaLeiPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/HuaLeiPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/HuliantongPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/HuliantongPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/JiyouPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/JiyouPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/K5PlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/K5PlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/SfexpressPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/SfexpressPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/WanbPlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/WanbPlatformTest.php -------------------------------------------------------------------------------- /tests/platforms/Yw56PlatformTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiier/yii2-cross-border-express/HEAD/tests/platforms/Yw56PlatformTest.php --------------------------------------------------------------------------------