mrun/astrobrainsdk

SDK for using the AstroBrain

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

pkg:composer/mrun/astrobrainsdk

2.0.1 2020-07-18 10:39 UTC

This package is auto-updated.

Last update: 2025-12-18 22:46:00 UTC


README

How do I use it

$brain = new AstroBrainSDK($clientId, $apiKey);
$brain->setDateOfBirth("08.05.1989");
$brain->setTimeOfBirth("11:27:19");
$brain->setPlaceOfBirth("Buenos Aires, Argentina");
$birthChartUrl = json_decode($brain->send());
var_dump($birthChartUrl->url);

How to use the transits SDK

$brain = new AstroBrainSDK($clientId, $apiKey);
$brain->setDateOfBirth("08.05.1989");
$brain->setTimeOfBirth("11:27:19");
$brain->setPlaceOfBirth("Buenos Aires, Argentina");
$brain->setTransitDateOfBirth("18.07.2020");
$brain->setTransitTimeOfBirth("13:02:22");
$brain->setTransitPlaceOfBirth("Sofia, Bulgaria");
$birthChartUrl = json_decode($brain->send());
var_dump($birthChartUrl->url);