ely/mojang-api

Library for access to Mojang API.

0.2.1 2020-06-10 14:00 UTC

This package is auto-updated.

Last update: 2024-04-21 07:22:24 UTC


README

This package provides easy access to the Minecraft related API of Mojang. The library is built on the top of the Guzzle HTTP client, has custom errors handler and automatic retry in case of problems with Mojang.

Latest Version on Packagist Total Downloads Software License Build Status Scrutinizer Code Quality Code Coverage

Installation

To install, use composer:

composer require ely/mojang-api

Usage

To start using this library just create a new Api class instance and call the necessary endpoint:

<?php
$api = new \Ely\Mojang\Api();
$response = $api->usernameToUUID('erickskrauch');
echo $response->getId();

Testing

$ ./vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details.

Credits

This package was designed and developed within the Ely.by project team. We also thank all the contributors for their help.

License

The MIT License (MIT). Please see License File for more information.