skinpay/sdk

Skinpay sdk.

dev-main 2023-07-26 15:22 UTC

This package is auto-updated.

Last update: 2024-10-26 18:01:23 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);