Skip to content

Commit ae31374

Browse files
committed
Increased app version and updated readme
1 parent fe9c961 commit ae31374

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
PDF Merge library for PHP.
44

5-
Install in composer:
5+
Install with composer:
6+
7+
`composer require jurosh/pdf-merge`
8+
9+
Should add dependency:
610

711
```json
8-
"jurosh/pdf-merge": "dev-master"
12+
"jurosh/pdf-merge": "^2.0"
913
```
1014

1115
## Highlights
@@ -17,9 +21,9 @@ Tested in Laravel4 & Laravel5 framework (but still can be used without any frame
1721
## Usage
1822

1923
```php
20-
// Autoload classses...
24+
// Autoload composer classses...
2125

22-
// and we can do stuff
26+
// and now we can use library
2327
$pdf = new \Jurosh\PDFMerge\PDFMerger;
2428

2529
// add as many pdfs as you want
@@ -30,3 +34,7 @@ $pdf->addPDF('path/to/source/file.pdf', 'all', 'vertical')
3034
// call merge, output format `file`
3135
$pdf->merge('file', 'path/to/export/dir/file.pdf');
3236
```
37+
38+
That's it!
39+
40+
Enjoy and leave star if you like it :)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jurosh/pdf-merge",
33
"description": "PHP PDF Merger",
4-
"version": "1.0.0",
4+
"version": "2.0.0",
55
"keywords": [
66
"pdf",
77
"merge"

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)