karimtarekdev / weightify
Weightify: Efficient PHP Weight Conversion Tool offers accurate conversions for units like Metric tons, Kilograms, Grams, Milligrams, Micrograms, Stones, Pounds, and Ounces, catering to diverse needs with a user-friendly interface.
Fund package maintenance!
KarimTarekDev
Requires
- php: ^8.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.21.1
- phpunit/phpunit: ^10.3.2
- spatie/ray: ^1.28
This package is auto-updated.
Last update: 2025-06-29 02:01:23 UTC
README
"Weightify: The Ultimate Weight Conversion Tool" is a streamlined and efficient PHP package for accurate weight conversions. It supports a wide array of units such as Metric tons, Kilograms, Grams, Milligrams, Micrograms, Stones, Pounds, and Ounces, making it an ideal solution for various conversion needs in a user-friendly format.
Features
- Broad Range of Units: Supports conversions between Metric tons, Kilograms, Grams, Milligrams, Micrograms, Stones, Pounds, and Ounces.
- High Precision: Accurate conversions even for very large (metric tons) or very small (micrograms) units.
- User-Friendly: Simple and straightforward interface for easy integration into any PHP project.
- Exception Handling: Robust error management for unsupported units.
Installation
You can install the package via composer:
composer require karimtarekdev/weightify
Supported Units
- Metric Tons (metric_ton)
- Kilograms (kg)
- Grams (gram)
- Milligrams (mg)
- Micrograms (microgram)
- Stones (stone)
- Pounds (pound)
- Ounces (ounce)
Basic Conversion
To perform a conversion, use the convert method with the desired units. Here are some examples showcasing the use of different units:
$converter = new KarimTarekDev\Weightify\Weightify(); // Convert 2 Metric tons to Pounds echo $converter->convert(2, 'metric_ton', 'pound') . " lbs\n"; // Convert 1500 Milligrams to Grams echo $converter->convert(1500, 'mg', 'gram') . " grams\n"; // Convert 3 Stones to Kilograms echo $converter->convert(3, 'stone', 'kg') . " kg\n"; // Convert 200 Ounces to Micrograms echo $converter->convert(200, 'ounce', 'microgram') . " micrograms\n";
By providing the value, source unit, and target unit, you can perform a wide range of conversions with "Weightify."
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.