Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 392 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 392 Bytes

tb-auth-php

A library that helps integrating your PHP webservices with Tela Botanica's SSO

install

composer install telabotanica/tb-auth-php

usage

$config = array(
	"annuaireURL" => "https://www.tela-botanica.org/uri-of-sso-service",
	"admins" => array(
		"[email protected]",
		"[email protected]"
	)
);
$auth = new AuthTB($config);
$userData = $auth->getUser();