Some checks failed
Build & Deploy to Staging / Build & Deploy to Staging (push) Has been cancelled
- Go SDK: zero deps, functional options pattern, full endpoint coverage - PHP SDK: PHP 8.1+, curl-based, PdfOptions class, PSR-4 autoloading - Laravel package: ServiceProvider, Facade, config publishing - All SDKs document complete PDF options including new v0.4.5 params
34 lines
750 B
JSON
34 lines
750 B
JSON
{
|
|
"name": "docfast/laravel",
|
|
"description": "Laravel integration for the DocFast HTML/Markdown to PDF API",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"homepage": "https://docfast.dev",
|
|
"keywords": ["pdf", "html-to-pdf", "laravel", "docfast"],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"illuminate/support": "^10.0|^11.0|^12.0",
|
|
"docfast/docfast-php": "^1.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"DocFast\\Laravel\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"DocFast\\Laravel\\DocFastServiceProvider"
|
|
],
|
|
"aliases": {
|
|
"DocFast": "DocFast\\Laravel\\Facades\\DocFast"
|
|
}
|
|
}
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "DocFast",
|
|
"homepage": "https://docfast.dev"
|
|
}
|
|
]
|
|
}
|