sfolador/measures-for-laravel

A collection of unit conversions utils for Laravel

0.1.8 2024-03-29 15:25 UTC

README

68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4d65617375726573253230666f722532304c61726176656c2e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d73666f6c61646f722532466d656173757265732d666f722d6c61726176656c267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d456173696c792b636f6e766572742b6265747765656e2b756e6974732b6f662b6d656173757265266d643d312673686f7757617465726d61726b3d3126666f6e7453697a653d313030707826696d616765733d63616c63756c61746f72267769647468733d32303026686569676874733d6175746f

A collection of unit conversions utils for Laravel

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Convert units of measure in Laravel.

Installation

You can install the package via composer:

composer require sfolador/measures-for-laravel

You can publish the config file with:

php artisan vendor:publish --tag="measures-for-laravel-config"

Usage

use \Sfolador\Measures\Measures;
use  \Sfolador\Measures\Unit\Length\Length;
\Sfolador\Measures\Unit\Weight\Weight;

$measure = Measures::length("2.0m");
echo $measures->toCm(); // 200.0 cm

//or you can use the Length class directly

$length = Length::from("2.0m");
echo $length->toCm(); // 200.0 cm

$measure = Measures::weight("2.0Kg");
echo $measures->toG(); // 2000.0 g

//or you can use the Weight class directly

$length = Weight::from("2.0Kg");
echo $length->toG(); // 2000.0 g

It's possible to use also extended fluent methods:

$measure = Length::from("2.0m");
echo $measures->toCentimeters(); // 200 cm

//you can chain the methods: 

echo  Length::from("2.0m")->toCentimeters(); // 200 cm

If you do not know which kind of measure you are dealing with, you can use the Measures class to automatically detect the type of measure:

$measure = Measures::from("2.0m"); // $measure is an instance of Length
echo $measures->toCm(); // 200 cm

$measure = Measures::from("2.0Kg"); // $measure is an instance of Weight
echo $measures->toG(); // 2000 g

Eloquent cast

It's possible to cast a model attribute to a measure:

use \Sfolador\Measures\Unit\Weight\Weight;
use Sfolador\Measures\Cast\Measure;

class Product extends Model
{
    protected $casts = [
        'weight' => Measure::class,
        'length'   => Measure::class,
    ];
}

$product = Product::first();
echo $product->weight->toKg(); // 2 Kg
echo $product->length->toCm(); // 200 cm


$product->weight = Weight::from("3.0Kg");
$product->length = Length::from("1.0m");

$product->save();
echo $product->weight->toKg(); // 3 Kg
echo $product->length->toCm(); // 100 cm

Available units

Length

  • Millimeter
  • Centimeter
  • Meter
  • Kilometer
  • Inch
  • Foot
  • Yard
  • Mile
  • Nautical mile

Weight

  • Milligram
  • Gram
  • Kilogram
  • Ton
  • Ounce
  • Pound
  • Stone
  • Long ton
  • Short ton

Volume

  • Milliliter
  • Liter
  • Cubic meter
  • Cubic inch
  • Cubic foot
  • Gallon
  • Pint
  • Cup

Temperature

  • Celsius
  • Fahrenheit
  • Kelvin

Area

  • Square meter
  • Square kilometer
  • Square centimeter
  • Square millimeter
  • Square inch
  • Square foot
  • Square yard
  • Square mile
  • Acre
  • Hectare

Data

  • Bit
  • Byte
  • Kilobit
  • Kilobyte
  • Megabit
  • Megabyte
  • Gigabit
  • Gigabyte
  • Terabit
  • Terabyte
  • Petabit
  • Petabyte
  • kibibit
  • kibibyte
  • mebibit
  • mebibyte
  • gibibit
  • gibibyte
  • tebibit
  • tebibyte
  • pebibit
  • pebibyte

Speed

  • Meter per second
  • Kilometer per hour
  • Mile per hour
  • Knot
  • Foot per second
  • Mach

Time

  • Nanosecond
  • Microsecond
  • Millisecond
  • Second
  • Minute
  • Hour
  • Day
  • Week
  • Month
  • Year

Pressure

  • Pascal
  • Kilopascal
  • Bar
  • Millibar
  • Atmosphere
  • Torr
  • Pound per square inch
  • Millimeter of mercury

Energy

  • Joule
  • Kilojoule
  • Megajoule
  • Gigajoule
  • Watt hour
  • Kilowatt hour
  • Megawatt hour
  • Gigawatt hour
  • Calorie
  • Kilocalorie
  • Megacalorie
  • Gigacalorie
  • Electronvolt
  • Kiloelectronvolt
  • Megaelectronvolt
  • Gigaelectronvolt

Angle

  • Degree
  • Radian

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.