https://github.com/navarr/minecraftprofile
Minecraft Profile API in PHP
https://github.com/navarr/minecraftprofile
Last synced: 3 months ago
JSON representation
Minecraft Profile API in PHP
- Host: GitHub
- URL: https://github.com/navarr/minecraftprofile
- Owner: navarr
- License: mit
- Created: 2014-03-02T21:27:08.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T16:57:43.000Z (over 5 years ago)
- Last Synced: 2025-03-26T22:11:45.674Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 156 KB
- Stars: 24
- Watchers: 5
- Forks: 18
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Minecraft Profile API in PHP
## Usage
Usage is super simple and well-documented. Here's a short example:
```php
use Navarr\Minecraft\Profile;$profile = Profile::fromUuid('bd95beec116b4d37826c373049d3538b');
$username = $profile->name;
$cape = $profile->capeUrl;
$skin = $profile->skinUrl;
```## Installation
MinecraftProfile uses Composer. For more information about composer, read the [Getting Started](https://getcomposer.org/doc/00-intro.md) document.
To install with composer:
> `composer install navarr/minecraft-profile`