krayzeeuk / parsehubapi
PHP API wrapper class for Parsehub.
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);