krayzeeuk / parsehubapi
PHP API wrapper class for Parsehub.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/krayzeeuk/parsehubapi
README
PHP_ParsehubAPI
PHP_ParsehubAPI is a PHP class to allow for easy calling of Parsehub API Commands.
Requirements
PHP_ParsehubAPI can be run with PHP 7.2 and later
Installation
PHP_ParsehubAPI can be installed with Composer.
To get the latest stable version of PHP_ParsehubAPI use:
composer require krayzeeuk/parsehubapi
Basic Usage
<?php use KrayZeeUK\API\ParsehubAPI $parsehubProject = new ParsehubAPI( "your API Key" ); $projectData = $parsehubProject->getProject( "Your Project Key" ); var_dump($projectData);