浏览代码

Read me update

Abhimanyu Sharma 8 年之前
父节点
当前提交
d046fb247a
共有 1 个文件被更改,包括 9 次插入5 次删除
  1. 9 5
      README.md

+ 9 - 5
README.md

@@ -32,12 +32,16 @@ Library help to convert units.
 
 * Run `composer update` or `composer install `
 
-* Open `app/config/app.php` and add the service provider to your `providers` array.
+* Open `config/app.php` and add the service provider to your `providers` array.
 		
 ```php
-// ...
-'Abhimanyusharma003\Conversion\ConversionServiceProvider',
- // ...
+    Abhimanyu003\Conversion\ConversionServiceProvider::class
+```
+
+* Add Aliases
+
+```php
+    'Conversion'  => Abhimanyu003\Conversion\Facades\Conversion::class
 ```
 
 ## How to use
@@ -51,7 +55,7 @@ Formatting results use
 
 ```php
 Conversion::convert($value,'type')->to('type')
-->format(int decimal,'decimal modifier','thousand modifer');
+->format(int decimal,'decimal place modifier','thousand place modifer');
 ```
 
 ## Example