sanderjongsma/printnode is a Laravel package for :description.
It currently has 1 GitHub stars and 182 downloads on Packagist.
Install it with composer require sanderjongsma/printnode.
Discover more Laravel packages by sanderjongsma
or browse all Laravel packages to compare alternatives.
Last updated
A simple Laravel 5 wrapper for the official PrintNode PHP Library.
Uses the 2.0.0-rc1 version from the printnode php package
composer require sanderjongsma/printnode
Add the service provider in app/config/app.php
'provider' => [
...
SanderJongsma\PrintNode\PrintNodeServiceProvider::class,
...
];
Add the alias in app/config/app.php
'aliases' => [
...
'PrintNode' => SanderJongsma\PrintNode\Facades\PrintNode::class,
'PrintJob' => SanderJongsma\PrintNode\Facades\PrintJob::class,
...
];
php artisan vendor:publish --provider="SanderJongsma\PrintNode\PrintNodeServiceProvider"
You can directly edit the configuration in config/printnode.php or copy these values to your .env file.
PRINTNODE_API_KEY=yourapikey
The MIT License (MIT). Please see License File for more information.