coderden/utilities

A comprehensive PHP utilities package with helper functions for numbers, strings, arrays, files, dates, and validation

Maintainers

Package info

github.com/dnsinyukov/utilities

pkg:composer/coderden/utilities

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0 2026-01-27 20:56 UTC

This package is auto-updated.

Last update: 2026-02-27 21:13:53 UTC


README

PHP Version License

A comprehensive PHP utilities package with helper functions for numbers, strings, arrays, files, dates, and validation. Framework-agnostic and production-ready.

Features

Numbers Module

  • Parse human-readable numbers (1.1K, 4K, 554) to integers
  • Format numbers to short notation (1100 → 1.1K)

Installation

composer require coderden/utilities

Quick Start

// Parse numbers
echo NumberHelper::toInt('1.1K');         // 1100
echo NumberHelper::toShort(1100);         // 1.1K

License

This package is open-source software licensed under the MIT license.