daika7ana / ecolet-php-sdk
Typed PHP SDK for the Ecolet Courier API.
Requires
- php: >=8.3
- guzzlehttp/guzzle: ^7.0
- psr/http-client: ^1.0
- psr/http-factory: ^1.0
- psr/http-message: ^1.0 || ^2.0
- symfony/http-foundation: ^5.0 || ^6.0 || ^7.0
Requires (Dev)
- laravel/pint: ^1.29
- phpstan/phpstan: ^2.1
- phpunit/phpunit: ^12.0
This package is auto-updated.
Last update: 2026-04-13 00:29:14 UTC
README
A modern, type-safe PHP SDK for the Ecolet Courier API
🚀 Framework-agnostic, OAuth-powered, fully typed with DTOs, and production-ready.
Table of Contents
- Features
- Requirements
- Installation
- Quick Start
- Configuration
- Authentication
- Supported Resources
- Framework Support
- Testing
- Documentation
Features
Core Strengths
- ✅ OAuth 2.0 Password Grant — Industry-standard authentication
- ✅ Automatic Token Refresh — No manual token management needed
- ✅ Token Inspection & Restore — Read the current token or inject a cached one
- ✅ PSR-18 HTTP Client — Pluggable, with Guzzle adapter by default
- ✅ Explicit Environment Selection — Production by default, staging via
ClientConfigwhen needed - ✅ Fully Typed DTOs — Type-safe request/response handling
- ✅ Static Analysis with PHPStan — Strict type checks for the
src/codebase - ✅ Iterable Collections —
first,last,get,values,map,mapWithKeys,pluck - ✅ Waybill Helpers — Filename, contents, and download headers on
WaybillDocument - ✅ Symfony/Laravel Bridge — Optional
HttpFoundationBridgefor seamless integration - ✅ Comprehensive Tests — Unit and smoke test suites included
Perfect For
- 🎯 Laravel applications or any PHP framework
- 🎯 Microservices and standalone PHP projects
- 🎯 Type-safe courier management workflows
- 🎯 Production deployments with full test coverage
Requirements
- PHP 8.3+ with
jsonandcurlextensions - PSR-7 / PSR-17 / PSR-18 compatible environment
Installation
Via Composer
composer require daika7ana/ecolet-php-sdk
Quick Start
Working with the Ecolet API is straightforward:
use Daika7ana\Ecolet\Client; $client = Client::create(); $client->authenticate( username: 'user@example.com', password: 'your-password', clientId: 'your-client-id', clientSecret: 'your-client-secret', scope: '' ); $user = $client->users()->getMe(); echo $user->email;
That's it! You've got a fully authenticated client ready to fetch courier data.
Configuration
Base URL & Environment
By default, the client runs against production. To enable staging globally:
use Daika7ana\Ecolet\Config\ClientConfig; ClientConfig::setTestMode(true); // Enable staging
Explicit Base URL
For explicit control without global state:
use Daika7ana\Ecolet\Client; use Daika7ana\Ecolet\Config\ClientConfig; // Staging $config = new ClientConfig(baseUrl: ClientConfig::BASE_URL_STAGING); $client = Client::create(config: $config); // Or production (the default) $config = new ClientConfig(baseUrl: ClientConfig::BASE_URL_PRODUCTION); $client = Client::create(config: $config);
Authentication
OAuth 2.0 Password Grant
The package uses industry-standard OAuth 2.0 password grant flow. You'll need:
- Ecolet account email
- Ecolet account password
- OAuth
client_id - OAuth
client_secret
Automatic Token Refresh
Tokens refresh automatically when expired. Or refresh manually:
$client->refreshToken();
Access Current Token
$token = $client->getToken(); $accessToken = $token?->accessToken;
Token Restoration
Already have a cached token? Restore it directly:
use Daika7ana\Ecolet\Auth\Token; $token = Token::fromArray($cachedTokenData); $client->setToken($token);
Supported Resources
v1 Resources (General API)
users()->getMe()— Get authenticated user infoservices()->getServices()— List available serviceslocations()->getCountries()— Get countrieslocations()->getCounties()— Get counties for countrylocations()->searchLocalities()— Search localitieslocations()->searchStreets()— Search streetslocations()->searchStreetPostalCodes()— Get postal codeslocations()->searchStreetsByPostalCode()— Search streets by postal codeorders()->getOrder()— Retrieve order detailsorders()->deleteOrder()— Cancel an orderorders()->downloadWaybill()— Get waybill documentorders()->getStatusesForManyOrders()— Batch status checkordersToSend()->getOrderToSend()— Get order ready to sendmapPoints()->getMapPoints()— Get pickup points
v2 Resources (Add Parcel Operations)
addParcel()->reloadForm()— Reload form with defaultsaddParcel()->sendOrder()— Submit and send orderaddParcel()->saveOrderToSend()— Save order for later
API Versioning
- General resources and authentication use
/api/v1 - Add Parcel operations use
/api/v2exclusively - v1 Add Parcel endpoints are intentionally excluded
- Authorization-code OAuth flow is out of scope
Framework Support
Zero Framework Dependencies
This package works equally well everywhere:
- 🌐 Laravel applications
- 🌐 Symfony projects
- 🌐 Standalone PHP applications
- 🌐 Microservices
- 🌐 Any PHP 8.3+ environment
Optional: HttpFoundation Bridge
Using Laravel or Symfony? Our optional HttpFoundationBridge provides seamless integration without breaking the PSR-based core API.
Custom HTTP Client
Need a custom HTTP client? Pass any PSR-18 implementation:
use Daika7ana\Ecolet\Client; use Daika7ana\Ecolet\Http\HttpClientInterface; /** @var HttpClientInterface $customClient */ $client = Client::create(httpClient: $customClient);
Custom Token Storage
Implement the TokenStoreInterface to persist tokens:
use Daika7ana\Ecolet\Client; use Daika7ana\Ecolet\Auth\TokenStoreInterface; /** @var TokenStoreInterface $tokenStore */ $client = Client::create(tokenStore: $tokenStore);
Testing
Run Static Analysis
composer stan
# or
vendor/bin/phpstan --no-progress
PHPStan is configured via phpstan.neon and analyzes the src/ directory at a strict level.
Run Full Test Suite
composer test # or php vendor/bin/phpunit -c phpunit.xml
Pass PHPUnit arguments through Composer with --:
composer test -- --filter=AuthSmokeTest composer test -- tests/Unit/Resources/LocationsResourceTest.php
Run Specific Tests
# Run only auth smoke test php vendor/bin/phpunit --filter=AuthSmokeTest -c phpunit.xml # Run the combined add-parcel workflow + waybill smoke test php vendor/bin/phpunit --filter=AddParcelWorkflowSmokeTest -c phpunit.xml # Run negative staging smoke tests php vendor/bin/phpunit --filter=AddParcelFailureSmokeTest -c phpunit.xml # Run all smoke tests php vendor/bin/phpunit --group=smoke -c phpunit.xml
Run The Same Checks As CI
composer ci
Available Composer scripts:
composer pintruns Pint in test modecomposer stanruns PHPStan againstsrc/composer test:unitruns the unit test suitecomposer ciruns the same local checks as CI
Smoke tests hit the live staging API and require valid credentials in phpunit.xml.
Test Environment Variables
Configure these in phpunit.xml to enable smoke tests:
| Variable | Purpose |
|---|---|
ECOLET_TEST_USERNAME |
Test account email |
ECOLET_TEST_PASSWORD |
Test account password |
ECOLET_TEST_CLIENT_ID |
OAuth client ID |
ECOLET_TEST_CLIENT_SECRET |
OAuth client secret |
Documentation
Complete guides and references:
| Guide | Purpose |
|---|---|
| 📖 Quickstart | Jump right in with working examples |
| 🔧 Installation | Detailed setup instructions |
| ⚙️ Configuration | Environment setup and options |
| 🔐 Authentication | OAuth flow and token management |
| 🔗 Resources | Complete resource reference |
| 📦 DTOs | Data Transfer Objects and enums |
| ✅ Testing | Unit and smoke test coverage |
| ❌ Errors | Exception handling guide |
| 📚 All Docs | Documentation index |
Made with ❤️
Questions? Check the docs or open an issue