updated streamline-setup v2

This commit is contained in:
2025-01-15 08:53:49 -08:00
committed by alec.turner
parent a2ce9248f0
commit 4b569f81b0
20228 changed files with 2932048 additions and 63204 deletions
@@ -1,7 +1,14 @@
{
"name": "barryvdh/laravel-snappy",
"description": "Snappy PDF/Image for Laravel",
"keywords": ["laravel","snappy", "pdf", "image", "wkhtmltopdf", "wkhtmltoimage"],
"keywords": [
"laravel",
"snappy",
"pdf",
"image",
"wkhtmltopdf",
"wkhtmltoimage"
],
"license": "MIT",
"authors": [
{
@@ -11,12 +18,12 @@
],
"require": {
"php": ">=7.2",
"illuminate/support": "^9|^10",
"illuminate/filesystem": "^9|^10",
"knplabs/knp-snappy": "^1.4"
"illuminate/support": "^9|^10|^11.0",
"illuminate/filesystem": "^9|^10|^11.0",
"knplabs/knp-snappy": "^1.4.4"
},
"require-dev": {
"orchestra/testbench": "^7|^8"
"orchestra/testbench": "^7|^8|^9.0"
},
"autoload": {
"psr-4": {
@@ -17,7 +17,7 @@ return [
|
| The file path of the wkhtmltopdf / wkhtmltoimage executable.
|
| Timout:
| Timeout:
|
| The amount of time to wait (in seconds) before PDF / Image generation is stopped.
| Setting this to false disables the timeout (unlimited processing time).
@@ -4,6 +4,10 @@ use Knp\Snappy\Image;
use Illuminate\Filesystem\Filesystem;
class IlluminateSnappyImage extends Image {
/**
* @var \Illuminate\Filesystem\Filesystem
*/
protected $fs;
/**
* @param \Illuminate\Filesystem\Filesystem
@@ -23,6 +23,15 @@ class ImageWrapper {
*/
protected $options = array();
/**
* @var string
*/
protected $html;
/**
* @var string
*/
protected $file;
/**
* @param \Knp\Snappy\Image $snappy