-
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.
Merge pull request #28 from mhlavac/master
Added WKHTMLToPDF class with path to the binary to make usage even easier
- Loading branch information
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\\": "" | ||
} | ||
} | ||
} |