Skip to content

Commit

Permalink
Readme updated
Browse files Browse the repository at this point in the history
Example added that this class supports frameworks.
  • Loading branch information
jeroendesloovere committed Apr 21, 2015
1 parent 6e7a0c2 commit 48d657e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,17 @@ return $vcard->download();

> [View all examples](/examples/example.php) or check [the VCard class](/src/VCard.php).
**Support for frameworks**

For example: Laravel
```php
return Response::make(
$this->vcard->getOutput(),
200,
$this->vcard->getHeaders(true)
);
```

## Documentation

The class is well documented inline. If you use a decent IDE you'll see that each method is documented with PHPDoc.
Expand Down

0 comments on commit 48d657e

Please sign in to comment.