devhun / wideshot-api-client
PHP API client for wideshot.co.kr (SEJONG Telecom Service)
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/devhun/wideshot-api-client
Requires
- php: >=7.1
- ext-json: *
- guzzlehttp/guzzle: ^6.4
Requires (Dev)
- phpunit/phpunit: >=7.0
This package is auto-updated.
Last update: 2025-10-15 04:51:35 UTC
README
Install using composer
Open a shell, cd to your poject and type:
composer require devhun/wideshot-api-client
or edit composer.json and add:
{
"require": {
"devhun/wideshot-api-client": "~1.0"
}
}
If you want to use the GuzzleHttpAdapter, you will need to add Guzzle 6.
Usage examples
Guzzle
require 'vendor/autoload.php'; use Wideshot\WideshotClient; use Wideshot\Adapter\GuzzleHttpAdapter; // Using Guzzle 6... $client = new WideshotClient( new GuzzleHttpAdapter('your-api-key') ); $result = $client->result()->all(); var_export($result);
CURL
require 'vendor/autoload.php'; use Wideshot\WideshotClient; use Wideshot\Adapter\CurlAdapter; // Using regular CURL, courtesy of 'malc0mn' $client = new WideshotClient( new CurlAdapter('your-api-key') ); $result = $client->result()->all(); var_export($result);