skinpay / sdk
Skinpay sdk.
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/skinpay/sdk
Requires
- php: >=8.0
- ext-json: *
- ext-openssl: *
- guzzlehttp/guzzle: >=6.5.5
This package is auto-updated.
Last update: 2025-10-26 19:57:35 UTC
README
Installation
The preferred way to install this extension is through composer.
Either run
composer require skinpay/sdk
Or add
"skinpay/sdk": "*"
Usage
<?php require_once __DIR__ . '/../vendor/autoload.php'; $publicKey = ''; $privateKey = ''; $steamid64 = 76561234234234234; $skinpay = new \Skinpay\API($publicKey, $privateKey); $url = $skinpay->makeDepositUrl(10, $steamid64);