growth-institute/circle.so-php

PHP library for Circle.so

Installs: 821

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 1

Open Issues: 1

pkg:composer/growth-institute/circle.so-php

dev-master 2022-01-18 22:57 UTC

This package is auto-updated.

Last update: 2025-10-19 06:57:28 UTC


README

Circle.so for PHP

Circle.so for PHP

What is this?

This library is a PHP tool to integrate Circle API into your projects. Circle.so documentation can be found here.

How to use it

Simply require the package with composer add growth-institute/circle.so-php.

Don't forget to include your vendor autoload.php. Then you will be able to instantiate a Circle object. The constructor receives the Circle API Key as its only parameter. Example:

<?php

	include('vendor/autoload.php');
	use CirclePHP\Circle;

	$circle = new Circle('your token here');

	$communities = $addevent->communities();

	echo "<pre>";
	print_r($communities);
	echo "</pre>";
?>

Take a look to the src files to check all the functions available.