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
- Host: GitHub
- URL: https://github.com/half2me/shoemagick
- Owner: half2me
- License: mit
- Created: 2015-12-28T17:04:14.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-12T12:37:56.000Z (over 9 years ago)
- Last Synced: 2024-12-06T21:55:16.504Z (over 1 year ago)
- Language: PHP
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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');
```