genderapi/php-client

There is no license information available for the latest version (dev-master) of this package.

GenderAPI PHP Composer Package

Installs: 11 198

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/genderapi/php-client

dev-master 2018-05-29 14:29 UTC

This package is not auto-updated.

Last update: 2025-10-30 04:56:38 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);