From 48d657e8c91f1d8e7c216460cdf57009f013259c Mon Sep 17 00:00:00 2001 From: Jeroen Desloovere Date: Tue, 21 Apr 2015 09:06:22 +0200 Subject: [PATCH] Readme updated Example added that this class supports frameworks. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5e9c13d..23553e4 100644 --- a/README.md +++ b/README.md @@ -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.