ekvio-dev / giftery
Giftery API client
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:project
Requires
- php: ^8.1
- ext-curl: *
- ext-mbstring: *
- psr/http-client: ^1.0
- psr/http-factory: ^1.0
Requires (Dev)
- giberti/phpunit-local-server: ^3.0
- guzzlehttp/guzzle: ^7.8
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^9
Suggests
- guzzlehttp/guzzle: PSR 7/17/18 compatible HTTP client
README
About The Project
Another HTTP client for Giftery API with support PSR 7/17/18 compatible HTTP client
Getting Started
Before use API client you need get credentials pair of Client ID and Client Secret from Giftery Administration
Installation
Install from packagist
composer install ekvio-dev/giftery
Usage
Create GifteryApi object with Http client. By default, project supports CURL implementation.
$apiClient = new \Giftery\GifteryApi(new CurlClient(), 12345, 'secret'); $response = $apiClient->getBalance();
or you can use PSR 7/17/18 compatible HTTP client (example: ghuzzle)
$httpFactory = new \GuzzleHttp\Psr7\HttpFactory(); $httpClient = new \GuzzleHttp\Client(); $psrClient = new \Giftery\PsrHttpClient($httpFactory, $httpClient); $apiClient - new \Giftery\GifteryApi($psrClient, 12345, 'secret'); $response = $apiClient->getBalance();
or you can create you Giftery\HttpClient implementation.
API client support methods: getBalance, getProducts, makeOrder, getStatus, getCertificate, getCode, getLinks, getCategories, getAddress, test.