febryars33 / colorcraft
Convert Minecraft color and format codes to HTML spans with CSS classes.
dev-main
2024-06-26 10:26 UTC
Requires
- php: >=8.1
Requires (Dev)
- phpunit/phpunit: ^10
This package is auto-updated.
Last update: 2025-03-29 01:15:10 UTC
README
Minecraft Color Parser for PHP
Easy use, Simple and Lightweight, Support using §, and Support Special Character
Explore on Spigot Page »
Report bug
ColorCraft
ColorCraft is PHP Library for parse your Minecraft text to Color, Format, and Magic text. For example if you have profile page for players and you want to showing the nickname, clans, ranks, etc. You can use this library for parse minecraft codes from your server.
Example
Quick start
Several quick start options are available:
composer require febryars33/colorcraft
<?php namespace App\Http\Controllers; ... use Febryars33\ColorCraft\ColorCraft; ... class ExampleController extends Controller { public function home() { return ColorCraft::convert('§6Hello §eWorld')->toHtml(); } }