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

1.0.1 2023-06-28 11:43 UTC

This package is auto-updated.

Last update: 2025-09-28 16:42:55 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);