Search by

growth-institute / circle.so-php

thewebchimp

PHP library for Circle.so

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Package info

github.com/growth-institute/circle.so-php

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

Statistics

Installs: 889

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

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

This package is auto-updated.

Last update: 2026-04-19 08:12:52 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.