genderapi / php-client
There is no license information available for the latest version (dev-master) of this package.
GenderAPI PHP Composer Package
dev-master
2018-05-29 14:29 UTC
This package is not auto-updated.
Last update: 2026-04-02 07:10:52 UTC
README
GenderAPI.io PHP Composer package.
Website: https://genderapi.io
API Docs: https://genderapi.io/api-docs
How to Install
composer require genderapi/php-client
<?php use GenderApi\GenderApi; $genderApi = new GenderApi('Your API Key'); $getGender = $genderApi->findGender('britney'); echo $getGender; // OR, Get Result $getResult = $genderApi->result('britney'); print_r($getResult);