pivotsecurity/pcs-php

Pivot Security PHP API Client Library

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/pivotsecurity/pcs-php

1.0.6 2019-05-16 08:22 UTC

This package is auto-updated.

Last update: 2025-12-17 00:27:08 UTC


README

PHP API interface for Pivot Security

Read full docs: https://github.com/Pivotsecurity/pivotsecurity-php/tree/master/doc

Installation

Prerequisites

  • PHP 5.X, 7.X

Install Package

Using Composer:

composer require pivotsecurity/pcs-php

require('vendor/autoload.php')

use \PivotSecurity\Account;

use \PivotSecurity\Customer;

$ac = new Account(null,'d48f21a6e0c94880b61daa2b9e5a2327');

$response = $ac->info('A13');

echo var_dump($response);

Manual:

git clone https://github.com/Pivotsecurity/pivotsecurity-php.git

cd pivotsecurity-php

require('init.php')

use \PivotSecurity\Account;

use \PivotSecurity\Customer;

$ac = new Account(null,'d48f21a6e0c94880b61daa2b9e5a2327');

$response = $ac->info('A13');

echo var_dump($response);