bannerstop / gls-ade
Fork of Web-IT GLS-ADE SDK
v3.0.0
2025-03-24 22:49 UTC
Requires
- php: ^8.1
- doctrine/collections: ^1.2|^2.0
- jms/serializer: ^3.18
- webit/soap-api: ^3.0.0
This package is auto-updated.
Last update: 2025-03-24 22:52:08 UTC
README
Fork of webit/gls-ade with updated dependencies. So far we have only updated the dependencies and fixed the code to work with the new versions. There is still some work to be done, like restoring the tests and implementing strict typing.
The repository provides a client to communicate with GLS SOAP APIs.
Installation
Add the bannerstop/gls-ade into composer.json
{ "require": { "bannerstop/gls-ade": "^3.0.0" } }
Usage
use \Webit\GlsAde\Model\AdeAccount; use \Webit\GlsAde\Api\Factory\ApiFactory; $adeAccount = new AdeAccount('your-login', 'your-password', 'is-test-env' ? true : false); $apiFactory = ApiFactory::create(); /** @var \Webit\GlsAde\Api\AuthApi $authApi */ $authApi = $apiFactory->createAuthApi(); /** @var \Webit\GlsAde\Api\ConsignmentPrepareApi $consignemntPrepareApi */ $consignemntPrepareApi = $apiFactory->createConsignmentPrepareApi($adeAccount); /** @var \Webit\GlsAde\Api\MpkApi $mpkApi */ $mpkApi = $apiFactory->createMpkApi($adeAccount); /** @var \Webit\GlsAde\Api\PickupApi $pickupApi */ $pickupApi = $apiFactory->createPickupApi($adeAccount); /** @var \Webit\GlsAde\Api\PostalCodeApi $postalCodeApi */ $postalCodeApi = $apiFactory->createPostalCodeApi($adeAccount); /** @var \Webit\GlsAde\Api\ProfileApi $profileApi */ $profileApi = $apiFactory->createProfileApi($adeAccount); /** @var \Webit\GlsAde\Api\SenderAddressApi $senderAddressApi */ $senderAddressApi = $apiFactory->createSenderAddressApi($adeAccount); /** @var \Webit\GlsAde\Api\ServiceApi $serviceApi */ $serviceApi = $apiFactory->createServiceApi($adeAccount);
Running examples
For real life example see examples directory.
cd examples
cp config.php.dist config.php
Set your account details in config.php then run examples
sh php auth.php php mpk.php php post-codes.php php profile.php php sender.php php services.php
TODO
- Implement strict typing
- Restore tests