coderden / utilities
A comprehensive PHP utilities package with helper functions for numbers, strings, arrays, files, dates, and validation
1.0
2026-01-27 20:56 UTC
Requires
- php: ^8.0
README
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.