An open API service indexing awesome lists of open source software.

https://github.com/half2me/shoemagick

PHP Library for working with shoes
https://github.com/half2me/shoemagick

Last synced: 9 months ago
JSON representation

PHP Library for working with shoes

Awesome Lists containing this project

README

          

# shoemagick
PHP Library for working with shoes

### Installation
``` php
composer require half2me/shoemagick
```

### Usage:
``` php
// In your php script

use ShoeMagick\Converter\Converter;

// ..

$converter = new Converter;
echo 'EU size of US 9.5 is: ' . $converter->from('us')->to('eu')->convert('9.5', 'Men');
```