badmushroom/mojangapiclient 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

badmushroom/mojangapiclient

最新稳定版本:v0.1.0

Composer 安装命令:

composer require badmushroom/mojangapiclient

包简介

A simple PHP client for the Mojang Public API

README 文档

README

A simple PHP/Laravel client for the Mojang Public API. Currently supports player profile lookups either by their name or UUID (Mojang ID).

Installation

composer require badmushroom/mojangapiclient

Example Usage

use BadMushroom\MojangApiClient\Facades\Mojang;

// Lookup player by name
$profile = Mojang::profile()->name('notch');

// Or lookup player by their ID
$profile = Mojang::profile()->id('069a79f4-44e9-4726-a5be-fca90e38aaf5');

The response will be BadMushroom\MojangApiClient\Shapes\Profile object but can easily be converted to an Array or JSON.

$profile->toArray();
$profile->toJson();

You're also welcome to use the shape along with its getters:

$profile->getId();      // Returns the player's Mojang ID
$profile->getName();    // Returns the player's name
$profile->getSkin();    // Returns a URL to the player's skin
$profile->getCape();    // Returns a URL to the player's cape, if used

If you just want to play around and checkout the data, there's an Artisan command for this very thing:

php artisan app:test-mojang notch
// or
php artisan app:test-mojang 069a79f4-44e9-4726-a5be-fca90e38aaf5

统计信息

  • 总下载量: 3
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-12-16