krayzeeuk/parsehubapi

PHP API wrapper class for Parsehub.

1.0.1 2023-06-28 11:43 UTC

This package is auto-updated.

Last update: 2025-03-28 15:41:56 UTC


README

Total Downloads Latest Stable Version

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);