54grad.de is a company that offers vehicle labeling, customer management, and software solutions.
This package is designed to integrate the services provided by 54grad.de into PHP projects, allowing for seamless use of vehicle labeling data and other related functionalities within a PHP-based environment.
Disclaimer: This package is not an official product of 54grad.de. The developers accept no responsibility for any issues, discrepancies, or damages that may arise from its use.
- PHP 7.0 or higher (including PHP 8)
You can add this package to your projects via Composer:
composer require ceytek-labs/54grad-de-services-lite
The PKW Label allows car dealerships to automate the calculation and generation of vehicle labels required by the EnVKV (German Energy Consumption Labeling Ordinance for Passenger Cars). This API is designed to simplify the process of creating standardized labels that display important vehicle information such as fuel consumption and CO2 emissions, ensuring compliance with regulatory standards.
In essence, it streamlines the creation of these labels, reducing manual work and ensuring accuracy.
The PKW Label Electric allows users to generate energy labels for electric vehicles, including key information such as electric consumption, driving range, and vehicle identification numbers (FIN). It automates the process of creating legally required labels under the EnVKV (German Energy Consumption Labeling Ordinance), making it easier for dealerships and vehicle manufacturers to comply with regulations.
Here are a few examples of how you can use the PKWLabelElectric class in your PHP projects to generate and display electric vehicle labels.
This example generates the filename for the PDF without creating the actual file:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelElectric;
$pkwLabelFilename = PKWLabelElectric::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setElectricConsumption('15')
->setElectricConsumptionCity('16.3')
->setElectricConsumptionSuburban('15.9')
->setElectricConsumptionRural('14.2')
->setElectricConsumptionHighway('14')
->setRange('350')
->setFin('1234567891011')
->generateFilename();
echo $pkwLabelFilename;
If you want to include the output directory in the filename:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelElectric;
$pkwLabelFilenameAsPath = PKWLabelElectric::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setElectricConsumption('15')
->setElectricConsumptionCity('16.3')
->setElectricConsumptionSuburban('15.9')
->setElectricConsumptionRural('14.2')
->setElectricConsumptionHighway('14')
->setRange('350')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->generateFullFilename();
echo $pkwLabelFilenameAsPath;
This example shows how to create the PDF and save it to the output directory:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelElectric;
PKWLabelElectric::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setElectricConsumption('15')
->setElectricConsumptionCity('16.3')
->setElectricConsumptionSuburban('15.9')
->setElectricConsumptionRural('14.2')
->setElectricConsumptionHighway('14')
->setRange('350')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf();
This example creates the PDF and displays it directly in the browser:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelElectric;
PKWLabelElectric::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setElectricConsumption('15')
->setElectricConsumptionCity('16.3')
->setElectricConsumptionSuburban('15.9')
->setElectricConsumptionRural('14.2')
->setElectricConsumptionHighway('14')
->setRange('350')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf()
->displayPdf();
If the PDF is already created, you can directly display it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelElectric;
PKWLabelElectric::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setElectricConsumption('15')
->setElectricConsumptionCity('16.3')
->setElectricConsumptionSuburban('15.9')
->setElectricConsumptionRural('14.2')
->setElectricConsumptionHighway('14')
->setRange('350')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->displayPdf();
This function checks if the PDF already exists. If not, it generates the PDF and displays it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelElectric;
PKWLabelElectric::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setElectricConsumption('15')
->setElectricConsumptionCity('16.3')
->setElectricConsumptionSuburban('15.9')
->setElectricConsumptionRural('14.2')
->setElectricConsumptionHighway('14')
->setRange('350')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->ensurePdfAndPrint();
The PKW Label Fuel is designed to automate the creation of energy labels for fuel-powered vehicles. This API supports the generation of standardized labels that display essential vehicle details, such as fuel consumption, CO2 emissions, and engine capacity. The labels created by this API comply with the EnVKV (German Energy Consumption Labeling Ordinance), making it easier for car dealerships and manufacturers to meet regulatory requirements.
By automating the generation of these labels, the API reduces manual effort and ensures accuracy for fuel-powered vehicles.
Here are a few examples of how you can use the PKWLabelFuel class in your PHP projects to generate and display electric vehicle labels.
This example generates the filename for the PDF without creating the actual file:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelFuel;
$pkwLabelFilename = PKWLabelFuel::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('diesel')
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setCo2Combined(136)
->setCubicCapacity(1997)
->setFin('1234567891011')
->generateFilename();
echo $pkwLabelFilename;
If you want to include the output directory in the filename:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelFuel;
$pkwLabelFullFilename = PKWLabelFuel::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('diesel')
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setCo2Combined(136)
->setCubicCapacity(1997)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->generateFullFilename();
echo $pkwLabelFullFilename;
This example shows how to create the PDF and save it to the output directory:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelFuel;
PKWLabelFuel::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('diesel')
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setCo2Combined(136)
->setCubicCapacity(1997)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf();
This example creates the PDF and displays it directly in the browser:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelFuel;
PKWLabelFuel::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('diesel')
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setCo2Combined(136)
->setCubicCapacity(1997)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf()
->displayPdf();
If the PDF is already created, you can directly display it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelFuel;
PKWLabelFuel::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('diesel')
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setCo2Combined(136)
->setCubicCapacity(1997)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->displayPdf();
This function checks if the PDF already exists. If not, it generates the PDF and displays it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelFuel;
PKWLabelFuel::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('diesel')
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setCo2Combined(136)
->setCubicCapacity(1997)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->ensurePdfAndPrint();
The PKW Label Hybrid allows for automated generation of energy labels for hybrid vehicles. It provides comprehensive details, including fuel consumption, electric consumption, CO2 emissions, and driving range. The generated labels meet the requirements set by the EnVKV (German Energy Consumption Labeling Ordinance), making it easier for car dealerships and manufacturers to comply with regulatory standards.
This API reduces the need for manual label creation, ensuring accuracy and consistency for hybrid vehicle data.
Here are a few examples of how you can use the PKWLabelHybrid class in your PHP projects to generate and display electric vehicle labels.
This example generates the filename for the PDF without creating the actual file:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHybrid;
$pkwLabelFilename = PKWLabelHybrid::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('benzin')
->setWeightedConsumption(4)
->setElectricWeightedConsumption(8)
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setElectricConsumption(15)
->setElectricConsumptionCity(16)
->setElectricConsumptionSuburban(15)
->setElectricConsumptionRural(14.5)
->setElectricConsumptionHighway(14.5)
->setCo2Combined(95)
->setCo2Discharged(125)
->setCubicCapacity(1987)
->setRangeEaer(350)
->setFin('1234567891011')
->generateFilename();
echo $pkwLabelFilename;
If you want to include the output directory in the filename:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHybrid;
$pkwLabelFullFilename = PKWLabelHybrid::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('benzin')
->setWeightedConsumption(4)
->setElectricWeightedConsumption(8)
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setElectricConsumption(15)
->setElectricConsumptionCity(16)
->setElectricConsumptionSuburban(15)
->setElectricConsumptionRural(14.5)
->setElectricConsumptionHighway(14.5)
->setCo2Combined(95)
->setCo2Discharged(125)
->setCubicCapacity(1987)
->setRangeEaer(350)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->generateFullFilename();
echo $pkwLabelFullFilename;
This example shows how to create the PDF and save it to the output directory:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHybrid;
PKWLabelHybrid::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('benzin')
->setWeightedConsumption(4)
->setElectricWeightedConsumption(8)
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setElectricConsumption(15)
->setElectricConsumptionCity(16)
->setElectricConsumptionSuburban(15)
->setElectricConsumptionRural(14.5)
->setElectricConsumptionHighway(14.5)
->setCo2Combined(95)
->setCo2Discharged(125)
->setCubicCapacity(1987)
->setRangeEaer(350)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf();
This example creates the PDF and displays it directly in the browser:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHybrid;
PKWLabelHybrid::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('benzin')
->setWeightedConsumption(4)
->setElectricWeightedConsumption(8)
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setElectricConsumption(15)
->setElectricConsumptionCity(16)
->setElectricConsumptionSuburban(15)
->setElectricConsumptionRural(14.5)
->setElectricConsumptionHighway(14.5)
->setCo2Combined(95)
->setCo2Discharged(125)
->setCubicCapacity(1987)
->setRangeEaer(350)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf()
->displayPdf();
If the PDF is already created, you can directly display it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHybrid;
PKWLabelHybrid::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('benzin')
->setWeightedConsumption(4)
->setElectricWeightedConsumption(8)
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setElectricConsumption(15)
->setElectricConsumptionCity(16)
->setElectricConsumptionSuburban(15)
->setElectricConsumptionRural(14.5)
->setElectricConsumptionHighway(14.5)
->setCo2Combined(95)
->setCo2Discharged(125)
->setCubicCapacity(1987)
->setRangeEaer(350)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->displayPdf();
This function checks if the PDF already exists. If not, it generates the PDF and displays it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHybrid;
PKWLabelHybrid::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setFuel('benzin')
->setWeightedConsumption(4)
->setElectricWeightedConsumption(8)
->setConsumption(8.5)
->setConsumptionCity(9.3)
->setConsumptionSuburban(8.9)
->setConsumptionRural(8)
->setConsumptionHighway(7.2)
->setElectricConsumption(15)
->setElectricConsumptionCity(16)
->setElectricConsumptionSuburban(15)
->setElectricConsumptionRural(14.5)
->setElectricConsumptionHighway(14.5)
->setCo2Combined(95)
->setCo2Discharged(125)
->setCubicCapacity(1987)
->setRangeEaer(350)
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->ensurePdfAndPrint();
The PKW Label Hydrogen enables the automatic creation of energy labels for hydrogen-powered vehicles. This API is designed to provide critical information, including fuel consumption across various driving conditions (such as city, suburban, rural, and highway), along with other essential details like vehicle identification (FIN). This labeling functionality is tailored to meet the EnVKV (German Energy Consumption Labeling Ordinance) requirements, simplifying regulatory compliance for dealerships and vehicle manufacturers.
This tool allows you to efficiently create accurate and standardized labels for hydrogen vehicles with minimal manual intervention.
Here are a few examples of how you can use the PKWLabelHydrogen class in your PHP projects to generate and display electric vehicle labels.
This example generates the filename for the PDF without creating the actual file:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHydrogen;
$pkwLabelFilename = PKWLabelHydrogen::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setConsumption('8.5')
->setConsumptionCity('9.3')
->setConsumptionSuburban('8.9')
->setConsumptionRural('8')
->setConsumptionHighway('7.2')
->setFin('1234567891011')
->generateFilename();
echo $pkwLabelFilename;
If you want to include the output directory in the filename:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHydrogen;
$pkwLabelFullFilename = PKWLabelHydrogen::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setConsumption('8.5')
->setConsumptionCity('9.3')
->setConsumptionSuburban('8.9')
->setConsumptionRural('8')
->setConsumptionHighway('7.2')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->generateFullFilename();
echo $pkwLabelFullFilename;
This example shows how to create the PDF and save it to the output directory:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHydrogen;
PKWLabelHydrogen::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setConsumption('8.5')
->setConsumptionCity('9.3')
->setConsumptionSuburban('8.9')
->setConsumptionRural('8')
->setConsumptionHighway('7.2')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf();
This example creates the PDF and displays it directly in the browser:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHydrogen;
PKWLabelHydrogen::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setConsumption('8.5')
->setConsumptionCity('9.3')
->setConsumptionSuburban('8.9')
->setConsumptionRural('8')
->setConsumptionHighway('7.2')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf()
->displayPdf();
If the PDF is already created, you can directly display it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHydrogen;
PKWLabelHydrogen::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setConsumption('8.5')
->setConsumptionCity('9.3')
->setConsumptionSuburban('8.9')
->setConsumptionRural('8')
->setConsumptionHighway('7.2')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->displayPdf();
This function checks if the PDF already exists. If not, it generates the PDF and displays it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelHydrogen;
PKWLabelHydrogen::make('<your-api-key>')
->setManufacturer('Škoda')
->setModel('Octavia Combi RS')
->setConsumption('8.5')
->setConsumptionCity('9.3')
->setConsumptionSuburban('8.9')
->setConsumptionRural('8')
->setConsumptionHighway('7.2')
->setFin('1234567891011')
->setOutputDirectory(__DIR__ . '/pdfs')
->ensurePdfAndPrint();
The European Union updated its energy label system on March 1, 2021, moving from the complex A+, A++, and A+++ ratings to a simpler A-to-G scale. This change aimed to make energy efficiency classifications clearer for consumers, aligning with the EU's sustainability and transparency goals. The new scale improves the understanding of energy consumption and supports the transition to greener technologies by promoting clarity for both consumers and manufacturers.
The PKW Label Outdated enables the generation of vehicle labels based on the former EU energy classification system, including ratings like A+, A++, and A+++. This class is intended for projects that still require these legacy labels, providing compatibility with the older EU scale where applicable.
Here are a few examples of how you can use the PKWLabelOutdated class in your PHP projects to generate and display electric vehicle labels.
This example generates the filename for the PDF without creating the actual file:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelOutdated;
$pkwLabelFilename = PKWLabelOutdated::make('<your-api-key>')
->setManufacturer('Skoda')
->setModel('Octavia III 1.9 TDI Elegance')
->setPower('84')
->setFuelType('supere10')
->setMass('1484')
->setCo2Emission('148')
->setEngineCapacity('1998')
->setConsumption('7.2')
->setConsumptionCity('n/a')
->setConsumptionHighway('n/a')
->generateFilename();
echo $pkwLabelFilename;
If you want to include the output directory in the filename:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelOutdated;
$pkwLabelFilenameAsPath = PKWLabelOutdated::make('<your-api-key>')
->setManufacturer('Skoda')
->setModel('Octavia III 1.9 TDI Elegance')
->setPower('84')
->setFuelType('supere10')
->setMass('1484')
->setCo2Emission('148')
->setEngineCapacity('1998')
->setConsumption('7.2')
->setConsumptionCity('n/a')
->setConsumptionHighway('n/a')
->setOutputDirectory(__DIR__ . '/pdfs')
->generateFullFilename();
echo $pkwLabelFilenameAsPath;
This example shows how to create the PDF and save it to the output directory:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelOutdated;
PKWLabelOutdated::make('<your-api-key>')
->setManufacturer('Skoda')
->setModel('Octavia III 1.9 TDI Elegance')
->setPower('84')
->setFuelType('supere10')
->setMass('1484')
->setCo2Emission('148')
->setEngineCapacity('1998')
->setConsumption('7.2')
->setConsumptionCity('n/a')
->setConsumptionHighway('n/a')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf();
This example creates the PDF and displays it directly in the browser:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelOutdated;
PKWLabelOutdated::make('<your-api-key>')
->setManufacturer('Skoda')
->setModel('Octavia III 1.9 TDI Elegance')
->setPower('84')
->setFuelType('supere10')
->setMass('1484')
->setCo2Emission('148')
->setEngineCapacity('1998')
->setConsumption('7.2')
->setConsumptionCity('n/a')
->setConsumptionHighway('n/a')
->setOutputDirectory(__DIR__ . '/pdfs')
->createPdf()
->displayPdf();
If the PDF is already created, you can directly display it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelOutdated;
PKWLabelOutdated::make('<your-api-key>')
->setManufacturer('Skoda')
->setModel('Octavia III 1.9 TDI Elegance')
->setPower('84')
->setFuelType('supere10')
->setMass('1484')
->setCo2Emission('148')
->setEngineCapacity('1998')
->setConsumption('7.2')
->setConsumptionCity('n/a')
->setConsumptionHighway('n/a')
->setOutputDirectory(__DIR__ . '/pdfs')
->displayPdf();
This function checks if the PDF already exists. If not, it generates the PDF and displays it:
use CeytekLabs\FiftyFourGradDeServicesLite\EnVKV\PKWLabelOutdated;
PKWLabelOutdated::make('<your-api-key>')
->setManufacturer('Skoda')
->setModel('Octavia III 1.9 TDI Elegance')
->setPower('84')
->setFuelType('supere10')
->setMass('1484')
->setCo2Emission('148')
->setEngineCapacity('1998')
->setConsumption('7.2')
->setConsumptionCity('n/a')
->setConsumptionHighway('n/a')
->setOutputDirectory(__DIR__ . '/pdfs')
->ensurePdfAndPrint();
Feel free to submit a pull request or report an issue. Any contributions and feedback are highly appreciated!
This project is licensed under the MIT License.