Skip to content

Commit

Permalink
docs: add basic readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasravnsborg committed Apr 18, 2016
1 parent 48adecc commit 8628550
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# mPDF Wrapper for Laravel 5

Require this package in your composer.json or simply install it by running:

```
composer require niklasravnsborg/laravel-mpdf
```

## Installation

To use in Laravel add the Service Provider and the Facade to your `config/app.php`:

```
'providers' => [
// ...
niklasravnsborg\LaravelMpdf\MpdfServiceProvider::class
]
```

```
'aliases' => [
// ...
'PDF' => niklasravnsborg\LaravelMpdf\Facades\Mpdf::class
]
```

### License

This mPDF Wrapper for Laravel is open-sourced software licensed under the [MIT license](http:https://opensource.org/licenses/MIT)

0 comments on commit 8628550

Please sign in to comment.