Skip to content
Snippets Groups Projects
Commit 155ec9ad authored by mickael's avatar mickael
Browse files

Add basic README

parent cd33d1a9
No related branches found
No related tags found
No related merge requests found
# Circe PHP client lib
## Dependencies
PHP 7 with curl and json extensions.
## Usage
<?php
declare(strict_types=1);
include "vendor/autoload.php";
use Certic\Circe\Client as CirceClient;
$client = new CirceClient(
'http://acme.tld',
'dont_tell_anyone',
'app_id');
$job = $client->newJob();
$job->addTransformation("html2pdf");
$job->addFile("/home/someone/example.html");
$client->send($job, true); // wait=true for synchronous execution
foreach ($job->getResult()->getFiles() as $file){
if($file->getFileName() == "out.log"){
echo file_get_contents((string)$file).PHP_EOL;
}else{
echo $file.PHP_EOL;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment