Download the PHP package badmushroom/digstatsreader without Composer

On this page you can find all versions of the php package badmushroom/digstatsreader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package digstatsreader

DigStats Reader

Library for reading Minecraft's NBT data.

Example Usage

Technical Notes

NBT (Named Binary Tag)

It is the file format used by Minecraft to store structured game data in a compact, efficient, and hierarchical manner. NBT is designed to handle the vast amounts of data Minecraft needs to track, such as player stats, world metadata, entity data, and block states.

TAG Data Format

Tag Type Name Length/Format Notes
0 TAG_End No data Marks the end of a TAG_Compound.
1 TAG_Byte 1 byte 8-bit signed integer.
2 TAG_Short 2 bytes 16-bit signed integer.
3 TAG_Int 4 bytes 32-bit signed integer.
4 TAG_Long 8 bytes 64-bit signed integer.
5 TAG_Float 4 bytes 32-bit floating-point number.
6 TAG_Double 8 bytes 64-bit floating-point number.
7 TAG_Byte_Array 4 bytes (length) + length bytes Array of bytes.
8 TAG_String 2 bytes (length) + length UTF-8 chars UTF-8 string.
9 TAG_List 1 byte (type) + 4 bytes (length) + data List of unnamed tags of the same type.
10 TAG_Compound Series of named tags + TAG_End Compound structure.
11 TAG_Int_Array 4 bytes (length) + length * 4 bytes Array of 32-bit integers.
12 TAG_Long_Array 4 bytes (length) + length * 8 bytes Array of 64-bit integers.

All versions of digstatsreader with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package badmushroom/digstatsreader contains the following files

Loading the files please wait ....