Skip to content

Commit 95aa5b3

Browse files
authored
Merge pull request #2 from codepane/dev
Docs: update readme.md
2 parents 139be0f + ff1bbb4 commit 95aa5b3

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Laravel Image Handler
33

4-
Handle image in multiple different size with optimization.
4+
Optimize and store images in multiple sizes easily.
55

66

77
### Installation steps
@@ -12,25 +12,25 @@ php artisan vendor:publish --provider="codepane\LaravelImageHandler\ImageHandler
1212

1313
### Configuration
1414

15-
* After installation done once you can see imagehandler.php under the config dirctory.
16-
* You can udpate dimensions, format and quality as per your need from configuration file.
17-
* You can also add new dimension.
15+
* After installation is done once you can see imagehandler.php under the config directory.
16+
* You can update dimensions, format, and quality as per your need from a configuration file.
17+
* You can also add a new dimension.
1818

1919

2020

2121
## Usage
22-
Lets deep dive into this package for how to use it
22+
Let's deep dive into this package for how to use it
2323

2424
### Store Image
2525
```
2626
use ImageHandler;
2727
2828
public function store()
2929
{
30-
// its take default file name as it is
30+
// its takes the default file name as it is
3131
ImageHandler::store($request->file);
3232
33-
// in 2nd argument you can pass your custom file name with or without path
33+
// in 2nd argument you can pass your custom file name with or without the path
3434
ImageHandler::store($request->file, 'file_name_with_or_without_path');
3535
}
3636
```
@@ -41,10 +41,10 @@ use ImageHandler;
4141
4242
public function get()
4343
{
44-
// this will return original image
44+
// this will return the original image
4545
ImageHandler::get('original_file_name');
4646
47-
// pass dimension as second argument for get specific dimension of file
47+
// pass dimension as the second argument to get a specific dimension of the file
4848
ImageHandler::get('original_file_name', 'sm');
4949
}
5050
```
@@ -64,5 +64,5 @@ public function delete()
6464

6565
Contributions are always welcome!
6666

67-
- Make pull request if you have to contribute for this lovely library!
67+
- Make a pull request if you have to contribute to this lovely library!
6868
- We will review and pull your request.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codepane/laravel-image-handler",
3-
"description": "Handle image in multiple different size with optimization.",
3+
"description": "Optimize and store images in multiple sizes easily.",
44
"type": "library",
55
"require": {
66
"intervention/image": "^2.7"

0 commit comments

Comments
 (0)