daika7ana/ecolet-php-sdk
Composer 安装命令:
composer require daika7ana/ecolet-php-sdk
包简介
Typed PHP SDK for the Ecolet Courier API.
README 文档
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 —
count,first,last,get,keys,values,has,filter,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 code with validation metadataorders()->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
daika7ana/ecolet-php-sdk 适用场景与选型建议
daika7ana/ecolet-php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 30 次下载、GitHub Stars 达 2, 最近一次更新时间为 2026 年 04 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「sdk」 「shipping」 「courier」 「psr-18」 「ecolet」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 daika7ana/ecolet-php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 daika7ana/ecolet-php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 daika7ana/ecolet-php-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP SDK for the Parcel Monkey UK API
A PSR-7 compatible library for making CRUD API endpoints
PHP wrapper for DPD Germany SOAP API
Metamel Addresses is a polymorphic Laravel package, for address book management. You can add addresses to any eloquent model with ease.
A PHP (and Laravel) package to interface with the Snipcart api.
Add a custom message to 'select shipping' step on checkout, depending on the shipping method selected. With optional confirmation checkbox
统计信息
- 总下载量: 30
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 34
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2026-04-09