Skip to content

Commit

Permalink
Increased app version and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jurosh committed Aug 14, 2018
1 parent fe9c961 commit ae31374
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

PDF Merge library for PHP.

Install in composer:
Install with composer:

`composer require jurosh/pdf-merge`

Should add dependency:

```json
"jurosh/pdf-merge": "dev-master"
"jurosh/pdf-merge": "^2.0"
```

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

```php
// Autoload classses...
// Autoload composer classses...

// and we can do stuff
// and now we can use library
$pdf = new \Jurosh\PDFMerge\PDFMerger;

// add as many pdfs as you want
Expand All @@ -30,3 +34,7 @@ $pdf->addPDF('path/to/source/file.pdf', 'all', 'vertical')
// call merge, output format `file`
$pdf->merge('file', 'path/to/export/dir/file.pdf');
```

That's it!

Enjoy and leave star if you like it :)
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jurosh/pdf-merge",
"description": "PHP PDF Merger",
"version": "1.0.0",
"version": "2.0.0",
"keywords": [
"pdf",
"merge"
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ae31374

Please sign in to comment.