Composer package that provides easy access to Minecraft related Mojang APIs
Go to file
2019-04-07 01:33:22 +02:00
src Remove static create method and clear the constructor. Add CHANGELOG.md 2019-04-07 01:29:41 +02:00
tests Remove static create method and clear the constructor. Add CHANGELOG.md 2019-04-07 01:29:41 +02:00
.gitignore Init 2019-04-01 16:04:08 +02:00
.php_cs.dist Init 2019-04-01 16:04:08 +02:00
.travis.yml Init 2019-04-01 16:04:08 +02:00
CHANGELOG.md Remove static create method and clear the constructor. Add CHANGELOG.md 2019-04-07 01:29:41 +02:00
composer.json Add packagist description 2019-04-07 01:33:22 +02:00
composer.lock Downgrade PHPUnit version to be compatible with PHP 7.1 2019-04-01 19:12:39 +02:00
LICENSE.md Init 2019-04-01 16:04:08 +02:00
phpunit.xml Fix phpunit schema path 2019-04-07 01:09:08 +02:00
README.md Remove static create method and clear the constructor. Add CHANGELOG.md 2019-04-07 01:29:41 +02:00

Mojang API

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.

Please note that this is not a complete implementation of all available APIs. If you don't find the method you need, open Issue or submit a PR with the implementation.

Latest Version on Packagist Total Downloads Software License Build Status

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.