febryars33/colorcraft

Convert Minecraft color and format codes to HTML spans with CSS classes.

dev-main 2024-06-26 10:26 UTC

This package is auto-updated.

Last update: 2025-03-29 01:15:10 UTC


README

Bootstrap logo

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

Colors

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();
	}

}