├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── README.md ├── composer.json ├── examples ├── config.php ├── demo.php ├── testing.php └── webhook.php ├── phpunit.xml ├── src ├── AfterShipException.php ├── BackwardCompatible.php ├── Couriers.php ├── Encryption.php ├── EstimatedDeliveryDates.php ├── LastCheckPoint.php ├── Notifications.php ├── Request.php ├── Requestable.php ├── TrackingAdditionalFields.php └── Trackings.php └── tests └── AfterShip ├── CouriersTest.php ├── LastCheckPointTest.php ├── NotificationsTest.php ├── RequestTest.php ├── TrackingAdditionalFieldsTest.php └── TrackingsTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterShip/aftership-sdk-php/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterShip/aftership-sdk-php/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterShip/aftership-sdk-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterShip/aftership-sdk-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfterShip/aftership-sdk-php/HEAD/composer.json -------------------------------------------------------------------------------- /examples/config.php: -------------------------------------------------------------------------------- 1 |