-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added WKHTMLToPDF class with path to the binary to make usage even ea…
…sier
- Loading branch information
Martin Hlavac
committed
Nov 24, 2017
1 parent
0c1f180
commit b571d4d
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
namespace h4cc\WKHTMLToPDF; | ||
|
||
class WKHTMLToPDF | ||
{ | ||
const PATH = __DIR__ . '/bin/wkhtmltopdf-amd64'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,5 +15,10 @@ | |
"bin/wkhtmltopdf-amd64" | ||
], | ||
"require": { | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"h4cc\\WKHTMLToPDF\\": "" | ||
} | ||
} | ||
} |