Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/navarr/minecraftprofile
Minecraft Profile API in PHP
https://github.com/navarr/minecraftprofile
Last synced: about 6 hours 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 10 years ago)
- Default Branch: master
- Last Pushed: 2020-03-24T16:57:43.000Z (over 4 years ago)
- Last Synced: 2024-08-09T20:10:44.793Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 156 KB
- Stars: 24
- Watchers: 6
- Forks: 20
- 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`