rollylni/vklib

library for simplified work with VK-API

0.7.1 2020-12-08 23:34 UTC

This package is auto-updated.

Last update: 2024-04-29 01:24:15 UTC


README

Version Downloads License PHPVersion

VkLib is a library for simplified work with the VK API in the OO approach.

Installation

composer require rollylni/vklib

Capabilities

Example Usage

require "vendor/autoload.php";

$client = new \VkLib\VkClient("ClientName", 5.126, "en");
$client->setToken("AccessToken");

$api = new \VkLib\VkApi($client);
var_dump($api->users->get()->json());
$client->remove();