jeffmilanes / lazop-sdk-php
Lazada Open API PHP SDK
Installs: 500
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/jeffmilanes/lazop-sdk-php
This package is auto-updated.
Last update: 2025-12-28 08:33:13 UTC
README
Usage of this library is also available at Lazada Open API
Requirements
PHP SDK requires PHP 5 or newer version
Composer Installation
Run the following command:
composer require jeffmilanes/lazop-sdk-php
Usage
Sample usage:
use jeffmilanes\PHPLazadaSDK\LazopClient; use jeffmilanes\PHPLazadaSDK\LazopRequest; ... $c = new LazopClient('https://api.lazada.test/rest', '${appKey}', '${appSecret}'); $request = new LazopRequest('/mock/api/get'); $request->addApiParam('api_id',1); $request->addHttpHeaderParam('cx','test'); var_dump($c->execute($request)); ...